body, html, main {
    height: 100%;
    background-color: rgb(255, 254, 250);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

body {
    overflow-x: hidden;

}
.bg-black {
    background: rgb(19, 19, 19);
}
.bg-contact {
    background: linear-gradient(-90deg, #74ebd5, #ACB6E5);
}

/* LINK STYLE */
a {
    color: inherit;
}

a.nav-link:hover, a.nav-link:focus, a.footer-info-item:hover, 
a.footer-info-item:focus {
    color: black;
    text-shadow: 0 0 5px #fff, 0 0 7px #fff, 0 0 10px #74ebd5,0 0 25px rgb(0, 60, 255), 0 0 35px rgb(0, 60, 225);   
}

/* NAVBAR STYLE */
.bg-beige {
    background: rgb(255, 254, 250);
}
.navbar-brand {
    font-family: 'Poiret One', cursive;
    font-size: 28px;
    margin-left: 2%;
}

.navbar-toggler {
    outline: none;
    box-shadow: none;
    border: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-nav {
    flex-flow: row, nowrap;
}

.nav-item {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

a.nav-link {
    display: flex;
    color: black;
    font-size: 18px;
    font-weight: 500;
}
.border-light {
    opacity: .5;
}
/* HAMBURGER MENU STYLE */
.hamburger {
    padding: 10px;
    right: 15px;
    display: flex;
    cursor: pointer;
    position: absolute;
    top: 5px;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: black;
    text-transform: none;
    z-index: 999;  
}

.hamburger:hover {
    opacity: 0.5;
}
.hamburger.is-active .hamburger-inner, .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: black;
}
.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner, .hamburger-inner:before, .hamburger-inner::after {
    width: 25px;
    height: 2px;
    background-color: rgb(3, 11, 17);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -6px;
}
.hamburger-inner::after {
    bottom: -6px;
}
.spin-burger .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.spin-burger .hamburger-inner::before {
    transition: top 0.2s 0.25s ease-in, opacity 0.1s ease-in; 
}
.spin-burger .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.spin-burger.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1);
}
.spin-burger.is-active .hamburger-inner::before {
    top: 0;
    opacity: 1;
    background-color: black;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.spin-burger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.610, 0.355, 1);
}

/* INTRO HEADER STYLE */
.intro {
    background: black;
    overflow: hidden;
}

.intro-image{
    object-fit: cover;
    opacity: 0.5;
}

.header-text{
    top: 45%;
    color: white;
}

.header-text h1 {
    font-family: 'Poiret One', cursive;
}

.header-text h3 {
    font-family: 'Open Sans';
    font-weight: 400;
}

.text-button {
    border: none;
    color: #74ebd5;
    letter-spacing: 1px;
    top: 5%;
}

.text-button:hover {
    background-color: #74ebd5;
    color: white;
}

/* SECTION STYLE */
.section-title {
    font-family: 'Shadows into light', cursive;
}

/* CARD STYLE*/
.card {
    height: 10rem;
    width: 10rem;
    margin: 6px !important;
    padding: 5px !important;
    overflow: hidden;
    transition: all 0.4s ease;
}
.black-card {
    background-color: black;
}
.card-img {
    width: 100%;
    height: 100%;
    opacity: 1;
    
}
.card:hover {
    transform: scale(1.15);
}
.card:hover img {
    opacity: 0.4;
}
.card-img-overlay {
    background: linear-gradient(-90deg, #74ebd5, #ACB6E5);
    position: absolute;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.card-img-overlay p {
    position: relative;
    line-height: normal;
    font-family: 'Open Sans', sans-serif;
    opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}  

.card-img-overlay:hover,
.card-img-overlay:hover p {
    opacity: 1;
} 

.btn-outline-light:hover {
    box-shadow: 0 0 5px #fff, 0 0 7px #fff;
    color: white;
    margin-top: 1rem;
    background-color: transparent;
  }

/* FORM STYLE */
  .form-control.is-valid:focus, .was-validated, :valid.form-control {
    border-color: #DDDDDD !important;
    background-image: inherit !important;
    box-shadow: inherit !important;
}
.form-wrap {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.contact-form {
    position: relative;
    width: 95%;
    background: white;
}

.form-btn {
    background: linear-gradient(-90deg, #74ebd5, #ACB6E5);
    border: none;
    outline: none;
    opacity: 0.7;
}

.form-btn:hover {
opacity: 1; 
box-shadow: 0 0 5px lightgrey, 0 0 7px lightgrey;
}

  /* FOOTER STYLE */
.footer-title {
    display: block;
    width: 100%;
    margin: .75em 0;
    font-family: 'Reenie Beanie', cursive;
    font-weight: 2.5em;
}
.footer-info-item {
    letter-spacing: 2px;
    padding: .5em;
}


@media (min-width: 992px) {.contact-form { width: 780px; }}
@media (max-width: 991.98px) {.header-text {top: 20%;}}
@media (max-width: 767.98px) {.header-text {top: 35%;} .header-text h1 {font-size: 10vh;} .header-text h3 {font-size: 20px;}}
@media (max-width: 575.98px) {.header-text {top: 35%;} .header-text h1 {font-size: 6vh;} .header-text h3 {font-size: 14px;}}