/* GENERAL */

body {
    background-color: #0a1926;
    font-family: 'Roboto', sans-serif;
    margin: 0 auto;
    padding-top: 0;
    max-width: 1200px;
}

header {
    background-color: #000;
}

section {
    background-color: #000;
    padding-top: 80px;
    padding-bottom: 80px;
}

section:nth-child(odd) {
    background-color: #202020;
}

p {
    color: #6b6b6b;
    font-size: 14px;
}

ul,
li {
    margin: 0;
    padding: 0;
}

a {
    color: #405a74;
    text-decoration: none;
}

a:hover {
    color: #ff9f1e;
    text-decoration: none;
    transition: color .25s ease-in-out;
    -webkit-transition: color .25s ease-in-out;
    -moz-transition: color .25s ease-in-out;
    -o-transition: color .25s ease-in-out;
}

hr {
    width: 50px;
    border: solid 2px #405a74;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-title {
    margin-top: 0;
    color: #FF9404;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.page-subtitle {
    color: #ffcd37;
    font-size: 16px;
    margin: 10px 40px 60px;
    text-align: center;
}

.margin-bottom-xs {
    margin-bottom: 50px;
}

.margin-bottom {
    margin-bottom: 65px;
}

span.highlight {
    color: rgba(255, 76, 4, 0.8);
}

/*font size and margin sizes for medium screens*/

@media (min-width:768px) {

    .page-title {
        margin-top: 0;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .page-subtitle {
        font-size: 20px;
        margin: 10px 0 50px;
    }

    .margin-bottom-xs {
        margin-bottom: 0;
    }
}

/*font sizes for large screens*/

@media (min-width:992px) {
    p {
        font-size: 16px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 25px;
    }

    .package>h4 {
        font-size: 20px;
    }
}

/*GENERAL-END*/

/* NAVBAR */

.navbar-default {
    background-color: rgba(0, 0, 0, .96);
    border-bottom: 10px solid #202020;
}

.navbar-default.tiny {
    border-bottom: 4px solid #ff9f1e;
    min-height: 56px;
}

/*change color and position of hamburger icon-bar*/

.navbar-default .navbar-toggle {
    border: 2px solid #000;
    background-color: #202020;
    color: #ff9f1e;
    margin: 30px;
}

.navbar-default .navbar-toggle:hover {
    border-color: #405a74;
    background-color: #000;
    color: #ff9f1e;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #FF9404;
}

.navbar-default .navbar-toggle .icon-bar:hover {
    background-color: #FF4C04;
}

.navbar-brand {
    background-image: url(assets/images/logo.svg);
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 22px 0 30px;
    width: 150px;
}

/*fix for navbar logo in IE11*/

@media screen\0 {
    .navbar-brand>img {
        width: 200px;
    }
}

.nav>li>a {
    padding: 10px 10px;
}

.navbar.navbar-default .navbar-nav>li>a {
    color: #ddb233;
    font-size: 15px;
    padding-top: 7.5px;
    padding-bottom: 7.5px;
}

/*overriding bootstrap styles for responsive collapsed navbar*/

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #ffcd37;
}

/*add extra margin above contact link on small screen*/

.navbar.navbar-default .navbar-nav>li:last-child {
    margin-top: 10px;
}

.navbar.navbar-default .navbar-nav>li>a:hover {
    color: #ff4c04;
    -webkit-transition: color .25s ease-in-out;
    -moz-transition: color .25s ease-in-out;
    -o-transition: color .25s ease-in-out;
    transition: color .25s ease-in-out;
}

.contact {
    padding: 5px 8px;
    background-color: #202020;
    color: #ff9f1e;
    font-size: 12px;
    border: solid 2px #000;
    border-radius: 4px;
}

.contact:hover {
    background-color: #000;
    border: 2px solid #405a74;
    color: #FF4C04;
    transition: all .35s ease-in-out;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
}

/*media query to reduce brand image size below 306px width*/

@media (min-width:306px) {
    .navbar-brand {
        margin: 18px 0 30px;
        width: 200px;
    }
}

/*media query to reduce brand image size below 356px width*/

@media (min-width:356px) {
    .navbar-brand {
        margin: 15px 0 30px;
        width: 250px;
    }
}

