#fakeNumber{
    position: relative;
    background-color: #000;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    z-index: 9;
    display: flex;
    justify-content: flex-end;
    width: calc(100% - 140px);
}
#fakeNumber:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #207caa, #173055, #14232a, #40c9ffe0, #1d333e);
    background-size: 400% 400%;
    animation: bg_gradient 8s infinite ease;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.3;
    z-index: 2;
    top: 0;
}
@keyframes bg_gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#fakeNumber .modelwidth{
    display: flex;
    width: calc(100% - 150px);
    justify-content: flex-end;
    position: relative;
    z-index: 5;
}
#fakeNumber .modelwidth ul{
    display: flex;
    width: 100%;
}
#fakeNumber li{
    color: #fff;
    float: left;
    width: 25%;
}
#fakeNumber li .eva{
    width: 90%;
    margin: 20px 0;
}
#fakeNumber li .eva p{
    line-height: 120%;
    font-size: 20px;
}
#fakeNumber li .eva h2{
    overflow: hidden;
    line-height: 120%;
    font-weight: normal;
    font-size: 18px;
}
#fakeNumber li .eva h2 b{
    font-size: 60px;
    line-height: 120%;
    display: inline-block;
    font-family: 'Merriweather Sans', sans-serif;
    margin-right: 5px;
}

@media screen and (min-width: 1024px) {
	
	#fakeNumber{
		background-attachment: fixed;
	}
	
}

@media screen and (max-width: 1460px){
	#fakeNumber .modelwidth{
    width: calc(100% - 60px);
}
}

@media screen and (max-width: 1280px){
	#fakeNumber{
	    width: 100%;
	}
	#fakeNumber .modelwidth{
    width: 95%;
}
}
@media screen and (max-width: 980px) {
	#fakeNumber .modelwidth ul{
	    flex-wrap: wrap;
	}
	#fakeNumber{
    padding: 50px 0;
}
	#fakeNumber li{width: calc(50% - 4px);margin: 3px 0;float: none;display: inline-block;vertical-align: top;}
	#fakeNumber li .eva p,
	#fakeNumber li .eva h2{ text-align:center;}
	#fakeNumber li .eva h2 b{ font-size:30px;}
}

@media screen and (max-width: 480px) {
	#fakeNumber li .eva p{ font-size:16px;}
	#fakeNumber li .eva h2{ font-size:14px;}
}
