/*===Header css===*/
.main-header {
    padding: 10px 0;
    transition: .3s;
   /* position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    background: #000;
    top: 0;*/
    /* box-shadow: 0 0 3px #acacac; */
}

.fixed-header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    top: 0;
    box-shadow: 0px 5px 80px rgba(0, 0, 0, 0.1);
}

.main-header .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .logo {
    max-width: 200px;
}

.main-header .logo img {
    width: 100%;
    height: 80px;
}

.menu > ul {
    display: flex;
}

.menu > ul > li {
    display: inline-flex;
    align-items: center;
    margin-left: 40px;
}

.menu > ul > li a {
    color: #010101;
    transition: transform 0.3s;
    position: relative;
    font-size: 20px;
    font-weight: 400;
}

.menu > ul > li a span:after {
        content: " ";
        position: absolute;
        background: -webkit-gradient(linear, left top, left bottom, from(to right), color-stop(#7d8dff), to(#ff4f81)) fixed !important;
        background: linear-gradient(to right, #7d8dff, #ff4f81) fixed !important;
        top: 100%;
        margin-top: 4px;
        border-radius: 3px;
        left: 0%;
        width: 100%;
        height: 3px;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: -webkit-transform 0.2s;
        transition: -webkit-transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s;
        -webkit-transform-origin: right center;
        transform-origin: right center;
        box-sizing: border-box;
        display: block;
    }

.menu > ul > li a:hover, .menu > ul > li a.active {
/*    transform: scale(1.07);*/
    color: var(--mainColor);
}

 .menu > ul > li a:hover span:after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }

.menu > ul > li a.btn {
    color: #fff;
}


.site-dropdown {
    border: 0;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    padding: 15px 10px;
    top: 10px !important;
}

.site-dropdown:before {
    content: " ";
    width: 15px;
    height: 15px;
    background: #ffff;
    position: absolute;
    top: -7.5px;
    left: 30px;
    transform: rotate(45deg);
    border: 1px solid #f2f2f2;
    border-bottom: 0;
    border-right: 0
}

.site-dropdown li {
    padding: 0 5px
}

.site-dropdown .dropdown-item {
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    border-radius: 5px
}


.pin-task {
    background: var(--secondColor);
    padding: 7px 0;
    color: #fff;
}

.pin-task .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pin-task .left-content a {
    margin-right: 15px;
    font-size: 15px;
}

.pin-task a {
    color: #fff;
}

.pin-task .right-content a {
    margin-left: 10px;
}

.container-fluid {
    padding: 0 20px;
}


/*===End Header css===*/

@media (max-width:767px){
    .hide-m {
    display: none;
}

.pin-task .right-content a {
    line-height: 1;
}

.pin-task .left-content a {
    line-height: 1;
    margin-right: 0;
    margin-left: 10px;
}

.pin-task .container-fluid {
    line-height: 1;
}

.pin-task {
    padding: 10px 0;
}
.container-fluid {
    padding: 0 15px;
}
}