@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

*, body {
    /* font-family: 'Open Sans', sans-serif; */
    transition: all 0.3s ease 0.0s;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

.img-nav {
  width: 80px;
}

#mascot {
    position: relative;
    bottom: -53px;
    left: -250px;
}

.company-brand {
    text-transform: uppercase;
    margin-bottom: 0 !important;
    font-weight: normal !important;
}

#title-p {
    letter-spacing: -0.05em;
}

@media (max-width: 768px) {
    #title-p {
        font-size: 26pt;
    }
}

#title-p span {
    font-weight: 800;
}

#mascot img {
    position: absolute;
}

#mascot-painting {
    position: absolute;
    right: 0;
    bottom: -45px;
}

@media (max-width: 768px) {
    #mascot-painting {
        position: relative;
        right: 0;
        bottom: 0;
        margin: 2em auto -3em auto;
    }
}

#jumbotron-mascot {
    padding-bottom: 200px;
}

.eye-container {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 250px;
    top: 27px;
}

.eye {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    height: 72px;
    width: 72px;
}

.eye:after {
    /*pupil*/
    position: absolute;
    bottom: 17px;
    right: 10px;
    width: 29px;
    height: 29px;
    background: #000;
    border-radius: 50%;
    content: " ";
}


.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center
}

.rating>input {
    display: none
}

.rating>label {
    position: relative;
    font-size: 16pt;
    color: #00a6b2;
    cursor: pointer;
    margin-bottom: 0;
}

.rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0
}

.rating>label:hover:before,
.rating>label:hover~label:before {
    opacity: 1 !important
}

.rating>input:checked~label:before {
    opacity: 1
}

.rating:hover>input:checked~label:before {
    opacity: 0.4
}
