/* reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

/**** SITE CONF ****/

body {
    font-size: 22px;
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
    background-color: rgb(240, 240, 240);
    color: #121212;
}

/** nav style **/

header {
    width: 100%;
    background-color: rgb(255, 255, 255, 0);
    padding: 2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all .22s ease-in-out;
}

.header.scroll {
    padding: 1rem 0;
    background-color: rgb(255, 255, 255, 0.9);
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
    transition: all .22s ease-in-out;
}

.header.scroll .logo {
    max-width: 170px;
    transition: all .22s ease-in-out;
}

i {
    font-size: .8rem;
    transition: all .22s ease-in-out;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.logo {
    max-width: 200px;
    transition: all .22s ease-in-out;
}

.menu>li,
.menu>a {
    display: inline-block;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #121212;
    display: block;
    padding: 10px 1rem;
    transition: background-color .22s ease, color .22s ease;
}

.menu a:hover {
    background-color: #ff0000;
    color: #fff;
    border-radius: 4px;
}

/*** submenu level 1 ***/

.submenu {
    position: absolute;
    background-color: rgb(255, 255, 255, 1);
    width: 200px;
    left: 0;
    display: none;
    border-radius: 4px;
    animation: slideup .3s ease;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

/*** sumenu level 2 ***/

.submenu2 {
    position: absolute;
    left: 100%;
    width: 250px;
    top: 0;
    background-color: rgb(255, 255, 255, 1);
    display: none;
    border-radius: 4px;
    animation: slideleft .3s ease;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

/*** show menu on hover ***/

.menu li:hover>.submenu {
    display: block;
}

.submenu li:hover>.submenu2 {
    display: block;
}

.hamburger {
    display: none;
    border: none;
    background: none;
    border-top: 3px solid #121212;
    cursor: pointer;
    margin-right: 30px;
}

.hamburger::before,
.hamburger::after {
    content: " ";
    display: block;
    width: 30px;
    height: 3px;
    background: #121212;
    margin-top: 5px;

    position: relative;
    transition: 0.3s;
}


/** SECTIONS CONF ******************************************************************/

.section-box {
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0 auto;
    background-color: #F4F6EB;
}

.section-box h1 {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 0;
    color: #fff;
    font-size: 4rem;
    text-shadow: black 1px 2px;
}

.section-box span {
    color: #ff0000;
}

.divider {
    box-sizing: border-box;
    width: 100%;
    height: 5px;
    box-shadow: 3px 3px 2px 2px rgba(0, 0, 0, 0.9);
}

.estimate {
    height: 150px;
    padding-inline: 200px;
    margin-inline: auto;
    background-color: #9B0000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: url(../img/background-quote.jpg);
    box-shadow: 3px 3px 2px 2px rgba(0, 0, 0, 0.9);
}

.estimate button {
    box-sizing: content-box;
    border: solid 3px transparent;
    height: 2.5em;
    padding: 1rem 5rem;
    border-radius: 1em;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.2), inset 0 -1.25em 1.25em -1.25em #494b4f;
    --ini: circle farthest-side at;
    --lst: 0, transparent 100%, #383d41;
    --set: bottom 1.25em/ 0.625em 0.625em no-repeat padding-box;
    background: radial-gradient(var(--ini) 100% var(--lst)) left 0 var(--set), radial-gradient(var(--ini) 0 var(--lst)) right 0 var(--set), linear-gradient(#64686a, #45494d 50%, #383d41 0) padding-box, linear-gradient(#2e3034, #1e2024) border-box;
    color: #e9eae9;
    font: inherit;
    text-shadow: 1px 1px #434343, 1px 1px 3px #323232;
    cursor: pointer;
}

.estimate button:hover {
    color: #a6ff00;
    transition: all .5s ease;
}

.estimate img {
    position: relative;
    width: 300px;
}

.estimate .img-esq {
    position: relative;
    width: 600px;
}

.estimate a {
    color: #9B0000;
    text-decoration: none;
}

.social {
    height: 30px;
    background-color: #323232;
    display: flex;
    justify-content: center;
    align-items: center;

}

.social img {
    width: 48px;
    border-radius: 100%;
    border: 6px solid #323232;
    margin-inline: 2px;
}

.gray {
    background-color: #c6c6c6;
}

.red {
    background-color: #c40b0b;
}

.white {
    background-color: #fff;
}

.white-t {
    background-color: rgb(255, 255, 255, .7);
}

.black {
    background-color: #494b4f;
}

/******** BUTTONS *********************************/

.btn {
    width: 250px;
    padding: 20px 10px;
    color: #fff;
    border: none;
    background-color: #d00303;
    background-repeat: no-repeat;
    -webkit-box-shadow:0px 0px 22px 0px rgba(0,0,0,0.9);
    -moz-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.9);
    box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.9);
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
    position: relative;
    border-style: none;
    vertical-align: middle;
    background-size: 50px;
    background-origin: content-box;
    background-position: left center;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all .3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #f57c7c;
    color: #121212;
    transition: all .3s ease;
}

.robotic-demolition {
    background-image: url(../img/services/robotic-demolition.png);
    background-position: right center;
    text-align: left;
}

.concrete-scanning {
    background-image: url(../img/services/concrete-scanning.png);
    text-align: left;
    background-position: right center;
}

.concrete-coring {
    background-image: url(../img/services/concrete-coring.png);
    text-align: left;
    background-position: right center;
}

.concrete-cutting {
    background-image: url(../img/services/concrete-cutting.png);
    text-align: left;
    background-position: right center;
}

.exterior-demolition {
    background-image: url(../img/services/exterior-demolition.png);
    text-align: left;
    background-position: right center;
}

.interior-demolition {
    background-image: url(../img/services/interior-demolition.png);
    text-align: left;
    background-position: right center;
}

.dumpster {
    background-image: url(../img/services/live-load-dumpster.png);
}

.final-cleaning {
    background-image: url(../img/services/final-cleaning.png);
}

.painting {
    background-image: url(../img/services/painting-services.png);
}

.general-labor {
    background-image: url(../img/services/general-labor-statement.png);
}

.flooring-polishing {
    background-image: url(../img/services/flooring-polishing.png);
}

.flooring-preparation {
    background-image: url(../img/services/flooring-preparation.png);
}


/** SECTION HOME *******************************************************************/

.section-home-box {
    box-sizing: border-box;
    width: 100%;
    min-height: calc(100vh + 50px);
    margin-inline: auto;
    background: center / cover no-repeat fixed url(../img/background.jpg);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-home-box h1 {
    font-size: 5rem;
    padding: 0;
    padding-top: 250px;
    line-height: 1.2;
    color: #fff;
    text-shadow: black 1px 2px;
    animation-duration: 1.5s;
    animation-name: direita;
}

.section-home-box h2 {
    font-size: 5rem;
    padding: 0;
    line-height: 1;
    color: #fff;
    text-shadow: black 1px 2px;
    animation-duration: 1.5s;
    animation-name: esquerda;
}

.section-home-box span {
    color: #ff0000;
}

.section-home-box a {
    color: #fff;
    padding-top: 100px;
    margin-bottom: 100px;
    text-shadow: black 1px 2px;
    animation: is-bouncing 1s ease-in-out alternate infinite;
}

.section-home-box a:hover {
    color: #ff0000;
}

.section-home-box a i {
    font-size: 3rem;
}

/** SECTION ABOUT US ***************************************************************/

.section-aboutus-box {
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    margin-inline: auto;
    padding-bottom: 50px;
    background: center / cover no-repeat fixed url(../img/background-about.jpg);
}

.section-aboutus-box h1 {
    font-size: 4rem;
    padding: 0;
    padding-top: 130px;
    padding-bottom: 30px;
    max-width: 1140px;
    margin: 0 auto;
    line-height: 1;
    color: #fff;
    text-shadow: black 1px 2px;
}

.section-aboutus-box h3 {
    font-size: 4rem;
    padding: 0;
    padding-bottom: 30px;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1;
    color: #fff;
    text-shadow: black 1px 2px;
    text-align: center;
}

.section-aboutus-box span {
    color: #ff0000;
}

.section-aboutus-content2 {
    text-indent: 1.3rem;
    font-size: 1.4rem;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    padding-bottom: 20px;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 40px;
}

.section-aboutus-content2 {
    max-width: 1140px;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 30px;
}

.section-aboutus-left {
    box-sizing: border-box;
    width: 100%;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #ff0000;
}

.section-aboutus-left h1 {
    color: #c6c6c6;
    text-indent: 1rem;
    padding: 0;
    padding-bottom: 30px;
    font-size: 2.4rem;
    text-align: center;
}

.section-aboutus-right p {
    padding-top: 30px;
}

.section-aboutus-right {
    box-sizing: border-box;
    width: 100%;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #ff0000;
}

.section-aboutus-right h1 {
    color: #c6c6c6;
    text-indent: 1rem;
    padding: 0;
    padding-bottom: 30px;
    font-size: 2.4rem;
    text-align: center;
}

.section-aboutus-right img {
    margin-left: 40%;
    width: 20%;
}

.section-aboutus-box h2 {
    font-size: 3rem;
    margin: 0 auto;
    padding-bottom: 30px;
    margin-inline: 150px;
    line-height: 1;
    color: #fff;
    text-shadow: black 1px 2px;
    text-align: center;

}

.core-values {
    box-sizing: border-box;
    max-width: 1077px;
    margin-inline: auto;
    background-color: rgb(255, 255, 255, .8);
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #ff0000;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.core-values h1 {
    padding: 0;
    font-size: 2.6rem;
    margin-top: 20px;
    padding-bottom: 20px;
}

.core-values-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.core-values-row h1 {
    padding: 0;
    font-size: 2rem;
    padding-bottom: 20px;
}

.core-excellence {
    width: 100%;
    padding-inline: 20px;
    padding-bottom: 20px;
    background-color: rgb(255, 255, 255, .5);
    background-image: url(../img/excellence.png);
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #ff0000;
}

.core-innovation {
    width: 100%;
    padding-inline: 20px;
    padding-bottom: 20px;
    background-color: rgb(255, 255, 255, .5);
    background-image: url(../img/idea.png);
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #ff0000;
}

.core-innovation span {
    color: #c6c6c6;
}

.core-integrity {
    width: 100%;
    margin-top: 20px;
    padding-inline: 20px;
    padding-bottom: 20px;
    background-color: rgb(255, 255, 255, .5);
    background-image: url(../img/handshake.png);
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #ff0000;
}

.core-integrity span {
    color: #c6c6c6;
}

.core-safety {
    width: 100%;
    margin-top: 20px;
    padding-inline: 20px;
    padding-bottom: 20px;
    background-color: rgb(255, 255, 255, .5);
    background-image: url(../img/secure.png);
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #ff0000;
}

/**** OUR SERVICES *******************************************/


.ourservices-box {
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    background-image: url(../img/background-service.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.ourservices-box-cont {
    box-sizing: border-box;
    max-width: 1100px;
    margin-inline: auto;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ourservices-box-menu {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255, 0);
    border-radius: 5px;
    padding: 10px;
    justify-self: center;
    align-self: center;
}

.ourservices-box-logo {
    padding: 10px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255, 0);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    text-align: center;
    justify-self: center;
    align-self: center;
}

.ourservices-box-logo h1 {
    color: #fff;
    text-shadow: black 1px 2px;
    font-size: 2.9rem;
    padding-bottom: 50px;
}

.ourservices-box-logo span {
    color: #ff0000;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.services-left img {
    width: 20%;
    border-radius: 50%;
    background-color: #fff;
    padding: 5px;
    margin-bottom: 0;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
}

.services-left img:hover {
    background-color: #c6c6c6;
    border: 2px solid red;
    transition: all .5s ease;
}

.services-left a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    margin: 0;
    text-shadow: black 1px 2px;
}

.services-left a:hover {
    color: #ff0000;
}

.services-right img {
    width: 20%;
    border-radius: 50%;
    background-color: #fff;
    padding: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
}

.services-right img:hover {
    background-color: #c6c6c6;
    border: 2px solid red;
    transition: all .5s ease;
}

.services-right a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    text-shadow: black 1px 2px;
}

.services-right a:hover {
    color: #ff0000;
}

/**** OUR TEAM *******************************************/

.ourteam-box {
    width: 100%;
    min-height: 100vh;
    background-color: #121212;
    background: right / cover no-repeat url(../img/background-team.jpg);
    align-items: baseline;
    padding-inline: 140px;
    margin-inline: auto;
    padding-bottom: 50px;
}

.ourteam-box h1 {
    font-size: 4rem;
    padding: 0;
    padding-bottom: 30px;
    max-width: 1140px;
    margin: 0 auto;
    line-height: 1;
    color: #fff;
    text-shadow: black 1px 2px;
    text-align: center;
}

.ourteam-box span {
    color: #ff0000;
}

.team-box {
    text-indent: 1.3rem;
    font-size: 1.4rem;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    padding-bottom: 20px;

    display: flex;
}

.team-cont {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 30px;
}

.team-people-left {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    gap: 20px;
    padding: 10px;
    flex-direction: row;
    align-self: baseline;
}

.team-people-photo {
    width: 50%;
}

.team-people-photo img {
    width: 90%;
    border-radius: 50%;
    border: 2px solid #ff0000;
}

.team-people-desc {
    width: 100%;
    color: #fff;
    padding-inline: 10px;
    font-size: 1rem;
    align-self: baseline;
}

.team-people-desc i {
    font-size: 1.2rem;
    color: #c6c6c6;
}

.team-people-desc h1 {
    width: 100%;
    font-size: 1.5rem;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #ff0000;
}

.team-people-desc h2 {
    width: 100%;
    font-size: 1.2rem;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #ff6464;
}


/****** MEDIA ************************************************/

#mediagallery {
    width: 100%;
    min-height: 100vh;
    background: center / cover no-repeat fixed url(../img/background-media.jpg);
}

