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










/*HOME PAGE*/
body{
    background:rgb(255,255,255);
    background:linear-gradient(180deg, rgba(255,255,255,1) 158px, rgba(56,34,34,1) 158px);
    background-repeat:no-repeat;
}

@media (max-width:1125px){
    body{
        background:linear-gradient(180deg, rgba(255,255,255,1) 115px, rgba(56,34,34,1) 115px);
    }
}

body.about-page, body.staff-page, body.testimonials-page, body.contact-page{
    background:rgb(255,255,255);
    background:linear-gradient(180deg, rgba(255,255,255,1) 158px, rgb(137, 29, 29) 158px);
}

section.logo{
    position:absolute;
    top:10px;
    left:21px;
    z-index:2;
}

@media (max-width:715px){
    section.logo{
        top:10px;
        left:25%;
    }
}

@media (max-width:499px){
    section.logo{
        top:57px;
        z-index:0;
    }
}

@media (max-width:1125px){
    section.logo img{
        width:70%;
    }
}

nav{
    margin-left:22.5em;
}

@media (max-width:1125px){
    nav{
        margin-left:16.4em;
    }
}

@media (max-width:715px){
    nav{
        margin-left:0;
        margin-top:7.1em;
    }
}

@media (max-width:499px){
    nav{
        margin-top:0;
    }
}

section.top-black-bar{
    background-color:#2A2A2A;
    height:3em;
    border-left:5px solid #D9A331;
    border-right:5px solid #D9A331;
}

@media (max-width:1125px){
    section.top-black-bar{
        height:2em;
    }
}

@media (max-width:499px){
    section.top-black-bar{
        height:3em;
    }
}

section.top-black-bar h1{
    font-family:'Anta';
    font-size:1.5rem;
    padding:.5em 0em 0 1.5em;
    letter-spacing:.1rem;
    color:white;
    text-shadow:#a71616 2px 2px;
    font-weight:normal;
}

@media (max-width:1125px){
    section.top-black-bar h1{
        font-size:1rem;
    }
}

@media (max-width:715px){
    section.top-black-bar h1{
        float:right;
        margin-right:1em;
    }
}

@media (max-width:499px){
    section.top-black-bar h1{
        display:none;
    }
}

div.mobile-ham{
    display:none;
}

@media (max-width:499px){
    div.mobile-ham{
        display:block;
    }
}

div.off-screen-menu{
    background-color:#a71616;
    height:100vh;
    width:100%;
    max-width:300px;
    position:fixed;
    top:0;
    right:-450px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-end;
    text-align:right;
    transition:.3s ease;
    z-index:1;
}

div.off-screen-menu.active{
    right:0;
}

div.off-screen-menu ul{
    width:100%;
}

div.off-screen-menu li{
    font-family:'Anta';
    font-size:1.5em;
    padding:.5em;
    list-style-type:none;
    background-color:#661b1b;
    margin-bottom:.5em;
    color:white;
}

div.off-screen-menu a{
    text-decoration:none;
}

div.off-screen-menu a:link{
    color:white;
}

div.off-screen-menu a:visited{
    color:white;
}

div.off-screen-menu a:hover{
    color:black;
}

div.off-screen-menu a:active{
    color:white;
}

span.ham-arrow-left{
    float:left;
}

span.ham-arrow-left img{
    width:30px;
    height:30px;
}

nav.mobile{
    padding:1rem;
    display:flex;
}

div.ham-menu{
    height:50px;
    width:50px;
    margin-left:auto;
    margin-top:-17px;
    position:relative;
}

@media (max-width:350px){
    div.ham-menu{
        height:40px;
        width:40px;
        margin-top:-11px;
    }
}

@media (max-width:270px){
    div.ham-menu{
        height:35px;
        width:35px;
        margin-top:-11px;
    }
}

div.ham-menu span{
    height:5px;
    width:100%;
    background-color:#a71616;
    border-radius:25px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    transition:.3s ease;
    z-index:2;
}

