@font-face {
	font-family: Bodoni;
	src: URL('content/BodoniXT.ttf');
}

* {
	box-sizing: border-box;
}

html {
	font-size: 13px;
}

body {
	margin:0 auto;
	font-family: Bodoni, sans-serif;
	background:#ffffff;
	color: #434343;
}

.clearfix {
	float:none !important;
	clear:both !important;
	width:100%;
	display:block;
}


.wrapper {
	width: fit-content;
    margin: auto;
}

.opaque-full { opacity: 0; }
.opaque { opacity: 0.5; }
.remove { display:none !important; }

div.desktop { display: inherit; }
div.mobile  { display: none;  }

@media only screen and (max-width: 1000px) {
	div.desktop { display: none !important; }
	div.mobile { display: inherit; }
}

.flex { display: flex; }
.center { align-items: center; } 


#header {
    width: 100%;
    height: 80px;
    background: rgb(255, 255, 255);
    display: flex;
    padding: 0 15%;
    justify-content: space-around;
    align-items: center;
}
#header .logo {
    width: 30%;
    display: flex;
    align-items: center;
}
#header .logo img {
    max-width: 60%;
    max-height: 60%;
}
#header .menu {
    width: 70%;
    display: flex;
    font-size: 1.7rem;
    font-weight: bold;
    justify-content: space-around;
    align-items: center;
}
#header .menu .ul {
    cursor: pointer;
}

@media only screen and (max-width: 1000px) {
    .menu-mobile {
        position: fixed;
        left: 0;
        top: 80px;
        width: 100vw;
        background: rgb(255, 255, 255);
        z-index: 999;
        height: calc(100vh - 80px);
        font-size: 1.7rem;
        font-weight: bold;
        padding: 20px 25px;
        transform: translateX(-100vw);
        transition: 0.5s all;
        flex-direction: column;
        border-top: 1px solid #ccc;
    }
    #header {
        padding: 0 25px;
    }
    #header .active {
        transform: translateX(0);
    }
    #header .fa-list {
        font-size: 2rem;
        cursor: pointer;
    }
    #header .menu-mobile .ul {
        padding: 20px 0;
        cursor: pointer;
    }
    #header .logo {
        width: 100%;
        margin-left: 30px;
    }
    #header .logo img {
        max-height: 100%;
    }
}


.main-content {
    width: 100%;
    overflow: auto;
}


.welcome {
    width: 100%;
    height: fit-content;
    background-image: URL("content/BACKGROUND.jpg");
    background-size: 100%;
    padding: 150px 15%;
    font-size: 1.4rem;
    color: rgb(255, 255, 255);
}
.welcome .title {
    width: 100%;
}
.welcome h1 {
    font-size: 2.5rem;
    margin-block-start: 0.5rem;
    margin-block-end: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.welcome h3 {
    font-size: 1.7rem;
    margin-block-start: 0.5rem;
    margin-block-end: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.welcome .flex {
    margin-top: 150px;
}
.welcome .text {
    width: 50%;
    padding: 60px 30px;
    background: rgb(2, 15, 60);
    -webkit-box-shadow: 0px 0px 10px 1px rgba(183,65,14,1);
    -moz-box-shadow: 0px 0px 10px 1px rgba(183,65,14,1);
    box-shadow: 0px 0px 10px 1px rgba(183,65,14,1);
    line-height: 1.5;
}
.welcome .text .bar1 {
    display: block;
    width: 70px;
    height: 1px;
    background: #ccc;
}
.welcome .text .bar2 {
    display: block;
    width: 120px;
    height: 2px;
    background: rgb(255, 255, 255);
    margin-top: 15px;
}
.welcome .text img {
    margin-top: 30px;
    max-width: 150px;
    max-height: 60px;
}
.welcome .contact {
    width: 50%;
    padding: 0 50px;
}
.welcome .contact form .option {
    background: rgba(183,65,14,1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-top: 15px;
}
.welcome .contact form .option input {
    background: #fff;
    outline: none;
    border: none;
    border-radius: 10px;
    padding: 7px;
    width: -webkit-fill-available;
    margin-left: 10;
}
.welcome .contact form button {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1;
    margin-top: 15;
    border: none;
    background: rgba(183,65,14,1);
    transition: 0.3s all;
    color: rgb(255, 255, 255);
    font-weight: bold;
    cursor: pointer;
}
.welcome .contact form button:hover {
    background:rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

@media only screen and (max-width: 1000px) {

    .welcome {
        padding: 50 25;
        font-size: 1rem;
        background-size: 370%;
        background-repeat: no-repeat;
    }
    .welcome h1 {
        font-size: 1.7rem;
    }
    .welcome h3 {
        font-size: 1rem;
    }
    .welcome .flex {
        display: block;
        margin-top: 30px;
    }
    .welcome .text, .welcome .contact {
        width: 100%;
    }
    .welcome .text {
        padding: 30 15;
    }
    .welcome .contact {
        padding: 0 0;
        margin-top: 30px;
    }

}



/* PROJECTS */

#projetos {
    padding: 70 7%;
}
.project {
    width: 100%;
    height: fit-content;
    background: rgb(255, 255, 255);
    display: flex;
}
#projetos .left {
    padding: 50 0 100;
}
#projetos .right {
    padding: 100 0 50;
}
.project h2 {
    color: rgb(34, 34, 34);
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#projetos p {
    font-size: 15px;
    color: rgb(102, 102, 102);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    line-height: 1.5;
}
.project .text {
    width: 55%;
    padding: 40 20;
}
.project .img {
    width: 45%;
}
#projetos .left .text {
    padding: 40 50 40 0;
}
#projetos .left .img {
    background: URL('./content/PROJECT2.jpg');
    background-size: 100%;
    background-position: center center;
}

