@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

@font-face {
    font-family: 'Avenir Next';
    src: url(fonts/AvenirNextLTPro-Regular.otf);
    font-weight: 300;
}


@font-face {
    font-family: 'Avenir Next';
    src: url(fonts/Metropolis-SemiBold.otf);
    font-weight: 500;
}

@font-face {
    font-family: 'Avenir Next';
    src: url(fonts/AvenirNextLTPro-Bold.otf);
    font-weight: bold;
}

@font-face {
    font-family: 'Trajan';
    src: url(fonts/Trajan\ Pro\ Regular.ttf);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Avenir Next', sans-serif;

}

a {
    color: inherit;
}

/* Header and Navigation */









/* Main Section */

#sec-main {
    position: fixed;
    min-height: 80vh;
    width: 100vw;
    display: flex;
    justify-content: start;
    align-items: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

#sec-main .main-bg {
    position: absolute;
    z-index: -1;
    filter: brightness(.6);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.main-wrapper {
    position: absolute;
    margin-top: 80px;
    left: 10vw;

}

.main-wrapper h2 {
    font-size: clamp(30px, 6vw, 40px);
    font-weight: 300;
    letter-spacing: .1rem;
}

.main-wrapper h2 span {
    font-weight: 300;
}

.main-wrapper p {
    font-size: 14px;
    letter-spacing: .04rem;
    font-weight: 300;
    color: rgb(255, 255, 255);
}

.main-buttons-wrapper {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.main-buttons-wrapper .main-buttons {
    margin-right: 15px;
    width: 170px;
    height: 40px;
    border: 2px solid #fff;
    letter-spacing: .1rem;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease;
    cursor: pointer;
}

.main-buttons:hover {
    background-color: #fff;
    color: rgb(68, 68, 68) !important;
    transition: all .4s ease;

}

.main-buttons.homes {
    border: 2px solid #32D8A6;
    color: #32D8A6;
    transition: all .4s ease;

}

.main-buttons.homes:hover {
    color: #fff !important;
    background-color: #32D8A6;
    transition: all .4s ease;
}

.scroll-svg {
    position: absolute;
    bottom: 70px;
    right: 120px;
    width: 20px;
}

@media screen and (max-width: 1000px) {

    #sec-main {
        justify-content: center;
    }

    .scroll-svg {
        display: none;
    }

    .main-wrapper {
        margin-top: 140px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        left: unset;
        padding: 0 10vw;

        transform: translateY(-8vh);
    }

    .main-wrapper p {
        font-size: 16px;
    }

    .main-buttons-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .main-buttons-wrapper .main-buttons {
        margin: 10px 0;
        width: 180px;
        height: 45px;
        font-size: 13px;
    }

}

@media screen and (max-width: 680px) {

    #sec-main {
        min-height: 100vh;
    }

    .main-wrapper h2 {
        font-size: 35px;
        letter-spacing: 1px;
    }

    .main-wrapper p {
        font-size: 14px;
        max-width: 300px;
        position: relative;  
        margin-top: 10px;  
        left: 50%;
        transform: translateX(-50%);
    }
}


.content-wrap {
    transform: translateY(80vh);

}

@media screen and (max-width: 680px) {
    .content-wrap {
        transform: translateY(100vh);
    }

    .slideshow {
        height: 500px;
        margin-bottom: 100px;
    }
    
}


.slideshow {
    position: relative;
    display: flex;
    height: 300px;
    background-color: #fff;
    justify-content: center;
    padding: 20px 0;
    border-bottom: 3px solid rgb(255, 255, 255);
    overflow: scroll;
}


/* Section 1 */

#sec-1 {
    position: relative;
    z-index: 1;
    padding: 100px 5vw 150px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
}

#sec-1 h2 {
    font-size: clamp(20px, 5vh, 30px);
    font-weight: 400;
    letter-spacing: 2px;
}