div.ham-menu span:nth-child(1){
    top:25%;
}

div.ham-menu span:nth-child(3){
    top:75%;
}

div.ham-menu.active span{
    margin-top:20px;
}

div.ham-menu.active span:nth-child(1){
    top:35%;
    transform:translate(-50%, -50%) rotate(45deg);
    background-color:#2A2A2A;
}

div.ham-menu.active span:nth-child(2){
    opacity:0;
}

div.ham-menu.active span:nth-child(3){
    top:25%;
    transform:translate(-50%, 50%) rotate(-45deg);
    background-color:#2A2A2A;
}

p.collision-repair-bottom-text{
    display:none;
    text-align:center;
    font-family:'Anta';
    font-size:max(1.2rem, 1.2vw);
    padding:.7em .5em .5em .5em;
    letter-spacing:.1rem;
    color:white;
    text-shadow:#a71616 2px 2px;
}

@media (max-width:499px){
    p.collision-repair-bottom-text{
        display:block;
    }
}

section.nav-buttons{
    display:flex;
    justify-content:space-around;
    padding:.5em;
    background-color:white;
}

@media (max-width:499px){
    section.nav-buttons{
        padding:15%;
    }
}

a.nav{
    font-family:'Archivo Narrow';
    font-size:1.4rem;
    letter-spacing:.1rem;
    color:white;
    text-decoration:none;
    transition:all 0.3s ease-in-out;
}

@media (max-width:1125px){
    a.nav{
        font-size:1rem;
    }
}

a.nav:link{
    color:white;
}

a.nav:visited{
    color:white;
}

a.nav:hover{
    color:black;
}

a.nav:active{
    color:white;
}

button{
    position:relative;
    font-size:1.4rem;
    background-color:#a71616;
    padding:.3em 1em .3em 1em;
    border-top:none;
    border-right:2.9px solid #a71616;
    border-bottom:3px solid #D9A331;
    border-left:none;
    border-radius:3px;
    transition: 1s all ease;
    z-index:100;
}

@media (max-width:1125px){
    button{
        font-size:1rem;
    }
}

@media (max-width:865px){
    button{
        padding:.3em .3em .3em .5em;
    }
}

@media (max-width:499px){
    button{
        display:none;
    }
}

button:before{
    content:'';
    width:15px;
    height:30px;
    background:white;
    transform: rotate(45deg);
    position:absolute;
    top:-11px;
    left:-10px;
    border-radius:100% 0% 100% 0% / 43% 100% 0% 57%;
}

@media (max-width:865px){
    button:before{
        width:8px;
        height:20px;
        top:-10px;
        left:-1px;
        border-radius: 51% 49% 0% 0% / 57% 46% 54% 43%;
    }
}

button:after{
    content:'';
    width:20px;
    height:20px;
    background:white;
    border:3px solid #D9A331;
    transform:rotate(-132deg);
    position:absolute;
    border-top:0;
    border-left:0;
    border-bottom:0;
    right:-13px;
    bottom:-12px;
    border-radius:100% 0% 100% 0% / 100% 100% 0% 0%;
}

@media (max-width:1125px){
    button:after{
        height:13px;
        right:-15px;
    }
}

