body {
    font-family: "Roboto Regular";
    font-size: 14px;
    color: #000000;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    color: unset;
    text-decoration:none;
}
a:hover {
    text-decoration: none;
    color: inherit;
}
.black {
    font-family: "Roboto Black", sans-serif;
}
.bold {
    font-family: "Roboto Bold", sans-serif;
}
.medium {
    font-family: "Roboto Medium", sans-serif;
}
.italic {
    font-family: "Roboto Italic", sans-serif;
}
/*:::::Menu:::::*/
.brand {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: inherit;
    border: none;
    outline: none;
    color: #e91e63;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    max-width: 130px;
}

.header {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    border: none;
    outline: none;
    background: #ffffff;
    min-height: 53px;
}

    .header .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 2rem;
        max-width: 100%;
        height: auto;
        padding: 0px 0 0px;
        margin: 5px 0 5px 0;
    }
    .header .box_logo {
        display:flex;
        align-items:center;
        gap:20px
    }
    

    .header .navbar-cus {
        max-width: 100%;
        height: auto;
    }

.header .menu > .menu-item {
    position: relative;
    display: inline-block;
    margin: 0 0.75rem;
}

.header .menu > .menu-item > a {
    display: block;
    font-family: "Roboto Regular", sans-serif;
    font-size: 14px;
    line-height: inherit;
    padding: 1rem 0;
    border: none;
    outline: none;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
 
}
    



.header .menu > .menu-item:hover > a {
    color: #e91e63;
}



.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
    color: #e91e63;
}

    .header .menu > .menu-item > .sub-menu {
        margin-top: 4px;
        position: absolute;
        z-index: 1;
        left: -1rem;
        top: 100%;
        width: 13rem;
        height: auto;
        padding: 0.75rem 0;
        border: none;
        outline: none;
        opacity: 0;
        visibility: hidden;
        border-top: 3px solid #e91e63;
        background: #ffffff;
        -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        -webkit-transform: translateY(1rem);
        -ms-transform: translateY(1rem);
        transform: translateY(1rem);
        -webkit-transition: all 0.35s ease;
        -o-transition: all 0.35s ease;
        transition: all 0.35s ease;
    }
    .sub-menu1 {
        margin-top: 0px;
        position: absolute;
        z-index: 1;
        left: -1rem;
        top: 100%;
        width: 13rem;
        height: auto;
        padding: 0.75rem 0;
        border: none;
        outline: none;
        opacity: 0;
        visibility: hidden;
        border-top: 3px solid #e91e63;
        background: #ffffff;
        -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        -webkit-transform: translateY(1rem);
        -ms-transform: translateY(1rem);
        transform: translateY(1rem);
        -webkit-transition: all 0.35s ease;
        -o-transition: all 0.35s ease;
        transition: all 0.35s ease;
    }

.header .menu > .menu-item > .sub-menu > .menu-item {
    display: block;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a {
    display: block;
    font-family: "Roboto Regular", sans-serif;
    font-size: 14px;
    line-height: inherit;
    padding: 0.5rem 1.25rem;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .opened-menu {
    position: relative;
    display: none;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .opened-menu span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #121212;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.header .opened-menu span:nth-child(1) {
    top: 0;
}

.header .opened-menu span:nth-child(2), .header .opened-menu span:nth-child(3) {
    top: 0.5rem;
}

.header .opened-menu span:nth-child(4) {
    top: 1rem;
}

.header .closed-menu {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    outline: none;
    background: none;
}

.header .closed-menu img.closed-icon {
    display: block;
    width: 1rem;
    height: auto;
}

.header .overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.full-width {
    margin-left: -15px;
    margin-right: -15px;
}
.owl-banner .owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}
.owl-banner .owl-theme .owl-dots .owl-dot.active span,
.owl-banner .owl-theme .owl-dots .owl-dot:hover span {
    background: #c7383e;
}
.owl-banner .owl-theme .owl-dots {
    text-align: right;
    -webkit-tap-highlight-color: transparent;
    width: 1170px;
}
.owl-banner .owl-dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, -50%);
}
.owl-banner .owl-nav {
    display: none;
}
.owl-slider .owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}
.owl-slider .owl-stage {
    padding-top: 20px;
}
.owl-slider  .owl-item {
    margin-top: 0;
    transition: ease-in-out 0.5s;
}
.owl-slider  .owl-item:hover {
    margin-top: -20px;
    transition: ease-in-out 0.5s;
}
.owl-slider .owl-nav {
    display: block !important;
}
.owl-slider .owl-nav .owl-prev {
    background: #a9161c;
    padding: 5px;
}
.owl-slider-carousel .owl-stage-outer {
    margin-left: 50px;
}
/*::::: Content :::::*/
.see-more-wp {
    border: 1px solid #b42525;
    float: right;
    background: #b42525;
    border-radius: 4px;
}
    .see-more-wp:hover {
        border: 1px solid #b42525;
        background-color:#FFFFFF;
        color:#000000;
    }
    .hr-vinh {
        border-top: 1px solid #b42525;
    }