.galeria-modal {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    z-index: 1000;
    padding: 5%;
    visibility: hidden;
}

.galeria-modal span {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    text-shadow: 1px 1px #45494d;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}

.galeria-modal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0);
    opacity: 1;
    transition: transform 0.7s ease-in-out;
    cursor: pointer;
}

.galeria {
    max-width: 950px;
    height: 90%;
    padding: 2%;
    padding-top: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 28vh;
    margin-inline: auto;
}

.galeria .single-galeria {
    box-sizing: border-box;
    padding: 5px;
    background-color: #fff;
    border-radius: 10px;
    margin: 0.5vw;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.galeria .single-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.25s ease-in-out;
}

.galeria .single-galeria img:hover {
    transform: scale(1.2);
}

.h-2 {
    grid-row: span 2;
}

.w-2 {
    grid-column: span 2;
}

.pagination {
    width: auto;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 2rem;
    color: #ff0000;
    top: -70px;
}

.pagination a {
    text-decoration: none;
    color: #fff;
}

.pagination a:hover {
    text-decoration: overline;
}


/***** CONTACT **************************************************/

.contact-box {
    width: 100%;
    background-color: #F4F6EB;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box {
    min-width: 900px;
    background-color: rgb(255, 255, 255, .8);
    border-radius: 5px;
    margin-top: 30px;
    -webkit-box-shadow:0px 0px 22px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.4);
    display: flex;
    margin-bottom: 30px;
}

