.body::-webkit-scrollbar {
    width: 0px;
}

.content .mytitle {
    font-size: 35px;
    letter-spacing: 6px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 130px;
    position: relative;
}

.content .mytitle:after, .content .mytitle:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 80px;
    height: 3px;
    background-color: var(--mainColor);
}

.content .mytitle:before {
    bottom: unset;
    left: 55%;
}

.content .mymintitle {
    font-size: 18px;
    letter-spacing: 12px;
    opacity: 0.35;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

.content .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

.content .box .card {
    color: var(--bgColor2);
    width: 310px;
    height: 310px;
    border-radius: 10px;
    margin: 10px;
    font-size: 18px;
    position: relative;
}

.content .box .card .card-front h1:first-child {
    width: 100%;
    height: 50px;
    background-color: var(--mainColor);
    font-size: 23px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    color: var(--bgColorLight1);
    margin-bottom: 15px;
}

.content .box .card h1:not(:first-child) {
    margin-left: 20px;
    font-weight: normal;
}

.content .box .card div {
    position: absolute;
    top: 0;
    left: 0;
    width: 310px;
    height: 100%;
    background-color: var(--bgColorLight1);
    border-radius: 10px;
    cursor: pointer;
    
}

.content .box .card .card-back {
    width: 0px;
    left: 310px;
    transition: 1.2s;
    height: 230px;
    top: 53px;
    box-shadow: inset  3px 0 12px 0 var(--bgColor2);
    overflow-y: scroll;
}

.content .box .card .card-back h1 {
    display: none;
}


.container .sub-content {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: var(--bgColor1);
    top: 0;
    left: 0;
    overflow-y: scroll;
}

.container .application {
    position: absolute;
    width: 900px;
    margin: auto;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.container .application span {
    position: relative;
    display: block;
    margin-top: 100px;
    color: var(--bgColorLight1);
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

.container .application span:after, .container .application span:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 60px;
    height: 5px;
    background-color: var(--mainColor);
}
.container .application span:before {
    bottom: unset;
    top: 0;
    left: 55%;
}

.container .application h1 {
    color: var(--bgColor1);
    font-size: 18px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: capitalize;
    word-spacing: 2px;
    position: relative;
    background-color: var(--bgColorLight1);
    min-height: 120px;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
}
.container .application .prizes {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.container .application .close {
    position: absolute;
    top: 0px;
    right: -40px;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    color: var(--mainColor);
    font-size: 18px;
    background-image: url(../images/return.png);
    background-position: center;
    background-size: 100%;
}

.container .application .prizes .item .img {
    margin: 0px 20px;
    width: 64px;
    height: 64px;
    background-color: var(--bgColor2);
    box-shadow: #e2a64bf5 0 0 8px;
    border-radius: 5px;
    border: 1px solid #fff8c4;
}

.container .application .prizes .item .img img {
    margin: 8px;
    width: 50px;
    height: 50px;
}

.container .application .prizes .item h3 {
  color: var(--bgColorLight1);
  font-weight: normal;
  text-align: center;
  font-size: 12px;
  margin: 0;
  margin-bottom: 6px;
}

.container .application .prizes .item h4 {
  color: var(--bgColorLight1);
  font-weight: normal;
  text-align: center;
  background-color: #e28a09;
  width: 30px;
  height: 22px;
  margin: auto;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  font-size: 12px;
  margin-bottom: 5px;
}

.container .application .prizes h2 {
    position: absolute;
    top: -25px;
    left: 0;
}