* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F4EEEB;
    color: #333;
    line-height: 1.6;
    overflow: hidden;
}

.container-layout {
    max-width: 1600px;
    width: 100%;
    margin-inline: auto;
}

.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 100px;
    z-index: 1000;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

header {
    padding-top: 0.5rem;
    padding-inline: 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 364px;
    height: 58px;
}

.menu {
    list-style: none;
}

.menu li {
    display: inline;
    margin-right: 1rem;
}

.menu li a {
    color: #B15231;
    text-decoration: none;
}

/* Botão hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    border: none;
    background: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/*-----------------------------------*\
  #MAIN
\*-----------------------------------*/

main {
    height: calc(100vh - 70px);
    height: calc(100svh - 70px);
    overflow-y: overlay;
    /* overflow-y: auto; para firefox */
    overflow-y: auto;
}

/* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
* {
    scrollbar-width: thin;
    scrollbar-color: #B15231 #F4EEEB;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

*::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #F4EEEB;
}

*::-webkit-scrollbar-track:hover {
    background-color: #ECE6E3;
}

*::-webkit-scrollbar-track:active {
    background-color: #ECE6E3;
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #B15231;
    border: 2px solid #FFFFFF;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #D7633B;
}

*::-webkit-scrollbar-thumb:active {
    background-color: #D7633B;
}

/* slider */

[class^="swiper-button-"] {
    transition: all 0.3s ease;
}

