:root {
    --orange: #f04a00;
    --black: #030303;
    --heading-one: 150px;
    --mobile-heading-one: 100px;
    --text: 18px;
    --mobile-text: 16px;
    --tag: 25px;
    --mobile-tag: 22px;
    --card-title: 50px;
    --mobile-card-title: 40px;
    --banner: 88px;
    --mobile-banner: 60px;
    --big-title: 90px;
    --mobile-big-title: 60px;
    --sub-title: 75px;
    --mobile-sub-title: 40px;
}
@font-face {
    font-family: 'Interstate-Bold Bold';
    src: url('../307074798a79d1495a2ff6a0f00f9c20.eot'); /* IE9*/
    src: url('../307074798a79d1495a2ff6a0f00f9c20.eot?#iefix')
            format('embedded-opentype'),
        /* IE6-IE8 */ url('../307074798a79d1495a2ff6a0f00f9c20.woff2')
            format('woff2'),
        /* chrome、firefox */ url('../307074798a79d1495a2ff6a0f00f9c20.woff')
            format('woff'),
        /* chrome、firefox */ url('../307074798a79d1495a2ff6a0f00f9c20.ttf')
            format('truetype'),
        /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
            url('../307074798a79d1495a2ff6a0f00f9c20.svg#Interstate-Bold Bold')
            format('svg'); /* iOS 4.1- */
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
header,
footer,
main,
section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper {
    width: 100%;
    max-width: 1440px;
    padding: 6rem 4rem;
}
button {
    background-color: var(--orange);
    cursor: pointer;
    padding: 0.5rem 2rem;
    border: 2px solid var(--orange);
    color: white;
    font-weight: 700;
}
button:hover {
    background-color: transparent;
    transition: color 300ms ease, background-color 300ms ease;
    color: var(--orange);
}
ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}
a {
    color: var(--black);
    text-decoration: none;
}
h1 {
    font-size: var(--heading-one);
    line-height: 1;
    font-family: 'Interstate-Bold Bold' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}
span {
    font-family: 'Interstate-Bold Bold' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}
h2 {
    font-size: var(--sub-title) !important;
    line-height: 1;
    font-family: 'Interstate-Bold Bold' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 700px) {
    .wrapper {
        padding-inline: 2rem;
    }
}
@media (max-width: 500px) {
    .wrapper {
        padding-inline: 1rem;
    }
}
.card {
    padding: 2rem;
    min-height: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background-color: var(--orange);
    color: white;
    font-size: var(--card-title);
    font-weight: 900;
    line-height: 1;
}
.card p {
    max-width: 10ch;
    font-family: 'Interstate-Bold Bold' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}
.text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
img {
    width: 100%;
}
.three-card-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
/****** Dropdown ******/

.dropdown {
    position: relative !important;
    display: none;
    z-index: 1000 !important;
}
.dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    padding: 1.5rem;
    background-color: var(--orange);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: max-content;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
    gap: 2rem;
    border-radius: 0.5rem;
    color: white;
}

.dropdown-heading > a {
    font-weight: 700 !important;
    color: white;
}
.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.dropdown-links a {
    font-weight: 300 !important;
}
.div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.menu {
    width: 35px;
    display: none;
    cursor: pointer;
}
.dropdown.active > .link + .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    transition: opacity 0.5s, transform 0.5s;
}
.menu + .dropdown-menu {
    padding-block: 2rem;
    display: none;
}
.dropdown-heading > p {
    font-weight: 700 !important;
}
.dropdown > a {
    font-weight: 300 !important;
}
@media (max-width: 1150px) {
    nav ul {
        display: none;
    }
    .dropdown {
        display: block;
    }
    .menu + .dropdown-menu {
        padding-block: 2rem;
        display: grid;
    }
    .menu {
        display: block;
    }
    nav {
        display: flex;
        justify-content: flex-end;
    }
}
@media (max-width: 500px) {
    .header-wrapper {
        padding-inline: 1rem;
    }
    .dropdown-menu {
        grid-template-columns: 1fr;
    }
}

/* Header */