section.bottom-black-bar{
    height:3em;
    border-left:5px solid #D9A331;
    clip-path:polygon(100% 0, calc(30px - 15px) 0, 0 15px, 0 100%, 100% 100%);
    background:linear-gradient(135deg,#D9A331 calc(0.707*15px + 5px),#2A2A2A 0) border-box;
    border-right:5px solid #D9A331;
}

@media (max-width:1125px){
    section.bottom-black-bar{
        height:1.9em;
    }
} 

@media (max-width:715px){
    section.bottom-black-bar{
       clip-path:polygon(100% 0, calc(10px - 15px) 0, 0 15px, 0 100%, 100% 100%);
       background:linear-gradient(135deg,#2A2A2A calc(0.707*15px + 5px),#2A2A2A 0) border-box;
    }
}

@media (max-width:499px){
    section.bottom-black-bar{
        height:3em;
    }
}

p.phone-number{
    font-size:1.5rem;
    padding:.5em 1em 0 1.5em;
    font-family:'Anta';
    color:#D9A331;
    float:right;
}

@media (max-width:1125px){
    p.phone-number{
        font-size:1rem;
    }
}

@media (max-width:499px){
    p.phone-number{
        display:none;
    }
}

#slider{
    width:100%;
    position:relative;
    z-index:-1;
}
  
#slider img{
    width:100%;
    transition:opacity 2s ease-out;
    opacity:0;
    position:absolute;
    top:0;
    left:0;
    border-bottom:3px solid #D9A331;
}

section.mission-statement-home{
    margin-top:37%;
}

section.mission-statement-about, section.mission-statement-testimonials, section.mission-statement-contact, section.mission-statement-staff{
    background-color:rgba(56,34,34,1);
}

section.mission-statement, section.mission-statement-contact, section.mission-statement-testimonials, section.mission-statement-about, section.mission-statement-staff{
    border-top:3px solid #D9A331;
}

section.mission-statement-home h1{
    font-family:'Alumni Sans';
    color:white;
    text-align:center;
    font-size:clamp(1.8rem, 2.1vw, 4rem);
    letter-spacing:.3em;
    padding:0 .5em 0 .5em;
}

section.mission-statement h1, section.mission-statement-contact h1, section.mission-statement-testimonials h1, section.mission-statement-about h1, section.mission-statement-staff h1{
    font-family:'Alumni Sans';
    color:white;
    text-align:center;
    font-size:clamp(1.8rem, 2.1vw, 4rem);
    letter-spacing:.3em;
    padding:0 .5em 0 .5em;
    margin-top:.5em;
}

section.mission-statement-home, section.mission-statement, section.mission-statement-contact, section.mission-statement-testimonials, section.mission-statement-about, section.mission-statement-staff{
    padding-bottom:2em;
}

@media (max-width:594px){
    section.mission-statement-home, section.mission-statement, section.mission-statement-contact, section.mission-statement-testimonials, section.mission-statement-about, section.mission-statement-staff{
        padding-bottom:2em;
    }
}

footer{
    background-color:rgba(56,34,34,1);
}

div.footer-first-part{
    padding-inline:1em;
}

div.footer-first-part li{
    font-family:'Archivo Narrow';
    color:white;
    padding:.3em 1em .3em 1em;
    list-style-type:none;
    text-align:center;
}

span.bullet{
    color:#D9A331;
}

@media (max-width:608px){
    div.contact-footer{
        margin-top:2em;
    }
}

span.yellow-dots{
    color:#D9A331;
}

div.nav-footer ul{
    margin-top:4em;
    text-align:center;
    margin-left:1em;
}

div.nav-footer li{
    display:inline-block;
    list-style-type:none;
    font-family:'Archivo Narrow';
    background-color:#a71616;
    padding:.1em 1em .1em 1em;
    margin:0 1em .5em 0;
    text-align:center;
    clip-path: polygon(12% 0, 100% 0, 100% 69%, 87% 100%, 0 100%, 0 33%);
}

a.nav-footer{
    color:white;
    text-decoration:none;
}

a.nav-footer:link{
    color:white;
}

a.nav-footer:visited{
    color:white;
}

a.nav-footer:hover{
    color:black;
    transition:all 0.3s ease-in-out;
}

a.nav-footer:active{
    color:white;
}

div.footer-second-part h2{
    font-family:'Anta';
    font-size:max(1.2rem, 1.2vw);
    letter-spacing:.2rem;
    font-weight:normal;
    color:white;
    text-align:center;
    padding:1em .5em 1.5em .5em;
    text-shadow:#a71616 2px 2px;
}










/*ABOUT*/
section.about{
    background-color:rgb(137, 29, 29);
}