.card{
    border: none !important;
    border-radius: 0 !important;
}
    .card a {
        display: block;
    }
    .card .card-body .card-title {
        font-size: 16px;
        font-family: "Roboto Bold", sans-serif;
    }
.card-footer a{
    text-align:right;
}
.text-muted {
    color: unset !important;
}

a.ex1:hover {
    color: #cc4a52;
}
a:hover {
    color: #b42525;
}

.title-sm {
    font-family: "Roboto Bold", sans-serif;
    text-transform: uppercase;
}
    .title-sm h5 {
        font-size: 1.25rem;
    }
.title-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom:20px;
}
    .title-content .title-sm h5{
        margin-bottom:0;
    }
    .notif-st, .news-st {
        background-color: #f0f3f8;
        padding: 3em 0;
    }
.list-bg {
    background-color: #fff;
    /*border-radius: 10px;*/
    padding: 30px;
}
.content{
    margin-top:10px;
}
.list-style {
    padding-left: 0;
}
.list-style li {
    padding: 15px 0;
    border-bottom: solid 1px #f2f2f2;
    text-indent: 0;
}
    .list-style li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
.list-style li a {
}
.notif-list li:before {
    content: "\f111";
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 5px;
    color: #d5d5d5;
    margin-right: 10px;
}
.notif-list li:hover:before  {
    color: #c7383e;
}

.file-list li:before {
    content: "\f15c";
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    color: #d5d5d5;
    margin-right: 15px;
}
.file-list li:hover:before  {
    color: #c7383e;
}
.see-more {
    color: #fff;
    font-family: "Roboto Medium", sans-serif;
    padding:5px 10px;
    display:block;
}
    .see-more-wp a:hover {
        color: #000 !important;
    }
.bg-white-news {
    background-color: #fff;
    padding: 25px;
}
/*.other-news{
    padding:30px 0 0;
}*/
    .other-news .news-item {
        position: relative;
        border-bottom: 1px solid #ebebeb;
        margin-bottom: 18px;
        padding-bottom: 15px;
        display:flex;
    }
        .other-news .news-item .img-part {
            width: 110px;
            height: 95px;
            padding-right:15px
        }
    .other-news .news-item .img-part img {
        max-width: 100%;
        border-radius: 10px;
        width: 100%;
        height:100%;
        object-fit: cover;
    }
        .other-news .news-item .content-part{
            width: calc(100% - 110px);            
        }
        .other-news .news-item .content-part .title {
            font-family: "Roboto Bold", sans-serif;
            font-size: 14px;
        }
.small-12 {
    width: 100% !important;
}
.other-news .news-item .content-part .date {
    display: inline-block;
    margin-top: 0;
    font-family: "Roboto Light", sans-serif;
    font-size: 14px;
    color: #9f9f9f;
}

