@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
@font-face {font-family: 'Mandali'; src: url('../font/Mandali-Regular.ttf') format('truetype'); }

:root {
    /* STANDARD COLORS */
    --primary-color: #333E4D;
    --secondary-color: #E25415;
    --success-color: #A1C281;
    --error-color: #c1555b;
    --warning-color: #C99C6E;
    --main-background: rgb(51, 62, 77);
}

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

html {
    font-size: 14px;
}

body {
    /* font-family: 'Mandali', sans-serif; */
    font-family: 'Varela Round', sans-serif;
    background-color: var(--main-background);
}

a {
    text-decoration: none;
    color: var(--purple-100);
}

a:hover {
    color: var(--gray-50);
}

ul, ol {
    list-style: none;
}
/* end reset */

.bg-overlay {
    background-color: rgba(0,0,0,0.8);
}

.bg-card {
    background-color: #333E4D;
    color: white;
    /* border-left: 0vh solid transparent;
    border-right: 100vw solid transparent;
    border-top: 200px solid white; */
}

.triangle-container {
    display: flex;
    flex-direction: column;
    height: 200px;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    color: white;
}

.triangle-topleft {
    border-top: 200px solid white;
    border-right: 100vw solid transparent;
    z-index: 0;
}

.triangle-content-topleft {
    color: var(--secondary-color);
    text-align: start;
    margin-left: 3rem;
    margin-top: -140px;
    z-index: 10;
}

.triangle-bottomright {
    border-bottom: 200px solid white;
    border-left: 100vw solid transparent;
    z-index: 0;
}

.triangle-content-bottomright {
    color: var(--secondary-color);
    text-align: end;
    margin-right: 2rem;
    margin-top: -80px; 
    z-index: 10;
}

#formMessage {
    min-height: 2rem;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
}


.header {
    min-height: 12vh;
    width: 100%;
    display: flex;
    /* position: fixed; */
    justify-content: space-between;
    align-items: center;
    color: white;
    transition: .8s;
    background-color: rgba(30, 30, 30, 0.5);
    box-shadow: 0 3px 1rem rgba(30, 30, 30, 0.2);
    z-index: 1000;
}

.header-background {
    background-color: rgba(30,30,30,0.5);
    box-shadow: 0 3px 1rem rgba(0, 0, 0, .3);
}

.blur-image {
    width: 110%;
    height: 100vh;
    margin-left: -5%;
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)), url(../images/pexels-asad-photo-maldives-3293148.jpg);
    /* background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)), url(../images/pexels-nextvoyage-1470502.jpg); */
    /* background-image: url(../images/pexels-nextvoyage-1470502.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    z-index: -100;
}

.logo {
    width: 30%;
    max-width: 200px;
    min-width: 120px;
}

.line {
    color: var(--secondary-color);
    border: 3px solid rgba(226, 84, 21, 1);
}

.hero-1 {
    width: 100%;
    min-height: 10vh;
    background-color: var(--secondary-color);
    color: white;
}

.page-1 {
    min-height: 78vh;
}

.page-4 {
    min-height: 90vh;
}

.footer {
    background-color: #333E4D;
    min-height: 10vh;
}

.text {
    /* font-family: 'Mandali';
    font-style: normal;
    font-weight: 400; */
    /* font-size: 24px; */
    line-height: 47px;
    text-align: center;
}

.text-highlight {
    color: var(--secondary-color);
}

.form {
    background-color: rgba(51, 62, 77, 0.3) !important;
}

.rounded {
    border-radius: 14px !important;
}

.rounded-1 {
    border-radius: 10px !important;
}

.btn-send {
    background-color: var(--secondary-color);
    color: white;
}

.btn-send:hover {
    background-color: white;
    color: var(--secondary-color);
}

.btn-outline-highlight {
    border: solid var(--secondary-color) !important;
    color: var(--secondary-color);
}

.btn-outline-highlight:hover {
    background-color: var(--secondary-color);
    border: solid var(--secondary-color) !important;
    color: white;
}

.img-rounded {
    border-radius: 22px !important;
}

.img-full-texture {
    background-image: url(../images/pexels-allec-gomes-7700730.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.img-full-container {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url(../images/pexels-atypeek-dgn-12387124.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 30px;
}

::-webkit-scrollbar-track {
    background: rgba(51, 62, 77, 0.2);
    border-radius: 30px;
}
