html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

main {
    display: block;
}


/* custom scrollbar */
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #a8bbbf;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf9d;
}


::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

.site-main {
    overflow: hidden;
}

body {
    font-family: sans-serif;
    color: #434C60;
    font-size: 16px;
    font-weight: 300;
}

html {
    box-sizing: border-box;
}

*,
::after,
::before {
    box-sizing: inherit;
}

svg {
    display: inline-block;
    vertical-align: middle;
}

.preloader {
    position: fixed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999999999;
    background-color: #192444;
}

.preloader svg {
    margin-bottom: 30px;
}

.title{
    display: block;
    padding-bottom: 50px
}

.title img{
    height: 50px;
    margin-left: 50px;
}

.tags{
	display: none;
}

.single-item{
	width: 120px;
	height: 120px;
	justify-content:center;
	margin: 20px;
	border-radius: 10px;
	text-align: justify;
	position: relative;
    opacity: 0.4;
}

.single-item:hover{
    background-color: #10161d;
    opacity: 1.0;
}

.icon{
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	text-align: center;
}

.icon img{
	height: 40px important!;
}

.apptext{
	font-size: 10px;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	bottom: 0px;
	text-align: center;
	color: #fff;
}

@-webkit-keyframes fillbar {
    0% {
        -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        transform: scale(0, 1);
    }
    100% {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes fillbar {
    0% {
        -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        transform: scale(0, 1);
    }
    100% {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.loading-bar {
    width: 90%;
    max-width: 300px;
    background-color: rgba(0, 0, 0, .8);
}

.loading-bar:before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #9D968C;
    -webkit-animation: fillbar 2000ms;
    animation: fillbar 900ms;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.title_logo{
    height: 50px;
}

.small_logo {
    width: 45px;
}

.logo-elaborate{
    height: 400px; 
    margin-top: 35vh
}



@media screen and (max-width: 725px) {


    .logo-elaborate{
        height: 250px; 
        margin-top: 27vh
    }

    .portfolio-title{
        margin-top: 10vh;
        height: 45px;
    }
    
}


@media screen and (max-width: 300px) {

    .single-item{
        width: 100px;
        height: 100px;
        justify-content:center;
        margin: 20px;
        border-radius: 5px;
        text-align: justify;
        position: relative;
        opacity: 0.4;
    }

    .logo-elaborate{
        height: 250px; 
        margin-top: 27vh
    }

    .portfolio-title{
        margin-top: 10vh;
        height: 45px;
    }
    
}