.other-news .news-item:last-child {
    border-bottom:none;
    padding-bottom:0;
    margin-bottom:0;
}
.owl-news .owl-news-carousel .owl-nav {
    display: none;
}
.owl-news {
    position: relative;
}
.owl-news .owl-news-carousel .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 30px;
}
.owl-news .owl-theme .owl-dots .owl-dot span {
    background: #fff;
    height: 8px;
    width: 8px;
}
.owl-news .owl-theme .owl-dots .owl-dot.active span {
    height: 10px;
    width: 10px;
}
.owl-news .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #c7383e;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    outline: none;
}
.owl-news-carousel .news-top-title {
    position: absolute;
    top: 40px;
    left: 40px;
    display: inline-block;
    padding: 8px 35px;
    background-color: #c7383e;
    color: #fff;
    font-family: "Roboto Medium", sans-serif;
    font-size: 16px;
    border-radius: 10px;
}
.owl-news-carousel .news-lg-title {
    position: absolute;
    bottom: 0;
    padding: 25px 30px 50px;
    left: 0;
    font-family: "Roboto Medium", sans-serif;
    font-size: 20px;
    color: #fff;
    height: auto;
    background-image: linear-gradient(rgba(255,255,255,0), rgba(0,0,0,1));
    border-radius: 0 0 10px 10px;
}
.owl-news-carousel .date {
    font-family: "Roboto Light", sans-serif;
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
}


.footer .footer_box {
    padding: 40px 0;
    background: url(../img/bg-footer.jpg) no-repeat left top;
    background-color: #ebebeb;
    background-size:cover;
}
    .footer .footer_box .row_footer {
        display: flex;
        justify-content: space-between;
    }
    .footer .footer_box .footer_about {
        padding-right: 10%;
    }
    .footer .footer_box .title_img {
        border-bottom: 1px solid #cccccc;
        padding-bottom: 10px;
        margin-bottom: 10px;
        height: 63px;
        display: flex;
        align-items: flex-end;
        color: #FFFFFF;
    }

            .footer .footer_box .title_img .title_dept {
                font-family: "Roboto Bold", sans-serif;
                font-size: 20px;
                margin-bottom: 0;
                color: #FFFFFF;
            }

            .footer .footer_box .title_img .title_footer {
                font-family: "Roboto Bold", sans-serif;
                font-size: 20px;
                margin-bottom: 0;
            }

    .footer .footer_box p {
        margin-bottom: 0.5rem;
        position: relative;
        color: #FFFFFF;
    }
        .footer .footer_box p a:hover{
            color:#FFFFFF;
            opacity:0.8;
        }

        .footer .footer_box .footer_menu ul.menu li {
            padding-bottom: 5px;
        }

        .footer .footer_box .footer_menu ul.menu li a {
            display: block;
        }

            .footer .footer_box .footer_menu ul.menu li a:hover {
                opacity: 0.8;
            }

    .footer .footer_box .footer_menu .address:before {
        content: "\f3c5";
        font-family: "Font Awesome 5 Free";
        font-size: 15px;
        position: absolute;
        top: 3px;
        font-weight: 900;
        display: inline-block;        
    }

    .footer .footer_box .footer_menu .phone:before {
        content: "\f879";
        font-family: "Font Awesome 5 Free";
        position: absolute;
        top: 3px;
        font-weight: 900;
    }

    .footer .footer_box .footer_menu .email:before {
        content: "\f0e0";
        font-family: "Font Awesome 5 Free";
        position: absolute;
        top: 3px;
        font-weight: 900;
    }

    .footer .footer_box .footer_menu span {
        margin-left: 25px;
        display: block;
    }

    .footer .footer_box .footer-social ul {
        padding: 0;
        margin: 0;
    }

        .footer .footer_box .footer-social ul li {
            display: inline-block;
            background-color: transparent;
            padding-right: 5px;
        }

            .footer .footer_box .footer-social ul li a {
                width: 40px;
                height: 40px;
                border: 1px solid #FFFFFF;
                border-radius: 5px;
                display: flex;
                color: #fff;
                justify-content: center;
                align-items: center;
                -webkit-transition: all .2s ease-out;
                -moz-transition: all .2s ease-out;
                -ms-transition: all .2s ease-out;
                -o-transition: all .2s ease-out;
                transition: all .2s ease-out;
                z-index: 8888;
                position: relative;
                opacity: 0.8;
            }

            .footer .footer_box .footer-social ul li:hover a {
                opacity: 1;
            }

            .footer .footer_box .footer-social ul li a i {
                font-size: 20px;
            }

.footer .footer_copyright {
    background-color: #d9d9d9;
    padding: 20px 0px;
    text-align: center;
}

    .footer .footer_copyright p {
        margin-bottom: 0;
    }

