.text{
    color: #333;
}
#box1t1{
    text-align: center;
    font-weight: 1000;
    margin-top: 50px;
    font-size: 0;
    transition: 700ms;
}
.boxes{
    margin-bottom: 100px;
}
#box1b1{
    width: calc(90% - 40px);
    padding: 20px;
    background-color: #3332;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: auto;
    overflow: hidden;
    max-height: 0;
    transition: 1.5s;
    margin-top: 50px;
}

#box2,#box4{
    padding: 20px;
    width: calc(100% - 40px);
    background: #333c;
}
.appealBoxText{
    color: #ccc !important;
}

#box3, #box5{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.subBoxes{
    cursor: pointer;
    margin: 20px;
    background: #ddd;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px;
    background-size: 100%;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    transition: 1000ms;
}
.box3b2b1{
    width: 100%;
}
.box3b2b2{
    width: 100%;
    margin-top: auto;
    border-top: 3px solid;
}
#blackbox{
    position: fixed;
    z-index:21;
    width: 100vw;
    height: 100vh;
    background: #333c;
    top: 0;
    transition: 400ms;
    opacity: 0;
    display: none;
}
.none{
    font-size: 0;
    transition: 300ms;
}
.d_none{
    display: none;
    grid-template-columns: 1fr 1fr;
}
.submit{
    background: #2424ff;
}
.cancel{
    background: red;
}
.subBoxBtns{
    cursor: pointer;
    width: 150px;
    margin: auto;
    font-size: 17px;
    font-weight: bold;
    border: 0;
    border-radius: 5px;
    transition: 300ms;
    opacity: 0.7;
    padding: 5px 0;
    font-family: 'Noto Sans Armenian','Open Sans','lucida grande',tahoma,arial,sans-serif !important;
}
.subBoxBtns:hover{
    opacity: 1;
}
@media screen and (max-width: 700px){
    #box3, #box5{
        grid-template-columns: 1fr;
    }
}
