html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    font-family: 'montserrat';
    margin: 0;
    overflow: scroll;
    color: black;
    /* background-image: url('bg-blur.jpg');
    background-repeat: no-repeat;
    background-size: fill;
    overflow: hidden; */
}

h3 {
    font-size: 15px;
    margin: 10px;
    padding: 0;
}

.txt-orange {
    color: #eb7608;
}

@keyframes blink-caret {
    from, to {color: transparent;}
    50% {color: #eb7608;}
}

#blinker {
    font-weight: 600;
    font-size: 40px;
    color: #eb7608;
    animation: blink-caret .75s step-end infinite;
}

.menu-container {
    height: 200px;
    width: 200px;
    position: relative;
    display: block;
    float: left;
    opacity: 0;
    background-color: transparent;
}

.titlefade {
    opacity: 0;
}

.mb20 {
    margin-bottom: 40px;
}

.image {
    display: block;
    width: auto;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .6s ease;
    background-color: #23335c;
}

.menu-container:hover .overlay {
    opacity: .8;
    cursor: pointer;
}

.footer {
    color: #5a5a5a;
    letter-spacing: 5px;
    font-size: 10px;
    text-align: center;
}

.txt {
    color: #ffffff;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.unselect {
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.row-centered {
    text-align: center;
}

.col-centered {
    display: inline-block;
    float: none;
    text-align: left;
    margin-right: -4px;
    text-align: center;
}
.custom_paddings {
    padding-top: 30px;
}

@media (min-width: 461px){
    body {
        padding-top: 80px;
    }
}

@media (max-width: 460px)
{
    .menu-container {
        height: 150px;
        width: 150px;
    }
    h3 {
        font-size: 12px;
    }
    h1 {
        font-size: 30px;
    }
    body {
        padding-top: 20px;
    }
}
@media (max-width: 320px)
{
    .menu-container {
        height: 100px;
        width: 100px;
    }
    h1 {
        font-size: 18px;
    }
    .txt {
        font-size: 18px;
    }
}


    
   