@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&display=swap');

:root {
    /*--primary: #094b65;*/
    --primary: #638fe6;
    --secondary: #FFFFFF;
    --tertiary: #F5C5C5;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {  
    overflow-x: hidden;
    background: #fff;
    min-height: 100vh;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--primary), transparent);
    z-index: 10;
}

section img {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.sec {
    position: relative;
    padding: 100px;
    background: var(--primary);
    font-weight: 700;
}

.sec h1{
    font-size: 2.5em;
    color: var(--secondary);
    margin-bottom: 10px;
}
.sec h2 {
    font-size: 2em;
    color: var(--secondary);
    margin-bottom: 10px;
}

.sec p {
    font-size: 1em;
    color: var(--secondary);
}
.sec td{
    color: var(--secondary)
}