@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
	font-family: 'Montserrat', sans-serif;
	margin: 0px;
	padding: 0px;
    color: #0e2951;
}
img {
    max-width: 100%;
}

/* Logo */
.logo {
    width: 100%;
    height: 100px;
    text-align: center;
    padding: 20px;
}

.logo img {
    max-height: 100%;
}

/* Baner */
.baner {
    background: url(./../../../../assets/images/baner.webp);
    width: 100%;
    height: 600px;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.baner .counter {
    font-weight: thin;
    color: white;
    font-size: 65px;
}

.baner .counter span {
    font-weight: 700;
    font-size: 55px;
}

.baner .line {
    width: 300px;
    max-width: 50%;
    height: 3px;
    background: white;
    margin: 20px;
}

.baner .location {
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.baner .date h5 {
    color: white;
    font-size: 2rem;
    margin-top: 1rem;
}

/* Section */
section {
    width: 100%;
    min-height: 500px;
    padding: 40px;
}

h1 {
    font-weight: 700;
    letter-spacing: 3px;
}

h2 {
    font-weight: 600;
    letter-spacing: 3px;
}

h3 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 5px;
}

.bg-blue {
    background-color: #0e2951;
    color: white;
}

.bg-blue h3 {
    text-align: right;
    margin-bottom: 2rem;
}

/* NAV */
nav {
    width: 100%;
    background-color: white;
    height: 60px;
    border-bottom: 1px solid #0e2951;
}

nav a {
    text-transform: uppercase;
    color: #0e2951;
    text-decoration: none;
    font-size: 22px;
    transition: all 500ms;
    font-weight: 600;
}

nav a:hover {
    transform: scale(1.1);
}

/* Title */
.title * {
    text-align: center;
}

.title {
    margin: 90px;
}

.title .line {
    width: 200px;
    max-width: 50%;
    height: 3px;
    background: #0e2951;
    margin: 20px;
}

/* Agenda */
.agenda .day div:first-child {
    font-size: 70px;
    font-weight: 700;
    border-bottom: 2px solid white;
    display: inline;
}
.agenda .day div:last-child {
    font-size: 27px;
    color: #ff0000;
    text-transform: uppercase;
}

.agenda .list {
    margin-top: 2rem;
    font-size: 22px;
}

/* Location */
.location h5 {
    font-size: 24px;
    color: #ff0000;
}
.location h4 {
    margin-top: 2rem;
    font-weight: 700;
    font-size: 28px;
}
.location p {
    font-size: 27px;
}

/* Speakers */
.speakers .list h4 {
    font-size: 28px;
    color: #ff0000;
}

.speakers .list p {
    font-size: 25px;
}
.speakers .list img {
    border: 10px solid white;
    border-radius: 50%;
}

/* Footer */
footer {
    width: 100%;
    background-color: #f4f4f4;
    padding-top: 40px;
}

footer .link a {
    display: block;
    color: #3e3e3e;
    font-size: 18px;
    font-weight: 700;
}

footer a {
    color: #0e2951;
    margin-left: 3px;
    text-decoration: none;
}

footer a:hover{
    text-decoration: underline;
}

/* Register */
#register-section h3 {
    color: #ff0000;
}

/* Radio */
.radio-group {
  display: flex;
  gap: 30px;
  font-family: Arial, sans-serif;
  color: #0c2040;
  align-items: center;
}

.radio-group-vertical {
    flex-direction: column;
    align-items: start;
    margin-left: 3rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 25px;
}

.radio-group input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid red;
  border-radius: 50%;
  margin-right: 18px;
  cursor: pointer;
  position: relative;
}

.radio-group input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  gap: 30px;
  font-family: Arial, sans-serif;
  color: #0c2040;
  align-items: center;
}

/* .checkbox-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
} */

.checkbox-group input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid red;
    border-radius: 50%;
    margin-right: 18px;
    cursor: pointer;
    position: relative;
    top: 0;
    aspect-ratio: 1;
}

.checkbox-group input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
}

.label {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 25px;
}

/* Form */
.form-group {
    margin-top: 2rem;
}
select,
input[type=text] {
    border: none;
    font-size: 20px;
    border-bottom: 2px solid red;
    width: 100%;
    padding: 10px;
}
input[type=text]:focus {
    outline: none;
}

.checkbox-group {
    margin-top: 2rem;
}

/* Button */

.button {
    width: 100%;
    text-align: right;
}

.btn-primary {
    background: #0e2951;
    border-radius: 0 !important;
    font-size: 35px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    transition: all 500ms;
}

.btn-primary:hover {
    background: #0e2951;
    transform: scale(1.1);
}

.myevent {
    text-align: center;
    padding-bottom: 1rem;
    color: #3e3e3e;
}

.myevent a {
    color: #3e3e3e;
}

.hide {
    display: none;
}

.error {
    color: red;
    font-weight: 700;
}

/* Mobile */

@media (max-width: 768px) {
    nav {
        height: fit-content;
    }
    nav .d-flex {
        flex-direction: column;
    }
    nav a {
        padding: 10px;
    }

    .speakers .list {
        text-align: center;
    }

    .speakers .list h4 {
        margin-top: 2rem;
    }

    footer .row>div {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-bottom: 2rem;
        text-align: center;
    }

    .button {
        text-align: center;
    }

    .counter {
        font-size: 25px !important;
    }

    .baner .counter span {
        font-size: 25px !important;
    }

    h3 {
        font-size: 28px;
    }

    .location {
        text-align: center;
    }

    .location p {
        font-size: 20px;
    }
}

@media (max-width: 1660px) {

    .baner {
        background-size: auto;
    }
}