/*********************** UTILITIES ***********************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    margin: 0;
}

body {
    font-family: 'Montserrat', 'sans-serif';
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

body p {
    line-height: 125%;
}

header {
    position: relative;
    z-index: 999;
}

/**************************** NAVBAR STYLING STARTS ******************************/
/*CUSTOM VARIABLES HERE*/

/********************** SECTION 3 ******************/
.work {
    padding: 55px 0px 50px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2A2A2C;
}

.work-title {
    font-size: calc(1.8vw + 24px);
    color: #fff;
    font-weight: 800;
    padding-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}


.work-title span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.left {
    width: 33.33%;
}

.center {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    margin-top: 250px;
    padding: 30px 35px 0px 85px;
}

.part-left {
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.thrower {
    width: 40%;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.trigger-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 2;
    transition: transform 0.4s;
    padding: 10px 6.5rem;
}

.page-main section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.page-main section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
}

header ul {
    width: 100%;
}

header ul li a {
    color: #ffffff;
    font-family: 'Montserrat';
}

.line-purple {
    width: calc(7vw + 100px);
}

/*CUSTOM VARIABLES HERE*/

.trigger-menu-wrapper {
    transition: transform 0.4s;
}

.scroll-down .trigger-menu-wrapper {
    transform: translate3d(0, -100%, 0);
    background: #2A2A2C;
}


.scroll-up .trigger-menu-wrapper {
    transform: none;
}

.scroll-up:not(.menu-open) .trigger-menu-wrapper {
    background: #2A2A2C;
}


/************  HOVERS  ***************/

.hover-1:after, .hover-2:after, .hover-3:after, .hover-4:after {
    content: '';
    width: 0px;
    height: 2px;
    display: block;
    background: #fff;
    transition: 300ms;
}

.hover-1:hover:after, .hover-2:hover:after, .hover-3:hover:after, .hover-4:hover:after {
    width: 100%;
}


/* HAMBURGER */


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.nav-link {
    font-size: 1.2rem;
    font-weight: 400;
    cursor: url('img/axe-cursor.png'), auto !important;
}

.nav-logo {
    display: none;
}

.nav-item {
    cursor: url('img/axe-cursor.png'), auto !important;
}

/*********** HERO SECTION ***********/

.hero {
    height: 100vh;
    background-color: #2A2A2C;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
}

.hero h1 {
    font-size: calc(1.8vw + 24px);
    color: #fff;
    font-weight: 800;
    padding-bottom: 5px;
}

.hero .hero-txt {
    font-size: calc(0.5vw + 12px);
    width: 100%;
    text-align: initial;
    color: #fff;
    font-weight: 200;
    padding-top: 25px;
    opacity: 0.85;
    padding-bottom: 7%;
}

.mascot {
    display: flex;
    flex-direction: column;
}

.beaver {
    object-fit: contain;
    width: 275px;
    height: auto;
}

.arrow {
    object-fit: contain;
    width: 50px;
    height: auto;
    margin-left: 185px;
}

.mascot-txt {
    color: #fff;
    opacity: 0.85;
    font-size: calc(0.5vw + 12px);
    font-weight: 300;
}

.mascot-txt .span {
    opacity: 1;
    font-weight: 600;
}


/********************** SECTION 2 ******************/

.goals {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 15rem 1rem 15rem;
}

