* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 100 900;
    src: url('../../fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 200 900;
    src: url('../../fonts/SourceSans3-VariableFont_wght.ttf') format('truetype');
}

body {
    font-family: 'Source Sans 3', sans-serif;
}

.font-1 {
    font-family: 'Plus Jakarta Sans', 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
}

.font-2 {
    font-family: 'Plus Jakarta Sans', 'Helvetica', 'Arial', sans-serif;
    font-weight: 500;
}

.color-1 {
    color: #414F56;
}

.color-2 {
    color: #383838;
}

.color-3 {
    color: #F4E4B5;
}

.size-1 {
    font-size: 1.4em;
}

.size-2 {
    font-size: 0.8em;
}

.img-1 {
    height: 4vw;
    min-height: 50px;
}

.img-2 {
    width: 30vw;
    min-width: 300px;
}

.img-3 {
    height: 150px;
}

.img-4 {
    height: 80px;
}

.layout-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2vw 5vw;
}

.input-v1 {

    height: 30px;
    width: 200px;

    /* UI Properties */
    background: #FFFFFF;
    border: 1px solid #414f564f;
    border-radius: 5px;
    outline: none;
    padding-left: 10px;
    color: #000000;
}

.input-v1::placeholder {
    color: #414f564f;
}

.button-v1 {

    height: 30px;
    width: 100px;

    /* UI Properties */
    background: #EFAB78;
    border-radius: 5px;
    border-style: none;
    opacity: 1;
    color: #414F56;
    cursor: pointer;
}

.button-v1:active {
    background: #414F56;
    color: #FFFFFF;
}

.select-v1 {

    height: 30px;
    width: 100px;

    /* UI Properties */
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 5px;
    border-style: none;
    opacity: 1;
}

.layout-2 {
    display: flex;
    min-height: 400px;
}

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

.layout-3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
    background-color: #F4E4B5;
    padding: 5vw 5vw;
}

.layout-3 > div > ul {
    display: flex;
    flex-direction: column;
    width: 40vw;
}

.layout-3 > div > img {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.layout-4 {
    padding: 5vw 5vw;
}

.level-1-layout-4 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.level-1-layout-4 > div {
    margin: 0px auto;
    width: 25vw;
    min-width: 250px;
}

.level-1-layout-4 > div > ul > li > span {
    margin: auto 0px;
}

.layout-5 {
    display: flex;
    min-height: 400px;
}

.layout-6 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #414F56;
    padding: 5vw 5vw;
    gap: 60px;
}

.layout-6 > div {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.layout-6 > div > div > a {
    display: flex;
    margin: auto;
    text-decoration: none;
}

.text-box-v1 {
    width: 40%;
    min-width: 350px;
    height: 80%;
    max-height: 380px;
    margin-left: 5vw;
    /* UI Properties */
    background: #414f56f1;
    border-radius: 0px 0px 31px 0px;
    padding: 40px;
}

.text-1 {
    color: white;
    margin-bottom: 30px;
}

.button-v2 {
    height: 30px;
    width: 150px;
    /* UI Properties */
    background: #EFAB78;
    border-radius: 5px;
    border-style: none;
    color: #414F56;
    cursor: pointer;
}

.button-v2 > a {
    text-decoration: none;
    color: #414F56;
}

.button-v2:active {
    background: #414F56;
    color: #FFFFFF;
}

.tick {
    display: inline;
    height: 2vw;
    min-height: 20px;
    margin: 10px;
}

ul > li {
    display: flex;
}


.image-center {
    margin: auto;
}

.text-center > li > p {
    margin: auto 0px;
}

.dashed {
    border-top-style: dashed;
    border-color: #81B1BC;
    border-width: thin;
}

.solid {
    border-right-style: solid;
    border-left-style: solid;
    border-color: #81B1BC;
    border-width: thin;
    height: 70%;
}

.solid > * {
    margin: 0px 10px;
}

.list > li > div {
    display: flex;
    justify-content: space-between;
    border-bottom-style: dashed;
    border-color: #F4E4B5;
    border-width: thin;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.list > li {
    display: list-item;
    margin: 0px 15px;
}

.center-with-flex {
    display: flex;
    justify-content: center;
}

.aling-center {
    text-align: center;
}

.vertical-center {
    margin: auto 0px;
}




/* Small devices (landscape phones, 576px and up) */
@media (max-width: 768px) {
    .layout-1 {
        display: flex;
        justify-content: center;
    }

    .layout-1 > div {
        display: block;
        margin: auto;
    }

    .layout-1 > div > form > input {
        display: block;
        margin: 10px auto;
    }

    .layout-1 >  div > form > button {
        display: block;
        margin-left: auto;
    }
}


/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
    .layout-3 > div > ul {
        width: auto;
    }
    .layout-3 {
        justify-content: center;
    }
    .layout-6 {
        justify-content: center;
    }
    .layout-5 > div > ul {
        font-size: 0.7em;
    }
}
