@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Montserrat:ital,wght@0,600;0,700;0,800;0,900;1,400&display=swap');
.ease0-5 {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

:root{

    --color1:#282828;
    --color2:#007C40;
    --color3: #0f0f3b;
    --color4: #0194fe;
    --color5: #3fccf6;
    --color-white: #fff;
    --color-black: #000;
    --color-body-claire : #f9f9f9;
    --font-family-content: Lato,Cairo, 'sans-serif';
    --font-size-content : 14px;
    --font-family-title: Montserrat, 'serif';
    --font-size-title : 32px;
}

a {
    color: var(--color2);
    text-decoration: none;
}

a:hover {
    color: var(--color4);
}

ul,li{
    list-style: none;
}

body {
    font-family: var(--font-family-content);
    font-size:  var(--font-size-content);
    color: var(--color1);
    background: var(--color-body-claire);
    overflow-x: hidden;
    position: relative;
}

body:not(.home) .right_content  {
    flex: 1;
}

body:not(.home) .page_container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 30px 0;
}

body:not(.home) .full_width_content {
    background: #fff;
    width: 100%;
    border: 1px solid #d3d3d3;
    padding: 15px 19px 19px 19px;
    -webkit-align-self: baseline;
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

body.intranet .page_container {
    margin: 0;
}

body:not(.home) .left_content {
    width: 278px;
    box-sizing: border-box;
    margin-right: 29px;
}

.wrapper {
    width: 1175px;
    margin: 0 auto;
    position: relative;
}

.flexContent{
    display: flex;
    justify-content: space-between;
}

.vColum{
    flex-direction: column;
}

.home-title{
    font-family: var(--font-family-title);
    font-size: var(--font-size-title);
    font-weight: bold;
    margin: 3rem 0;
    color: var(--color1);
    text-align: center;
}


/* Footer */


.footer{
    background: #000;
}

.ed-micon,
.ed-mm-menu{
    display: none;
}

.ed-micon {
    background: #fff;
    height: 41px;
    padding: 0;
    margin: 0;
    margin-top: 20px;
    margin-right: 35px;
}


.ed-micon,
.ed-mm-menu{
    display: none;
}

.ed-micon {
    background: #fff;
    padding: 0;
    margin: 0;
}

.navResponsive{
    display: none;
}

#share.jssocials{
    clear: both;
    margin-top: 50px;
}



/* Mobile */
@media only screen and (max-width: 767px) and (min-width: 320px) {
    .flexContent{
        flex-wrap: wrap;
    }
    body:not(.home):not(.intranet) .left_content {
        display: none;
    }

    .owl-nav{
        display: none;
    }
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {

}

/* Mobile and tablet */
@media only screen and (min-width: 320px) and (max-width: 991px) {
    .flexContent{
        flex-wrap: wrap;
    }

    #MainMenu{display: none}

    .navResponsive{display: block;width: 100%;}

    .ed-micon,
    .ed-mm-menu {
        display: block;
    }

    .ed-micon i{
        top: 50px;
    }

}

/* Computer */
@media only screen and (min-width: 992px) {
}

/* Large screen */
@media only screen and (min-width: 1200px) and (max-width: 1919px){

}

/* Wide screen */
@media only screen and (min-width: 1920px) {

}

/* Less the wrapper */
@media only screen and (max-width: 1174px) {
    .wrapper {
        width: calc(100% - 2em);
    }
}