.goals-title, .doing-title, .contact-title, .doing-logic {
    font-size: calc(1.8vw + 24px);
    color: #2A2A2C;
    font-weight: 800;
    padding-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.doing-title, .doing-logic {
    gap: 15px;
}

.goals-title .result span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.result {
    display: flex;
}

.goals p {
    font-size: calc(0.5vw + 12px);
    color: #2A2A2C;
    font-weight: 300;
    padding-top: 25px;
    padding-bottom: 7%;
    font-family: 'Montserrat', sans-serif;
    width: 70%;
}

.doing, .contact, .footer, .tech {
    padding: 4rem 15rem 0rem 15rem;
}

.doing-title {
    display: inline-flex;
}

.contact {
    position: relative;
}

.contact-title {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
}

.line-purple-do {
    width: calc(5vw + 40px);
}

.line-purple-co {
    width: calc(9.5vw + 85px);
}


.doing-title span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.doing-logic {
    display: flex;
    align-items: flex-end;
}

.doing-logic span span {
    text-decoration: line-through;
    text-decoration-color: #DDBBF3;
    color: #2A2A2C;
}

.doing-logic span span:before,
.doing-logic span span:after {
    content: "\00a0";
}

.first-span {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    color: #DDBBF3;
}

.contact-title span {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doing p {
    font-size: calc(0.5vw + 12px);
    color: #2A2A2C;
    font-weight: 300;
}

.doing>p {
    padding-top: 25px;
    padding-bottom: 7%;
    width: 65%;
}

.circle {
    height: 5px;
    width: 80px;
    margin-bottom: 15px;
    background-color: #DDBBF3;
    display: inline-block;
}

.doing-boxes {
    display: flex;
    flex-wrap: wrap;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: initial;
    width: 33.33%;
    min-width: 250px;
}

.box p {
    width: 85%;
    text-align: initial;
}

form input {
    border: none;
    border-bottom: 1px solid black;
    padding: 1% 1% 2% 0%;
    outline: none;
    font-family: 'montserrat';
}


.contact-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    gap: 4%;
    margin-top: 35px;
    margin-bottom: 35px;
}


.contact-form input:nth-child(1), .contact-form input:nth-child(2) {
    width: 100%;
}


.contact-form input:nth-child(3) {
    flex-basis: 100%;
    padding: 2% 1% 4% 0%;
}

.btn-form {
    gap: 0;
    margin-top: 25px;
    margin-left: auto;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 25px;
    padding: 15px 50px 15px 50px;
    color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'montserrat';
}

.contact-form input:nth-child(4) {
    background: rgba(42, 42, 44, 0.4);
    font-weight: 600;
}

.contact-form input:nth-child(5) {
    background: #DDBBF3;
    font-weight: 700;
}

/******************** NEW CODE *****************/
textarea {
    resize: none;
    height: 20vh;
    max-height: 200px;
    border: none;
    overflow: auto;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #2A2A2C;
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.form-control-placeholder, .form-control-2-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 200ms;
    opacity: 0.5;
    color: #2A2A2C;
}

.form-control:focus+.form-control-placeholder,
.form-control:valid+.form-control-placeholder {
    font-size: 85%;
    transform: translate3d(0, -100%, 0);
    opacity: 1;
    color: #DDBBF3;
    font-weight: 600;
}

.msg {
    width: 100% !important;
}

.form-group.error input {
    border-color: #e74c3c;
}

.form-group small {
    color: #e74c3c;
    visibility: hidden;
    display: inline-block;
    margin-top: 3px;
}

.contact p {
    font-size: calc(0.5vw + 12px);
    color: #2A2A2C;
    font-weight: 300;
    line-height: 150%;
}

.contact p span {
    color: #DDBBF3;
    font-weight: 500;
}

.contact p:nth-of-type(2n) {
    font-weight: 500;
}


.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.card {
    width: 48.5%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0px 15px 0px;
    justify-content: space-between;
    padding: 30px 10px 30px 10px;
    justify-content: space-between;
}

.card h3 {
    font-size: calc(1vw + 14px);
    font-weight: 500;
    margin-bottom: 15px
}


.tech p {
    font-size: calc(0.5vw + 12px);
    font-weight: 300;
    font-family: 'Montserrat';
    margin-bottom: 5px;
}

.tech>p:first-of-type {
    margin-top: 35px;
}

.tech>p:last-of-type {
    margin-bottom: 50px;
}

.card p {
    font-size: calc(0.5vw + 12px);
    font-weight: 300;
    font-family: 'Montserrat';
    width: 85%;
    text-align: center;
    opacity: 0.85;
}

.card-1, .card-4 {
    background-color: #2A2A2C;
    color: #fff;
}

.card-2, .card-3 {
    border: 2px solid #2A2A2C;
}

.card-2, .card-3 {
    border: 2px solid #2A2A2C;
    color: #2A2A2C;
}

/********** Footer  ***********/

.footer {
    background-color: #2A2A2C;
    display: flex;
    flex-direction: column;
}

.footer h1, .footer p, .footer a {
    color: #fff;
}

.footer h1 {
    font-size: calc(1.8vw + 24px);
    font-weight: 800;
    margin-bottom: 2%;
}

.footer h2 {
    color: #DDBBF3;
    font-size: calc(1vw + 14px);
    font-weight: 500;
}

.bottom-foot {
    display: flex;
    justify-content: space-between;
}

.links-foot-1, .links-foot-2, .links-foot-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}

.links-foot-3 p:nth-child(2) {
    color: #DDBBF3;
    font-weight: 500;
}

.email-foot {
    display: inline-flex;
    border-bottom: 2px solid #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 2%;
    width: 35%;
    min-width: 185px;
    max-width: 400px;
}

.email-foot img {
    cursor: pointer;
    margin-left: auto;
}

.email-foot input {
    border: none;
    background: none;
    outline: none;
    flex-grow: 2;
    background: none;
    color: #FFF;
    font-size: calc(1vw + 8px);
    font-family: 'Montserrat';
}

.email-foot input::placeholder {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Montserrat';
    font-size: calc(0.5vw + 10px);
}

.socials>* {
    cursor: pointer;
    fill: #DDBBF3 !important;
}

.socials:hover * {
    fill: #DDBBF3 !important;
}

.linkedin {
    -webkit-mask: url(img/linkedin.svg) no-repeat center;
    mask: url(img/linkedin.svg) no-repeat center;
}


.foot-moto img {
    width: 40%;
}

.moto-italic {
    font-style: italic;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 2px;
}

.reserved {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 200;
}

.top-foot {
    margin-bottom: 15px;
}