.header-wrapper {
    width: 100%;
    max-width: 1440px;
    padding: 1rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-wrapper img {
    width: 125px;
}
.logo-wrapper {
    width: 25%;
}
nav {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}
nav ul li {
    font-weight: 400;
}
.header-button-wrapper {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 1150px) {
    nav,
    .header-button-wrapper {
        display: none;
    }
}
@media (max-width: 700px) {
    .header-wrapper {
        padding-inline: 2rem;
    }
}
@media (max-width: 500px) {
    .header-wrapper {
        padding-inline: 1rem;
    }
}
/* Main */

main .arrow {
    width: 125px;
    align-self: flex-end;
    /* margin-top:-6rem; */
}
main .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
main h1 {
    text-align: center;
    max-width: 6ch;
}
main p {
    max-width: 22ch;
    font-weight: 300;
    line-height: 1.5;
}
main .wrapper .heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1252px) {
}
@media (max-width: 1150px) {
}
@media (max-width: 861px) {
    h1 {
        font-size: 125px;
    }
}
@media (max-width: 650px) {
    h1 {
        font-size: 120px;
    }
}
@media (max-width: 600px) {
    h1 {
        font-size: var(--mobile-heading-one);
        letter-spacing: -0.4rem !important;
    }
    main p {
        font-size: var(--mobile-text);
    }
}

@media (max-width: 456px) {
    h1 {
        font-size: 80px;
    }
    h1 {
        letter-spacing: -0.2rem !important;
    }
}
@media (max-width: 387px) {
    h1 {
        font-size: 60px;
    }
}
@media (max-width: 306px) {
    h1 {
        font-size: 55px;
    }
}

/* Welcome */

.welcome-section .wrapper {
    padding-top: 12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.welcome-section .wrapper h2 {
    font-size: var(--sub-title) !important;
    max-width: 12ch;
}
.welcome-section .wrapper p {
    font-weight: 300;
    max-width: 70ch;
    width: 100%;
    line-height: 1.5;
}
@media (max-width: 1150px) {
}
@media (max-width: 861px) {
}

@media (max-width: 600px) {
    .welcome-section .wrapper h2 {
        font-size: var(--mobile-sub-title) !important;
    }
    .welcome-section .wrapper p {
        font-size: var(--mobile-text);
    }
    .welcome-section .wrapper {
        align-items: flex-start;
    }
}
@media (max-width: 519px) {
}

@media (max-width: 384px) {
}
/* Featured */

.featured-section .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
}
.featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8rem;
    align-items: center;
}
.featured-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8rem;
    align-items: center;
}
.featured-item:nth-child(2) {
    border-block: 1px solid var(--black);
    margin-block: 4rem;
    padding-block: 4rem;
}
.featured-item:nth-child(3) {
}
.featured-item p {
    font-weight: 700;
    font-size: var(--sub-title) !important;
    font-family: 'Interstate-Bold Bold' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    max-width: 15ch !important;
}
@media (max-width: 1150px) {
    .featured-item {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
        align-items: center;
    }
}
@media (max-width: 1034px) {
    .featured-item p {
        font-size: 50px !important;
    }
}
@media (max-width: 861px) {
    .featured-item {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
        align-items: center;
    }
    .featured-item p {
        font-size: 40px !important;
    }
}

