@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,900&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Raleway:400,800');
body,
html {
    font-family: 'Source Sans Pro', sans-serif;
    color: black;
    background: #FFFFFF;
    background: -moz-linear-gradient(top, #FFFFFF 0%, #ededed 48%, #BBB 100%);
    background: -webkit-linear-gradient(top, #FFFFFF 0%, #ededed 48%, #BBB 100%);
    background: linear-gradient(to bottom, #FFFFFF 0%, #ededed 48%, #BBB 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#BBB', GradientType=0);
    overflow: hidden !important;
}


/* @media (orientation: portrait) {
    .orientation {
        opacity: 1 !important;
        display: table !important;
    }
}

.orientation {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: white;
    opacity: 0;
    display: none;
    transition: opacity 100ms linear;
}

.orientation>.icon {
    display: table-cell;
    vertical-align: middle;
}

.orientation>.icon>img {
    animation: rotation 2s infinite;
    margin: 0 auto 2rem auto;
    display: block;
} */

.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: white;
    display: table;
}

.loader>.icon {
    display: table-cell;
    vertical-align: middle;
}

.loader>.icon>img {
    margin: 0 auto;
    display: block;
}

.arrow {
    position: fixed;
    bottom: 1rem;
    -webkit-animation: arrow 1.75s infinite;
    animation: arrow 1.75s infinite;
    z-index: 999;
    cursor: pointer;
    width: 100%;
    height: 14px;
}

.arrow>.arrow-img {
    width: 26px;
    height: 14px;
    background-image: url(../img/arrow-down.png);
    background-position: center;
    background-size: cover;
    margin: 0 auto;
}

@keyframes arrow {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(0px, -20px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes rotation {
    0% {
        transform: rotate(45deg)
    }
    50% {
        transform: rotate(-45deg)
    }
    100% {
        transform: rotate(-45deg)
    }
}

h1 {
    font-weight: 900;
    font-size: 7em;
    letter-spacing: -3px;
}

h1.shadow {
    -webkit-text-shadow: 0 .3rem .9rem rgba(0, 0, 0, .4);
    text-shadow: 0 0.3rem 0.9rem rgba(0, 0, 0, .4);
}

p,
input,
textarea {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    text-align: center;
}

#aboutSection h1 {
    margin-bottom: 2rem;
}

#aboutSection p {
    font-size: 1.5rem;
}

p.big {
    font-size: 3rem;
}

p.author {
    position: absolute;
    bottom: 25%;
    margin: 0 auto;
    width: 100%;
}

.text-black {
    color: black;
}

.section,
.slide {
    /* display: table;
    width: 100%; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fixed {
    position: absolute;
    z-index: 999999;
    left: 0;
    top: 0;
}

.container,
.container-fluid {
    /* display: table-cell;
    vertical-align: middle; */
    text-align: center;
}

.gradient-grey {
    /*  background: #dddddd;
    background: -moz-linear-gradient(top, #dddddd 0%, #f2f2f2 100%);
    background: -webkit-linear-gradient(top, #dddddd 0%, #f2f2f2 100%);
    background: linear-gradient(to bottom, #dddddd 0%, #f2f2f2 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#f2f2f2', GradientType=0); */
}

h1>small {
    font-size: 65% !important;
}

.nav-item,
.nav-item>a {
    transition: all .25s ease;
}

.nav-item.active {
    font-weight: 600;
}

.navbar {
    top: 1em;
}

@media (max-width: 1023px) {
    .navbar {
        display: none;
    }
}

.aboutMe {
    border-radius: 50%;
    -webkit-box-shadow: 0 .3rem .9rem rgba(0, 0, 0, .4);
    box-shadow: 0 0.3rem 0.9rem rgba(0, 0, 0, .4);
}

.fp-slidesNav {
    text-align: center;
    width: 100%;
}

#homeSection,
#mottoSectionn {
    color: white;
}

.fp-controlArrow {
    width: 30px !important;
    height: 55px;
    border: 0px;
}

.fp-controlArrow.fp-next {
    background-image: url(../img/arrow-right.png);
    background-position: center;
}

.fp-controlArrow.fp-prev {
    background-image: url(../img/arrow-left.png);
    background-position: center;
}

.socialIcons a {
    color: black;
    transition: color .5s ease;
}

.socialIcons a:hover {
    color: white;
}