div.about-hero-hidden{
    display:none;
}

@media (max-width:950px){
    div.about-hero-hidden{
        display:block;
    }
}

div.about-hero-hidden img{
    width:100%;
    border-bottom:3px solid #D9A331;
}

div.about-img-paragraph{
    margin:0 auto;
    width:90%;
    margin-bottom:8%;
}

div.about-img-paragraph img{
    float:left;
    width:561px;
    height:657px;
    margin:4em 2em 1em 2em;
    box-shadow: 0px 0px 0px 20px rgba(102,27,27,1);
    background-color:#661b1b;
    border:3px solid #D9A331;
}

@media (max-width:950px){
    div.about-img-paragraph img{
        display:none;
    }
}

div.about-paragraph{
    font-family:'Archivo Narrow';
    font-size:1.2rem;
    text-align:justify;
    color:white;
    border-radius:5px;
    padding:3em 2em 0 2em;
}

@media (max-width:950px){
    div.about-paragraph{
        width:100%;
        padding:1em 1em 0 1em;
    }
}

div.text-indent{
    text-indent:2em;
}

span.about-span{
    font-family:'Archivo Narrow';
    font-size:1.2rem;
    color:white;
    padding:1em;
}

@media (max-width:1856px){
    span.about-span{
        margin-left:4.5em;
    }
}

span.about-span a{
    color:#D9A331;
}

span.about-span a:link{
    color:#D9A331;
}

span.about-span a:visited{
    color:#D9A331;
}

span.about-span a:hover{
    color:black;
}

span.about-span a:active{
    color:black;
}

div.space-about{
    height:50px;
}










/*STAFF*/
section.staff{
    background-color:rgb(137, 29, 29);
}

div.lead-in{
    width:70%;
    margin:0 auto;
}

@media (max-width:1196px){
    div.lead-in{
        width:95%;
    }
}

@media (max-width:1634px){
    div.lead-in{
        width:100%;
    }
}

div.lead-in p{
    font-family:'Archivo Narrow';
    font-size:1.5rem;
    color:white;
    padding:1.5em .5em .5em .5em;
    text-align:center;
}

div.job-description{
    width:60%;
    margin:0 auto;
}

@media (max-width:1634px){
    div.job-description{
        width:80%;
    }
}

@media (max-width:1230px){
    div.job-description{
        width:100%;
    }
}

h1.name{
    font-family:'Anta';
    color:white;
    font-weight:normal;
    padding:.5em;
    font-size:3rem;
    text-shadow:#2A2A2A 4px 4px;
}

@media (max-width:280px){
    h1.name{
        font-size:2.3em;
    }
}

div.nate-container{
    position:relative;
    z-index:100;
}

div.matt-container, div.mark-container, div.mark-container, div.don-container, div.johnathan-container, div.brett-container{
    position:relative;
    margin-top:9em;
    z-index:100;
}

body.staff-page > main.container > section.staff > div.job-description > div.nate-container > div.nate-img> div.image-container{
    margin:.5em 0 0 10em;
    width:225px;
    height:225px;
    overflow:hidden;
    border:3px solid #D9A331;
    box-shadow: 0px 0px 0px 20px rgba(102,27,27,1);
}

@media (max-width:440px){
    body.staff-page > main.container > section.staff > div.job-description > div.nate-container > div.nate-img> div.image-container{
        margin:0 auto;
    }
}

@media (max-width:290px){
    body.staff-page > main.container > section.staff > div.job-description > div.nate-container > div.nate-img> div.image-container{
        width:200px;
        height:200px;
    }
}

body.staff-page > main.container > section.staff > div.job-description > div.nate-container > div.nate-img> div.image-container:hover{
    border:3px solid black;
    transition:all 0.3s ease-in-out;
    cursor:pointer;
}