@media (max-width: 600px) {
    .featured-item p {
        font-size: 32px !important;
    }
    .featured-item {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
}
@media (max-width: 519px) {
}

@media (max-width: 384px) {
}

/* Banner */

.banner {
    background-color: var(--orange);
    color: white;
    transform: rotateZ(-1deg);
    padding-block: 4rem;
    width: 102%;
}
.banner h2 {
    font-size: 6dvw !important;
    font-family: 'Interstate-Bold Bold' !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}
/* Portfolio */

/* Why */

.why-section h2 {
    max-width: 10ch;
}
.why-section p {
    max-width: 50ch;
    font-weight: 300;
    line-height: 1.5;
}
.why-section .wrapper {
    padding-block: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6rem;
}
.why-section button {
    margin-top: -4rem;
}
.why-section .three-card-grid .card:nth-child(1) {
    background-image: linear-gradient(to top, #030303ad, #03030300 50%),
        url(home-carlos-png/Rectangle27.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.why-section .three-card-grid .card:nth-child(2) {
    background-image: linear-gradient(to top, #030303ad, #03030300 50%),
        url(home-carlos-png/Rectangle28.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.four-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}
.gallery-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.gallery-card p:nth-of-type(1) {
    font-weight: 700;
    font-size: var(--tag);
    line-height: 1.2;
    margin-top: 0.5rem;
}
.gallery-card p:nth-of-type(2) {
    font-weight: 200;
    font-size: var(--text);
    line-height: 1.2;
}
.gallery-card img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}
@media (max-width: 600px) {
    .gallery-card p:nth-of-type(1) {
        font-weight: 700;
        font-size: var(--mobile-tag);
        line-height: 1.2;
        margin-top: 0.5rem;
    }
    .gallery-card p:nth-of-type(2) {
        font-weight: 300;
        font-size: var(--mobile-text);
        line-height: 1.2;
    }
    .why-section h2 {
        max-width: 10ch;
        font-size: var(--mobile-sub-title) !important;
    }
}
@media (max-width: 500px) {
    .four-card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        width: 100%;
    }
}

/* Quote */

.quote-section {
    background-color: var(--orange);
    color: white;
}

.quote-section .wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4rem;
}
.quote-left {
    width: 55%;
}
.quote-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
.quote-right button {
    background-color: white;
    color: var(--orange);
}
.quote-left h2 {
    font-size: var(--sub-title) !important;
    max-width: 10ch;
}

.quote-right p {
    font-size: var(--text);
    font-weight: 300;
    line-height: 1.5;
}

@media (max-width: 1150px) {
    .quote-section .wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .quote-left,
    .quote-right {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .quote-left h2 {
        font-size: var(--mobile-sub-title) !important;
    }
    .quote-right p {
        font-size: var(--mobile-text);
    }
}
/* Footer */

footer .wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
    padding-bottom: 4rem;
}

footer img {
    width: 100px;
}
.footer-top {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
}
.column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}
footer ul {
    flex-direction: column;
    align-items: flex-start;
}
.socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.socials img {
    width: 30px;
}
.contact-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.contact-box p:nth-of-type(1) {
    font-weight: 700;
}
.address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
footer .column p {
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
}
footer .column {
    width: 100%;
}
.address p:nth-of-type(1) {
    font-weight: 700;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid black;
    padding-top: 4rem;
}
.footer-bottom p {
    font-size: 14px;
}
.privacy {
    display: flex;
    align-items: center;
    gap: 2rem;
}
footer .column:nth-child(3),
footer .column:nth-child(4) {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}
@media (max-width: 861px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    footer .column,
    footer .column:nth-child(3),
    footer .column:nth-child(4) {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .column-top {
        margin-top: 1rem;
    }
    .address,
    .contact-box {
        align-items: center !important;
        justify-content: center !important;
    }
    .address,
    .contact-box {
        max-width: max-content;
        width: max-content;
    }
    footer ul {
        align-items: center;
    }
    .address p:nth-of-type(1) {
        max-width: max-content;
    }
    .contact-box p:nth-of-type(1) {
        max-width: max-content;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        width: 100%;
    }
    .footer-bottom a {
        align-self: center;
    }
    .privacy {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .footer-bottom p {
        text-align: center;
        align-self: center;
    }
}

@media (max-width: 600px) {
    .quote-left h2 {
        font-size: var(--mobile-sub-title);
    }
    .quote-right p {
        font-size: var(--mobile-text);
    }
}
body {
    overflow-x: hidden !important;
}
html {
    overflow-x: hidden;
}

.text1,
.text2 {
    overflow-y: hidden;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    font-family: 'Interstate-Bold Bold' !important;
    letter-spacing: -0.6rem;
}

.char {
    font-family: 'Interstate-Bold Bold' !important;
}

.welcome-section .wrapper {
    transform: translateX(-20rem);
    opacity: 0;
}
.featured-section .wrapper {
    transform: translateX(20rem);
    opacity: 0;
}
.gallery-column {
    transform: translateX(-20rem);
    opacity: 0;
}
.four-card-grid {
    transform: translateX(20rem);
    opacity: 0;
}
.quote-section .wrapped {
    transform: translateX(-20rem);
    opacity: 0;
}

.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid black;
    padding-top: 4rem;
}
footer .island {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.banner h2 {
    text-align: center !important;
    line-height: 1.25;
    font-size: 6dvw !important;
}
