/*
=============================================
			HEADER 3
=============================================
*/
header.header-3 {
    width: 100%;
    position: absolute;
    z-index: 200;
    right: 0;
    top: 0;
}

.header-3 .logo-container {
    /*box-shadow: 0 0px 5px 1.5px rgb(0, 0, 0);*/
    float: right;
    width: 100%;
    display: flex;
    /*background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);*/
    background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    /*background-image: linear-gradient(to top, #0ba360 0%, #3cba92 100%);*/
    /*background-image: linear-gradient(-225deg, #CBBACC 0%, #2580B3 100%);*/
    /*background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);*/
    /*background-image: linear-gradient(-225deg, #22E1FF 0%, #1D8FE1 48%, #625EB1 100%);*/
    /*background-image: linear-gradient(-225deg, #3D4E81 0%, #5753C9 48%, #6E7FF3 100%);*/
}

div.horizontal {
    display: flex;
    justify-content: center;
}

div.vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-3 .logo {
    /*background: #0D47A1;*/
    padding: 0 10px;

}

.header-3 .logo img {

}

.header-3 .top-strip {
    float: right;
    width: 100%;
    display: block;
    padding: 7px 0 7px 10px;
}

.header-3 .top-strip p {
    margin: 0;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    float: right;
    display: block;
}

.header-3 .social-icon {
    float: left;
    width: auto;
}

.header-3 .social-icon a.emailinfo {
    float: right;
    color: #fff;
    margin: 0 0 0 15px;
    height: 36px;
    line-height: 36px;
}

.header-3 .social-icon ul {
    float: right;
    width: auto;
    margin: 0;
    padding: 0;
    text-align: center;
}

.header-3 .social-icon ul li {
    display: inline-block
}

.header-3 .social-icon ul li a {
    height: 36px;
    width: 36px;
    color: #ffffff;
    display: block;
    line-height: 36px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.social-icon ul li a:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.header-3 .kode-navigation {
    float: right;
    width: 100%;
    background-color: #fff;
}

.header-3 .kode-navigation ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    float: right;
    background: #fff;
}

.header-3 .kode-navigation ul li {
    margin: 0;
    float: right;
    position: relative;
}

.header-3 .kode-navigation ul li a {
    padding: 30px 18px;
    text-transform: uppercase;
    display: block;
    /*font-family: 'Roboto', sans-serif;*/
    font-weight: 500;
    color: #262626;
}

.header-3 .kode-navigation ul li:before {
    content: "";
    height: 0;
    width: 100%;
    position: absolute;
    right: 0;
    top: 100%;
    bottom: 0;
    margin: auto;
    background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

}

.header-3 .kode-navigation ul li:hover:before {
    height: 5px;
    width: 100%;

}

.header-3 .kode-navigation ul li:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 7px 5px;
    border-color: transparent transparent #ff9606 transparent;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: 0px;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

}

.header-3 .kode-navigation ul li:hover:after {
    opacity: 1;
}

.kode-navigation ul ul {
    border-top: solid 5px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    margin: 20px 0 0 0 !important;
    min-width: 250px;
    border-bottom: solid 5px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-color: #ff9606;
}

.header-3 .kode-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin: 0 !important;
}

.header-3 .kode-navigation ul ul li:after, .header-3 .kode-navigation ul ul li:before {
    display: none;
}

.header-3 .kode-navigation ul ul li a {
    padding: 10px 15px;
    font-size: 14px;
    text-transform: capitalize;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.header-3 .kode-navigation ul ul li {
    float: left;
    width: 100%;
}

.header-3 .kode-navigation ul ul li a:hover {
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: #fff;
}

.header-3 .kode-navigation ul ul ul {
    top: 0px;
}

.header-3 .kode-navigation ul li.last ul {
    left: auto;
    right: 0px;
}

.header-3 .kode-navigation ul li.last ul ul {
    left: auto;
    right: 100%;
}

/*


/* Common styles of menus */
.dl-menuwrapper {
    float: right;
    position: relative;
    z-index: 100;
    display: none;
}

.dl-menu {
    display: none;
}

.dl-menuwrapper button {
    border: none;
    width: 40px;
    height: 38px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    outline: none;
    background: #333;
    padding: 0px;
    border-radius: 0;
    color: #fff;
}

.dl-menuwrapper ul {
    background-color: #000;
    list-style-type: none;
    padding: 0;
    height: 100%;
}

.dl-menuwrapper ul li {
    position: relative;
    display: block;

}

.dl-menuwrapper ul li a {
    color: #fff;
    padding: 10px 15px;
    display: block;
    text-align: right;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.dl-menuwrapper ul li a:hover {
    background: #5f5f5f;
}

.dl-menuwrapper ul li > ul {
    display: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

}

.dl-menuwrapper ul li ul li a {
    display: block;
    background: #000;

}

.dl-menuwrapper ul li:hover > ul {
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
}