@media (min-width:768px) {
    .navbar-brand {
        margin: 10px 0 30px;
        width: 300px;
    }

    .navbar.navbar-default .navbar-nav>li>a {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .navbar.navbar-default .navbar-nav>li:last-child {
        margin-top: 0;
    }

    .contact {
        padding: 7px 10px;
        font-size: 14px;
    }
}

/*navbar styles for large screen*/

@media (min-width:992px) {
    .navbar.navbar-default .navbar-nav>li>a {
        font-size: 18px;
    }

    .contact {
        padding: 8px 12px;
        font-size: 16px;
    }
}

/*NAVBAR-END*/

/* BANNER */

.bg-banner {
    color: #FFF;
    background-color: rgb(34, 49, 63);
    /* works for github pages*/
    background-image: url(/milestone-project-1/assets/images/bg.jpg);
    /*works for cloud9*/
    /*background-image: url(/assets/images/bg.jpg);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-banner-inner {
    background-color: rgba(34, 49, 63, 0.9);
    padding-top: 230px;
    padding-bottom: 80px;
}

.banner-title {
    color: #FF9404;
    position: relative;
    top: 0px;
    font-family: 'Cabin', sans-serif;
    font-size: 35px;
    max-width: 700px;
    margin: 0 auto 10px;
    text-align: center;
    text-transform: uppercase;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
}

.banner-subtitle {
    color: #ffcd37;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 25px;
    margin: 30px 0 50px;
    text-align: center;
}

@media (min-width:768px) {

    .banner-title {
        font-size: 50px;
    }

    .banner-subtitle {
        font-size: 40px;
    }
}

@media (min-width:992px) {

    .banner-title {
        font-size: 60px;
    }

    .banner-subtitle {
        font-size: 50px;
    }
}

/* BANNER-END */

/* ABOUT */

.page-title--about {
    font-size: 25px;
    margin: 60px 0 20px;
    text-align: center;
}


.page-title--about,
.page-title--skills {
    text-align: center;
}

.about {
    margin: 0 50px 50px;
    text-align: justify;
}

.about-img {
    border-radius: 6px;
    display: block;
    margin: 0 auto;
    width: 30%;
}

@media (min-width:768px) {
    .about {
        margin: 50px;
    }

    .page-title--about {
        font-size: 30px;
        margin-bottom: 10px;
        text-align: left;
    }

    .img-div {
        height: 200px;
        width: 200px;
    }

    .about-img {
        position: relative;
        height: 100%;
        width: 82%;
        margin: 70px 0 100px;
        box-sizing: content-box;
    }
}

@media (min-width:992px) {
    .page-title--about {
        font-size: 35px;
        margin-bottom: 15px;
        text-align: left;
    }

    .about-img {
        height: 110%;
        width: 92%;
        margin: 60px 0 0 40px;
    }
}

/* PORTFOLIO */

.overlay-container-1,
.overlay-container-2,
.overlay-container-3 {
    position: relative;
    width: 100%;
}

.portfolio-img {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 0 auto;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0%;
    right: 0%;
    height: 100%;
    max-width: 80%;
    opacity: 0;
    transition: .5s ease-in-out;
    background-color: rgba(0, 0, 0, .5);
    margin: 0 auto;
}

.overlay-container-1:hover .overlay {
    opacity: 1;
}

.overlay-container-2:hover .overlay {
    opacity: 1;
}

.overlay-container-3:hover .overlay {
    opacity: 1;
}

.overlay-text {
    color: #FF9404;
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

@media (min-width: 768px) {
    .portfolio-img {
        max-width: 100%;
    }

    .overlay {
        max-width: 100%;
    }

    .overlay-text {
        font-size: 28px;
    }
}

/* PORTFOLIO-END */

/* UNIQUE-SELLING-POINT */

.usp h5 {
    color: #587da2;
    font-size: 20px;
    margin: 40px 0 20px;
    text-align: center;
}

.font-awesome-icon {
    margin: 20px 0 0;
    text-align: center;
    font-size: 16px;
}

.font-awesome-icon--mobile {
    font-size: 16px;
}

/*mobile icon is larger so margin for h5 header needs to be smaller*/

.usp .Responsive-design-specialist {
    margin: 10px 10px 20px;
}

.font-awesome-icon .fa {
    color: #ff9f1e;
}

.usp p {
    text-align: justify;
    margin: 0 20px;
}

/*usp layout & styles for medium screen*/

@media (min-width: 768px) {
    .font-awesome-icon {
        margin: 0 0 30px;
        text-align: center;
        font-size: 14px;
    }

    .usp h5 {
        font-size: 16px;
        margin: 10px 0 20px;
    }
    .usp p {
        margin: 0 15px;
    }
}

/*usp header styles for large screen*/

@media (min-width: 992px) {
    .usp h5 {
        font-size: 18px;
        /*margin: 10px 0 20px;*/
    }

}

/* UNIQUE-SELLING-POINT-END */

/* PACKAGES */

.bg-packages {
    padding: 80px 0 120px;
}

.package {
    background-color: #EEF6D4;
    border: 6px solid #405a74;
    border-radius: 4px;
    margin: 0 auto;
    padding: 5px;
    text-align: center;
    max-width: 90%;
}

.package>h4 {
    color: #ff4c04;
}

.package>p {
    color: #333;
    padding: 15px;
    text-align: justify;
}

.package>p:nth-of-type(2) {
    text-align: center;
}

.package>ul>li {
    color: #333;
    padding-bottom: 10px;
    list-style: none;
}

.package>ul>li>hr {
    border: 1px solid #405a74;
    margin: 0 auto;
    padding: 0;
    width: 90%;
}

/*styles for large contact button at bottom of packages section*/

.package-contact {
    position: relative;
    width: 100%;
}

.package-contact .contact {
    background-color: #3b3b3b;
    border: solid 3px #3b3b3b;
    color: #ff9f1e;
    padding: 8px 20px;
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 80%);
    -ms-transform: translate(-50%, 80%);
    transform: translate(-50%, 80%);
    text-align: center;
}

.package-contact .contact:hover {
    background-color: #000;
    color: #FF4C04;
    border-color: #405a74;
    transition: all .35s ease-in;
    -webkit-transition: all .35s ease-in;
    -moz-transition: all .35s ease-in;
    -o-transition: all .35s ease-in;
}

@media (min-width: 768px) {
    .bg-packages {
        padding: 80px 0 160px;
    }

    .package-contact .contact {
        padding: 10px 22px;
        font-size: 20px;
    }
}

/*reduce packages divs width on small screens 380px and above*/

@media (min-width:380px) {
    .package {
        max-width: 70%;
    }
}

@media (min-width:768px) {
    .package {
        margin: 0;
    }

    .package {
        margin: 0;
        max-width: 100%;
    }
}

/*PACKAGES-END*/

/*TABS*/

.section--tabs {
    padding: 0 0 5px;
}

.nav-tabs>li {
    float: left;
    margin-bottom: 0px;
}

.nav-tabs {
    background-color: #202020;
    border: none;
}

.nav-tabs>li>a {
    color: #FF9404;
    cursor: default;
    background-color: #3b3b3b;
    border: none;
    border: 0;
    border-bottom-color: transparent;
    font-size: 16px;
    padding: 6px 12px;
}

.nav>li>a:focus,
.nav>li>a:hover {
    background-color: #cb8931;
    border: none;
    color: #3b3b3b;
    text-decoration: none;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    background-color: #555;
    border: none;
    color: #ffcd37;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.tab-content {
    margin: 80px 0;
}

/*tab styles for medium screen*/

@media (min-width:768px) {
    .nav-tabs>li>a {
        font-size: 16px;
        padding: 8px 30px;
    }
}

/*tab styles for large screen*/

@media (min-width:992px) {
    .nav-tabs>li>a {
        font-size: 20px;
        padding: 10px 60px;
    }
}

/*TABS-END*/

/* REFUND */

.refund {
    margin: 0 20px;
    text-align: center;
}

.refund p {
    background-color: #ECF9BF;
    border: 6px solid #405a74;
    border-radius: 4px;
    color: #333;
    padding: 20px;
    text-align: center;
}

/* SKILLS */

.skills {
    margin: 0 auto;
    width: 70%;
}

.skills>h5 {
    color: #ff9404;
    font-size: 14px;
}

/*progress bar header styles for medium screen*/

@media (min-width:768px) {
    .skills>h5 {
        font-size: 16px;
    }
}

/*progress bar header styles for large screen*/

@media (min-width:992px) {
    .skills>h5 {
        font-size: 18px;
    }
}

/*SKILLS-END*/

/*SERVICES*/

.progress {
    background-color: #121212;
    border-radius: 4px;
}

.progress-bar {
    background-color: #34495E;
}

.font-awesome-icon--services {
    margin-top: 15px;
}

/*fix to position mobile icon correctly*/

.font-awesome-icon--services>.fa-mobile {
    margin: -10px;
}

.services {
    margin: 0 0 20px;
}

.services>h5 {
    color: #587da2;
    font-size: 18px;
    margin: 10px 0 25px;
    text-align: center;
}

.services>p {
    color: #5e5a5a;
    text-align: center;
}

@media (min-width:768px) {
    .services {
        margin: 0 0 0 15px;
    }

    .services>h5 {
        font-size: 16px;
        margin: 10px 0;
        text-align: left;
    }

    .services>p {
        text-align: left;
    }
}

@media (min-width:992px) {
    .services>h5 {
        font-size: 18px;
    }
}

/* SERVICES-END */

/* CONTACT */

.bg-contact {
    background-color: #000;
    color: #FFCD37;
    padding-bottom: 50px;
}

.page-title--contact {
    margin-top: 100px;
}

#contact-form {
    margin-bottom: 40px;
}

.form-control {
    display: block;
    width: 100%;
    height: 45px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #b3aea0;
    background-image: none;
    border: 4px solid #bbb;
}

.form-control:focus {
    background-color: #EAE2E2;
    color: #555;
    border: solid 3px #ccc;
}

.form-control::-moz-placeholder {
    color: #666;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #666;
}

.form-control::-webkit-input-placeholder {
    color: #666;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

textarea.form-control {
    height: 200px;
}

.btn-submit,
.btn-reset {
    background-color: #202020;
    color: #ff9f1e;
    font-size: 14px;
    padding: 6px 12px;
    border: solid 2px #000;
    border-radius: 4px;
}

.btn-submit:hover,
.btn-reset:hover {
    background-color: #000;
    border: solid 2px #405A74;
    color: #FF4C04;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;

}

/*error classes for future validation of form*/

/*.error {
    color: #F82C2C;
    margin-top: 10px;
}*/

/*CONTACT-END*/

/* SOCIAL */

.bg-social {
    background-color: #202020;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.social-link {
    border-width: 6px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.social-link .fa {
    color: #ff9f1e;
    border: solid 4px #405A74;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: solid 2px #3a536b;
    font-size: 30px;
    padding-top: 8px;
    margin-right: 10px;
    text-align: center;
    text-decoration: none;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.social-link .fa:hover {
    background-color: #000;
    color: #FF4C04;
}

@media (min-width:480px) {
    .social-link .fa {
        width: 65px;
        height: 65px;
        font-size: 38px;
        padding-top: 12px;
        margin-right: 20px;
    }
}

@media (min-width:768px) {
    .social-link .fa {
        width: 80px;
        height: 80px;
        font-size: 50px;
    }
}

/* SOCIAL-END */

/* FOOTER */

.bg-footer .copyright {
    text-align: center;
    margin-bottom: 16px;
}

.bg-footer {
    background-color: #000;
    padding: 32px 12px 0 0;
}

.copyright {
    padding: 0;
    color: #ffcd37;
    font-size: 12px;
    line-height: 22px;
}

.bg-footer ul {
    text-align: center;
    float: none !important;
}

.bg-footer ul li a {
    color: #ffcd37;
    font-size: 14px;
    margin: 0 2px;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

/*create more space between footer links on small screens above 303px width*/

@media (min-width:303px) {
    .bg-footer ul li a {
        font-size: 14px;
        margin: 0 6px;
    }
}

/*increase size and space around footer links on small screens above 480px width*/

@media (min-width:480px) {
    .bg-footer ul li a {
        font-size: 15px;
        margin: 0 10px;
    }
}

.bg-footer ul li a:hover {
    color: #ff4c04;
    text-decoration: none;
}

.border-right {
    border-right: 1px solid #ffcd37;
}

/*remove link divider on third visible link for small screen*/

.border-right:nth-of-type(4) {
    border-right: none;
}

@media (min-width:768px) {
    .bg-footer .copyright {
        text-align: right;
        margin: 0 20px 15px 0;
    }

    .border-right {
        border-right: 1px solid #ffcd37;
    }

    /*add link divider on fourth visible link for medium screen*/
    .border-right:nth-of-type(4) {
        border-right: 1px solid #ffcd37;
    }

    .bg-footer ul li a {
        color: #ffcd37;
        font-size: 15px;
        margin: 0 2px;
    }
}

@media (min-width:992px) {
    .copyright {
        font-size: 14px;
    }

    .bg-footer ul li a {
        font-size: 16px;
        margin: 0 4px;
    }
}