/*.footer {
    background: linear-gradient(to right,#ffe5f4, #ffe5e5, #ffe5f4);
    padding: 4em 0 2.5em 0;
}
.footer-logo {
    text-align: center;
}
    .footer-logo h5 {
        font-family: "Roboto Bold", sans-serif;
        margin-top: 0;
        color: #fff;
        text-transform: uppercase;
    }
.footer .info-wp {
    text-align: center;
    margin-top: 3em;
    color: #fff !important;
}
.footer .info-wp p:first-child {
    font-family: "Roboto Bold", sans-serif;
    font-size: 18px;
    text-align: center;
}
.footer .info-wp p:last-child {
    font-family: "Roboto Regular", sans-serif;
    font-size: 14px;
    color: #fff;
    text-align: center;
}
.location-ic:before {
    content: "";
    display: inline-block;
    background-image: url("../img/location-ic.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
}
.mail-ic:before {
    content: "";
    display: inline-block;
    background-image: url("../img/email-ic.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
}
.phone-ic:before {
    content: "";
    display: inline-block;
    background-image: url("../img/phone-ic.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
}
.menu-bottom-wp {
    text-align: center;
    margin-top: 5em;
}
.menu-bottom {
    display: inline-block;
    color: #fff;
}
.menu-bottom li {
    float: left;
}
.menu-bottom li a {
    display: block;
    text-decoration: none;
    padding: 10px 35px;
    font-size: 18px;
}
    .menu-bottom li a:hover {
        color: yellow;
    }
    .bottom-footer {
        background: #fff;
        padding: 20px;
    }
.text-bt-footer {

    color: #363636;
    margin-bottom: 0 !important;
}
.footer-info {
    color: #fff;
    font-size: 16px;
}*/
/* Page - css */

.breadcrumb-item.active {
    color: #fff;
}
.breadcrumb {
    background-color: transparent;
    padding-left: 0;
    padding-bottom: 0;
}
.breadcrumb-nav {
    display: inline-block;
    text-align: center;
}
.breadcrumb-page {
    text-align: center;
}
.no-padding {
    padding: 0 !important;
}
.no-mr {
    margin: 0 !important;
}
.date-ic:before {
    content: '\f073';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
    vertical-align: baseline;
}

img{
    max-width: 100%;
}
.content-banner {
    font-size: 20px;
    font-family: system-ui;
}
.intro {
    margin-bottom: 5px !important;
}

/*banner*/
.banner-session {
    position: relative;
}

    .banner-session .item {
        min-height: 500px;
        background-size: cover !important;
        background-position-x: center !important;
        background-position-y: top !important;
        padding: 0;
    }

    .banner-session .banner-content {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        width: 50%;
        min-height: 500px;
    }

    .banner-session .item .banner-content .slide-h2 {
        font-family: 'Roboto Bold';
        font-size: 38px;
        line-height: 1.2;
        padding-bottom: 15px;
        margin: 0;
    }

    .banner-session .item .banner-content .desc {
        font-size: 16px;
    }

    .banner-session .item .banner-content .read_more {
        background-color: #c7383e;
        border: 1px solid #c7383e;
        color:#FFFFFF;
        border-radius: 5px;
        padding: 14px 30px;
        font-size: 16px;
        display: inline-block;
    }

        .banner-session .item .banner-content .read_more::after {
            content: "\f054";
            display: inline-block;
            font-weight: 900;
            font-family: "Font Awesome 5 Free";
            padding-left: 8px;
            font-size: 12px;
        }

        .banner-session .item .banner-content .read_more:hover {
            background-color: transparent;
            color: #c7383e;
        }

.banner-carousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 43%;
}

.banner-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    display: block;
    z-index: 10000;
    border-radius: 0;
}

    .banner-carousel .owl-nav .owl-prev i {
        color: #b3b7be;
        padding-right: 4px;
        font-size: 1.6875rem;
    }

    .banner-carousel .owl-nav .owl-prev:focus {
        outline: 0;
    }

    .banner-carousel .owl-nav .owl-prev:hover {
        background: #000 !important;
    }

.banner-carousel .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    display: block;
    z-index: 10000;
    border-radius: 0;
}

    .banner-carousel .owl-nav .owl-next i {
        color: #b3b7be;
        padding-left: 4px;
        font-size: 1.6875rem;
    }

    .banner-carousel .owl-nav .owl-next:focus {
        outline: 0;
    }

    .banner-carousel .owl-nav .owl-next:hover {
        background: #000 !important;
    }