body.staff-page > main.container > section.staff > div.job-description > div.matt-container > div.matt-img> div.image-container{
    margin:.5em 0 0 10em;
    width:225px;
    height:225px;
    overflow:hidden;
    border:3px solid #D9A331;
    box-shadow: 0px 0px 0px 20px rgba(102,27,27,1);
}

@media (max-width:440px){
    body.staff-page > main.container > section.staff > div.job-description > div.matt-container > div.matt-img> div.image-container{
        margin:0 auto;
    }
}

@media (max-width:290px){
    body.staff-page > main.container > section.staff > div.job-description > div.matt-container > div.matt-img> div.image-container{
        width:200px;
        height:200px;
    }
}

body.staff-page > main.container > section.staff > div.job-description > div.matt-container > div.matt-img> div.image-container:hover{
    border:3px solid black;
    transition:all 0.3s ease-in-out;
    cursor:pointer;
}

body.staff-page > main.container > section.staff > div.job-description > div.mark-container > div.mark-img> div.image-container{
    margin:.5em 0 0 10em;
    width:225px;
    height:225px;
    overflow:hidden;
    border:3px solid #D9A331;
    box-shadow: 0px 0px 0px 20px rgba(102,27,27,1);
}

@media (max-width:440px){
    body.staff-page > main.container > section.staff > div.job-description > div.mark-container > div.mark-img> div.image-container{
        margin:0 auto;
    }
}

@media (max-width:290px){
    body.staff-page > main.container > section.staff > div.job-description > div.mark-container > div.mark-img> div.image-container{
        width:200px;
        height:200px;
    }
}

body.staff-page > main.container > section.staff > div.job-description > div.mark-container > div.mark-img> div.image-container:hover{
    border:3px solid black;
    transition:all 0.3s ease-in-out;
    cursor:pointer;
}

body.staff-page > main.container > section.staff > div.job-description > div.don-container > div.don-img> div.image-container{
    margin:.5em 0 0 10em;
    width:225px;
    height:225px;
    overflow:hidden;
    border:3px solid #D9A331;
    box-shadow: 0px 0px 0px 20px rgba(102,27,27,1);
}

@media (max-width:440px){
    body.staff-page > main.container > section.staff > div.job-description > div.don-container > div.don-img> div.image-container{
        margin:0 auto;
    }
}

@media (max-width:290px){
    body.staff-page > main.container > section.staff > div.job-description > div.don-container > div.don-img> div.image-container{
        width:200px;
        height:200px;
    }
}

body.staff-page > main.container > section.staff > div.job-description > div.don-container > div.don-img> div.image-container:hover{
    border:3px solid black;
    transition:all 0.3s ease-in-out;
    cursor:pointer;
}

body.staff-page > main.container > section.staff > div.job-description > div.johnathan-container > div.johnathan-img> div.image-container{
    margin:.5em 0 0 10em;
    width:225px;
    height:225px;
    overflow:hidden;
    border:3px solid #D9A331;
    box-shadow: 0px 0px 0px 20px rgba(102,27,27,1);
}

@media (max-width:440px){
    body.staff-page > main.container > section.staff > div.job-description > div.johnathan-container > div.johnathan-img> div.image-container{
        margin:0 auto;
    }
}

@media (max-width:290px){
    body.staff-page > main.container > section.staff > div.job-description > div.johnathan-container > div.johnathan-img> div.image-container{
        width:200px;
        height:200px;
    }
}

body.staff-page > main.container > section.staff > div.job-description > div.johnathan-container > div.johnathan-img> div.image-container:hover{
    border:3px solid black;
    transition:all 0.3s ease-in-out;
    cursor:pointer;
}

body.staff-page > main.container > section.staff > div.job-description > div.brett-container > div.brett-img> div.image-container{
    margin:.5em 0 0 10em;
    width:225px;
    height:225px;
    overflow:hidden;
    border:3px solid #D9A331;
    box-shadow: 0px 0px 0px 20px rgba(102,27,27,1);
}

