/*---------------------
  Header
-----------------------*/

.header {
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    background-color: #ffffff;
}

.top-header{
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    width: 100%;
    height: 40px;
    border-bottom: 1px solid #efefef;
    /*box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.15);*/
}

.header .top-header .top-header-content .social-icons{
    display: inline-block;
    padding: 0 10px;
    font-size: 14px;
}

.header-scrolled {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 10px rgba(68, 68, 68, 0.5);
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999;
}

.header.header-normal {
    position: relative;
    background: #120851;
}

.header.header-normal .header__logo {
    padding-bottom: 30px;
}

.header.header-normal .header__menu {
    padding-bottom: 30px;
}

.header__info {
    padding: 10px 0;
    border-bottom: 1px solid #252163;
}

.header__info-left ul li {
    font-size: 13px;
    color: #ffffff;
    list-style: none;
    display: inline-block;
    margin-right: 25px;
}

.header__info-left ul li:last-child {
    margin-right: 0;
}

.header__info-left ul li span {
    height: 30px;
    width: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    margin-right: 5px;
}

.header__info-right {
    text-align: right;
}

.header__info-right ul li {
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}

.header__info-right ul li:last-child {
    margin-right: 0;
}

.header__info-right ul li a {
    font-size: 13px;
    color: #ffffff;
    display: block;
}

.header__info-right ul li a span {
    height: 30px;
    width: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    margin-right: 5px;
}

.header__logo {
    padding-top: 25px;
    padding-bottom: 5px;
}

.header__logo a {
    display: inline-block;
}

.header__logo a img{
    width: 130px;
}

.header__menu {
    /*text-align: left;*/
    text-align: center;
    padding-top: 5px;
}

.header__menu ul li {
    list-style: none;
    display: inline-block;
    margin-right: 40px;
    position: relative;
}

.header__menu ul li .dropdown {
    position: absolute;
    left: 0;
    top: 40px;
    width: 200px;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 10px rgba(18, 8, 81, 0.15);
    box-shadow: 0 0 10px rgba(18, 8, 81, 0.15);
    border-radius: 5px;
}

.header__menu ul li .dropdown li {
    display: block;
    text-align: left;
}

.header__menu ul li .dropdown li a {
    color: #6d6d6d;
    padding: 10px 15px;
    text-transform: capitalize;
    font-weight: 500;
}

.header__menu ul li .dropdown li a:after {
    display: none;
}

.header__menu ul li:last-child {
    margin-right: 0;
}

.header__menu ul li.active-url a:after {
    opacity: 1;
    height: 20%;
}

.header__menu ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    top: 20px;
    z-index: 99;
}

.header__menu ul li:hover a:after {
    opacity: 1;
    height: 50%;
}

.header__menu ul li a {
    color: rgb(84, 94, 104);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    padding: 0 3px;
    position: relative;
    z-index: 1;
}

.header__menu ul li a:hover{
    color: rgb(84, 94, 104);!important;
}
.header__menu .dropdown li{
    margin-right: 0;
}
.header__menu ul li .dropdown li:hover{
    background-color: rgba(255, 243, 232, 1);
}

.header__logo2 a img{
    display: none;
}

.active-url {
    color:#ff9900!important;
}
.header__menu ul li a:after {
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 0;
    background: #fbcf9a;
    content: "";
    z-index: -1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    color: rgb(84, 94, 104);
}


