 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


@font-face {
    font-family: Sans;
    src: url(../assets/DM_Sans/DMSans-VariableFont_opsz\,wght.ttf);
}
html {
    scrollbar-width: thin;
    scroll-behavior: smooth;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

body {
    background: #FFF;
    width: 100%;
    scroll-behavior: auto;
    overflow-x: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    height: 90vh;
    padding: 3rem 2rem;
}
.slide {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 5px;
}
.slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    backdrop-filter: brightness(40%);
}
.overlay h4 {
    width: fit-content;
    font-family: "Sans";
    font-size: 14px;
    font-weight: 500;
    color: #111;
    background: #d9d9d9;
    padding: 10px 30px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1rem;
    user-select: none;
}
.overlay h2 {
    width: 80%;
    font-family: "Sans", sans-serif;
    font-size: 8vh;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1.2px;
    color: white;
    /* color: var(--color-primary); */
    text-transform: capitalize;
    margin-bottom: 3rem;
}
.overlay p {
    width: 50%;
    font-family: "inter", sans-serif;
    font-size: 14px;
    color: white;
    text-transform: capitalize;
    margin-left: 5rem;
}
.button_container {
    margin-top: 2rem;
    margin-left: 5rem;
    display: flex;
    gap: 1rem;
}
.button_container > button {
    padding: 10px 30px;
    border: 1px solid white;
    font-family: Sans;
    background: transparent;
    font-weight: 500;
    font-size: 15px;
    border-radius: 2px;
    color: white;
}
.button_container > button:nth-child(1) {
    background: #111;
    color: white;
    border: none;
}

.container {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 3rem 2rem;
}

.container > .row {
    /* margin-top: 2rem; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    align-items: flex-start;
}

.column#bord {
    /* border-top: 1px solid #444; */
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 2rem;
    gap: 1rem;
}
.column > h4 {
    width: fit-content;
    font-family: "Sans";
    font-size: 16px;
    font-weight: 500;
    color: #111;
    background: #d9d9d9;
    padding: 10px 30px;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 1rem;
}
.column > h2 {
    width: 90%;
    font-family: "Sans";
    font-weight: 400;
    font-size: 5vh;
    text-transform: capitalize;
    margin-bottom: 3rem;
    line-height: 1.2;
}
.column > p {
    width: 70%;
    font-family: "Inter", sans-serif;
}
.column a > button {
    padding: 10px 30px;
    border: 1px solid #111;
    color: #111;
    background: transparent;
    margin-top: 1rem;
    font-weight: 600;
    font-family: Sans;
    border-radius: 2px;
    position: relative;
    transition: all .6s ease;
}
.column a > button:hover {
    color: white;
}
.column a > button::after {
    content: '';
    width: 0;
    height: 100%;
    z-index: -99;
    /* padding: 10px; */
    border-radius: 2px;
    border: 1.5px solid #111;
    background-color: #111;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    position: absolute;
    transition: all .6s ease;
    visibility: hidden;

}
.column a > button:hover::after {
    width: 100%;
    visibility: visible;
}

.box {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: flex-start;
}
.box > span {
    font-size: 4vh;
    height: fit-content;
    width: fit-content;
    padding: 10px;
    background: transparent;
    border: 1px solid #111;
    color: transparent;
    border-radius: 2px;
    -webkit-text-stroke: 1px #111;
    margin-right: 1rem;
}
.box h3 {
    font-family: "Sans";
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 2rem;
    position: relative;
}
.box h3::after {
    content: '';
    width: 30%;
    height: 2px;
    border-radius: 80px;
    background: #333;
    bottom: -10px;
    left: 0;
    position: absolute;
}
.box p {
    width: 90%;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #333;
}
.box > img {
    width: 100%;
    height: 100%;
}

.company {
    width: 100%;
    padding: 2rem 2rem;
}
.company_container {
    background: url(../images/pexels-denner-trindade-1570398-17821556.jpg) no-repeat;
    background-size: cover;
    background-position: bottom right;
    width: 100%;
    height: 100%;
    min-height: 65vh;
    display: grid;
    align-items: center;
    border-radius: 5px;
    /* background-attachment: fixed; */
}
.company_container_box {
    /* background: #111111b7; */
    backdrop-filter: brightness(60%);
    height: 100%;
    gap: 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
    align-items: center;
}
.company_box {
    width: 100%;
    height: 80%;
}
.company_box > h4 {
    width: fit-content;
    font-family: "Sans";
    font-size: 16px;
    font-weight: 500;
    color: #111;
    background: #d9d9d9;
    padding: 10px 30px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1rem;
}
.company_box > h2 {
    width: 80%;
    font-family: "Sans";
    font-weight: 450;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: white;
}
.company_box > p {
    width: 80%;
    font-family: "Inter", sans-serif;
    color: white;
}

/* About us styles */
.about {
    width: 100%;
    display: grid;
    align-items: center;
    gap: 5rem;
    padding: 2rem 0 0 0;
    position: relative;
}
.about-row {
    display: grid;
    place-items: center;
}
.about-row > h4 {
    width: fit-content;
    font-family: "Sans";
    font-size: 16px;
    font-weight: 500;
    color: #111;
    background: #d9d9d9;
    padding: 10px 30px;
    border-radius: 30px;
    text-align: center;
}
.about-row > h2 {
    width: 75%;
    font-family: Sans;
    font-display: swap;
    font-size: 9vh;
    color: black;
    line-height: 1.4;
    font-weight: 400;
    text-transform: capitalize;
    margin-top: 2rem;
    text-align: center;
}
.about-row > p {
    width: 50%;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: black;
    line-height: 1.4;
    font-weight: 400;
    margin-top: 2rem;
    text-align: center;
}
.about-row:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
    align-items: start;
}
.about_container {
    width: 100%;
    display: grid;
    gap: 3em;
    padding: 2rem;
}
.about-row > img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    position: sticky;
    top: 0;
}
.about_box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 5em;
    min-height: 30vh;
    justify-content: space-between;
}
.about_box > span {
    font-family: Sans;
    font-weight: 600;
    font-size: 8vh;
    position: relative;
}
.about_box> span::after {
    content: '';
    width: 40%;
    height: 2px;
    border-radius: 80px;
    background: #333;
    bottom: -10px;
    left: 0;
    position: absolute;
}
.about_box_body {
    height: 100%;
    display: grid;
}
.about_box_body > h2 {
    width: 75%;
    font-family: Sans;
    font-display: swap;
    /* font-size: 9vh; */
    color: black;
    line-height: 1.4;
    font-weight: 400;
    text-transform: capitalize;
}
.about_box_body > p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    margin-bottom: auto;
    color: #333;
}

.work {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
    min-height: 100vh;

}
.work-cont {}
.work-row h2 {
    font-family: "Inter";
    font-size: .5rem;
    font-weight: 580;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.work-row > img {
    width: 350px;
    height: 30vh;
    object-fit: cover;
    border-radius: 5px;
}
.work-row h3 {
    width: 50%;
    font-family: "Inter";
    font-weight: 450;
    font-size: 45px;
    margin-bottom: 3rem;
    line-height: 1.2;
}
.work-row h2>span {
    /* transform: rotate(-80deg); */
    font-size: 18px;
    padding-left: 1rem;
    display: none;
}
.work-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
}
.work-row:nth-child(1) {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
}
.work-row p {
    width: 70%;
    font-family: "Inter";
    font-size: 18px;
    color: black;
    line-height: 1.6;
    font-weight: 400;
    text-align: start;
    margin-top: 2rem;
}

main {
    display: grid;
    place-items: center;
}
#cta {
    width: 80%;
}