@media (max-width:440px){
    body.staff-page > main.container > section.staff > div.job-description > div.brett-container > div.brett-img> div.image-container{
        margin:0 auto;
    }
}

@media (max-width:290px){
    body.staff-page > main.container > section.staff > div.job-description > div.brett-container > div.brett-img> div.image-container{
        width:200px;
        height:200px;
    }
}

body.staff-page > main.container > section.staff > div.job-description > div.brett-container > div.brett-img> div.image-container:hover{
    border:3px solid black;
    transition:all 0.3s ease-in-out;
    cursor:pointer;
}

div.nate-img img{
    object-fit:cover;
    transition:transform 0.8s;
    transform:scale(1.5);
    width:100%;
    height:100%;
    margin-top:2.5em;
}

div.matt-img img{
    object-fit:cover;
    transition:transform 0.8s;
    transform:scale(1.5);
    width:100%;
    height:100%;
    margin-top:2em;
    margin-left:2em;
}

div.mark-img img{
    object-fit:cover;
    transition:transform 0.8s;
    transform:scale(1.3);
    width:100%;
    height:100%;
    margin-top:2em;
    margin-left:-.1em;
}

div.don-img img{
    object-fit:cover;
    transition:transform 0.8s;
    transform:scale(1.6);
    width:100%;
    height:100%;
    margin-top:2em;
}

div.johnathan-img img{
    object-fit:cover;
    transition:transform 0.8s;
    transform:scale(1.8);
    width:100%;
    height:100%;
    margin-top:.6em;
}

div.brett-img img{
    object-fit:cover;
    transition:transform 0.8s;
    transform:scale(1.5);
    width:100%;
    height:100%;
    margin-top:3em;
}

body.staff-page > main.container > section.staff > div.popup-image{
    position:fixed;
    top:0;
    left:0;
    background:rgba(0, 0, 0, 0.712);
    height:100%;
    width:100%;
    z-index:100;
    display:none;
}

body.staff-page > main.container > section.staff > div.popup-image > span{
    position:absolute;
    top:0;
    right:20px;
    font-size:60px;
    font-weight:bolder;
    color:white;
    cursor:pointer;
    z-index:100;
}

body.staff-page > main.container > section.staff > div.popup-image > img{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    border:3px solid #D9A331;
    border-radius:5px;
    width:40%;
}

span.position{
    position:absolute;
    bottom:-2em;
    left:11em;
    font-family:'Archivo Narrow';
    font-size:2rem;
    color:white;
    background-color:#2A2A2A;
    padding:1em 3em 1em 3em;
    text-align:center;
    letter-spacing:.2rem;
    z-index:-1;
    clip-path:polygon(6% 0, 100% 0, 100% 68%, 93% 100%, 0 100%, 0 21%);
    margin-right:.5em;
    margin-left:.5em;
}

@media (max-width:1003px){
    span.position{
        font-size:1.5rem;
        position:static;
        float:right;
        margin-top:1.5em;
        margin-bottom:6em;
    }
}

@media (max-width:295px){
    span.position{
        float:left;
        padding:1em 1em 1em 1em;
    }
}

div.extra-space-staff{
    height:150px;
}






/*SERVICES*/
section.services{
    background-color:rgb(137, 29, 29);
    background-repeat:no-repeat;
}

@media (max-width:715px){
        section.services{
            border-inline:5px solid #D9A331;
    }
}

section.services h1{
    font-family:'Anta';
    font-size:clamp(1.8rem, 2.1vw, 2rem);
    text-align:center;
    padding:2em;
    color:white;
    letter-spacing:.2rem;
    font-weight:normal;
    text-shadow:#2A2A2A 3px 3px;
}

div.services-img-list{
    display:flex;
    flex-wrap:wrap;
    gap:5%;
    align-items:center;
    justify-content:center;
    padding:2em;
}

div.services-img{
    box-shadow: 0px 0px 0px 20px rgba(102,27,27,1);
    margin-bottom:5em;
    background-color:#661b1b;
}

