﻿.container-fluid {
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-family: var(--navbar-fomt-family);
    background-color: var(--background-color);
    font-weight: 400;
    width: 100%;
    text-align: center;
    display: flex;
    align-content: center;
    align-items: center;
}

.intro,
#about,
#social,
#contact,
.intro-section,
.about-section,
.social-section,
.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row;
    width: 100%;
}

.intro {
    width: auto;
    min-height: 100%;
    background: url(../img/intro-bg.jpg) no-repeat bottom center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.intro-section,
.about-section,
.social-section,
.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    flex-flow: column wrap;
    min-height: 70rem;
    text-align: center;
}

    .social-section li {
        margin-top: 1rem;
    }

.intro-section {
    flex-flow: column wrap;
}

.social-section {
    width: 100%;
    background: url(../img/downloads-bg.jpg) no-repeat bottom center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.contact-section p {
    text-align: center;
}

.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn-default {
    border: 1px solid #42dca3;
    color: #42dca3;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #42dca3;
    outline: 0;
    color: #000;
    background-color: #42dca3;
}

ul.banner-social-buttons {
    margin-top: 0;
}

::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255, 255, 255, 0.2);
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255, 255, 255, 0.2);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 100% !important;
    font-size: 40px;
    color: #fff !important;
    background: 0 0;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

    .btn-circle:hover,
    .btn-circle:focus {
        outline: 0;
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }

    .btn-circle i.animated {
        -webkit-transition-property: -webkit-transform;
        -webkit-transition-duration: 1s;
        -moz-transition-property: -moz-transform;
        -moz-transition-duration: 1s;
    }

    .btn-circle:hover i.animated {
        -webkit-animation-name: pulse;
        -moz-animation-name: pulse;
        -webkit-animation-duration: 1.5s;
        -moz-animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        -moz-animation-timing-function: linear;
    }

.navbar-custom a {
    color: #fff;
    font-weight: bold !important;
    font-family: var(--navbar-font-family);
}

.navbar-custom .nav li a {
    line-height: 3rem;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

    .navbar-custom .nav li a:hover {
        outline: 0;
        color: var(--link-highlight-color);
        background-color: transparent;
    }

    .navbar-custom .nav li a:focus,
    .navbar-custom .nav li a:active {
        outline: 0;
        background-color: transparent;
    }

.navbar-custom .nav li.active {
    outline: 0;
}

    .navbar-custom .nav li.active a {
        background-color: rgba(255, 255, 255, 0.3);
    }

        .navbar-custom .nav li.active a:hover {
            color: #fff;
        }

.brand-heading {
    font-family: var(--brand-heading-font);
    font-size: 4rem;
    letter-spacing: 0.1em;
    line-height: 1.3em;
    text-transform: capitalize;
}

.intro-text {
    font-family: var(--intro-text-font);
    font-size: 3rem;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}
