html, body {
    height: 100%;
    width: 100%;
    font-size: 10pt;
}

.parallax {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    position: relative;
    height: 500px;
    width: 100%;
}

.header-content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 2;
}

.header-bg {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
}

.header-parallax {
    background-image: url("../images/header-image.jpg");
}

.logo {
    height: 50px;
    width: auto;
}

.logo img {
    height: 100%;
    width: auto;
}

.header-title {
    width: 100%;
    text-align: center;
    font-family: 'Sacramento', cursive;
    font-size: 80pt;
    color: #FFF;
}

.header-text {
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16pt;
    color: #FFF;
}

.wrap-content {
    width: 100%;
    position: relative;
}

.bg-content {
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
}

.bg-image-content {
    height: 50%;
}

.form-parallax-1 {
    background-image: url("../images/bg-image-1.jpg");
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-parallax-2 {
    background-image: url("../images/bg-image-2.jpg");
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-content {
    padding: 200px 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.form-container {
    width: 960px;
    background-color: #FFF;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5);
}

.form-guardian .row, .form-children .row {
    margin-top: 15px;
}

.form-guardian, .form-children {
    padding: 25px 150px 50px;
    min-height: 1000px;
}

.ctm-nav-item {
    width: 50%;
}

.ctm-nav-item .nav-link {
    font-size: 18pt;
    color: #a7a7a7 !important;
    background-color: #EEE !important;
    border-radius: 0;
    text-align: center;
}

.ctm-nav-item .active {
    color: #006e07 !important;
    background-color: #FFF !important;
}

.submit-container {
    text-align: center;
}

.ctm-btn-submit {
    font-size: 14pt;
    background-color: rgba(7, 64, 58, 0.8);
    border-color: #FFF;
    border-color: none;
    width: 180px;
}

.ctm-btn-submit:hover {
    background-color: #07403a;
    border-color: #FFF;
}

.ctm-btn-submit:active {
    background-color: #07403a !important;
    border-color: #FFF !important;
}

.ctm-btn-submit:focus {
    background-color: #07403a;
    border-color: #FFF;
}

.ctm-btn-another {
    font-size: 14pt;
    background-color: rgba(85, 199, 51, 0.8);
    width: 180px;
    border-color: #FFF;
}

.ctm-btn-another:hover {
    background-color: #55c733;
    border-color: #FFF;
}

.ctm-btn-another:active {
    background-color: #55c733 !important;
    border-color: #FFF !important;
}

.ctm-btn-another:focus {
    background-color: #55c733;
    border-color: #FFF;
}

.ctm-check::before {
    border: #1ebec9 solid 1px;
}

.custom-control-input:checked~.ctm-check::before {
    border-color: #1ebec9;
    background-color:  #1ebec9;
}
.page-footer {
    font-size: 10pt;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #07403a;
    height: 150px;
    color: #bbbbbb;
}

.page-footer strong {
    color: #fff;
}

.success-logo {
    height: 200px;
    margin: 100px 0px;
    text-align: center;
}

.success-logo img {
    height: 100%;
}

.success-message {
    padding: 0 100px;
    text-align: center;
    font-size: 24px;
}

.success-btn-container {
    text-align: center;
    margin: 100px 0px;
    text-align: center;
}

.alert-messages {
    margin-top: 20px;
    height: 20px;
}

.alert-messages .alert-danger {
    color: #dc3545;
    background-color: #FFF;
    border-color: #FFF;
    text-align: center;
    padding: 0;
    margin: 0;
}

.alert-messages .alert-success {
    color: #28a745;
    background-color: #FFF;
    border-color: #FFF;
    text-align: center;
    padding: 0;
    margin: 0;
}


.swal2-title {
    font-size: 1.5em !important;
}

.table-container {
    height: 100%;
    width: 95%;
    padding: 10px 0;
    margin: 0 auto;
}

@media only screen and (max-width: 960px) {

    body {
        font-size: 10pt;
    }

    header {
        height: 200px;
    }

    .header-title {
        font-size: 24pt;
    }
    
    .main-content {
        padding: 20px 0;
    }

    .ctm-nav-item .nav-link {
        font-size: 12pt;
    }

    .form-guardian, .form-children{
        padding: 25px 25px 50px;
    }

    .success-logo {
        height: 50px;
        margin: 20px 0px;
        text-align: center;
    }

    .success-message {
        font-size: 18pt;
    }
}