*,
input,
button,
textarea,
input:focus,
button:focus,
textarea:focus{
    outline: none !important;
    box-shadow: none !important;
    transition: ease .3s !important;
}

h1,h2,h3,h4,h5,h6{
    position: relative !important;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

*{
    font-family: 'Ubuntu', sans-serif;
}

*::selection,
*:required,
*:focus{
    outline: none !important;
    box-shadow: none !important;
    transition: ease .3s !important;
}

/** ----------------------------------------------------------------- */
/** FONTSIZE */
/** ----------------------------------------------------------------- */

.fs-12{ font-size: 12px !important; }
.fs-14{ font-size: 14px !important; }
.fs-16{ font-size: 16px !important; }
.fs-18{ font-size: 18px !important; }
.fs-20{ font-size: 20px !important; }
.fs-22{ font-size: 22px !important; }
.fs-50{ font-size: 50px !important; }

/** ----------------------------------------------------------------- */
/** COLORS */
/** ----------------------------------------------------------------- */

.col-101{ color: #6b6b6b !important; }
.col-102{ color: #1D1D1B !important; }
.col-103{ color: #212529 !important; }

/** ----------------------------------------------------------------- */
/** BORDER */
/** ----------------------------------------------------------------- */

.bor-101{ border: 8px solid transparent !important; }

/** ----------------------------------------------------------------- */
/** IMG AVATAR */
/** ----------------------------------------------------------------- */

.c-avatar{
    position: relative !important;
    border-radius: 50% !important;
    background: #FFFFFF !important;
    width: 64px;
    height: 64px;
}

.c-avatar picture{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 100%;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0,0,0,.25);
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.25);
    background: #F5F5F5;
}

.c-avatar picture img{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin: 0;
}

/** ----------------------------------------------------------------- */
/** IMG MENU */
/** ----------------------------------------------------------------- */

.menu-pic img{
    position: relative;
    width: 100%;
    height: auto;
}

/** ----------------------------------------------------------------- */
/** BUTTONS */
/** ----------------------------------------------------------------- */

.btn-social-100{
    position: relative;
    border-radius: 50%;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15) !important;
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15) !important;
    -webkit-transition: all .2s ease-in-out !important;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    cursor: pointer !important;
    width: 45px;
    height: 45px;
    color: #212529 !important;
    line-height: 1.9;
}

/** ----------------------------------------------------------------- */
/** AD's */
/** ----------------------------------------------------------------- */

.c-ad{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    top: 0;
    left: 0;
}


/** ----------------------------------------------------------------- */
/** FOOTER */
/** ----------------------------------------------------------------- */

#c-footer{
    position: relative; 
    width: 100%; 
    height: auto;
}

/** ----------------------------------------------------------------- */
/** NAVBAR */
/** ----------------------------------------------------------------- */

#nav-container {
    position: fixed;
    z-index: 1;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
}

#nav-toggle {
    display: block;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transform: rotate(0deg);
    border-radius: 50% !important;
    -webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15) !important;
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18), 0 4px 15px 0 rgba(0,0,0,0.15) !important;
    -webkit-transition: all .2s ease-in-out !important;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    text-align: center;
}

#nav-toggle span {
    background-color: #212529;
    width: 20px;
    height: 4px;
    border-radius: 2px;
    display: block;
    position: absolute;
    transition: 0.5s ease-in-out;
    left: 11.5px;
    content: "";
}

#nav-toggle span:nth-child(1) {
    top: 13.5px;
    transform-origin: left center;
}

#nav-toggle span:nth-child(2) {
    top: 20.5px;
    transform-origin: left center;
}

#nav-toggle span:nth-child(3) {
    top: 27.5px;
    transform-origin: left center;
}

#nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 13px;
    left: 15px;
}

#nav-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

#nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 27px;
    left: 15px;
}

#nav-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: -1;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    transition: 1s;
    transform: scale3d(0, 0, 0);
}

#nav-overlay.open {
    transform: scale3d(1, 1, 1);
}

#nav-fullscreen {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    transition: ease-in-out 0.25s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
}

#nav-fullscreen ul {
    padding: 0;
    list-style: none;
}

#nav-fullscreen ul li{
    padding: 1rem 0;
}

#nav-fullscreen ul a{
    text-decoration: none;
    color: #212529;
    font-size: 18px;
}

#nav-fullscreen.open {
    visibility: visible;
    opacity: 1;
    transition: ease-in-out 0.5s;
    transition-delay: 0.25s;
}

#nav-overlay {
    background: #f5f5f5;
}

#nav-fullscreen {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-body{
    width: 100%;
    height: 100vh;
}