body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}

::-webkit-scrollbar {
   width:17px;
   height:17px;
}
::-webkit-scrollbar {
   background-color: #f4eee0; /* background color */
}
::-webkit-scrollbar-track {
   border:7.5px #f4eee0; /* background color */
   background-color: #f4eee0; /* light border color */
}
::-webkit-scrollbar-thumb {
   border: 7.5px solid #f4eee0; /* background color */
   background-color: black; /* dark border color */
   min-height:24px;
   min-width:24px;
}

::selection {
  background: #ffcccc;
}


* {
  box-sizing: border-box;
}

@font-face {
	        font-family: "OggItalic";
	        src: url("https://dl.dropboxusercontent.com/s/vx5oofeav7665yn/OGG-ITALIC.OTF")
	    }
	    
@font-face {
	        font-family: "Ogg";
	        src: url("https://dl.dropboxusercontent.com/s/gwokapzfhi6pq64/OGG-ROMAN.OTF?dl=0")
	    }

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

.col-0 {width: 3%;margin-top:20px;}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

.col-108 {width: 20%;}
.col-1o2 {height: 50%;}


#header a {
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 500ms ease;
    color: black;
}


.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
    transition-duration: 0.5s;
    }
    
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    }

#header {
    padding-top: 15px;
    height: 100px;
    font-size: 15px;
    font-family: 'Karla', sans-serif;
    text-transform: uppercase;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    cursor: none;
}

#heder {
    width: 100%;
    height: 100px;
    position:fixed;
    top: 0;
    transition: 2s ease;
    -webkit-transition-duration: 2s;
    -moz-transition-duration: 2s;
    -o-transition-duration: 2s;
    transition-duration: 2s;
    transition-timing-function: ease;
    z-index: 900;
}

#header .col-1 {
    padding-top: 25px;
}

#header img {
    width: 150px;
    margin-left: 35px;
}

#header a:hover {
    letter-spacing: 10;
}

button {
    background-color: black;
    border: none;
    color: #fff4de;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-family: 'OggItalic';
    position: relative;
    cursor: url("https://img.icons8.com/small/16/000000/hand-cursor.png"), default;
}

button:hover {
    color: black;
}
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #efd3c5;
    color: black;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -moz-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}
.typ {
  border-right: solid 3px rgba(0,255,0,.75);
  white-space: nowrap;
  overflow: hidden;
    text-align: center;
  color: black;
}


.typ {
  animation: animated-text 4s steps(95,end) 1s 1 normal both,
             animated-cursor 600ms steps(29,end) infinite;
}

.sparkle {
	        z-index: 999;
	        opacity: 0;
    position: absolute;
	        margin-top: -100px;
	        margin-left: 0px;
	        -webkit-transition-duration: 0.5s;
	        -moz-transition-duration: 0.5s;
	        -o-transition-duration: 0.5s;
	        -ms-transition-duration: 0.5s;
	        transition-duration: 0.5s;
	    }
	    
	    .sparkle:hover {
	        opacity: 1;
	        -webkit-transition: all .6s;
	        -moz-transition: all .6s;
	        -o-transition: all .6s;
	        -ms-transition: all .6s;
	        transition: all .6s;
	    }
.col-1 a {
	        position: relative;
	        display: block;
	        cursor: pointer;
	        text-align: center;
	    }
	    
	    .col-1 a:before, .col-1 a:after {
	        content: '';
	        position: absolute;
	        width: 0%;
	        height: 0.5px;
	        top: 50%;
	        margin-top: -0.5px;
	        background: #000;
	        
	    }
	    
	    .col-1 a:before {
	        left: 2.5px;
	        
	    }
	    
	    .col-1 a:after {
	        right: 5px;
	        background: #000;
	        transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
	        
	    }
	    .col-1 a:hover:before {
	        background: #000;
	        width: 70%;
	        transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	        
	    }
	    .col-1 a:hover:after {
	        background: transparent;
	        width: 70%;
	        transition: 0s;
	        
	    }

.footer {
    background-color: #efd3c5;
    width: 100%;
    height: 150px;
    padding: 30px 0;
}

.be {
    font-family: Arial !important;
    font-weight: bold;
    font-size: 20;
}

.hh {
    font-family: 'Ogg';
    color: black;
    font-size: 17px;
}
.col-0 ion-icon {
    transition: transform 500ms ease;
}
.col-0 ion-icon:hover {
    transform: translateY(-5px);
}