@font-face {
    font-family: "RobotoLight";
    src: url("../fonts/Roboto-Light.ttf");
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Medium.ttf");
}

a {
    cursor: pointer;
}

body {
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: #000;
}

.fr-wismec-logo {
    z-index: 1000;
    width: 8vw;
    position: relative;
}

@media (min-width: 992px) {
    .img-fr-wismec-logo {
        width: 8vw;
    }
}

@media (min-width: 1200px) {}

@media (max-width: 991px) {
    .fr-wismec-logo {
        width: 9rem;
    }
}

.no-padding {
    padding: 0;
}


/*****common styles*******/

.container.container-frwismec {
    width: 81.8vw;
}

.container>.navbar-header {
    margin-right: 2.2vw;
}

@media (min-width: 1600px) {
    .navbar-fr-wismec .container.container-frwismec {
        width: 70vw;
    }
}

.child-same-height {
    display: flex;
}

@media (max-width: 767px) {
    .child-same-height {
        display: block;
    }
    .container.container-frwismec {
        width: 100%;
    }
}

.valign-center {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
}

.back-top {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #cf1212;
    text-align: center;
}

.back-top span {
    color: #fff;
    line-height: 45px;
    font-size: 20px;
}


/*-------- navbar --------*/

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 9;
    padding: 2rem 0;
}

.navbar .container .navbar-header {
    position: relative;
    z-index: 1030;
    width: 100%;
    margin: 0;
}

.el-navbar-toggle {
    display: inline-block;
    position: absolute;
    float: right;
    right: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    color: #151515;
    background: 0 0;
    border: none;
    outline: none;
}

.el-navbar-toggle .icon-bar {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 1px;
    transform: none;
    background-color: #fff;
}

.el-navbar-toggle .icon-bar+.icon-bar {
    margin-top: 6px;
}

.navbar-brand {
    padding: 0 30px;
}

.navbar-brand>img {
    display: block;
    height: auto;
    width: 200px;
}

@media (min-width: 992px) {
    .navbar-brand>img {
        width: 20rem;
    }
}

.el-navbar-toggle.active .icon-bar01 {
    top: 50%;
    width: 30px;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    transform-origin: center;
}

.el-navbar-toggle.active .icon-bar02 {
    display: none;
}

.el-navbar-toggle.active .icon-bar03 {
    top: 50%;
    width: 30px;
    margin-top: -3px;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    transform-origin: center;
}

.el-navbar-collapse {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1029;
    width: 22vw;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
    line-height: 34px;
    -webkit-transform: translateX(110%);
    transform: translateX(110%);
    color: #fff;
    background: rgba(207, 18, 18, 0.38);
    transition: 0.3s all ease;
}

.el-navbar-collapse.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.menu01 {
    width: 100%;
    padding-right: 9.1vw;
}

.menu01 ul li {
    text-align: right;
    position: relative;
    padding: 0.3rem 1rem;
    margin-top: 1.2rem;
    font-size: 1.3rem;
    line-height: 1;
}

.menu01 ul li::after {
    content: " ";
    position: absolute;
    width: 0.3rem;
    height: 1.9rem;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #353535;
}

.menu01 ul li.active::after {
    background-color: #fff;
}

.menu01 ul li.noli {
    height: 10vh;
}

.menu01 ul li.noli::after {
    display: none;
}

.menu01 ul li.fra::after {
    background-color: #0d7ccb;
}

.menu01 ul li.de::after {
    background-color: #ffce00;
}

.menu01 ul li.gl::after {
    background-color: #000000;
}

.menu02 {
    width: 100%;
    text-align: center;
    padding-top: 13vh;
}

.menu02 img {
    margin: 0 auto;
    width: 9rem;
}

@media (max-width: 767px) {
    .el-navbar-collapse {
        width: 100%;
    }
    .menu01 {
        padding-right: 10rem;
    }
}

@media (max-height: 767px) {
    .menu02 img {
        width: 18vh;
    }
    .menu01 ul li {
        padding: .3vh 1rem;
        margin-top: 1vh;
        font-size: 2.5vh;
    }
    .menu01 ul li.noli {
        height: 5vh;
    }
    .menu01 ul li::after {
        height: 3vh;
    }
    .menu02 {
        padding-top: 10vh;
    }
}