/* STYLES FOR ONE COLUMN PLUS TWO */
.onePtwo {
    max-width: unset !important;
    margin: 0 !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 433px;
    text-align: center;
    padding: 40px 13.6%;
    background-attachment: fixed;
}
.onePtwo h2 {
    padding-bottom: 27px !important;
    margin-bottom: 27px !important;
    position: relative;
    text-align: center;
}
.onePtwo h2::after {
    position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	width: 100%;
	max-width: 256px;
	height: 2px;
	background: #FFF;
}
.onePtwo .onePtwoH5 {
    font-family: "Gotham A", "Gotham B" !important;
	font-weight: normal !important;
	font-size: 22px !important; 
	color: #FFFFFF !important;
	line-height: 31px;
    margin-bottom: 20px !important;
}
.onePtwo .bodyWhite {
    font-family: "Gotham A", "Gotham B" !important;
	font-size: 16px !important;
	color: #FFFFFF !important;
	line-height: 25px !important;
}
.onePtwo .onePtwoGrid {
    display: grid;
    grid-gap: 50px 35px;
    margin-top: 40px;
}
.onePtwoGrid h3 {
    margin-bottom: 15px !important;
    font-family: 'BauerBodoniStdBlack' !important;
	font-weight: 900 !important;
	font-size: 30px !important;
	color: #FFFFFF !important;
	line-height: 37px;
}
.onePtwoGrid p {
    margin-bottom: 24px !important;
}
.onePtwoButton {
    background: rgba(0,0,0,0.10) !important;
	border: 2px solid #B2B2B2 !important;
    text-align: center;
    display: inline-block;
    padding: 1px 18.4px !important;
}
.onePtwo a {
    font-family: "Gotham A", "Gotham B" !important;
	font-size: 15px !important;
	color: #FFFFFF !important;
	text-transform: uppercase;
    text-decoration: none;
}
.onePtwoMobile {
    display: none;
}
@media only screen and (max-width: 1300px) {
    .onePtwo {
        padding: 30px 15px;
    }
}
@media only screen and (max-width: 1000px) {
    .onePtwo .onePtwoGrid{
       grid-template-columns: 1fr 1fr !important;
    }
}
@media only screen and (max-width: 600px) {
    .onePtwo {
        display: none;
    }
    .onePtwoMobile {
        display: block;
    }
    .onePtwo .onePtwoGrid{
       grid-template-columns: 1fr !important;
       grid-gap: 25px;
    }
}