.main_container {
    position: absolute;
    width: 100%;
    top: 0px;
}

.container {
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container_height {
    height: 100%;
}

.container_dark {
    background-color: var(--dark);
}

.container_light {
    background-color: var(--grey);
}

.section_img {
    position: absolute;
    background-color: var(--dark);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.20;
    z-index: 1;
}

.container_info {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    position: relative;
    z-index: 20;
}

.info_wrapper {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 0px 0px 20px 0px;
}


.navbar_section {
    position: fixed;
    z-index: 200;
    height: 90px;
}

/* HERO CONTAINER */

.hero_container_logo {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--margin-bm);
}

.hero_container_logo img {
    width: 100%;
}


.triangle_container {
    position: absolute;
    z-index: 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 3px solid var(--light);
}

.triangle_down {
    position: relative;
    z-index: 3;
    width: 0;
	height: 0;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-top: 40px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WORKSHOP CONTAINER */

.workshop_container_info {
    flex-direction: column;
}


/* SERVICES CONTAINER */

.services_card_wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.service_card {
    width: 100px;
    height: 80px;
    border-radius: 5px;
    background: var(--accent);
    background: linear-gradient(135deg, rgb(99, 193, 155) 65%, rgba(53,177,166,0.7) 100%); 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}

.service_card h4 {
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
    font-size: 8px;
    font-weight: var(--text-font-500);
}

/* CLIENTS CONTAINER */

.clients_card_wrapper {
    width: 90%;
}

/* REVIEWS CONTAINER */

.reviews_card_wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.reviews_card {
    width: 350px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--light);
    padding: 20px 15px;
    border-radius: 5px;
    margin: 0px 15px 15px 15px;
}

.reviews_card img {
    width: 100%;
    height: 20px;
}

.review_text {
    margin-top: 10px;
    font-size: 12px;
    text-align: left;
}

.author {
    margin-top: 10px;
    font-size: 12px;
    text-align: left;
    font-weight: bold;
}

/* FOOTER CONTAINER */

.footer_img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-position: right;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}

.footer_form, .form_table {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.input_text, .input_message {
    margin: 15px 10px;
}

.input_text {
    border: 1.5px solid var(--accent);
    background-color: transparent;
    height: 30px;
    width: 300px;
    border-radius: 5px;
}

.input_message {
    border: 1.5px solid var(--accent);
    background-color: transparent;
    height: 150px;
    width: 300px;
    border-radius: 5px;
}


.footer_form_container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: var(--margin-bm);
}

.footer_info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 50px;
}

.footer_info_text {
    margin-bottom: var(--margin-bm);
}

.footer_info_text p {
    font-size: var(--font-mobile-p);
    letter-spacing: 1.3px;
    color: var(--light);
    text-align: center;
}

.footer_info_text a {
    font-weight: bolder;
    text-decoration: underline;
}

.footer_whatsapp {
    width: 30px;
}

.footer_contact {
    display: flex;
    flex-direction: column;
}

.footer_contact a {
    text-align: center;
    color: var(--light);
    font-size: var(--font-mobile-p);
    font-weight: var(--text-font-300);
}
