@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');

body {
	font-family: 'Karla', serif;
	margin: 0px;
	padding: 0px;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

nav {
    width: 100%;
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .logo {
    height: 75px;
}

.baner {
    width: 100%;
    height: 342px;
    background-image: url('./../../../../assets/images/baner-1920x500-1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-content {
    min-height: calc(100vh - 835px);
}

@media only screen and (max-width: 1400px) {
    .page-content {
        min-height: calc(100vh - 855px);
    }
}

@media only screen and (max-width: 1200px) {
    .page-content {
        min-height: calc(100vh - 963px);
    }
}

@media only screen and (max-width: 1024px) {
    .baner {
        height: 242px;
    }
    .page-content {
        min-height: calc(100vh - 863px);
    }
}

@media only screen and (max-width: 767px) {
    .baner {
        height: 142px;
    }
    .page-content {
        min-height: auto;
    }
}


/* Form */
#register-section {
    max-width: 1000px;
    margin: 50px auto;
}

.title,
h1 {
    font-family: "Libre Baskerville", serif;
    text-align: center;
    font-size: 40.25px;
    font-weight: 400;
}

footer hr {
    border-bottom: 1px solid rgb(175, 175, 175);
}

footer {
    background: rgb(39, 38, 38);
    padding: 15px;
}

footer img {
    max-width: 100%;
}

@media only screen and (min-width: 768px) {
    footer .footer-col-1 {
        border-right: 1px solid rgb(73 72 72);
    }
}

footer .myevent a,
footer .myevent {
    text-align: center;
    color: rgb(175, 175, 175);
}

footer .myevent a:hover {
    color: white;
}

footer .footer-col-1 h5 {
    color: rgb(255, 255, 255);
    font-size: 24px;
    margin-bottom: 20px;
    margin-right: 24px;
}

footer .footer-col-2 h5 {
    font-size: 13px;
    letter-spacing: 1.3px;
    line-height: 22.1px;
    color: rgb(255, 255, 255);
}

footer .footer-col-2 ul {
    margin-top: 46.4px;
    padding-left: 0;
}

footer .footer-col-2 ul a {
    font-size: 13px;
    letter-spacing: 1.3px;
    line-height: 22.1px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
}

footer .footer-col-2 ul a:hover {
    color: #AF7F66;
}

footer p,
footer a {
    color: rgb(175, 175, 175);
    font-size: 16px;
    font-weight: 400;
    line-height: 28.5px;
}

@media only screen and (min-width: 1570px) {
    footer .container {
        max-width: 1535px;
        width: 1535px;
    }
}


@media only screen and (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .footer-col-2 ul {
        margin-top: 20px;
    }

    footer .footer-col-1 h5 {
        margin-right: 0;
    }
}

.form {
    position: relative;
    padding-bottom: 20px;
}

#mouse-helper {
    position: fixed;
    width: 45px;
    height: 45px;
    border: 1px solid rgb(134, 134, 134);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    top: 0;
    left: 0;
    opacity: 0.5;
}

/* Form */
input[type=text],
input[type=email],
input[type=number],
select {
    background: rgb(233, 232, 231);
    width: 100%;
    padding: 11px 19px;
    font-size: 16px;
    color: rgb(134, 134, 134);
    border: 2px solid rgb(233, 232, 231);
}

.error {
    color: #cc0000;
    font-weight: 500;
    display: none;
    position: absolute;
    bottom: 0;
    font-size: 14px;
}

.has-error {
    border: 2px solid #cc0000 !important;
}

.button-group button {
    padding: 14px 27px;
    border: 2px solid rgb(152, 152, 152);
    background: rgb(152, 152, 152);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.button-group button:hover {
    opacity: 0.8;
}

.disabled {
    opacity: 0.3;
}

/* Agenda */
#agenda h5 {
    font-family: "Libre Baskerville", serif;
    /* text-align: center; */
    font-size: 30px;
    font-weight: 400;
}

.date {
    font-size: 45px;
    font-weight: 700;
    line-height: 45px;
    border-bottom: 3px solid #af7f66;
    display: inline-block;
    color: #515151;
}

.day-box {
    display: flex;
}

.day {
    text-align: center;
    font-size: 23px;
}

.text {
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
    font-weight: 500;
}

.list {
    font-size: 22px;
}