/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
.functionsBigWrapper {
	display: flex;
	flex-flow: column;
	text-align: center;
	justify-content: center;
	margin: 0 auto;
  cursor: default;
  max-width: 1280px;
}
.functionsBigWrapper h3 {
	color: #0b89f2;
	font-weight: 600;
	font-size: 34px;
}
.platFunctionsWrapper {
	display: flex;
	justify-content: space-around;
}
.firstCol {
    display: flex;
}
.firstCol, .secondCol {
    display: flex;
    justify-content: space-between;
    width: 50%;
    margin: 0 0px;
}
.platFunction a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.platName {
    transition: 500ms;
    display: block;
    width: 300px;
    min-height: 90px;
    cursor: pointer;
    margin: 10px 5px;
    padding: 5px;
    border-radius: 2px;
    box-shadow: inset 0 0 3px #999, 0 0 3px #999;
		font-weight: 600;
    color: #fff !important;
		opacity:0.9;
		background-color: #158be670;
		background: -moz-linear-gradient(-45deg, #158be670 0%, #158be670 25%, #15aeeb 50%, #0acaff 75%, #15aeeb 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(-45deg, #158be670 0%, #158be670 25%,#15aeeb 50%,#0acaff 75%,#15aeeb 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(135deg, #2fa2f5 0%, #2fa2f5 25%,#15aeeb 50%,#0acaff 75%,#15aeeb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		background-size: 400% 400%;
		background-repeat: no-repeat;
		transition: 0.6s all;
}
.platName:hover {
		background-position: 100% 100%;
		opacity: 1;
		transition: 1s all;
		color: #fff !important;
}
.first-par {
    margin-top: 15px;
    width: 300px;
		height:400px;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 40px;
    box-shadow: 0 0 5px 2px #ddd;
    padding: 10px;
}

@media (max-width: 1340px) {
    .platFunctionsWrapper {
    flex-flow: column;
    margin: 0 auto;
    }
}
@media (max-width: 800px) {
    .firstCol, .secondCol {
    flex-flow: column;
    }
}