.owl-carousel:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

.owl-carousel:hover .owl-next {
    right: 0px;
    opacity: 1;
}

.dbcl {
    background-color: #cc4a52;
    padding:30px 0 40px
}
    .dbcl .dbcl-title{
        text-align:center;
        margin-bottom:20px;
        color:#FFFFFF;
    }
        .dbcl .dbcl-title a:hover{
            color:#FFFFFF;
            text-transform:uppercase;
        }
        .news-st .item {
            width: 100%;
            height: 540px;
            max-width: 100%;
        }
            .news-st .item .img_news {
                width:100%;
                height:540px;
            }
.news-st .item .img_item {
    border-radius: 10px;
    width:100%;
    height:100%;
    object-fit:cover;
}
.sitemap-mission {
    padding: 34px 0;
}

    .sitemap-mission .logo_dtu {
        width:auto;
    }

    .sitemap-mission .title_site {
        position: relative;
        display: block;
        width: 100%;
        margin-top: 25px;
        margin-bottom: 25px;
        font-size: 18px;
        padding-bottom: 4px;
    }

        .sitemap-mission .title_site:before {
            content: '';
            position: absolute;
            height: 1px;
            width: 100%;
            background: #333;
            left: 0;
            bottom: -5px;
        }

        .sitemap-mission .title_site:after {
            content: '';
            position: absolute;
            height: 1px;
            width: 70px;
            background: #a9161c;
            left: 0;
            bottom: -5px;
        }

    .sitemap-mission ul.char_site_map {
        padding-left: 0;
    }

        .sitemap-mission ul.char_site_map li {
            display: inline-block;
        }

            .sitemap-mission ul.char_site_map li a {
                text-decoration: none;
                outline: none;
                font-size: 18px;
                text-transform: uppercase;
            }


    .sitemap-mission .block_quote {
        position: relative;
        padding: 25px 30px;
        text-align: justify;
        font-size: 16px;
    }

        .sitemap-mission .block_quote p {
            padding: 0;
            margin: 0;
        }

        .sitemap-mission .block_quote:before {
            content: '\f10d';
            color: #999;
            font-weight: 900;
            font-family: "Font Awesome 5 Free";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 27px;
            width: 42px;
            height: 60px;
            display: block;
        }

        .sitemap-mission .block_quote:after {
            content: '\f10e';
            color: #999;
            font-weight: 900;
            font-family: "Font Awesome 5 Free";
            position: absolute;
            right: -15px;
            bottom: -25px;
            font-size: 27px;
            width: 42px;
            height: 60px;
            display: block;
        }
.header-top {
    background-color: #CD2A32;
}

    .header-top .box-header {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 45px;
    }
    .header-top .box-menu-fix {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

        .header-top .box-menu-fix ul {
            height: 45px;
            display: flex;
            align-items: center;
        }

            .header-top .box-menu-fix ul li {
                border-right: 0.5px solid rgb(255 255 255 / 30%);
                padding: 11px 12px;
            }

                .header-top .box-menu-fix ul li:last-child {
                    border-right: none;
                }

                .header-top .box-menu-fix ul li a {
                    font-size: 14px;
                    color: #FFFFFF;
                }
/*RESPONSIVE*/



/*----------------------------------BACK TO TOP---------------------------------*/
#back-top a {
    width: 45px;
    height: 45px;
    right: 20px;
    bottom: 20px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background-color: #5D5D5D;
    border-radius: 50%;
    z-index: 9990;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

    #back-top a i {
        font-size: 10px;
    }

    #back-top a:hover,
    #back-top a:focus {
        background-color: #b42525;
        opacity: 1;
        filter: alpha(opacity=1);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

/*--------------------------------END BACK TO TOP-------------------------------*/
.alert .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    padding: 0;
    background-color: transparent;
    border: 0;
}
.download_cv {
    border: 1px solid #b42525;
    background: #b42525;
    border-radius: 4px;
    color: #fff;
    font-family: "Roboto Medium", sans-serif;
    padding: 5px 10px;
    margin:20px 0;
    display:inline-block;
}

    .download_cv:hover {
        border: 1px solid #b42525;
        background-color: #FFFFFF;
        color: #000000;
    }