@import url('https://fonts.googleapis.com/css2?family=Cabin&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lobster&family=Titillium+Web&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

html,body{
    font-family:Ubuntu, Arial;  
    width: 100%;
    height: 100%;
}

#header {
    position: fixed;
    top:0;
    left: 0;
    bottom: 0;
    background:#022164;
    overflow-y: auto;
    width:280px;
    transition: all ease-in-out 0.5s;
    padding: 0 10px;
    z-index: 9000;

}

#header .profile h1 {
    font-size:24px;
    margin:0;
    padding:0px;
    font-weight:bold;
    text-align: center;
    color:rgb(28, 88, 219);

}
#header .profile img {
    margin: 10px auto;
    display: block;
    width: 120px;
    border: 8px solid #000000;
    border-radius: 50%;
}

#header .profile .social-links a:hover {
    font-size: 1rem; 
    background: #000000;
    color: #fff;
    padding: 0.6rem;
    margin-right: 1rem;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.col-md-6 {
    flex: 1 1 50%;
    box-sizing: border-box;
}
@media (max-width: 2560px) {
    .col-md-6 {
        flex: 1 1 100%;
    }
}

.nav-menu{
    padding: 1.5rem; 
}


.nav-menu a,
.nav-menu a:focus {
    display: flex;
    align-items: center;
    color:whitesmoke;
    transition:0.3s;
    font-size: 15px;
}

.nav-menu a i,
.nav-menu .active,
.nav-menu .active:focus i,
.nav-menu li:hover > a i {
    color: #149ddddd;
}

#main{
    margin-left: 300px;
}

section#inicio {
    background-image: url(../static/img/foto_bruno.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100vh;
}

section#inicio h2 {
    font-size: 6rem;
    margin-left: 8rem;
}

section#inicio span#subtitle {
    margin-left: 1rem;
    font-size: 1.5rem;
}

.container.pb5,
.container.pb5-5.pt-5,
.container.mb5 {
    float: inline-start;
}

.text-shadow {
    text-shadow:4px 4px 10px #000000;
}

section#inicio div#arraste {
    width: 10rem;
}

section#inicio div#arraste a {
    text-decoration: none;
    color: #ffffff;
}

i.menu-mobile {
    position:fixed;
    color: #ffffff;
    background-color: rgba(1, 36, 133, 0.911);
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    border-radius: 4rem;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;

}

.menu-nav-active {
    overflow: hidden;
}

.menu-nav-active #header {
    left: 0;
}
@media (max-width: 1024px) {

    #header {
        left: -300px;
    }
    i.menu-mobile {
        display: flex;
    }
    section#inicio h2 {
        font-size: 3.5rem; 
    }
    section#inicio span#subtitle {
        margin-right:0;
        font-size: 1rem;
    }
    #main{
        margin-left: 0;
    }
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    width: 12px;
    box-shadow: 4rem #000;
    background-color: #fff;
}

*::-webkit-scrollbar-thumb {
    background-color: #021464;
    border-radius: 50%;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-6 {
    flex: 1 1 50%;
    box-sizing: border-box;
}
@media (max-width: 2560px) {
    .col-md-6 {
        flex: 1 1 100%;
    }
}

.section-bg {
    background-color: rgba(57, 159, 255, 0.938);
}

.cv .cv-title {
    font-weight: 700px;
    margin-top: 20px;
    border-left: 2px solid rgb(0, 39, 124);
    position: relative;
}

.cv .cv-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid rgb(0, 36, 240);
    position: relative;
}

.cv .cv-item h4 {
    line-height: 18px;
    font-weight:600 ;
    text-transform: uppercase;
    font-family: "Ubuntu", sans-serif;
    color: #000000;
    margin-bottom: 10px;
}

.cv .cv-item h5 {
    background:rgb(0, 39, 167);
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.cv .cv-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -9px;
    height: 16px;
    width: 16px;
    border: 2px solid rgb(0, 44, 240);
    background: rgb(0, 27, 150);
    border-radius: 50%;
}

.carousel-control-prev {
    margin-left: -8rem;
}

.carousel-control-next {
    margin-right: -8rem;
}

.carousel-indicators {
    margin-bottom: -35px;
}

[data-anime = "down"] {
    transform: translate3d(0, -100px, 0);
}

[data-anime = "up"] {
    transform: translate3d(0, 100%, 0);
}

[data-anime = "left"] {
    transform: translate3d(100%, 0, 0);
}

[data-anime = "right"] {
    transform: translate3d(50px, 0, 0);
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0,0,0);
}


@media (max-width: 1860px) {
    
    .carousel-control-prev{
        margin-left: 0;
    }

    .carousel-control-next{
        margin-right: 0;
    }

    [data-anime="right"] {
        transform: translate3d(100%,0,0);
    }
}

#footer {
    padding: 13px;
    color: #fff;
    font-size: 14px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 280px;
    z-index: 9999;
    background-color: #021114;
    transition: .3s;
}

@media (max-width: 1012px) {
    #footer {
        position: static;
        width: auto;
        padding: 20px, 15px;
    }
}