.swiper-slide {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.swiper-container {
    width: 80%;
    height: 80vh;
    float: left;
    transition: opacity 0.6s ease, transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.swiper-container.nav-slider {
    width: 20%;
    padding-left: 5px;
}

.swiper-container.nav-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.swiper-container.nav-slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.swiper-container.nav-slider .swiper-slide .content {
    width: 100%;
}

.swiper-container.nav-slider .swiper-slide .content .title {
    font-size: 20px;
}

/* ============================================================================================= */
.swiper-container.wedding-nav-slider {
    width: 25%;
    height: 100%;
}

.swiper-container.wedding-nav-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.swiper-container.wedding-nav-slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.swiper-container.wedding-nav-slider .swiper-slide .content {
    width: 100%;
}

.swiper-container.wedding-nav-slider .swiper-slide .content .title {
    font-size: 20px;
}

.swiper-container.debutante-nav-slider {
    width: 25%;
    height: 100%;
}

.swiper-container.debutante-nav-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.swiper-container.debutante-nav-slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.swiper-container.debutante-nav-slider .swiper-slide .content {
    width: 100%;
}

.swiper-container.debutante-nav-slider .swiper-slide .content .title {
    font-size: 20px;
}

.swiper-container.birthday-nav-slider {
    width: 25%;
    height: 100%;
}

.swiper-container.birthday-nav-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.swiper-container.birthday-nav-slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.swiper-container.birthday-nav-slider .swiper-slide .content {
    width: 100%;
}

.swiper-container.birthday-nav-slider .swiper-slide .content .title {
    font-size: 20px;
}

/* ============================================================================================= */

.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    color: white;
}

.swiper-slide {
    overflow: hidden;
}

.swiper-slide .slide-bgimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.swiper-slide .entity-img {
    display: none;
}

.swiper-slide .content {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 50%;
    padding-left: 5%;
    color: #fff;
}

.swiper-slide .content .title {
    font-size: 2.6em;
    font-weight: bold;
    margin-bottom: 30px;
}

.swiper-slide .content .caption {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    transform: translateX(50px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.7s ease;
}

.swiper-slide .content .caption.show {
    transform: translateX(0);
    opacity: 1;
}

[class^="swiper-button-"] {
    width: 44px;
    opacity: 0;
    visibility: hidden;
}

.swiper-button-prev {
    transform: translateX(50px);
}

.swiper-button-next {
    transform: translateX(-50px);
}

/* hero */
.hero {
    position: relative;
    background-image: url('../images/bg-hero.jpeg');
    background-size: cover;
    background-position: center;
    padding: 2rem;
    text-align: left;
    color: white;
    height: calc(100vh - 70px);
    height: calc(100svh - 70px);
    margin-bottom: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 100px;
    left: 40px;
    color: white;
}

.hero h1,
.hero button {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1em;
    margin: 0 0 16px;
}

.container-button {
    display: flex;
    gap: 1.5rem;
}

.hero button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    background-color: #B15231;
    color: white;
    border: none;
    padding: 0.75rem;
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.hero button:hover {
    background-color: #D07746;
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.svgIcon {
    fill: white;
}

.about {
    margin-bottom: 2rem;
    padding: 2rem 5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 5px;
}

.about-container {
    display: flex;
    justify-content: space-between;
}

.about-container-image {
    width: fit-content;
}

.about-container-description {
    padding: 2rem 5rem;
    width: 100%;
}

.about-container-description h2 {
    font-size: 2rem;
}

.about-container-description p {
    font-size: 1.3em;
}

.about-image-placeholder {
    width: 480px;
    height: 480px;
    background-image: url("../images/hero.jpeg");
    background-size: 90%;
    background-position: 40px -40px;
    border-radius: 100%;
}

.valores-container {
    display: flex;
    gap: 2rem;
    width: 100%;
}

.container {
    margin-block: 2rem;
    padding: 2rem 5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 5px;
}

.headline {
    font-size: 2em;
    margin-bottom: 20px;
}

.section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section div {
    width: 45%;
}

.section div h2 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.section div p {
    font-size: 1.1em;
    line-height: 1.5;
}


.divider {
    display: block;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature {
    display: flex;
    gap: 2rem;
    background-color: white;
    padding-block: 2rem;
    padding-inline: 5rem;
    border-radius: 5px;
    overflow: hidden;
}

.feature-carousel {
    display: flex;
    gap: 0.3rem;
    width: 60%;
    height: 80vh;
}

.features .feature:nth-child(even) {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    background-color: white;
    padding-block: 2rem;
    padding-inline: 5rem;
    border-radius: 5px;
    overflow: hidden;
}

.feature span {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
}

.feature h2 {
    font-size: 2em;
}


.container-button-feature {
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: left;
}

.container-button-feature p {
    margin-bottom: 1rem;
}

.feature button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background-color: #B15231;
    color: white;
    border: none;
    padding: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.feature button:hover {
    background-color: #D07746;
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.image-placeholder {
    height: 500px;
    width: 50%;
    background-color: #E8DDD0;
    position: relative;
}

.image-placeholder img {
    position: absolute;
    height: auto;
}

.image-placeholder img:first-child {
    bottom: 16px;
    left: 16px;
    z-index: 3;
    width: 32%;
    height: auto;
}

.image-placeholder img:nth-child(2) {
    bottom: 16px;
    right: 16px;
    z-index: 2;
    width: 38%;
    height: auto;
}

.image-placeholder img:last-child {
    top: 16px;
    left: 30%;
    z-index: 2;
    width: 32%;
    height: auto;
}


.carousel-section {
    display: flex;
    background-color: white;
    padding-block: 2rem;
    padding-inline: 5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.testimonials {
    padding: 2rem;
    text-align: left;
}

.container-testimonial {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    /* flex-direction: column-reverse; */
    align-items: center;
    overflow: hidden;
}

.responsive {
    display: none;
}

.cards {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
    width: 100%;
    height: 100%;
    max-width: 550px;
    max-height: 310px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    cursor: pointer;
}

/* Default state for cards not in focus */
.card {
    transform: scale(0.8);
    opacity: 0.4;
    z-index: 0;
}

/* States for cards based on input checked */
#item-1:checked~.cards #testimonial-1,
#item-2:checked~.cards #testimonial-2,
#item-3:checked~.cards #testimonial-3,
#item-4:checked~.cards #testimonial-4,
#item-5:checked~.cards #testimonial-5,
#item-6:checked~.cards #testimonial-6,
#item-7:checked~.cards #testimonial-7 {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 1;
}

/* Cards to the left */
#item-1:checked~.cards #testimonial-7,
#item-2:checked~.cards #testimonial-1,
#item-3:checked~.cards #testimonial-2,
#item-4:checked~.cards #testimonial-3,
#item-5:checked~.cards #testimonial-4,
#item-6:checked~.cards #testimonial-5,
#item-7:checked~.cards #testimonial-6 {
    transform: translateX(-70%) scale(0.8);
    opacity: 0.4;
    z-index: 0;
}

/* Cards to the right */
#item-1:checked~.cards #testimonial-2,
#item-2:checked~.cards #testimonial-3,
#item-3:checked~.cards #testimonial-4,
#item-4:checked~.cards #testimonial-5,
#item-5:checked~.cards #testimonial-6,
#item-6:checked~.cards #testimonial-7,
#item-7:checked~.cards #testimonial-1 {
    transform: translateX(70%) scale(0.8);
    opacity: 0.4;
    z-index: 0;
}

figure.testimonial {
    font-family: 'Raleway', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border-radius: 10px;
    min-width: 220px;
    max-width: 550px;
    width: 100%;
    color: #333;
    text-align: left;
    background-color: white;
}

figure.testimonial * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

figure.testimonial img {
    max-width: 100%;
    vertical-align: middle;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    margin: 10px 0 0 10px;
}

figure.testimonial blockquote {
    display: block;
    border-radius: 8px;
    position: relative;
    background-color: #E8DDD0;
    padding: 25px 50px 30px 50px;
    font-size: 0.8em;
    font-weight: 500;
    margin: 0;
    line-height: 1.6em;
    font-style: italic;
}

figure.testimonial blockquote:before,
figure.testimonial blockquote:after {
    font-family: 'FontAwesome';
    content: "\201C";
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    font-style: normal;
}

figure.testimonial blockquote:before {
    top: 25px;
    left: 20px;
}

figure.testimonial blockquote:after {
    content: "\201D";
    right: 20px;
    bottom: 0;
}

figure.testimonial .arrow {
    top: 100%;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #E8DDD0;
    margin: 0;
    position: absolute;
}

figure.testimonial .author {
    position: absolute;
    bottom: 45px;
    padding: 0 10px 0 120px;
    margin: 0;
    text-transform: uppercase;
    color: #000;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

figure.testimonial .author h5 {
    opacity: 0.8;
    margin: 0;
    font-weight: 800;
}

figure.testimonial .author h5 span {
    font-weight: 400;
    text-transform: none;
    padding-left: 5px;
}

.stars span {
    font-size: 20px;
    color: #f9d71c;
}

footer {
    color: #B15231;
    padding: 1rem;
    text-align: center;
    border-top: solid 1px #B15231;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-links a {
    color: #B15231;
    text-decoration: none;
}

.responsive-title {
    display: none;
}

.c-item {
    height: 480px;
}

.c-img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.sign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign svg {
    width: 35px;
}

.sign svg path {
    fill: white;
}

@media (max-width: 768px) {

    header {
        padding-top: 0.5rem;
        padding-inline: 0.5rem;
    }

    .logo img {
        width: 150px;
        height: 45px;
    }

    .text {
        display: none;
    }

    /*-----------------------------------*\
  #MAIN RESPOSIVE
\*-----------------------------------*/

    .about {
        margin-bottom: 2rem;
        padding: 0.75rem 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        background-color: white;
        border-radius: 5px;
        text-align: center;
    }

    .about-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-container-image {
        width: fit-content;
    }

    .about-container-description {
        width: 100%;
        padding: 0.5rem 0.75rem;
    }

    .about-container-description h2 {
        font-size: 1.5rem;
    }

    .about-image-placeholder {
        width: 350px;
        height: 350px;
        background-image: url("../images/hero.jpeg");
        background-size: 90%;
        background-position: 40px -40px;
        border-radius: 100%;
    }

    .valores-container {
        flex-direction: column;
    }

    .container {
        margin-block: 2rem;
        padding: 0.5rem 0.75rem;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        background-color: white;
        border-radius: 5px;
        text-align: center;
    }

    .section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .section div {
        width: 100%;
    }

    .section div h2 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .section div p {
        font-size: 1em;
        line-height: 1.5;
    }

    .headline {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .divider {
        display: none;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .feature {
        display: flex;
        gap: 0rem;
        background-color: white;
        padding: 0.5rem 0.5rem;
        border-radius: 5px;
        flex-direction: column;
        text-align: center;
    }

    .features .feature:nth-child(even) {
        display: flex;
        gap: 0rem;
        background-color: white;
        padding: 0.5rem 0.75rem;
        border-radius: 5px;
        flex-direction: column;
        text-align: center;
    }

    .feature span {
        width: 100%;
        gap: 2rem;
    }

    .feature .image-placeholder {
        height: 300px;
        width: 100%;
    }

    .responsive-title {
        display: block;
    }

    .desk-title {
        display: none;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero button {
        padding: 0.5rem;
    }

    .responsive {
        display: block;
    }

    figure.testimonial {
        width: auto;
    }

    .footer-content {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        gap: 0.5rem;
    }

    .carousel-section {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        background-color: white;
        padding-block: 2rem;
        padding-inline: 0.5rem;
        border-radius: 5px;
        margin-top: 2rem;
    }

    .feature-carousel {
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: white;
        padding-block: 2rem;
        padding-inline: 0.5rem;
        border-radius: 5px;
    }

    .swiper-container.nav-slider {
        width: 100%;
        height: 15vh;
        padding-left: 0px;
    }

    .swiper-container.wedding-nav-slider {
        width: 100%;
        height: 15vh;
        padding-left: 0px;
    }

    .swiper-container.debutante-nav-slider {
        width: 100%;
        height: 15vh;
        padding-left: 0px;
    }

    .swiper-container.birthday-nav-slider {
        width: 100%;
        height: 15vh;
        padding-left: 0px;
    }

    .swiper-container.main-slider {
        width: 100%;
        height: 60vh;
    }

    .swiper-container.wedding-section-slider {
        width: 100%;
        height: 55vh;
    }

    .swiper-container.debutante-section-slider {
        width: 100%;
        height: 55vh;
    }

    .swiper-container.birthday-section-slider {
        width: 100%;
        height: 55vh;
    }

    .swiper-slide .content .title {
        font-size: 1.5rem;
    }

    .swiper-container.nav-slider .swiper-slide .content .title {
        font-size: 12px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    figure.testimonial img {
        max-width: 100%;
        vertical-align: middle;
        height: 70px;
        width: 70px;
        border-radius: 50%;
        margin: 8px 0 0 8px;
    }

    figure.testimonial blockquote {
        display: block;
        border-radius: 8px;
        position: relative;
        background-color: #E8DDD0;
        padding: 8px 16px 12px 16px;
        font-size: 0.8em;
        font-weight: 500;
        margin: 0;
        line-height: 1.6em;
        font-style: italic;
    }

    figure.testimonial blockquote:before,
    figure.testimonial blockquote:after {
        font-family: 'FontAwesome';
        content: "\201C";
        position: absolute;
        font-size: 24px;
        opacity: 0.3;
        font-style: normal;
    }

    figure.testimonial blockquote:before {
        top: 5px;
        left: 2px;
    }

    figure.testimonial blockquote:after {
        content: "\201D";
        right: 2px;
        bottom: 0;
    }

    /* States for cards based on input checked */
    #item-1:checked~.cards #testimonial-1,
    #item-2:checked~.cards #testimonial-2,
    #item-3:checked~.cards #testimonial-3,
    #item-4:checked~.cards #testimonial-4,
    #item-5:checked~.cards #testimonial-5,
    #item-6:checked~.cards #testimonial-6,
    #item-7:checked~.cards #testimonial-7 {
        transform: translateY(0) scale(1);
        opacity: 1;
        z-index: 1;
    }

    /* Cards to the left */
    #item-1:checked~.cards #testimonial-7,
    #item-2:checked~.cards #testimonial-1,
    #item-3:checked~.cards #testimonial-2,
    #item-4:checked~.cards #testimonial-3,
    #item-5:checked~.cards #testimonial-4,
    #item-6:checked~.cards #testimonial-5,
    #item-7:checked~.cards #testimonial-6 {
        transform: translateY(-70%) scale(0.8);
        opacity: 0.4;
        z-index: 0;
    }

    /* Cards to the right */
    #item-1:checked~.cards #testimonial-2,
    #item-2:checked~.cards #testimonial-3,
    #item-3:checked~.cards #testimonial-4,
    #item-4:checked~.cards #testimonial-5,
    #item-5:checked~.cards #testimonial-6,
    #item-6:checked~.cards #testimonial-7,
    #item-7:checked~.cards #testimonial-1 {
        transform: translateY(70%) scale(0.8);
        opacity: 0.4;
        z-index: 0;
    }

    .testimonials {
        padding: 0.5rem;
        text-align: center;
        height: calc(100svh - 70px);
    }

    .menu {
        display: none;
        /* Oculta o menu inicialmente */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #fff;
        width: 200px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }

    .menu li {
        text-align: center;
        margin: 10px 0;
    }

    .menu li a {
        padding: 10px;
        display: block;
    }

    .hamburger {
        display: flex;
        /* Mostra o botão hambúrguer */
    }

    /* Menu ativo */
    .menu.active {
        display: flex;
        z-index: 10000;
        /* Mostra o menu ao clicar */
    }

    /* Animação do botão hambúrguer */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        position: relative;
        background-image: url('../images/hero-2.jpeg');
        background-size: cover;
        background-position: -65px;
        padding: 2rem;
        text-align: left;
        color: white;
        height: calc(100vh - 70px);
        height: calc(100svh - 70px);
        margin-bottom: 2rem;
    }

}

@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,800);