div.services-img img{
    width:100%;
    border:3px solid #D9A331;
    border-radius:5px;
}

div.services-list-1 li, div.services-list-2 li{
    font-family:'Archivo Narrow';
    color:white;
    list-style-type:none;
    text-align:center;
    font-size:clamp(1.8rem, 2.1vw, 2rem);
    margin-bottom:1em;
    background-color:#2A2A2A;
    padding:.2em .5em .2em .5em;
    clip-path: polygon(6% 0, 100% 0, 100% 69%, 95% 100%, 0 100%, 0 33%);
}

@media (max-width:1141px){
    div.services-list-2{
        display:none;
    }
}

ul.hidden-list{
    display:none;
}

@media (max-width:1141px){
    ul.hidden-list{
        display:block;
    }
}

div.services-extra{
    text-align:center;
    background-color:#661b1b;
    padding:1em;
}

span.services-extra{
    font-family:'Archivo Narrow';
    color:white;
    text-align:center;
    font-size:max(1rem, 1vw);
}









/*TESTIMONIALS*/
section.testimonials{
    background-color:rgb(137, 29, 29);
    background-repeat:no-repeat;
    padding:0 1em 1em 1em;
}

@media (max-width:715px){
    section.testimonials{
        border-inline:5px solid #D9A331;
        padding:0 1.5em 1.5em 1.5em;
    }
}

div.name{
    margin:0 auto;
    width:75%;
    background-color:rgb(137, 29, 29);
}

@media (max-width:715px){
    div.name{
        width:100%;
    }
}

div.name-picture{
    display:flex;
    flex-wrap:wrap;
    gap:2%;
}

div.name-picture h1{
    font-family:'Anta';
    font-size:clamp(1.8rem, 2.1vw, 2rem);
    font-weight:normal;
    color:white;
    text-shadow:#a71616 3px 3px;
    margin:1.3em .5em .5em .5em;
    padding:.2em .8em .2em .8em;
    background-color:#2A2A2A;
    clip-path: polygon(15% 0, 100% 0, 100% 69%, 87% 100%, 0 100%, 0 33%);

}

img.neal{
    width:68px;
    height:63px;
    object-fit:cover;
    object-position:left;
    margin-top:2em;
    border-radius:3px;
    border:2px solid #D9A331;
    cursor:pointer;
}

img.neal-hidden{
    display:none;
    width:68px;
    height:63px;
    object-fit:cover;
    object-position:left;
    margin-top:2em;
    border-radius:3px;
    border:2px solid #D9A331;
    cursor:pointer;
}

@media (max-width:340px){
    img.neal{
        display:none;
    }
    img.neal-hidden{
        display:block;
    }
}

img.mp{
    width:68px;
    height:63px;
    object-fit:cover;
    object-position:center;
    margin-top:2em;
    border-radius:3px;
    border:2px solid #D9A331;
    cursor:pointer;
}

img.mp-hidden{
    display:none;
    width:68px;
    height:63px;
    object-fit:cover;
    object-position:center;
    margin-top:2em;
    border-radius:3px;
    border:2px solid #D9A331;
    cursor:pointer;
}

@media (max-width:340px){
    img.mp{
        display:none;
    }

    img.mp-hidden{
        display:inline-block;
    }
}

img.neal:hover, img.mp:hover{
    border:2px solid black;
    transition:all 0.3s ease-in-out;
}

div.popup-image{
    position:fixed;
    top:0;
    left:0;
    background:rgba(0, 0, 0, 0.712);
    height:100%;
    width:100%;
    z-index:100;
    display:none;
}

div.popup-image span{
    position:absolute;
    top:0;
    right:20px;
    font-size:60px;
    font-weight:bolder;
    color:white;
    cursor:pointer;
    z-index:100;
}

div.popup-image img{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    border:3px solid #D9A331;
    border-radius:5px;
    width:80%;
}

div.review{
    padding-bottom:4em;
}

