@font-face {
    font-family: 'square';
    src: url('../fonts/square-721-bt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

:root {
    --main-color: #000033;
    --gold-color: #b28e47;
    --gray-color: #aeaeaf;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background-color: var(--gold-color) !important;
    color: #FFFFFF !important;
}

/********************* InfoBar *****************************************/
.info_bar {
    background-color: var(--main-color);
    color: #FFFFFF;
    height: 35px;
    padding: 5px 0px;
    font-size: 13px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social_bar {
    display: flex;
}

.social_bar a {
    text-decoration: none;
    color: var(--gray-color);
    display: block;
    margin-right: 10px;
    transition: all .3s ease;
    font-size: 18px;
}

.social_bar a:hover {
    color: var(--gold-color);
}

.contact_bar a {
    text-decoration: none;
    color: var(--gray-color);
    transition: all 0.3s ease;
    font-size: 18px;
}

.contact_bar a span {
    transition: all .3s ease;
    font-size: 12px;
}

.contact_bar a i {
    transition: all 0.3s ease;
}

.contact_bar a:hover i {
    color: var(--gold-color);
}

.contact_bar a:hover span {
    color: #FFFFFF;
}

.contact_bar span {
    font-family: 'Kdam Thmor Pro', sans-serif;
    font-size: 11px;
}

/********************* HeaderBar *****************************************/
.header_bar {
    height: 100px;
    border-bottom: 2px solid var(--main-color);
}

.logo {
    padding: 10px;
    width: 150px;
}

.logo img {
    width: 100%;
}

.main_menu {
    display: flex;
    align-items: center;
}

.main_menu .main_franchising {
    background-color: var(--main-color);
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}

.main_menu .main_franchising a {
    color: var(--gray-color);
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.main_menu .main_franchising a:hover {
    color: var(--gold-color);
}

.main_menu nav ul,
.main_menu nav ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main_menu nav ul {
    display: flex;
}

.main_menu nav ul li a {
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    font-weight: bold;
    color: var(--main-color);
    margin: 5px;
    padding: 5px;
    font-size: 14px;
    font-family: 'Source Sans Pro', sans-serif;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.main_menu nav ul li a:before {
    content: '';
    background: var(--gold-color);
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.3s ease-in-out;
}

.main_menu nav ul li a:hover::before {
    width: 100%;
}

.main_menu nav ul li a:hover {
    background-position: 0;
}

/********************* Banner *****************************************/
.carousel-caption {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(0, 0, 0, .3) !important;
    z-index: 1 !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15% !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem !important;
    height: 3rem !important;
    background-color: var(--gold-color);
    border: 10px solid var(--gold-color);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative !important;
        min-height: 450px !important;
    }
    
    #header-carousel .carousel-item img {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

.caption_text_group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.caption_text {
    width: 60%;
}

.caption_text h1 {
    color: #b28e47;
    font-family: 'square';
}

.caption_text p {
    font-family: 'Montserrat', sans-serif;
}

.caption_button {
    color: #FFFFFF;
    text-transform: uppercase;
    background-color: var(--main-color);
    padding: 10px;
    font-size: 11px;
    display: inline-block;
    transition: all .3s ease;
    font-family: 'Montserrat', sans-serif;
}

/********************* Services Information *****************************************/
@media (min-width: 991.98px) {
    .services_bar {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.services_information {
    display: flex;
    align-items: center;
}

.services_information i {
    color: var(--main-color);
    font-size: 21px;
}

.services_information h5 {
    font-family: 'square';
}

.services_information span {
    font-family: 'Montserrat', sans-serif;
}

/********************* About us *****************************************/
.about_us {
    background-color: #e9e9e9;
}

.about_us_content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.about_us_text {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 45%;
    justify-content: center;
}

.about_us_text h5 {
    font-family: 'square';
}

.about_us_text h3 {
    font-family: 'square';
}

.about_us_text p {
    font-family: 'Montserrat', sans-serif;
}

.about_line {
    background-color: var(--gold-color);
    width: 50px;
    height: 2px;
    margin-bottom: 10px;
}

.about_us_logo {
    display: flex;
    justify-content: flex-end;
}

.about_us_logo img {
    width: 100%;
    max-width: 150px;
}

.about_us_img {
    padding-left: 15px;
    display: flex;
    align-items: center;
}

/********************* Recent Projects *****************************************/
.recent_projects_content {
    padding: 20px;
    width: 85%;
    margin-top: 30px;
}

.recent_projects_content h6 {
    color: var(--gold-color);
    font-family: 'square';
}

.recent_projects_content h1 {
    color: var(--main-color);
    font-family: 'square';
}

.carousel-cell {
    width: 40%;
    height: 300px;
    margin-right: 10px;
    background: #8C8;
    border-radius: 5px;
    counter-increment: carousel-cell;
    overflow: hidden;
    position: relative;
}
  
.carousel-cell.is-selected {
    background: #ED2;
}

.carousel-cell img {
    transition: all .4s ease;
    object-fit: cover;
}

.carousel-cell:hover img {
    transform: scale(1.1);
}

.carousel_project_info {
    position: absolute;
    top: -100px;
    left: 20px;
    width: 85%;
    height: 100px;
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
}

.carousel_project_info h6,
.carousel_project_info p {
    margin: 0;
    padding: 0;
}

.carousel_project_info h6 {
    font-size: 15px;
}

.carousel_project_info p {
    font-size: 11px;
    color: var(--main-color);
    width: 100%;
}

.carousel_project_info_link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.carousel_project_info_link a {
    transition: all 0.3s ease;
}

.carousel_project_info_service {
    font-size: 11px;
    color: var(--main-color);
    width: 100%;   
}

.carousel-cell:hover .carousel_project_info {
    top: 100px;
}

/********************* Why ArqFood *****************************************/
.why_us {
    background-color: #e9e9e9;
    margin-top: 50px;
}

.why_us_content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.why_us_text {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 45%;
    justify-content: center;
}

.why_us_text h5 {
    font-family: 'square';
}

.why_us_text h3 {
    font-family: 'square';
}

.why_us_text p {
    font-family: 'Montserrat', sans-serif;
}

.why_line {
    background-color: var(--gold-color);
    width: 50px;
    height: 2px;
    margin-bottom: 10px;
}

.why_us_logo {
    display: flex;
    justify-content: flex-end;
}

.why_us_logo img {
    width: 100%;
    max-width: 150px;
}

.why_us_img {
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.why_reasons {
    display: flex;
    flex-direction: column;
    flex: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.why_reasons_content {
    background-color: #FFFFFF;
    width: 100%;
    display: flex;
    padding: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.why_reaons_icons {
    color: var(--gold-color);
    font-size: 25px;
    margin-right: 5px;
}

.why_reaons_text {
    color: var(--main-color);
    font-size: 12px;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

/********************* Project Section *****************************************/
.project_section {
    width: 100%;
}

.project_section_content {
    display: flex;
    justify-content: space-between;
}

.project_section_content_img {
    width: 50%;
}

.project_section_content_img img {
    width: 100%;
}

.project_section_content_text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.project_section_content_text h1 {
    width: 100%;
    text-align: left;
    color: var(--main-color);
    font-family: 'square';
}

.project_section_content_text p {
    color: #757575;
    font-family: 'Montserrat', sans-serif;
}

.project_line {
    background-color: var(--gold-color);
    width: 50px;
    height: 2px;
    margin-bottom: 10px;
}

.project_list ul,
.project_list li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.project_list li {
    display: flex;
    align-items: center;
}

.pointer_list {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.pointer_list img {
    width: 100%;
}

.project_section_link {
    width: 100%;
    text-align: right;
}

.project_section_link a {
    display: inline-block;
    color: #FFFFFF;
    background-color: var(--main-color);
    padding: 10px;
    transition: all 0.3s ease;
}

.project_section_link a:hover {
    color: var(--gold-color);
}


/********************* Service Section *****************************************/
.service_section {
    width: 100%;
    background-color: #e9e9e9;
}

.service_section_content {
    display: flex;
    justify-content: space-between;
}

.service_section_content_img {
    width: 50%;
}

.service_section_content_img img {
    width: 100%;
}

.service_section_content_text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.service_section_content_text h1 {
    width: 100%;
    text-align: left;
    font-family: 'square';
}

.service_section_content_text p {
    color: #757575;
    font-family: 'Montserrat', sans-serif;
}

.service_line {
    background-color: var(--gold-color);
    width: 50px;
    height: 2px;
    margin-bottom: 10px;
}

.service_section_link {
    width: 100%;
    text-align: right;
}

.service_section_link a {
    display: inline-block;
    color: #FFFFFF;
    background-color: var(--main-color);
    padding: 10px;
    transition: all 0.3s ease;
}

.service_section_link a:hover {
    color: var(--gold-color);
}

/********************* Footer *****************************************/
footer {
    background-color: var(--main-color);
    color: var(--gray-color);
}

.footer_section {
    display: flex;
    justify-content: space-between;
    flex: 1;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}

.footer_about {
    width: 25%;
}

.footer_about h6 {
    color: var(--gray-color);
    font-family: 'square';
}

.footer_about p {
    font-size: 11px;
    padding-right: 15px;
}

.footer_about a {
    padding: 10px;
    background-color: var(--gold-color);
    color: var(--gray-color);
    transition: all .3s ease;
    font-size: 12px;
}

.footer_about a:hover {
    color: var(--main-color);
}

.footer_menu {
    width: 25%;
}

.footer_menu h6 {
    color: var(--gray-color);
    font-family: 'square';
}

.footer_menu ul,
.footer_menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 12px;    
}

.footer_menu ul li a {
    color: var(--gray-color);
    display: block;
    padding: 2px 0;
    transition: all .3s ease;
}

.footer_menu ul li a:hover {
    color: var(--gold-color);
}

.footer_contact {
    width: 25%;
}

.footer_contact h6 {
    color: var(--gray-color);
    font-family: 'square';
}

.footer_contact a {
    font-size: 12px;
}

.footer_contact a span {
    color: var(--gray-color);
}

.footer_social {
    width: 25%;
}

.footer_social h6 {
    color: var(--gray-color);
    font-family: 'square';
}

.footer_social i {
    font-size: 21px;
}

.web_design {
    background-color: #02021f;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0px;
    font-size: 11px;
}

/********************* About_us Page *****************************************/
.about_banner {
    background-image: url('../img/about/about.jpg');
    background-position: center;
    background-size: cover;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
}

.about_banner h3 {
    color: #FFFFFF;
    margin-left: 10%;
}

.about_breadcrumb {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 30px;
    background: var(--main-color);
    margin-left: 10%;
}

.about_breadcrumb ul,
.about_breadcrumb ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about_breadcrumb ul {
    display: flex;
    align-items: center;
}

.about_breadcrumb ul a {
    padding: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}

.about_breadcrumb ul li:last-child {
    padding: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
}

.who_is {
    margin-top: 50px;
}

.column {
    flex-direction: column;
}

.who_line {
    background-color: var(--gold-color);
    width: 50px;
    height: 2px;
    margin-bottom: 10px;
}

.who_is h4 {
    color: var(--main-color);
    font-family: 'square';
}

.who_is p {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.mision,
.vision,
.valores {
    width: 100%;
}

.mision .container,
.valores .container {
    justify-content: flex-start;
    align-items: flex-start;
}

.vision .container {
    justify-content: flex-end;
    align-items: flex-end;
}

.mision h4,
.valores h4 {
    text-align: left;
    color: var(--main-color);
    border-bottom: 2px solid var(--gold-color);
    font-family: 'square';
}

.vision h4 {
    text-align: right;
    color: var(--main-color);
    border-bottom: 2px solid var(--gold-color);
    font-family: 'square';
}

.about_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.about_logo img {
    width: 100%;
    max-width: 300px;
}

/********************* Contact Page *****************************************/
.contact_banner {
    background-image: url('../img/contact/contact.jpg');
    background-position: center;
    background-size: cover;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
}

.contact_banner h3 {
    color: #FFFFFF;
    margin-left: 10%;
}

.contact_breadcrumb {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 30px;
    background: var(--main-color);
    margin-left: 10%;
}

.contact_breadcrumb ul,
.contact_breadcrumb ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact_breadcrumb ul {
    display: flex;
    align-items: center;
}

.contact_breadcrumb ul a {
    padding: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}

.contact_breadcrumb ul li:last-child {
    padding: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
}

.contact_us {
    margin: 50px 0px;
}

.contact_us_content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.contact_us_text {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 45%;
    justify-content: center;
}

.contact_us_text h3 {
    font-family: 'square';
}

.contact_us_text p {
    font-family: 'Montserrat', sans-serif;
}

.contact_line {
    background-color: var(--gold-color);
    width: 50px;
    height: 2px;
    margin-bottom: 10px;
}

.contact_us_logo {
    display: flex;
    justify-content: flex-end;
}

.contact_us_logo img {
    width: 100%;
    max-width: 150px;
}

.contact_us_form {
    padding-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.contact_us_form_container {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-top: 3px solid var(--main-color);
    border-bottom: 6px solid var(--main-color);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .6);
    width: 60%;
}

.contact_us_controls {
    display: flex;
    flex-direction: column;
    color: var(--main-color);
    margin-bottom: 10px;
}

.contact_us_controls label {
    font-size: 12px;
    font-weight: bold;
}

.contact_us_controls input {
    font-size: 12px;
    padding: 5px;
    outline: none;
}

.contact_us_controls input::placeholder,
.contact_us_controls textarea::placeholder {
    color: rgba(0, 0, 0, .4);
}

.contact_us_controls textarea {
    font-size: 12px;
    padding: 5px;
    min-height: 100px;
    outline: none;
}

.contact_us_controls input[type='submit'] {
    color: #FFFFFF;
    background-color: var(--main-color);
    transition: all 0.3s ease;
}

.contact_us_controls input[type='submit']:hover {
    color: var(--gold-color);
}

/********************* Project/Service Page *****************************************/
.project_banner {
    background-image: url('../img/projects/projects.jpg');
    background-position: center;
    background-size: cover;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
}

.project_banner h3 {
    color: #FFFFFF;
    margin-left: 10%;
}

.project_breadcrumb {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 30px;
    background: var(--main-color);
    margin-left: 10%;
}

.project_breadcrumb ul,
.project_breadcrumb ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.project_breadcrumb ul {
    display: flex;
    align-items: center;
}

.project_breadcrumb ul a {
    padding: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
}

.project_breadcrumb ul li:last-child {
    padding: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
}

.project_container {
    display: flex;
}

.project_menu {
    width: 25%;
    background-color: var(--main-color);
    min-height: 700px;
}

.project_content {
    width: 75%;
    padding: 40px;
    text-align: center;
}

.project_content h1 {
    color: var(--main-color);
    text-align: left;
    border-bottom: 2px solid var(--gold-color);
    font-family: 'square';
}

.project_content p {
    text-align: left;
}

.menu_acordeon {
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu_acordeon_head {
    border-bottom: 1px solid #DDE0E7;
	background: #000033;
	cursor: pointer;
	font-weight: 600;
	padding: 1.5rem;
    background:var(--main-color);
}

.menu_acordeon_head:hover {
	background: var(--gold-color);
    color: white;
}

.menu_acordeon_head.active {
	background-color: var(--gold-color);
    color: white;
}

.menu_acordeon_content {
	display: none;
	border-bottom: 1px solid #DDE0E7;
	background: var(--main-color);
	padding: 1rem;
	color: #000033;
}

.menu_acordeon_submenu {
    list-style: none;
}

.menu_acordeon_submenu li a {
    display: block;
    padding: 15px 15px;
    transition: all 0.3s ease;
}

.menu_acordeon_submenu li a:hover {
    color: white;
    background-color: #000033;
}

/********************* Project Details Page *****************************************/
.details_content {
    margin-top: 50px;
}

.details_content h3 {
    text-align: center;
}

.details_content p {
    text-align: center;
    font-size: 14px;
}

.details_form_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .6);
    width: 50%;
    margin: 0 auto;
}

.details_controls {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: var(--main-color);
    margin-bottom: 10px;
}

.details_controls #details_number {
    background-color: rgba(0, 0, 0, .1);
}

.details_controls label {
    font-size: 12px;
    font-weight: bold;
    text-align: left;
}

.details_controls input {
    font-size: 12px;
    padding: 5px;
    outline: none;
}

.details_controls input::placeholder,
.details_controls textarea::placeholder {
    color: rgba(0, 0, 0, .4);
}

.details_controls textarea {
    font-size: 12px;
    padding: 5px;
    min-height: 100px;
    outline: none;
}

.details_controls input[type='submit'] {
    color: #FFFFFF;
    background-color: var(--main-color);
    transition: all 0.3s ease;
}

.details_controls input[type='submit']:hover {
    color: var(--gold-color);
}

.details_banner {
    min-height: 200px;
    margin-top: 20px;
    width: 100%;
    background-image: url('../img/details/marcenaria/marcenaria.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.details_text p {
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif !important;
}

.details_galery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.details_galery .details_imagen {
    width: 300px;
    height: 300px;
    border: 1px solid var(--main-color);
    margin: 15px 0px;
    overflow: hidden;
}

.details_galery .details_imagen img {
    width: 100%;
}

/********************* Franchising Page *****************************************/
.franchising {
    background-color: #e9e9e9;
}

.franchising_content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.franchising_text {
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: center;
}

.franchising_text h5 {
    font-family: 'square';
}

.franchising_text h3 {
    font-family: 'square';
}

.franchising_text p {
    font-family: 'Montserrat', sans-serif;
}

.franchising_line {
    background-color: var(--gold-color);
    width: 50px;
    height: 2px;
    margin-bottom: 10px;
}

.franchising_container {
    display: flex;
    justify-content: space-between;
}

.franchising_image {
    width: 45%;
    margin-bottom: 20px;
}

.franchising_image img {
    width: 100%;
}

.franchising_logo {
    display: flex;
    justify-content: flex-end;
}

.franchising_logo img {
    width: 100%;
    max-width: 150px;
}

.franchising_img {
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.franchising_vantagens {
    display: flex;
    padding: 10px;
}

.vantagem_icon {
    width: 50px;
}

.vantagem_icon img {
    width: 100%;
}

.vantagem_text {
    display: flex;
    align-items: center;
    padding-left: 15px;
    color: var(--main-color);
    font-weight: bold;
}

.franchising_line_full {
    background-color: var(--gold-color);
    width: 100%;
    height: 2px;
    margin-bottom: 10px;
}

.method_banner {
    background-image: url('../img/franchising/method.jpg');
    background-position: center;
    background-size: cover;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
}

.invest_banner {
    background-image: url('../img/franchising/investiment.jpg');
    background-position: center;
    background-size: cover;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
}