.cat-container {
    padding: 130px 0px 100px;
    width: calc(100% - 60px);
    max-width: 1024px;
    position: relative;
    display: block;
    margin: 0px auto;
}

.payment-title {
    position: relative;
    display: block;
    margin: 0px 0px 40px;
    padding: 0px 0px;
    line-height: 22px;
    text-align: center;
    font-family: "Heebo";
    /* font-weight: normal; */
    font-size: 30px;
    width: 100%;
}

.payment-form {
    position: relative;
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0px auto;
}

.payment-group {
    position: relative;
    display: block;
    font-size: 0px;
    margin-bottom: 10px;
}

.payment-label {
    position: relative;
    display: inline-block;
    vertical-align: top;
    line-height: 40px;
    width: 190px;
    font-size: 15px;
}

.payment-text {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 190px);
    height: 40px;
    border: 1px solid #dedede;
    padding: 0px 10px;
    font-size: 15px;
}

.payment-submit {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 120px;
    height: 40px;
    background: #202744;
    color: #fff;
    border: 0px;
    font-size: 16px;
}

/* Desktops and laptops */
@media screen and (min-width : 1224px) {

}

/* Tablet */
@media screen and (max-width: 1024px) {
	
}

/* Mobile */
@media screen and (max-width: 768px) {
	.cat-container {
		padding-top: 100px;
	}
}

@media screen and (max-width : 500px) {
    .payment-title {
        font-size: 24px;
    }

    .payment-label {
        display: block;
        width: 100%;
        line-height: normal;
    }

    .payment-text {
        display: block;
        width: 100%;
    }

    .payment-submit {
        margin: 0px auto;
        display: table;
    }
}