/* ==========================================================================
CUSTOM CSS
========================================================================== */

#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
}

#status {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

body {
    /*padding-top: 70px;*/
    font-family: 'Open Sans', sans-serif;
    color: #0a0d19;
}

header {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

section, footer {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

header.full-height-section, section.full-height-section {
    min-height: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.alert#cookie-consent {margin-bottom: 0px;}

.full-size-background {
    background: url(../img/default-hero-image.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/default-hero-image.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/default-hero-image.jpg', sizingMethod='scale')";
}

/* ==========================================================================
COLOURS
========================================================================== */

.bg-light-grey {
    background-color: #eeeeee;
}

.bg-midnight-blue {
    background-color: #0a0d19;
}

.bg-midnight-purple {
    background-color: #101423;
}

.bg-turquoise {
    background-color: #00a4c1;
}

.bg-bright-blue {
    background-color: #006fe2;
}

.text-light-grey {
    color: #eeeeee;
}

.text-regular-grey {
    color: #cccccc;
}

.text-turquoise {
    color: #00a4c1;
}

.btn-midnight-blue {
    background-color: #0a0d19;
    color: #ffffff;
    padding: .375rem 1.75rem;
}

.btn-midnight-blue:hover {
    background-color: #ffffff;
    color: #0a0d19;
}

.btn-turquoise-hover:hover {
    background-color: #00a4c1;
    color: #ffffff;
}

/*.bg-gradient {
    background: linear-gradient(135deg, #0a0d19, #00a4c1);
    background-size: 400% 400%;
    background-position: 0% 10%;
    -webkit-animation: gradient-animation 5s ease;
    -moz-animation: gradient-animation 5s ease;
    animation: gradient-animation 5s ease;
}
@-webkit-keyframes gradient-animation {
    0% {background-position: 100% 100%}
    100% {background-position: 0% 10%}
}
@-moz-keyframes gradient-animation {
    0% {background-position: 100% 100%}
    100% {background-position: 0% 10%}
}
@keyframes gradient-animation {
    0% {background-position: 100% 100%}
    100% {background-position: 0% 10%}
}*/

.bg-gradient {
    background: linear-gradient(45deg, #0a0d19, #00a4c1);
    background-size: 400% 400%;
    background-position: 0% 100%;
    -webkit-animation: gradient-animation 5s ease;
    -moz-animation: gradient-animation 5s ease;
    animation: gradient-animation 5s ease;
}
@-webkit-keyframes gradient-animation {
    0% {background-position: 100% 0%}
    100% {background-position: 0% 100%}
}
@-moz-keyframes gradient-animation {
    0% {background-position: 100% 0%}
    100% {background-position: 0% 100%}
}
@keyframes gradient-animation {
    0% {background-position: 100% 0%}
    100% {background-position: 0% 100%}
}

/* ==========================================================================
HEADER
========================================================================== */

.website-logo-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0px auto;
}

/* ==========================================================================
NAVIGATION
========================================================================== */

.navbar {
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    background-color: rgba(10, 13, 25, 0.95);
}

.navbar-nav a.nav-link {
    font-size: 14px;
    border-bottom: 4px solid transparent;
    display: inline-block;
    padding: 1.5rem 1rem 1rem;
}

.navbar-nav .nav-item:last-child {
    margin-bottom: 20px;
}

.navbar-nav {
    text-align: center;
}

.navbar-nav a.nav-link:hover {
    font-size: 14px;
    border-bottom: 4px solid #00a4c1;
}

.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
    color: #fff;
    border-bottom: 4px solid #00a4c1;
}

/* ==========================================================================
MY WORk
========================================================================== */

.nav-tabs {
    border-color: #00a4c1;
}

.nav-tabs .nav-link {
    color: #0a0d19;
    background-color: transparent;
    border-radius: 0px;
}

.bg-midnight-blue .nav-tabs .nav-link {
    color: #ffffff;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #00a4c1;
    border-color: #00a4c1;
    color: #ffffff;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #00a4c1;
}

.image-container {
    position: relative;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.image-container:hover .image-overlay {
    cursor: pointer;
    opacity: 1;
}

.image-overlay {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 164, 193, 0.9);
    opacity: 0;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.work-description p {
    font-size: 0.9rem;
}

/* ==========================================================================
GENERAL CONTENT
========================================================================== */

.content-separator-center {
    border: 3px solid #00a4c1;
    width: 50px;
}

.content-separator-left {
    border: 3px solid #00a4c1;
    width: 50px;
    margin-left: 0px;
}

/* ==========================================================================
MODAL
========================================================================== */

.modal-backdrop.show {
    opacity: 1;
    /*background: linear-gradient(45deg, #0a0d19, #00a4c1);
    background-size: 400% 400%;
    background-position: 0% 100%;*/
    background-color: rgba(10, 13, 25, 0.95);
}

.modal-lg .modal-content {
    border-radius: 0;
}

.modal-lg .modal-header {
    border-radius: 0;
    border-bottom: 0px;
    padding: 2rem;
    padding-bottom: 0px;
}

.modal-lg .modal-body {
    padding: 2rem;
    padding-top: 0px;
}

.modal-lg .close {
    font-size: 3rem;
}

.modal-lg {
    max-width: 1110px;
}

.modal-open .modal {
    padding-left: 15px;
}

/* ==========================================================================
MAP
========================================================================== */

.map-container {
    position: relative;
    color: #222;
    background-attachment: scroll;
    background-image: url(../img/map-image.jpg);
    background-position: center center;
    background-repeat: none;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    min-height: 500px;
}

#map {
    position:absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* Set z-index to 0 as it will be on a layer below the contact form */
}

/* ==========================================================================
ANIMATED HAMBURGER MENU
========================================================================== */

.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:focus {
    outline: none;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 3px;
    background-color: #fff;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ==========================================================================
FOOTER
========================================================================== */