.formulario {
    box-sizing: border-box;
    width: 100%;
    padding: 30px;
    text-align: center;
}

.formulario input {
    width: 240px;
    padding: 15px;
    font-size: 1.1rem;
    margin-bottom: 5px;
    border: none;
    border-radius: 5px;
    background-color: rgb(8, 8, 8, 0.2);
}

.formulario input[type="button"] {
    background-color: #9B0000;
    color: #fff;
    cursor: pointer;
}

.formulario textarea {
    width: 485px;
    height: 150px;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 5px;
    border: none;
    border-radius: 5px;
    background-color: rgb(8, 8, 8, 0.2);
}

.form-desc {
    background-color: rgba(100, 8, 8, 0.9);
    color: #fff;
    width: 35%;
    box-sizing: border-box;
    padding: 15px;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    align-items: baseline;
}

.form-desc h1 {
    padding: 0;
    font-size: 1.3rem;
}


/***** FOOTER **************************************************/

.footer {
    box-sizing: border-box;
    color: #fff;
    padding: 30px;
    width: 100%;
    min-height: 300px;
    background-color: #121212;
    background: center / cover no-repeat url(../img/backfround-footer.jpg);
    border-top: 7px solid #c4830b;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-inline: 20%;
}

.footer1 {
    width: 100%;
    text-align: left;
}

.footer1 i {
    font-size: 1.3rem;
    padding-right: 10px;
}

.footer1 a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.footer1 a:hover {
    color: #a6ff00;
}

.footer1 span {
    color: #c40b0b;
}

.footer2 {
    width: 100%;
    text-align: right;
    font-size: 1rem;
}

.desk {
    display: block;
    font-size: 1.5rem;
}
.mobile {
    display: none;
}

.services-h1-mobi h1 {
    display: none;
}