#sec-1 h2 img {
    position: relative;
    bottom: 9px;
    left: 2px;
}

#sec-1 .sec-1-wrap {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.sec-1-img {
    width: 50%;
}

.sec-1-img img {
    width: 80%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    opacity: 1;
}

#sec-1 .text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    /* width: min(1000px, 80vw); */
    width: 50%;
    margin-top: 55px;
    margin-bottom: 30px;
    margin-left: 150px;
}

#sec-1 .text-wrap-p {
    max-width: 500px;
    line-height: 1.9;
    font-size: 18px;
    font-weight: 300;
}

.button-sec-1 {
    height: 55px;
    width: 280px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 3px solid #32D8A6;
    transition: .5s ease;
    cursor: pointer;
    margin-top: 40px;
}

.button-sec-1 a {
    color: inherit;
}

.button-sec-1:hover {
    background-color: #32D8A6;
    color: #fff;
    transition: .5s ease;
}

.button-sec-1:hover img {
    filter: invert(1);
    transition: filter .5s ease, transform 1s ease;
    transform: translateX(15px);
}

.button-sec-1 p {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.button-sec-1 img {
    position: relative;
    right: 20px;
    transition: .5s ease;

}


@media screen and (max-width: 1400px) {

    #sec-1 .text-wrap {
       
        width: 60%;
        margin-top: 60px;
        margin-bottom: 30px;
        margin-left: 100px;
    }

    #sec-1 .text-wrap-p {
        font-size: 16px;
        max-width: 450px;
    }

    .button-sec-1 {
        width: 210px;
        height: 45px;
    }
    
    .button-sec-1 p {
        font-size: 12px;
    }

    .button-sec-1 img {
        right: 10px;
    }


}


@media screen and (max-width: 1200px) {

    #sec-1 .text-wrap {
        margin-left: 10px;
    }

    .sec-1-img {
        width: 50%;
    }
    
    .sec-1-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
        opacity: .9;
    }


}


@media screen and (max-width: 1000px) {

    #sec-1 .text-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 70px 0 20px;
    }

    #sec-1 .text-wrap-p {
        font-size: 15px;
    }

    .sec-1-img {
        width: 40%;
    }
    
    #sec-1 .text-wrap {
        width: 60%;
    }

}

@media screen and (max-width: 690px) {


    #sec-1 .text-wrap {
        width: 100%;
        padding: 0 70px;
        margin: 40px 0;
    }

    .sec-1-wrap {
        flex-direction: column;
    }

    .sec-1-img {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
    
    .sec-1-img img {
        width: 80%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
        opacity: .9;
    }

    #sec-1 .sec-1-wrap {
        justify-content: center;
        align-items: center;
    }

    #sec-1 h2 {
        font-size: 23px;
        font-weight: 400;
        letter-spacing: 2px;
        text-align: left;
        padding-left: 70px;
    }

}


@media screen and (max-width: 500px) {

    #sec-1 .text-wrap {
        padding: 0 40px;
    }

    #sec-1 h2 {
        padding-left: 40px;
    }
}





/* Services Section SEC-2 */

#sec-2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.services-cover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.877);
}

#sec-2 h2 {
    font-size: clamp(35px, 4vw, 55px);
    left: 0;
    color: #4E4E4E;
    margin-top: -50px;
    font-weight: 500;
    margin-bottom: 80px;
    align-self: flex-start;
    position: relative;
    left: calc((100vw - 1200px) / 2);
    z-index: 2;

}

.services-wrap {
    display: flex;
    max-width: 1300px;
    position: relative;
    z-index: 2;
}

.service {
    color: #777777;
    max-width: 350px;
    margin: 0 50px;
}

.service h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}


.service > p {
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: .5px;
    margin-bottom: 25px;
}

.service-button:hover {
    background-color: #777777;
    transition: .5s ease;
    color: rgb(233, 233, 233);
}

