* {
    padding: 0;
    margin: 0;
}
html, body{
    width:100%;
    height:100%;
}
body{
    /*background-color: #b7d6cd;
    background-position:center;*/
    margin: 0 auto;
    background:#95c8ce;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    /*background-color: #b7d6cd;
    background-position:center;*/
    position: absolute;
}
.logo{
    width:6%;
    height:auto;
    position: fixed;
    margin: 2%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1000000;
}
.logo:hover{
    width:10%;
}
.logo.full{
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
.container{
    width:100%;
    height:100%;
}
.title{
    font-size: 3.815vw;
    position: relative;
/*    left: 10%;
*/    margin: 0 auto;
    padding-top: 6%;
    height: 7%;
    width: 80%;
    text-align: center;
    /* margin-top: 6%; */
    margin-bottom: 0%;
    cursor: pointer;
    background: #95c8ce;
    z-index: 1000;
}
.header{
    width: 80%;
    position: relative;
/*    left: 10%;
*//*    top:13%;
*/    margin: 0 auto;
    text-align: center;
/*    margin-bottom: 2%;
*/    height: 4%;
/*    padding-top: 1%;
*/    border-top: dotted 2px #41403E;
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    background: #95c8ce;
    z-index: 1000;
}
.brands {
    display: grid;
    position: relative;
/*    top: 18%;
*/    padding-top: 5%;
    width: 80%;
    text-align: center;
    left: 10%;
    height: 70%;
    overflow: scroll;
    grid-template-columns: repeat(3, 1fr);
    -webkit-mask-image: -webkit-gradient(linear, left -10%, left 20%, from(rgba(0,0,0,0)), to(rgba(0,0,0,1)));
    mask-image: linear-gradient(rgba(0, 0, 0, 0) -10%, rgb(0, 0, 0) 20%);
}
.brand {
    border: 1px solid rgba(0, 0, 0, 0.8);
    padding: 10%;
    font-size: 2vw;
    text-align: center;
    margin: 3%;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    cursor:pointer;
    display:flex;justify-content:center;align-items:center;
}
.brand p{
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}
.brand:hover {
    border-radius: 100px 30px 100px 30px;
    animation: .8s 0.5s morph ease infinite;
}

.brand:hover p {
    transform: rotate(-3deg);
    animation: .8s 0.5s rot ease infinite;
}
.modal{
    opacity:0;
    height: 0%;
    width: 75%;
    left: 12%;
    text-align: center;
    background: #95c8ce;
    z-index: 99;
    position: absolute;
    top: 23%;
    border: 0.6vw double rgba(0, 0, 0, 0.8);
    -webkit-transition: all 600ms;
    -o-transition: all 600ms;
    transition: all 600ms;
}
.modal-title{
    padding: 2%;
    font-size: 4vw;
}
.modal-products{
    height: 84%;
    overflow: scroll;
    display: grid;
}
.modal-products .product{
    padding: 2%;
    font-size: 2vw;
    display:flex;
    justify-content:center;
    align-items:center;
    -webkit-transition: all 100ms;
    -o-transition: all 100ms;
    transition: all 100ms;
    border: 1px dotted rgba(0, 0, 0, 0);
    cursor:pointer;
}
.modal-products .product:hover{
    border: 1px dotted rgba(0, 0, 0, 0.8);
    border-radius: 100px 30px 100px 30px;
    background: rgba(142, 190, 197, 1);
}
.modal-products .product:last-child {
    border-bottom:2px solid #fab11c;
}
.modal-close{
    right: 1%;
    top: 1%;
    position: absolute;
    font-size: 3vw;
    cursor:pointer
}
/*.hopsa{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    display:none;
}*/
@keyframes morph {
    0% {
        border-radius: 100px 30px 100px 30px;
    } 50% {
        border-radius: 30px 100px 30px 100px;
    } 100% {
        border-radius: 100px 30px 100px 30px;
    }
}

@keyframes rot {
    0% {
        transform: rotate(-3deg);
    } 50% {
        transform: rotate(3deg);
    } 100% {
        transform: rotate(-3deg);
    }
}