
/* @font-face {
    font-family: LiberationSans-Regular;
    src: url('../fonts/LiberationSans-Regular.woff');
}

@font-face {
    font-family: LiberationSans-Bold;
    src: url('../fonts/LiberationSans-Bold.woff');
}

@font-face {
    font-family: LiberationSans-Italic;
    src: url('../fonts/LiberationSans-Italic.woff');
}

* {
    font-family: LiberationSans-Regular;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

body {
    width: 100%;
    height: auto;
    background-color: #1aa6ec;
}

.welcome-page {
    width: 100%;
    height: 100vh;
    background-color: #1aa6ec;
    border: 1px solid transparent;
}

.welcome-page .page-section-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    height: calc(100% - 100px);
    margin-top: 100px;
    padding: 20px 20px 0px 20px;
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
    background-color: rgba(126, 210, 252, .5);
}

.welcome-page .page-section-container .wrapper {
    width: 100%;
    height: 100%;
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
    background-color: white;
    position: relative;
}

.welcome-page .page-section-container .wrapper .footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    padding: 10px;
    z-index: 10;
    font-size: 16px;
    line-height: 18px;
    /* color: #c4c4c4; */
    color: #656565;
}

.welcome-page .page-section-container .wrapper .box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0px 130px;
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
    background-color: #bbdef0;
}

.welcome-page .page-section-container .page-section {
    width: 38%;
}

.welcome-page .page-section-container .page-section.right {
    padding: 30px 45px;
    box-shadow: 0px 0px 30px 2px rgb(0 0 0 / 20%);
    border-radius: 34px;
    background-color: white;
    border: 0px;
    transform: translateY(66px);
    width: 40%;
}

.welcome-page .page-section-container .page-section .logo {
    margin-bottom: 20px;
}

.welcome-page .page-section-container .page-section .logo img {
    height: 180px;
}

.welcome-page .page-section-container .page-section .text h2 {
    font-size: 60px;
    line-height: 66px;
}

.welcome-page .page-section-container .page-section .download-apps {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 30px;
    justify-content: space-between;
}

.welcome-page .page-section-container .page-section .download-apps a {
    display: flex;
    margin-right: 10px;
}

.welcome-page .page-section-container .page-section .download-apps a img {
    height: 50px;
}

form label {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 4px;
    display: inline-block;
}

form input:focus, form textarea:focus {
    outline: none;
}

form textarea {
    height: 120px;
    max-height: 120px;
    overflow-y: auto;
    resize: none;
}

form button {
    border: 0px;
    outline: none;
    color: white;
    background-color: #1aa6ec;
    padding: 10px 26px;
    border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    line-height: 18px;
    margin-top: 20px;
}

form button:disabled {
    opacity: .5;
    cursor: default;
}

.welcome-page .page-section-container .page-section.right h3 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 25px;
}

.welcome-page .page-section-container .page-section form input, textarea {
    width: 100%;
    height: auto;
    padding: 10px;
    border: 1px solid #bdb9b9;
    margin-bottom: 15px;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
    line-height: 18px;
}

.contact-us-message {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    color: white;
    font-size: 16px;
    line-height: 20px;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 50%);
}

.contact-us-message.blue {
    background-color: #1aa6ec;
}

.contact-us-message.red {
    background-color: #ca574f;
}