.scrollToTopBtn {
    background-color: #2A2A2C;
    border: 2px solid #fff;
    color: white;
    cursor: pointer;
    font-size: 18px;
    line-height: 48px;
    width: 48px;
    height: 48px;
    border-radius: 35%;
    /* place it at the bottom right corner */
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* keep it at the top of everything else */
    z-index: 100;
    /* hide with opacity */
    opacity: 0;
    /* also add a translate effect */
    transform: translateY(100px);
    /* and a transition */
    transition: transform 0.5s, opacity 0.5s ease;
}

.showBtn {
    opacity: 1;
    transform: translateY(0);
}


.scrollToTopBtn svg {
    display: block;
    margin: auto;
}

.scrollToTopBtn:hover svg polygon {
    fill: #DDBBF3;
}

.scrollToTopBtn:hover {
    border-color: #DDBBF3;
}

.confirmed {
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    padding: 3rem 0;
    position: absolute;
    opacity: 0;
    width: 100%;
    transition: 0.8s;
    height: 135%;
    bottom: 0;
    transform: scale(0);
    display: none;
}

.confirmed h1 {
    font-size: calc(1.2vw + 18px);
    font-weight: 800;
    padding-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.confirmed h4 {
    font-size: calc(0.6vw + 14px);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.flyer {
    width: 85%;
    min-width: 225px;
    max-width: 650px;
}

#absolutely {
    position: absolute;
    right: 3%;
    top: 6%;
    width: 24px;
    cursor: pointer;
    fill: red;
}

#absolutely:hover {
    transform: scale(1.12);
    transform-origin: center;
    transition: 0.08s;
}

#absolutely:hover path {
    fill: #DDBBF3;
}

@media only screen and (max-width: 790px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #2A2A2C;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .navbar {
        padding: 0px 2.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .nav-item:nth-of-type(3) {
        display: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-logo {
        display: block;
    }

    .right {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .mascot {
        align-items: center;
    }

    .trigger-menu-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 1.5rem;
    }

    .part-left {
        padding: 0;
    }

    .hero {
        flex-direction: column;
    }

    .thrower {
        width: 100%;
        margin-bottom: 25px;
    }

    .work {
        padding: 0;
    }

    .center {
        width: 69%;
    }

    .goals, .work-title, .doing, .contact {
        width: 100%;
        margin: auto;
        margin-top: 25px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .goals, .doing, .contact, .tech, .work-title {
        padding: 0px 50px 0 50px;
    }

    .footer {
        padding: 50px 50px 0 50px;
    }

    .goals p {
        padding-top: 10px;
        width: 100%;
    }

    .hero-txt {
        padding-bottom: 0% !important;
        padding-top: 0% !important;
        padding: 25px 0 55px 0 !important;
    }

    .goals-title {
        font-size: calc(1.6vw + 24px);
    }

    .box {
        margin-bottom: 30px;
    }

    .doing>p {
        padding-top: 10px;
        width: 100%;
    }

    .box {
        width: 100%;
    }

    .box p {
        width: 100%;
    }

    .bottom-foot {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }

    .card-4 {
        order: 1;
    }

    .card-3 {
        order: 2;
    }

    .contact-form {
        justify-content: center;
    }

    .btn-form {
        margin-left: 0;
    }

    .doing-logic {
        gap: 4px;
    }

    .links-foot-1 {
        margin-top: 8px;
    }

    .links-foot-1, .links-foot-2, .links-foot-3 {
        gap: 6px;
        margin-bottom: 6px;
    }
}


@media only screen and (max-width:1096px) {
    .hero {
        padding: 0px 50px 0 50px;
    }

    .center {
        width: 70%;
    }

    .left {
        width: 0%;
    }

    .hero-txt {
        width: 60%;
    }

    .right {
        margin-top: 0;
        padding: 0;
    }

    .trigger-menu-wrapper {
        padding: 10px 1rem;
    }

    #message-it {
        order: 0;
    }

    #cancel-it {
        order: 1;
    }

    .btn-form {
        flex-grow: 1;
    }
}


@media only screen and (max-width: 410px) {
    .beaver {
        width: 150px;
    }

    .arrow {
        width: 25px;
    }

    .center {
        width: 100%;
        margin-top: 10%;
    }
}

@media only screen and (min-width: 410px) and (max-width: 450px) {
    .beaver {
        width: 200px;
    }

    .arrow {
        width: 32px;
    }

    .center {
        width: 100%;
        margin-top: 8%;
    }
}

@media only screen and (min-width: 790px) and (max-width: 1500px) {
    .card {
        width: 47%;
    }

    .doing, .contact, .footer, .tech {
        padding: 4rem 8rem 0rem 8rem;
    }
}

@media only screen and (max-width:936px) {
    .confirmed {
        height: 121%;
        padding: 8rem 0;
    }

    #absolutely {
        right: 8%;
        top: 5%;
    }

    .confirmed h4 {
        margin-bottom: 50px;
    }
    .flyer {
        width: 100%;
    }
}