#review-before:before{
    content:"";
    display:inline-block;
    width:50px;
    height:50px;
    margin-left:4em;
    margin-bottom:-10px;
    background:url('../img/comment-triangle.svg') no-repeat;
    background-size:contain;
    vertical-align:bottom;
}

div.review p{
    font-family:'Archivo Narrow';
    font-size:max(1rem, 1vw);
    text-align:justify;
    color:white;
    padding:2em 4em 2em 4em;
    background-color:#661b1b;
    border-radius:5px;
}

@media (max-width:715px){
    div.review p{
        padding:2em 1em 2em 1em;
    }
}

hr{
    width:80%;
    margin:0 auto;
    border:0;
    border-top:3px solid #D9A331;
}









/*CONTACT US*/
@media (max-width:715px){
    section.contact{
        border-inline:5px solid #D9A331;
        background-repeat:no-repeat;
    }
}

div.contact-hero img{
    width:100%;
    border-bottom:3px solid #D9A331;
}

div.form-map{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:3%;
    margin-top:4em;
    flex-wrap:wrap;
    padding:.5em;
}

@media (max-width:1085px){
    div.form-map{
        padding:2em;
    }
}

div.basic-info{
    z-index:100;
    padding:1em;
    font-family:'Archivo Narrow';
    line-height:2.3;
}

form{
    width:40%;
    background-color:#661b1b;
    border-radius:5px;
}

@media (max-width:1085px){
    form{
        width:100%;
    }
}

input#full-name, input#email-add, input#phone-num{
    color:white;
    font-size:max(1rem, 1vw);
    background-color:#2a2a2a;
    width:100%;
    height:30px;
    padding-left:1em;
    border:none;
    box-shadow: 10px 10px 5px -7px rgba(167,22,22,1);
}

input#full-name[type=text]::placeholder, input#email-add[type=text]::placeholder, input#phone-num[type=text]::placeholder{
    color:white;
    font-family:'Archivo Narrow';
}

input#full-name[type=text]:focus, input#email-add[type=text]:focus, input#phone-num[type=text]:focus{
    outline:none;
}

input#full-name[type=text]:focus::placeholder, input#email-add[type=text]:focus::placeholder, input#phone-num[type=text]:focus::placeholder{
    color:#D9A331;
}

textarea{
    resize:none;
}

textarea#message{
    font-family:'Archivo Narrow';
    color:white;
    font-size:max(1rem, 1vw);
    background-color:#2a2a2a;
    width:100%;
    height:200px;
    padding:1em 0 0 1em;
    border:none;
    box-shadow: 10px 10px 5px -7px rgba(167,22,22,1);
}

textarea::placeholder{
    color: white;
}

textarea:focus{
    outline:none;
}

textarea:focus::placeholder {
    color:#D9A331;
}  

div.submit{
    padding:3em;
    margin:0 auto;
    text-align:center;  
}

input[type=submit]{
    font-family:'Archivo Narrow';
    font-size:max(1.2rem, 1.1vw);
    color:white;
    font-weight:normal;
    padding:.5em 1em .5em 1em;
    background-color:#a71616;
    border:none;
    clip-path: polygon(20% 0, 100% 0, 100% 70%, 83% 100%, 0 100%, 0 32%);
}

input[type=submit]:hover{
    color:black;
    cursor:pointer;
    transition:all 0.3s ease-in-out;
}

div.map{
    width:600px;
    height:600px;
    box-shadow: 0px 0px 0px 20px rgba(102,27,27,1);
    border:3px solid #D9A331;
    border-radius:1px;
}

@media (max-width:1085px){
    div.map{
        width:100%;
        height:400px;
        margin-top:2em;
        box-shadow: 0px 0px 0px 0px;
    }
}

div.space{
    width:100%;
    height:4em;
    background-color:rgb(137, 29, 29);
}

@media (max-width:715px){
    div.space{
        border-inline:5px solid #D9A331;
    }
}
