.content .mytitle {
    font-size: 30px;
    letter-spacing: 6px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.content .mytitle {
    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 center p {
    font-size:15px;
}

.content .store {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.content .store > a {
    width: calc(100% / 5);
    height: 300px;
    background-color: var(--bgColorLight1);
    margin: 5px 40px 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    position: relative;
    /* overflow: hidden; */
    padding-top: 50px;
}

/* Start Discount */

.content .store > a .discount {
    position: absolute;
    top: -19px;
    left: 5px;
    background-image: url(../images/discount3.png);
    width: 100px;
    height: 120px;
    background-position: unset;
    background-size: 100% 100%;
    transform: rotate(0deg);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 11px;
    padding-left: 7px;
    box-sizing: border-box;
    color:#eee;
    font-size: 21px;
    /* font-family:'Courier New', Courier, monospace; */
    /* font-weight: bold; */
}

/* End Discount */

.content .store a .icon {
    width: 64px;
    height: 80px;
}

.content .store a .icon {
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.content .store a .information {
    color: var(--bgColor1);
    margin-top: 40px;
}

.content .store a .information h1:first-child {
    font-size: 16px;
    letter-spacing: 3px;
}

.content .store a .information h1:first-child {
    margin-bottom: 10px;
    position: relative;
}

.content .store a .information h1:first-child:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--mainColor);
}

.content .store a .information h1:first-child:after {
    width: 0;
    transition: width 0.5s;
}

.content .store a:hover .information h1:first-child:after {
    width: 50px;
}

.content .store a:hover {
    transform: scale(1.05);
}

.content .store a {
    transition: transform 0.6s;
    text-decoration: none;
}

.content .store a > span:last-child {
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-weight: bold;
    background-color: var(--mainColor);
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    border-radius: 0 0 10px 10px;
    color: white;
}

.content .order,
.content .order-content,
.content .payment-succss {
    position: fixed;    
}

.content .order {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000b;
}

.content .order-content,
.content .payment-succss {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: var(--bgColorLight1);
    padding: 100px 25px 0px;
    border-radius: 10px;
}

.content .order-content .mytitle,
.content .payment-succss .mytitle {
    color: var(--bgColor2);
    font-size: 20px;
}

.content .order-content .mytitle:after {
    left: 10%;
}

.content .order-content .mytitle:before {
    left: 60%;
}

.content .order-content .vodafone {
    letter-spacing: 0px;
    color: var(--bgColor2);
    margin-top: 50px;
    display: inline-block;
    cursor: pointer;
}

.content .order-content .vodafone:after {
    width: 20px;
    left: unset;
    right: 0;
    transition: 0.4s;
}

.content .order-content .vodafone:hover:after {
    width: 300px;
}

.content .order-content .vodafone:before {
    content: unset;
}

.content .order-content #paypal-button {
    margin: 50px 0;
}

.content .payment-succss {
    padding: 80px 30px;
}

.content .payment-succss .mytitle:after {
    left: 5%;
    width: 130px;
}

.content .payment-succss .mytitle:before {
    left: 65%;
    width: 130px;
}

.content .payment-succss h1 {
    color: var(--bgColor2);
    margin: 15px;
}


.content .payment-succss h1:first-of-type {
    padding-top: 30px;
}

/* Resposive */

/* screen width 1440 and 1400 */
@media screen and (max-width:1450px){
    .content .store > a {
        margin: 5px 35px 40px;
        width: calc(100% / 4.5);
    }
}
/* screen width 1366 and 1360 */
@media screen and (max-width:1376px){
    .content .store > a {
        width: calc(100% / 4.3);
        margin: 5px 35px 40px;
    }
} 
/* screen width 1280 */
@media screen and (max-width:1290px){
    .content .store > a {
        margin: 5px 30px 40px;
        width: calc(100% / 4);
    }
}
/* screen width 1152 and 1024 */
@media screen and (max-width:1162px){
    .content .store > a {
        margin: 5px 20px 40px;
        width: calc(100% / 3.5);
    }
}

/* screen width under 1024 */
@media screen and (max-width:1024px) {
    .content .store > a {
        width: calc(100% / 3);
    }
}