*{
    margin: 0;
    padding: 0;
    font-family: 'Raleway', helvetica, sans-serif;
}


h1{
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    color: #238C7A;
    font-size: 110px;
    margin: 0;
    line-height: 110px;
    margin-bottom: 2rem;
}
.h1-color {
    font-family: 'DM Serif Display', serif;
    color: rgb(50, 50, 50);
}
h2{ 
    font-family: 'DM Serif Display', serif;
    color: #238C7A;
    font-weight: 400;
    font-size: 32px;
}
h3 {
    font-size: 13px;
    font-weight: 500;
    color: rgb(50, 50, 50);
}
h4 {
    font-size: 30px;
    color: rgb(50, 50, 50);
}
p {
    font-weight: 200;
    color: rgb(50, 50, 50);
    
}
button {
    font-weight: 500;
}




/* Navigation + Hamburger menu ---------------------------- */
.home-logo {
    max-width: 125px;
    margin-top: 7px;
}


li {
    list-style: none;
}
a {
    text-decoration: none; 
    color: rgb(50, 50, 50);
}


.navbar { 
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    z-index: 1;
}

.nav-branding {
    font-size: 2rem;
}

.nav-link {
    transition: 0.7s ease;
}
.nav-link:hover {
    color: #238C7A;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgb(50, 50, 50);
}


/* Home --------------------------------------------------- */

/* Home Section 01 */


.section-01 {
    background-color: #f1f0f0;
    
    padding-top: 80px;
    padding-bottom: 110px;
    padding-left: 5rem;
    padding-right: 3rem;

    position: relative;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;

    max-width: 1600px;
    /* width: 100%; */
    height: 90vh;
    background: url("images/cover.png");
    background-size: cover;
}


.signup-btn {
    width: 150px;
    height: 40px;
    border: none;
    background-color: #f1f0f08d;
    color: #238C7A;
    border-radius: 2px;

    margin-top: 10px;

    transition: ease-out 0.3s;
    font-size: 19px;
    outline: none;   

    border: 2px solid #238C7A;
    position: relative;
    z-index: 1;
}
.signup-btn:hover {
    color: white;
    cursor: pointer;
}
.signup-btn:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background-color: #238C7A;
}
.signup-btn:hover:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
}

.p-header {
    font-size: 22px;
    line-height: 29px;
    max-width: 400px;
}

.header-grid {
    display: grid;
    grid-template-columns: 28rem auto;
}
.header-grid-01 {
    grid-row: 1;
    grid-column: 2;   
}
.header-grid-01 {
    grid-row: 1;
    grid-column: 1;   
}


/* Home Section 02 */

.section-02 {
    margin: auto;
    display: grid;
    gap: 15px;
    grid-template-columns: auto auto auto;
    padding: 10px;
    max-width: 85%;
    margin-top: 4rem;
    margin-bottom: 6rem;

    position: relative;
}

.section02-grid {
    border: 1.25px solid #e2e2e2; 
    border-radius: 2.5px;
    padding: 40px;
    text-align: center;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}
.section02-grid:hover {
    top: -5px;
}

.line02-01 {
    background-color: #238C7A;
    width: 45px;
    height: 5px;

    position: absolute;
    left: 44%;
    top: -3px;
}
.line02-02 {
    background-color: #238C7A;
    width: 45px;
    height: 5px;

    position: absolute;
    left: 43%;
    top: -3px;
}
.line02-03 {
    background-color: #238C7A;
    width: 45px;
    height: 5px;

    position: absolute;
    left: 44%;
    top: -3px;
}


/* Home Section 03 */

.section-03 {
    width: 100%;
    margin: auto;
    position: relative;
    margin-bottom: 6rem;
}