.service-button {
    height: 40px;
    color: #777777;
    width: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #777777;
    transition: .5s ease;

}


.service-button p {
    font-weight: 500;
    font-size: 12px;
}

.service-button:hover img {
    filter: brightness(2);
    transform: translateX(10px);
    transition: .5s ease;

}

.service-button img {
    position: relative;
    left: -15px;
    transition: .5s ease;

}

@media screen and (max-width: 1300px) {
    
    .service{
        margin: 0 15px;
    }

    #sec-2 h2 {
        left: 15px;
    }

    #sec-2 {
        padding: 0 50px;
    }
}

@media screen and (max-width: 900px) {
    .services-wrap {
        flex-direction: column;
    }

    .service {
        margin: 0 0 70px 0;
    }

    #sec-2 h2 {
        margin-top: 150px;
        left: 50%;
        transform: translateX(-50%);
    }

    .service-button.last {
        margin-bottom: 120px;
    }

    .service-button {
        width: 180px;
    }
}




/* Form Section */

#sec-contact {
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    padding: 200px 10vw;
}

.contact-wrap {
    margin-right: 200px;
}

.signup-text h2 {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 500;
    text-align: left;
    color: #3d3d3d;
}

.signup-text p {
    position: relative;
    font-size: 18px;
    text-align: left;
    max-width: 390px;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 300;
    color: #bebebe;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 500px;
    margin-right: 0 !important;
}

.input-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 40px 0;
}

.input {
    position: relative;
    width: 50%;
    font-weight: 300;
    font-size: 18px;
    color: #bebebe;
}

::placeholder {
    font-weight: 300;
    font-size: 18px;
    color: #bebebe;
    font-family: 'Avenir Next', sans-serif;
}

.contact-img {
    position: relative;
    height: 600px;
    width: 450px;
}


.contact-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    opacity: .8;
}

@media screen and (min-width: 850px) {
    
    .input.left {
        margin-right: 20px;
    }

    .input.right {
        margin-left: 20px;
    }
}

input {
    height: 65px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #d8d8d8;
    font-family: inherit;
    font-size: 18px;
    color: #bebebe;
    font-weight: 300;
}

input:focus {
    outline: none;
}

.input-message {
    width: 100%;
}

textarea {
    width: 100%;
    font-family: inherit;
    height: 45px;
    border: none;
    border-bottom: 1px solid #d8d8d8;
    font-size: 18px;
    font-weight: 300;
    color: #bebebe;
    margin: 30px 0 50px 0;
}


textarea:focus {
    outline: none;
}

form button {
    width: 100%;
    padding: 13px 0;
    font-size: 16px;
    font-weight: 100;
    font-family: Neue;
    background-color: rgba(255, 255, 255, 0.986);
    border: 1px solid #000;
    cursor: pointer;
    transition: .5s ease;
    font-family: 'Avenir Next', sans-serif;
    /* color: #32D8A6; */
}

form button:hover {
    background-color: #32D8A6;
    color: #fff;
    transition: .5s ease;
    border: 1px solid #32D8A6;

}

@media screen and (max-width: 860px) {
    
    .signup-text p {
        font-size: 18px;
        max-width: 280px;
    }

    .input-row {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 40px 0;
    }

    .input {
        width: 100%;
    }

    form {
        width: min(60vw, 280px);
    }

    .input.left {
        margin-bottom: 70px;
    }

    textarea {
        height: 100px;
        font-size: 18px;
    }

    input {
        font-size: 18px;
    }

    form button {
        padding: 10px 0;
        font-size: 16px;
    }

}


@media screen and (max-width: 1150px) {
    .contact-img {
        display: none;
    }

    form {
        min-width: unset;
    }

    .contact-wrap {
        margin-right: 0;
    }
}

@media screen and (max-width: 500px) {

    #sec-contact {
        padding: 100px 50px;
    }
    form {
        width: 100%;
    }
}