#projetos .right .text {
    padding: 40 0 40 50;
}
#projetos .right .img {
    background: URL('./content/PROJECT1.jpg');
    background-size: 100%;
    background-position: center center;
}
.project.right {
    flex-direction: row-reverse;
}

#projetos .cards {
    justify-content: space-between;
}
#projetos .card {
    width: 32%;
}
#projetos .card i {
    font-size: 36px;
}
#projetos .card .info {
    padding: 0 20;
    font-family: Arial, Helvetica, sans-serif;
}
#projetos .card h4 {
    margin-block-start: 0;
    line-height: 36px;
    font-size: 15px;
    letter-spacing: 1;
    color: rgb(34, 34, 34);
    text-transform: uppercase;
}


@media only screen and (max-width: 500px) {

    #projetos {
        padding: 0 0;
    }
    .project {
        display: block;
    }
    .project .img {
        width: 100%;
        height: 200px;
    }
    #projetos .right .text {
        width: 100%;
        padding: 0 25px;
    }
    #projetos .left .text {
        width: 100%;
        padding: 0 25px;
    }
    #projetos .cards {
        display: block;
    }
    #projetos .card {
        width: 100%;
        padding: 30 25px;
    }
    #projetos .right {
        padding: 50 0 50;
    }

}








/* SPINNERS */

.fa-spinner {
	font-size:48px;
	margin-top:30px;
	margin-left:45%;
	line-height:200px;
}

button .fa-spinner {
	font-size:13px !important;
	margin: 0 !important;
	line-height:inherit !important;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
    -webkit-animation: rotating 7s linear infinite;
    -moz-animation: rotating 7s linear infinite;
    -ms-animation: rotating 7s linear infinite;
    -o-animation: rotating 7s linear infinite;
    animation: rotating 7s linear infinite;
}

.loading-spinner {
	width: 100%;
	height: fit-content;
	margin: 30 0;
	display: flex;
	flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
button .loading-spinner { margin: 0 !important; }
button .loading-spinner svg {
	width: 15px !important;
	height: 15px !important;
}
.loading-spinner svg {
    animation: rotate 2s linear infinite;
    z-index: 2;
    width: 50px;
    height: 50px;
}
.loading-spinner svg circle {
    stroke: rgb(28, 132, 238);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
   }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
   }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
   }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
   }
}


/* POPUPS */

.popup-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	z-index: 999;
	align-items: flex-end;
    justify-content: center;
}


div.popup-full-height {
	height: 100vh;
	width: 100vw;
	border-radius: 0 0 0 0;
}
.full-popup {
	display: flex;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: saturate(180%) blur(2px);
	transition: 0.05s all ease;
	border-radius: 50% 50% 0 0;
}
.full-popup .close-popup {
	position: absolute;
	top: 50px;
	right: 50px;
	border-radius: 50%;
	border: 1px solid #fff;
	color: #fff;
	font-size: 1.5rem;
	transition: all .4s ease;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
    justify-content: center;
}
.full-popup .content {
	width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.full-popup .content .search {
	width: 50%;
	position: relative;
	transform: translateY(-500px);
	transition-delay: 0.5s;
	transition: 1s all ease;
	opacity: 0;
}
div.popup-full-height .content div.search {
	transform: translateY(0);
	opacity: 1;
}
.full-popup .content .search input {
	height: 70px;
    background-color: transparent;
    border-radius: 50px;
    border: 2px solid #fff;
    color: #fff;
    padding: 0 30px;
    width: 100%;
    font-size: 1.4rem;
}
.full-popup .content .search input:focus {
	outline: none;
}
.full-popup .content .search button {
	height: 100%;
    position: absolute;
    width: 100px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
}


.response-popup {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
    backdrop-filter: saturate(180%) blur(2px);
	display: flex;
    align-items: center;
    justify-content: center;
}
.response-popup .close-popup { 
	position: absolute;
    right: 15;
    top: 15;
    font-size: 2rem;
    transition: all .4s ease;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}
.response-popup .content {
	width: fit-content;
	height: fit-content;
	background: rgb(255, 255, 255);
	border-radius: 10px;
	padding: 27 30 20;
	position: relative;
}
.response-popup .content .title {
	font-family: Helvetica;
	display: flex;
    align-items: center;
	font-size: 1.7rem;
	font-weight: bold;
	padding-right: 50;
}
.response-popup .content .fa-circle-check {
	color: #6fd649;
	margin-right: 15px;
}
.response-popup .content .fa-circle-xmark {
	color: #f46d67;
	margin-right: 15px;
}
.response-popup .content .text {
	font-weight: normal;
	font-size: 1.2rem;
	max-width: 400px;
	line-height: 1.5;
	padding-top: 15;
}

@media only screen and (max-width: 500px) {

	.response-popup .content {
		padding: 30 20 20;
	}
	.response-popup .content .title {
		font-size: 1.3rem;
	}
	.response-popup .content .fa-circle-check {
		margin-right: 5px;
	}
	.response-popup .content .fa-circle-xmark {
		margin-right: 5px;
	}
	.response-popup .content .text {
		max-width: 350px;
	}

}






#footer.flex {
    padding: 100 7%;
    background: #181818;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}
#footer .container {
    width: 30%;
}
#footer .container h4 {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: bold;
}
#footer .container p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    cursor: pointer;
}
#footer .container i {
    margin-right: 5px;
}
#footer .container button {
    width: 100%;
    padding: 20 35;
    border: none;
    outline: none;
    background: #fff;
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}   


@media only screen and (max-width: 500px) {

    #footer.flex {
        padding: 50 25;
        display: block;
    }
    #footer .container {
        width: 100%;
        margin: 50 0;
    }

}