* {
    padding: 0;
    margin: 0;
    outline: none;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #0d347b;
}

:root {
    --mainColor: #f45a1f;
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/bg.jpg);
    min-height: 100vh;
}


img{
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    max-width: 100%;
}

.content {
    width: 82%;
    margin: auto;
}

.flex {
    display: flex;
}

.flex1 {
    flex: 1;
}

.flexColumn {
    flex-direction: column;
}

.upper {
    text-transform: uppercase;
}

.verdana {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.grid {
    display: grid;
}

.grid3 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    grid-gap: 20px;
}

.aCenter {
    align-items: center;
}

.jCenter {
    justify-content: center;
}

.spaceBetween {
    justify-content: space-between;
}

.mAuto {
    margin: auto;
    left: 0;
    right: 0;
}

.pointer {
    cursor: pointer;
}

.pAbsolute {
    position: absolute;
}

#bars, #closeMenu {
    width: 40px;
}

.mobile {
    display: none;
}

header {
    padding: 25px 0;
    z-index: 11;
    position: sticky;
    top: 0;
    background-image: url(../img/fade.png);
    background-repeat: no-repeat;
    background-size: 100% 110%;
}

header.menuOpened {
    padding-bottom: 0;
    margin-bottom: 30px;
}

.owl-dots {
    position: absolute !important;
    left: 13%;
    bottom: 100px;
    background-color: #0d347b;
    padding: 5px 15px;
    display: flex;
    border-radius: 20px;
}

.owl-dot span {
    background-color: #0d347b !important;
    border: 2px solid #fff;
}

.owl-dot.active span {
    background-color: #fff !important;
}

.tCenter {
    text-align: center;
}

.jEnd {
    justify-content: end;
}


.slide {
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
}

#content {
    position: relative;
    font-size: 1.5rem;
    margin-top: 5px;
}

#content .content {
    width: 67%;
}

#content #profile {
    width: 55%;
}

.title {
    color: #0d347b;
    font-size: 2.2rem;
}

h4 {
    font-weight: 500;
    color: #0d347b;
}


footer {
    bottom: 40px;
    
    z-index: 2;
    width: 100%;
    text-align: right;
    color: #959595;
    font-weight: 600;
    font-size: .8rem;
    margin-top: 30px;
}


#menu {
    background-color: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    position: fixed;
    z-index: 10;
    top: 0;
    padding-top: 100px;
    text-align: right;
}

#menu .content > a {
    font-size: 2rem;
    display: block;
    width: max-content;
    margin-left: auto;
    font-weight: 600;
    color: #a3a3a3;
}

#menu .content .artista {
    color: #0d347b;
}

#social_media {
    margin-top: 10px;
    justify-content: end;
}

#social_media a {
    display: flex;
}

#social_media img {
    margin-left: 15px;
    width: 25px;
}

#social_media a:first-child img {
    margin-left: 0;
}

@media(max-width: 919px) and (orientation: portrait) {
    body{
        padding-bottom: 40px;
    }

    ::-webkit-scrollbar {
        width: 1px;
    }
    
    ::-webkit-scrollbar-thumb {
        background-color: rgba(0,0,0,0);
    }

    .content {
        width: 88%;
    }

    .slide {
        height: 70vh;
        min-height: 300px;
    }

    .owl-dots {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    #content .content, #content #profile {
        width: 88%;
    }

    .flex1 {
        flex: initial;
    }

    .desktop {
        display: none;
    }

    .desktop2 {
        visibility: hidden;
    }

    .mobile {
        display: block;
    }

    #logo {
        width: 50%;
    }

   
    #menu .content > div:first-child {
        display: flex;
    }

    #menu .content {
        max-width: 88%;
    }

    #bars, #closeMenu {
        width: 30px;
    }

    #social_media {
        justify-content: initial;
    }

    footer {
        text-align: center;
    }
}

@media(max-width: 768px) and (orientation: portrait) {
    #menu .content > a {
        font-size: 1.8rem;
    }

    #profile {
        flex-direction: column;
    }

}

@media(orientation: landscape) and (min-width: 768px) and (max-width: 1200px) { 
    #logo {
        width: 180px;
    }

    #bars, #closeMenu {
        width: 30px;
    }
}

@media(orientation: landscape) and (min-width: 768px) and (max-width: 1400px) { 
    #content {
        font-size: 1.3rem;
    }
}

@media(orientation: landscape) and (min-width: 768px) {
    #profile > div:first-child {
        margin-right: 30px;
        width: 50%;
        text-align: right;
    }

    #profile > div:last-child {
        margin-right: 30px;
        width: 50%;
    }
}