/* BASE STYLES */
html {
   font-size: 14px;
}

body {
    color: #E8E8E8;
    font-family: 'Red Hat Display', sans-serif;
    letter-spacing: 1px;
}

h1, h2, h3, h4, h5 {
    line-height: 1.2;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

a, a:hover, a:visited, a:active {
    color: unset;
    text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* BOOTSTRAP OVERRIDES */
.navbar {
    backdrop-filter: blur(3px);
    background-color: #FFF1 !important;
}

.navbar-brand img {
    width: 100%;
    max-width: 300px;
}

.navbar-toggler svg {
    width: 40px;
}

.navbar-collapse {
    border: 10px solid #1954ae;
    box-shadow: 2px 2px 10px #000a;
    margin: 20px;
    width: calc(100vw - 40px);
    height: calc(100vh - 40px);
    align-items: center;
    justify-content: center;
}

.navbar a.nav-link, .navbar a.nav-link:visited, .navbar a.nav-link:active {
    position: relative;
    color: #333;
    letter-spacing: 1px;
    transition: all .4s ease;
}

.navbar a.nav-link.active {
    color: #1954ae;
    letter-spacing: 2px;
    font-weight: bold;
}

.navbar a.nav-link:hover {
    color: #1954ae;
    letter-spacing: 2px;
}

.navbar a.nav-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0%;
    max-width: 300px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 2px solid #1954aeAA;
    transition: all .4s ease;
}

.navbar a.nav-link:hover:after {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .navbar-brand img {
        max-width: 250px;
    }

    .navbar-toggler svg {
        width: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .navbar-brand img {
        max-width: 200px;
    }

    .navbar-toggler svg {
        width: 30px;
    }
}

/* SECTIONS - HERO */
#hero {
    background-image: linear-gradient(to top, #1954aeAA, #FFF5), url('../img/everest.jpg');
    /* background-color: #00F; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.hero__floating-text {
    position: absolute;
    bottom: 5%;
    /* left: 16.67%; */
    left: 8.33%;
    max-width: 400px;
    z-index: 4;
    color: #FFFFFF;
    text-shadow: 1px 1px 5px #000;
}

@media only screen and (max-width: 767px) {
    .hero__floating-text {
        position: absolute;
        bottom: 20%;
        left: 8.33%;
        max-width: 400px;
    }

    .services__responsive-border {
        border-right: none;
        border-bottom: 0.5px solid #FFF;
    }
}

@media only screen and (max-width: 480px) {
    .hero__floating-text {
        position: absolute;
        bottom: 20%;
        left: 8.33%;
        right: 8.33%;
        max-width: unset;
    }
}

/* SECTIONS - SERVICES */
#services {
    background-color: #1954ae;
}

.services__responsive-border {
    border-right: 0.5px solid #FFF;
}

.services__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #FFF;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.services__icon svg {
    max-width: 60%;
    max-height: 40%;
    fill: #1954ae;
}

@media only screen and (max-width: 767px) {
    .services__responsive-border {
        border-right: none;
        border-bottom: 0.5px solid #FFF;
        /* border-bottom: 0.5px solid #1954ae; */
    }
}

/* SECTIONS - FEATURED */
#featured {
    color: #1954ae;
    background-color: #E8E8E8;
}

.featured__image {
    padding: 30px 0px;
}

.featured__image img {
    width: 100%;
    /* border: 10px solid #E8E8E8; */
    /* box-shadow: 0px 0px 0px 10px #1954ae; */
}

/* SECTIONS - QUOTE */
#quote {
    background-color: #1954ae;
}

.quote__text-wrapper {
    letter-spacing: 1.5px;
    font-weight: 200;
    color: #BDBDBD;
    position: relative;
}
.quote__text-wrapper:after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    border-bottom: 0.5px solid #FFF;
}

/* FOOTER */
footer {
    color: #A5A5A5;
}

.footer__logo {
    color: #dbdbdb;
}

.footer__logo img {
    width: 100%;
    max-width: 250px;
}