/* from screen size of ipad to big screen */

@media screen and (min-width: 768px) {
    /* 
    ======================================== NAVBAR
    */
    body {
        background: url(../images/bg-intro-desktop.svg) top -220px right -575px no-repeat, var(--very-light-gray);
        background-size: contain;
    }
    header {
        padding: 0 10.5rem;
        position: relative;
        z-index: 10;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    header button {
        display: inline-block;
        margin: 0;
    }
    #hamburger {
        display: none !important;
    }
    #close {
        display: none !important;
    }
    nav {
        display: block !important;
        margin: 0;
        background: var(--white);
        padding: 0;
        z-index: 3;
    }
    nav a {
        padding: 0 0 0.2rem 0;
        margin: 0 1rem;
        font-size: 1rem;
        color: var(--grayish-blue);
        display: inline;
    }
    nav a:hover {
        color: var(--dark-blue);
        border-bottom: 4px solid hsl(192, 70%, 51%);
    }
    #mockup {
        display: none;
    }
    /* #mockup-desktop {
        display: block;
        position: relative;
        top: 20px;
        right: -188px;
        object-fit: cover;
    } */
    /* .navbar a:hover {
        border-bottom: 3px solid var(--lime-green);
    }
    .navbar {
        z-index: 2;
    }
    .navbar-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-left: 12rem;
        margin-top: 0;
    }
    .nav-btn {
        margin-left: 15rem;
    }
    .navbar-collapse {
        background-image: none;
    } */
    /* 
    =========================================== INTRO
    */
    main {
        background: none !important;
    }
    #intro {
        padding: 0 0 0 10rem;
        height: 656px;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 5;
    }
    #mockup {
        display: none;
    }
    #mockup-desktop {
        display: block;
        position: relative;
        top: 20px;
        right: -158px;
        object-fit: cover;
    }
    #intro div {
        text-align: left;
        width: 450px;
    }
    #intro h1 {
        font-size: 3.5rem;
        margin: 0;
        font-weight: 300;
        line-height: 1.2;
        color: var(--dark-blue);
        margin-bottom: 1rem;
    }
    #intro p {
        font-size: 1.3rem;
    }
    /* #intro {
        position: relative;
    }
    .mobile-intro {
        display: none;
    }
    .image-area {
        display: block;
        position: relative;
        background-image: url('../images/bg-intro-desktop.svg');
        background-position: right -1rem top -6rem;
        top: -2rem;
        right: -40rem;
        background-repeat: no-repeat;
        background-size: cover;
        height: 80vh;
        width: 50vw;
        z-index: 1;
        order: 0 !important;
    }
    .intro-img {
        width: 40vw;
        height: 100vh;
        position: absolute;
        float: right;
        right: 0;
        top: 0rem;
    }
    .intro-main {
        font-size: 3rem;
        line-height: 1;
    }
    .intro-text-area {
        text-align: start;
        position: absolute;
        top: 0
        
    }
    .intro-text {
        position: absolute;
        top: 6rem
    } */
    /* 
    ===================================================REASON
    */
    .reason {
        text-align: start;
    }
    /* 
============================================================FOOTER
*/
    footer {
        text-align: left;
    }
    .social-links {
        padding: 0;
        display: flex;
        justify-content: start;
    }
    .content {
        text-align: right;
    }
}

/* 










*/

/* 
@media (max-width: 767px) {
    .navbar-brand img {
        width: 130px;
    }
} */

.navbar-toggler {
    padding: 0;
}

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

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}