/* Google font */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

/* Basic */
.mega-header-close {
    display: none !important;
    z-index: 10;
}
.mega-header-open {
    display: flex !important;
    z-index: 99999;
}
.darkmode {
    background-color: #0D0D0D !important;
}
.darkmode .society {
    color: #fff !important;
}
.darkmode path, .darkmode circle {
    fill: #fff !important;
}
.darkmode .circle {
    border: 2px solid #fff !important;
}


/* Mega header bar */

.mega-header-bar {
    background-color: #fff;
    height: 46px;
    width: 100%;
    position: relative;
    z-index: 1000;
}
.mega-header-bar .mega-header-bar-content {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
}
.mega-header-bar .society{
    color: #707070;
    display: flex;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.mega-header-bar svg{
    position: relative;
    top: -2px;
}
header path, circle {
    transition: .2s all ease-in-out;
    fill: #707070 !important;
}
.mega-header-bar:hover circle,.mega-header-bar:hover path{
    fill: #F39200 !important;
    transition: .2s all ease-in-out;
}
.mega-header-bar:hover .circle{
    border: 1.5px solid #F39200 !important;
    width: 5px !important;
    height: 5px !important;
    margin: 2px !important;
    transition: .2s all ease-in-out;
}
.mega-header-bar .logo-header-bar{
    display: flex;
    align-items: center;
    margin-left: 7px;
}
.mega-header-bar .icone-header-bar{
    width: 20px;
}
.mega-header-bar .icone-header-bar .line{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.mega-header-bar .icone-header-bar .circle{
    border: 2px solid #707070;
    border-radius: 100%;
    width: 1.5px;
    height: 1.5px;
    margin: 1px;
    transition: .2s all ease-in-out;
}

/* Open Mega Header */

.open-mega-header {
    background-color: white;
    position: fixed;
    height: 100%;
    width: 100%;
    max-width: 494px;
    top: 0;
    right: 0;
    z-index: 10000;
    box-shadow: 10px 3px 99px rgba(0, 0, 0, 0.164);
    padding: 20px;
    display: flex;
    justify-content: center;
    transition: .2s all ease-in-out;
}
.open-mega-header .content-mega-header {
    max-width: 329px;
    margin-top: 30px;
}
.open-mega-header .mega-close {
    width: 100%;
    text-align: end;
    margin-bottom: 60px;
}
.open-mega-header .hook-mega-header p{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    color: #707070;
    line-height: 40px;
    margin: 10px 0 40px;
}
.open-mega-header .mega-point {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}
.open-mega-header .mega-point img{
    margin-right: 18px;
}
.open-mega-header .mega-point p{
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 35px;
    color: #969696;
}
.open-mega-header .mega-link {
    color: #F39200;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 23px;
    margin-bottom: 20px;
    transition: .2s all ease-in-out;
}
.open-mega-header .mega-link:hover img{
    margin-left: 5px;
    transition: .2s all ease-in-out;
}
.open-mega-header .mega-link img{
    margin-left: 0px;
    transition: .2s all ease-in-out;
}

/* Responsive */

@media (max-width: 700px) {
    .open-mega-header .mega-close {
        margin-bottom: 25px;
    }
    .open-mega-header .content-mega-header {
        max-width: 240px;
        margin-top: 5px;
    }
    .open-mega-header .open-mega-header {
        background-color: white;
        position: fixed;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }
    .open-mega-header .hook-mega-header p{
        font-size: 25px;
        line-height: 25px;
        margin: 10px 0 20px;
    }
    .open-mega-header .mega-point {
        margin-bottom: 15px;
    }
    .mega-point p{
        font-size: 22px;
        line-height: 25px;
    }
    .open-mega-header .mega-link {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .open-mega-header .mega-close img{
        max-width: 15px;
    } 
  }