.parallax-03 {
    background-image: url("images/02.jpg");

    min-height: 350px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.caption-03 {
    position: absolute;
    left: 20%;
    top: 27%;
    width: 50%;
    text-align: center;

    background-color: white;
    padding-bottom: 40px;
    padding-top: 35px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 3px;
}


/* Home Section 04 */

.section-04 {
    max-width: 85%;
    margin: auto;
    position: relative;
    margin-top: 3rem;
    margin-bottom: 6rem;

    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 30px;
}

.grid04-01 {
    grid-row: 1;
    grid-column: 1;
}
.grid04-02 {
    grid-row: 2;
    grid-column: 2;
}
.grid04-03 {
    grid-row: 2;
    grid-column: 3;
}

.grid04-01 h2 {
    line-height: 34px;
}
.grid04-01 h3 {
    margin-bottom: 7px;
}


/* Integrations ----------------------------------------------------- */

/* Integrations Section 01 */

.int-main {
    padding-left: 6%;
    padding-right: 6%;

    margin-bottom: 4rem;
}

h4{ 
    font-family: 'DM Serif Display', serif;
    color: #238C7A;
    font-weight: 400;
    font-size: 40px;
}

.int-section-01 {
    margin-top: 1.5rem;
}

.int-header {    
    position: fixed;
    max-width: 240px;
}
.int-header h4 {
    margin-bottom: 10px;
}
.int-header p {
    margin-bottom: 10px;
}

.int-description {
    padding-left: 15px;
    border-style: none none none solid;
    border-width: 5px;
    border-color: #238C7A;
}

.int-section01-grid {
    display: grid;
    grid-template-columns: 270px auto auto auto;
    grid-gap: 15px;
}

.int-logos {
    max-width: 200px;
}

.int-empty {
    grid-row: span 4;
}

.int-companies {
    padding: 25px;
    border: 1.25px solid #e2e2e2;
    border-radius: 2.5px;

    position: relative;
    top: 0;
    transition: top ease 0.5s;
}
.int-companies:hover {
    top: -5px;
}



/* footer --------------------------------------------- */

footer {
    background-color: #f1f0f0;
}
.foot {
    max-width: 85%;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 3rem;
}

.foot a {
    text-decoration: none;
}

.copyright {
    text-align: center;
    font-size: 13px;
    margin-bottom: 0;
    padding-bottom: 5px;
}

.foot-logo {
    max-width: 140px;
    margin-top: 0;
}

.foot {
    display: grid;
    grid-template-columns: auto auto auto 25%;
    grid-gap: 45px;
}
.foot h3 {
    line-height: 22px;
}

.foot0, .foot01, .foot02, .foot03, .foot04 {
    grid-row: 1;
}


footer h3{
    color: rgb(50, 50, 50);
    transition: color 0.2s ease-out 100ms;
}
footer h3:hover {
    color: #238C7A;
}


/* Mobile / Tablet Layout ---------------------------------- */

@media (max-width: 1220px) {

/* Integration Section 01 ---------- */

    .int-header {    
        position: relative;
        max-width: 100%;
        margin-top: 2rem;
    }

    .int-section01-grid {
        grid-template-columns: auto auto auto;
        margin-top: 3rem;
    }
    
    .int-empty {
        display: none;
    }

    .int-header p {
        margin-bottom: 5px;
    }

}


@media (max-width: 900px) {

/* home Section 01 ---------- */

    .section-01 {
        padding-left: 3rem;
        padding-right: 3rem;
        padding-bottom: 0;

        height: 80vh;
    }
    
    h1{
        font-family: 'DM Serif Display', serif;
        font-weight: 400;

        font-size: 70px;
        line-height: 70px;
    }
    .header-grid {
        grid-template-columns: none;
    }

    .p-header {
        margin-bottom: 1rem;
    }

/* Home Section 02 */
    .section-02 {
        grid-template-columns: auto auto;
    }

    .section02c {
        grid-column: span 2;
        grid-row: span 2;
    }

    .line02-03 {
        left: 46.5%;
    }

/* Home Section 03 */

/* Home Section 04 */
    .grid04-02 {
        grid-column: 1;
    }
    .grid04-03 {
        grid-column: 2;
    }


/* Integration Section 01 ----------- */

.int-section01-grid {
    grid-template-columns: auto auto;
}

} 



@media (max-width: 700px) {

/* Hamburger menu ----------- */
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: rgb(255, 255, 255);
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-last {
        padding-bottom: 13px;
    }



/* --------------------------o------------------------------------------ */

/* Home Section 02 */
    .section-02 {
        grid-gap: 0;
        margin-bottom: 4rem;
        padding-top: 0px;
    }

    .section02-grid {
        margin-bottom: 1.5rem;
    }

    .section02a {
        grid-row: 1;
    }
    .section02b {
        grid-row: 2;        
    }
    .section02c {
        grid-row: 3;
        grid-column: span 1;
    }

    .line02-03 {
        left: 44%;
        top: -3px;
    }




/* Integration Section 01 ----------- */

.int-section01-grid {
    grid-template-columns: auto;
}


/* Footer ---------- */
    .foot04 {
        grid-row: 2;
        grid-column: span 3;
    }

    .foot {
        display: grid;
        grid-template-columns: auto auto auto;
        grid-gap: 25px;
    }

    .foot-logo {
        max-width: 120px;
        margin-top: 0;
    }

} 

@media (max-width: 375px) {

/* Home Header ---------- */
    h1 {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 1rem;
    }

    .section-01 {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
        padding-top: 40px;
        margin-bottom: 4rem;
        background-position: center;
        /* background-size: 210%; */
        background-position-x: -250px;
        height: 75vh;
    }

    .p-header {
        font-size: 18px;
        line-height: 22px;
        max-width: 90%;
    }


/*  Home Section 03 */
    .caption-03 {
        left: 15%;
        top: 21%;
    }


/*  Home Section 04 */
    .section-04 {
        display: block;
    }

    .grid04-02, .grid04-03 {
        margin-top: 1rem;
    }


/* Footer ---------- */
    .foot {
        grid-gap: 13px;
        margin-bottom: 2.5rem;
    }

    .foot-logo {
        max-width: 150px;
        margin-bottom: 15px;
    }

    .foot01 {
        grid-row: 1;
    }

    .foot02, .foot03 {
        grid-row: 2;
    }

    .foot04 {
        grid-row: 3;
    }

} 







