@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    color: #fff;
    background: #1d1b1b;
    /* overflow: hidden; */
}

.btn
{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 45px;
    background: #ffc7ab;
    border: 2px solid #1d1b1b;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px #1d1b1b;
    text-decoration: none;
    font-size: 16px;
    color: #1d1b1b;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    cursor: pointer;
    transition: .5s;
}

.btn:hover
{
    transform: scale(1.05);
    background: #ffc7ab;
    box-shadow: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-family: 'Sarina', regular;
    font-size: 40px;
    color: #ffc7ab;
    text-shadow: 0 0 15px black;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: #ffc7ab;
}

.main {
    max-height: 100vh;
    overflow: hidden;
    background: url("/assets/media/quiz.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    pointer-events: auto;
    transition: .3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main.active {
    filter: blur(15px);
    pointer-events: none;
}

/* Home Section */

.home {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-content {
    max-width: 700px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.6)
}

.home-content h1 {
    color: #ffc7ab;
    font-size: 78px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.home-content p {
    font-size: 16px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
    margin-bottom: 30px;
    padding: 10px;
}

.home-content .start-btn {
    width: 190px;
    height: 55px;
    margin-bottom: 15px;
    background: #fff;
    border: 2px solid #1d1b1b;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px#ffc7ab;
    font-size: 18px;
    color: #1d1b1b;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: .5s;
}

.home-content .start-btn:hover {
    background: #ffc7ab;
    box-shadow: none;
}

.popup-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    width: 600px;
    background: #fff;
    border-radius: 6px;
    padding: 10px 25px;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}

.popup-info.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.popup-info h2 {
    font-size: 50px;
    color: #ffc7ab;
    text-align: center;
}

.popup-info .info {
    display: inline-block;
    font-size: 16px;
    color: #1d1b1b;
    font-weight: 500;
    margin: 4px 0;
}

.popup-info .btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1d1b1b;
    margin-top: 10px;
    padding: 15px 0 7px;
}

.popup-info .btn-group .info-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 45px;
    background: #ffc7ab;
    border: 2px solid #1d1b1b;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px #1d1b1b;
    text-decoration: none;
    font-size: 16px;
    color: #1d1b1b;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    cursor: pointer;
    transition: .5s;
}

.popup-info .btn-group .info-btn:nth-child(1) {
    background: transparent;
    color: #1d1b1b;
    box-shadow: none;
}

.popup-info .btn-group .info-btn:nth-child(1):hover {
    background: #ffc7ab;
    border-color: #ffc7ab;
}

.popup-info .btn-group .info-btn:nth-child(2):hover {
    background: #ffc7ab;
    border-color: #ffc7ab;
}

/* Popup About */

.about {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    width: 700px;
    background: #fff;
    border-radius: 6px;
    padding: 10px 25px;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}

.about.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.about h2 {
    font-size: 45px;
    color: #ffc7ab;
    text-align: center;
}

.about .info1 {
    display: inline-block;
    font-size: 14px;
    color: #1d1b1b;
    font-weight: 500;
    margin: 4px 0;
    text-align: center;
}

.about .info2 {
    display: inline-block;
    font-size: 14px;
    color: #1d1b1b;
    font-weight: 500;
    margin: 4px 0;
    text-align: left;
}

.about .btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #1d1b1b;
    margin-top: 10px;
    padding: 15px 0 7px;
}

.about .btn-group .back-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 45px;
    background: #ffc7ab;
    border: 2px solid #1d1b1b;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px #1d1b1b;
    text-decoration: none;
    font-size: 16px;
    color: #1d1b1b;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    cursor: pointer;
    transition: .5s;
}

.about .btn-group .back-btn:nth-child(1) {
    background: transparent;
    color: #1d1b1b;
    box-shadow: none;
}

.about .btn-group .back-btn:nth-child(1):hover {
    background: #ffc7ab;
    border-color: #1d1b1b;
}

/* Popup Feedback */

 .contact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    width: 800px;
    background: #fff;
    border-radius: 6px;
    padding: 10px 25px;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}

.contact.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.contact h2 {
    font-size: 45px;
    color: #ffc7ab;
    text-align: center;
}

.contact .contact-form
{
    flex: 0 0 100%;
    max-width: 100%;
}

.contact .contact-form .col-6
{
    flex: 0 0 100%;
    max-width: 100%;
}

.contact .contact-form .col-12
{
    flex: 0 0 100%;
    max-width: 100%;
}

.contact .contact-form .form-item
{
    margin-top: 15px;
    margin-bottom: 30px;
}

.contact .contact-form .form-item .form-control
{
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: rgba(255, 199, 171, 0.5);
    border: 1px solid #1d1b1b;
    padding: 10px 25px;
    font-size: 16px;
    color: #1d1b1b;
    transition: all 0.3s ease;
}

.contact .contact-form .form-item .form-control:focus
{
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}

.contact .contact-form .form-item textarea.form-control
{
    height: 140px;
}

.contact .contact-form .btn
{
    height: 50px;
    padding: 0 50px;
}

.contact .btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #1d1b1b;
    margin-top: 10px;
    padding: 15px 0 7px;
}

.contact .btn-group .contact-back-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 45px;
    background: #ffc7ab;
    border: 2px solid #1d1b1b;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px #1d1b1b;
    text-decoration: none;
    font-size: 16px;
    color: #1d1b1b;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    cursor: pointer;
    transition: .5s;
}

.contact .btn-group .contact-back-btn:nth-child(1) {
    background: transparent;
    color: #1d1b1b;
    box-shadow: none;
}

.contact .btn-group .contact-back-btn:nth-child(1):hover {
    background: #ffc7ab;
    border-color: #1d1b1b;
}

.side-footer
{
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    background-color: #ffc7ab;
    color: #1d1b1b;
    position: relative;
    bottom: 0;
    width: 100%;
}

.side-footer a
{
    color: #942253;
    text-decoration: none;
}