* {
    box-sizing: border-box;
}

html {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    background-color: #ffffff;
    color: #003366;

}

body {
    margin: 0 auto !important;
    position: relative;

    /* font-family: unset !important;
    font-size: unset !important;
    font-weight: unset !important;
    line-height: unset !important;
    color: unset !important;
    background-color: unset !important;
    -webkit-text-size-adjust: unset !important;
    -webkit-tap-highlight-color: unset !important; */
}

.text-justify {
    text-align: justify;
}

.selector {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* ############################################ */
#hero .header {
    display: flex;
    justify-content: flex-end;

    margin-top: 1;
    position: relative;
}

.register-btn-wrap {
    display: flex;
    width: 100%;
    justify-content: end;
}

.register-btn {
    background: rgb(251, 176, 64);
    background: linear-gradient(120deg, rgba(251, 176, 64, 1) 0%, rgba(228, 127, 37, 1) 20%, rgba(228, 127, 37, 1) 73%, rgba(255, 254, 254, 1) 85%, rgba(230, 136, 52, 1) 100%);
    padding: 5px 40px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;


}

.header .register-btn {
    margin-top: 2.5%;
    margin-right: 2.5%;
}

/* #################################################### */
.container-custom {
    display: flex;
    justify-items: center;
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
}

/* ########################################## */
#hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    width: 100%;
    aspect-ratio: 1920/1080;
}

/* ########################################## */

#program {
    /* height: 100vh; */
    width: 100%;
    height: auto;

    padding: 1rem 2rem;
    gap: 1rem;
}

#program .container {
    gap: 20px
}

#program>p {
    min-width: 350px;
}

.section-title {
    display: flex;
    justify-content: center;

}

.section-title h2 {
    border: solid !important;
    padding: 10px 20px !important;
    box-shadow: 0 0 10px rgb(109, 149, 188) !important;
}

.agenda {
    display: flex;
    justify-content: space-between;

    width: 100%;

    flex-wrap: wrap;
    gap: 20px;

    /* min-height: calc(50vh - 10px); */
}

.session,
.location {
    /* min-width: 350px;
    width: 30%; */
    width: 350px;
}


.session {
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to right, rgba(255, 110, 64, 0.8), rgba(12, 21, 85, 0.8));

    color: #ffffff;

    min-height: 500px;
}

.session-title {
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding: 2rem
}

.session-title h2 {
    margin: 0;
}

.session-content {
    text-align: left;
    padding: 10px;

    flex-grow: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0 2rem;
}


.session ul {
    list-style-type: circle;
    /* list-style: "*"; */
    /* padding: 10px; */
}

.session ul li {
    margin: 10px 0;
}

.location {
    display: flex;
    justify-content: flex-start;
}

.location-card {
    border-bottom: solid;
    border-left: solid;
    width: 50%;
    padding: 1rem;
}

.location-text {
    width: 238%;
}

/* ########################################## */
#register-form {
    background: rgb(252, 220, 192);
    color: #ffffff;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;

    padding: 2.5rem;
}

.field-wrap {
    /* background: rgba(255, 255, 255, 0.1); */
    background: linear-gradient(90deg, rgba(238, 103, 54, 1) 0%, rgba(255, 193, 38, 1) 100%);

    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
}

#register-form .info {
    /* margin-right: 2rem; */
    color: white;
}

#register-form .form-wrap {
    min-width: 300px;
}

.form-wrap h2 {
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 20px;
    border: none;

    color: #003366;
    background: rgb(252, 220, 192);


    font-family: 'Montserrat';
    font-style: italic;
}

.form-group input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    accent-color: #4f5470;
    display: grid;
    place-content: center;
    background-color: white !important;
    padding: unset;
}

.form-group input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
}

.form-group input[type="checkbox"]:checked::before {
    transform: scale(1);
    background-color: #003366;
}

.form-group.checkbox-group {
    display: flex;
    justify-content: space-between;
}

.form-group.checkbox-group label {
    display: flex;
    align-items: center;
    width: 50%;
    text-align: left;

    font-size: small;
    color: white;
}

.form-group.checkbox-group input {
    margin-right: 5px;
}

.submit-btn {
    width: 50%;

    /* background: rgba(255, 255, 255, 0.1); */
    background: linear-gradient(90deg, rgba(238, 103, 54, 1) 0%, rgba(255, 193, 38, 1) 100%);

    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 10 20px rgba(0, 0, 0, 0.5); */

    border: none;
    border-radius: 5px;

    color: white;
    font-size: 16px;
    font-weight: bold;

    margin-top: 1rem;

    cursor: pointer;
}

.info {
    font-size: 14px;

    text-align: justify;

    width: 40%;
    min-width: 300px;
}

.info ul {
    list-style: "*";
    padding: 10px;
}

#countdown {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;

    flex-wrap: wrap;
}

#countdown div {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#countdown .time-unit div {
    font-size: 24px;
    padding: 25px;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.5);

}

#countdown div span {
    display: block;
}

.footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;

    margin-top: 1rem;
}


.footer #contact {
    border-radius: 10px;
    min-width: 350px;
    width: 50%;

    text-align: left;
    padding: 1rem;
    color: #677bb8;
}

#contact p {
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 500px) {
    #contact {
        font-size: 0.62rem;
    }
}


.follow-us-section {
    width: 320px;

    text-align: left;
    padding: 2rem;

    background-image: linear-gradient(0deg, rgba(33, 35, 89, 1), rgba(213, 116, 76, 1));
}

.follow-us-section .icons {
    display: flex;
    justify-content: space-between;
}

.follow-text {
    color: #ffffff
}

.follow-us-section .icons a {
    color: #003366;

    background-color: #fefefe;

    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;

    border-radius: 50%;
}


.error_msg {
    text-align: left;
    font-style: italic;
    font-size: small;
}

/* Message error */
#error_icon {
    display: none;
    color: red;
}

/* Model CSS */
/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */

    font-family: 'Montserrat';
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 85%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: #003366;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #e9e9e9;
    color: #003366;
}

.modal-body {
    padding: 2px 16px;
    color: #003366;
    text-align: start;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #e9e9e9;
    color: #003366;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.modal-footer button {
    margin: 15px;
    border: none;
    padding: 10px 30px;
    color: #003366;
    font-weight: bold;
    border: #003366 solid 1px;
}

/* CSS Language */
.language {
    position: absolute;
    width: 100px;
    height: 30px;
    background-color: #fff;
    z-index: 1000;
    top: 15px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.set-lang {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.set-lang div {
    width: 50%;
}

.set-lang button {
    border: none;
    background-color: unset;
    /* margin: 5px 2px 5px 2px; */
    border-radius: 3px;
    width: 100%;
    padding: 3px 0px;
}

.set-lang img {
    width: 30px;
    /* margin-bottom: 3px;
    padding: 5px 2px 5px 2px; */
    margin-bottom: 3px;
}

/* media */
@media screen and (min-width:1366px) {
    #register-form {
        width: 100%;
    }

    .form-wrap {
        width: 50% !important;
        margin-left: 10rem;
    }

    .info {
        width: 25%;
        align-self: flex-start;
    }

    .modal-content {
        width: 60%;
    }
}

@media screen and (max-width: 500px) {
    .form-group input[type="checkbox"] {
        width: 15px;
        height: 15px;
        min-width: 15px;
        max-width: 15px;
        min-height: 15px;
        max-height: 15px;
    }

    .info {
        margin-top: 2rem;
    }

}

@media screen and (max-width:1366px) {
    .register-btn-wrap {
        justify-content: center;
    }

    .agenda {
        justify-content: center;
    }
}