.login_register_area .login a{
    margin-right: 13px;
    border-right: 2px solid #c2c2c2;
    padding-right: 13px;
    color: rgb(84, 94, 104);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.login_register_area .register a{
    color: rgb(84, 94, 104);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.login_register_area .cabinet a{
    margin-right: 10px;
    border-right: 2px solid #c2c2c2;
    padding-right: 10px;
    color: rgb(84, 94, 104);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.login_register_area .logout button{
    color: rgb(84, 94, 104);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    background: none;
}
.login_register_area .logout button:focus{
    border: none;
    outline:none;
}

.offcanvas__menu__wrapper {
    display: none;
}

.canvas__open {
    display: none;
}

.top-social-icons a{
    font-size: 14px;
    padding: 0 5px;
}

.row-or{
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header__menu ul li {
        margin-right: 20px;
    }
    .header__info-left ul li {
        margin-right: 5px;
    }
    .header__info-right ul li {
        margin-right: 10px;
    }
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
    .header__block-logo{
        display: none;
    }
    .header__nav-block{
        height: 77px;
    }

    .header__logo2 a img{
        display: block;
        width: 100px;
        padding-top: 25px;
        padding-bottom: 12px;
    }

    .offcanvas__info .top-social-icons a{
        display: inline-flex;
    }

    .top-social-icons a{
        display: none;
    }
    .login_register_area .login a{
        font-size: 13px;
    }
    .login_register_area .register a{
        font-size: 13px;
    }
    .header__info {
        display: none;
    }
    .header__menu {
        display: none;
    }
    .header .container {
        position: relative;
    }
    .offcanvas__menu__overlay {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 98;
        visibility: hidden;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .offcanvas__menu__overlay.active-url {
        visibility: visible;
    }
    .canvas__open {
        display: block;
        font-size: 25px;
        color: #88CE10;
        height: 40px;
        width: 40px;
        /*line-height: 37px;*/
        text-align: center;
        border: 1px solid #88CE10;
        border-radius: 5px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    .offcanvas__menu__wrapper {
        display: block;
        /*width: 300px;*/
        width: 100%;
        position: fixed;
        /*left: -300px;*/
        left: -100%;
        top: 0;
        background: linear-gradient(153.02deg, #ffffff 10.92%, #fafafa 90.8%);
        z-index: 9999;
        height: 100%;
        overflow-y: auto;
        padding:15px 30px 30px 30px;
        opacity: 0;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .offcanvas__menu__wrapper.show__offcanvas__menu {
        opacity: 1;
        left: 0;
    }
    .offcanvas__menu__wrapper .canvas__close {
        font-size: 30px;
        /*color: #4D6FAC;*/
        color: #232d37;
        position: absolute;
        right: 30px;
        top: 20px;
        cursor: pointer;
    }
    .offcanvas__menu__wrapper .offcanvas__logo {
        margin-bottom: 20px;
    }
    .offcanvas__menu__wrapper .offcanvas__menu {
        display: none;
    }
    .offcanvas__menu__wrapper .slicknav_btn {
        display: none;
    }
    .offcanvas__menu__wrapper .slicknav_nav .slicknav_item a {
        border-bottom: none !important;
    }
    .offcanvas__menu__wrapper .slicknav_nav {
        display: block !important;
    }
    .offcanvas__menu__wrapper .slicknav_menu {
        background: transparent;
        padding: 0;
        margin-bottom: 30px;
    }
    .offcanvas__menu__wrapper .slicknav_nav ul {
        margin: 0;
    }
    .offcanvas__menu__wrapper .slicknav_nav a {
        /*color: #232d37;*/
        color: #474747;
        font-size: 17px;
        font-weight: 500;
        margin: 0;
        border-bottom: 1px solid #bebebe;
    }
    .offcanvas__menu__wrapper .slicknav_nav a:hover {
        border-radius: 0;
        background: transparent;
        /*color: #4D6FAC;*/
        color: #232d37;
    }
    .offcanvas__menu__wrapper .slicknav_nav .slicknav_row,
    .offcanvas__menu__wrapper .slicknav_nav a {
        padding: 9px 0;
    }
    .offcanvas__menu__wrapper .offcanvas__info ul li {
        font-size: 16px;
        /*color: #4D6FAC;*/
        color: #232d37;
        list-style: none;
        margin-bottom: 15px;
    }
    .offcanvas__menu__wrapper .offcanvas__info ul li span {
        height: 30px;
        width: 30px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        line-height: 30px;
        text-align: center;
        display: inline-block;
        margin-right: 5px;
    }
    .offcanvas__menu__wrapper .offcanvas__auth {
        margin-bottom: 20px;
    }
    .offcanvas__menu__wrapper .offcanvas__auth ul li {
        list-style: none;
        margin-bottom: 10px;
    }
    .offcanvas__menu__wrapper .offcanvas__auth ul li a {
        font-size: 16px;
        color: #232d37;
        display: block;
    }
    .offcanvas__menu__wrapper .offcanvas__auth ul li a span {
        height: 30px;
        width: 30px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        line-height: 30px;
        text-align: center;
        display: inline-block;
        margin-right: 5px;
    }

    .slick-slide img{
        margin: 0 auto;
    }
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
    .hosting__text .nav-tabs .nav-item {
        width: 50%;
    }
}
