*,html{
    scroll-behavior: smooth;
}
*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root{
    scrollbar-color: rgb(210,210,210) rgb(46,54,69) !important;
    scrollbar-width: thin !important;
}
::-webkit-scrollbar {
    height: 12px;
    width: 8px;
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: gray;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}
::-webkit-scrollbar-corner {
    background: #000;
}

.nodot {
    list-style:none;
}

#myname {
    font-size:2em;
    font-family: 'Ubuntu', sans-serif;
    font-weight:700;
    color:white;
}

/*DEFAULT*/
body{
    margin:0;
    font-family: 'Exo 2', sans-serif;
}
a{
    text-decoration:none;
}
ul{
    padding-left: 4em;

    left:-40px;
    width:100%;
}
i{
    color:#3399ff;
    margin:0 5px;
}
li{
    margin:20px 0;
    width:100%;
    line-height:1.4em;
}
a,li,button{
    transition:0.5s;
}
a{
    cursor:pointer;
}
b,strong{
    font-weight:700;
}
p,li{
    line-height:1.4em;
    letter-spacing:0.08em;
}
em{
    color:gray;
    font-weight:700;
    font-size:0.8em;
    display:block;
    font-style:normal;
}
label{
    color:#3399ff;
    font-weight:700;
    font-size:0.8em;
    display:block;
    margin:10px 0;
}
img{
    width:90%;
    height:90%;
    margin:auto;
}
.title{
    font-size:2em;
    font-family: 'Ubuntu', sans-serif;
    font-weight:700;
    color:#1b2631;

}
.sub-title{
    font-size:1em;
    font-weight:400;
    color:#3399ff;;
    line-height:1em;
}

/*CONTAINER*/
.container{
    width:100%;
    position:relative;
}

.container .section_left{
    width:25%;
    padding:20px;
    background: #1b2631 ;
    color:#fff;
    height:3580px;
}

.container .section_right{
    padding:30px;
    width:75%;
    float:right;
    position:absolute;
    top:0;
    right:0;
}

@media (max-width:920px){
    .container .section_left{
        width:100%;
        display:block;
    }
    .container .section_right{
        width:100%;
        position:static;
        display:block;
    }
}