@charset "UTF-8";
/*body::-webkit-scrollbar {
    display: none;
}
html, body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}*/
body {
    background-color: #000;
    color: #A1A1A1;
    font-family: 'Merriweather';
    font-size: 16px;
    line-height: normal;
    font-weight: normal;
    /*height: 5000px;*/
}
*, *:before, *:after {
  box-sizing: border-box;
}
[data-aos][data-aos][data-aos-delay="5000"].aos-animate, body[data-aos-delay="5000"] [data-aos].aos-animate {
    transition-delay: 5s;
}
p:last-child {
    margin-bottom: 0 !important;
}
a {
    text-decoration: none;
}
ol, ul {
  padding-left: 0;
  list-style-type: none;
}
img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}
.header {
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 30%);
    /*background-image: url('../img/header-bg.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;*/
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 0;
    width: 100%;
    z-index: 9999;
}
.header .logo a {
    display: inline-block;
    color: #fff;
    font-family: 'Agency FB Bold';
    font-size: 36px;
    line-height: 1;
}
.header .logo span {
    color: #656565;
    font-size: 30px;
}
.evil-header-right {
    align-self: center;
}
.header-items {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-item {
    position: relative;
}
.header-item:not(:last-child) {
    margin-right: 78px;
}
.header-item .navbar-toggler {
    padding: 0;
    border: none;
}
.header-item > a {
    display: inline-block;
    color: #fff;
    font-family: 'Agency FB Bold';
    font-size: 36px;
    line-height: 1;
    transition: all 0.3s ease 0s;
}
.header-item > a:hover {
    color: #F08808;
}
.hamburger-menu-icon span {
    position: relative;
    background-color: #fff;
    width: 30px;
    height: 6px;
    display: inline-block;
    margin-top: 11px;
    margin-bottom: 11px;
    transition: all 0.3s cubic-bezier(.17,.62,.27,.87) 0s;
}
.hamburger-menu-icon span::before,
.hamburger-menu-icon span::after {
    content: "";
    background-color: #fff;
    width: 30px;
    height: 6px;
    position: absolute;
    left: 0;
    transition: all 0.3s cubic-bezier(.17,.62,.27,.87) 0s;
}
.hamburger-menu-icon span::before {
    top: -11px;
}
.hamburger-menu-icon span::after {
    top: 11px;
}
.hamburger-menu-icon.opened span {
    background-color: transparent;
}
.hamburger-menu-icon.opened span::before {
    top: 0;
    transform: rotate(50deg);
}
.hamburger-menu-icon.opened span::after {
    top: 0;
    transform: rotate(-50deg);
}
.submenu {
    width: 314px;
    background-color: #669933;
    position: absolute;
    right: 0px;
    top: 50px;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(.17,.62,.27,.87) 0s;
    overflow: hidden;
}
.header-item .submenu.opened {
    opacity: 1;
    visibility: visible;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(.17,.62,.27,.87) 0s;
    z-index: 999;
}
.overlay.visible {
    opacity: 0.3;
    visibility: visible;
}
.submenu ul {
    padding-top: 50px;
}
.submenu ul li a {
    display: block;
    text-align: center;
    padding: 15px;
    font-family: 'Agency FB Bold';
    font-size: 28px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}
.submenu ul li a.active, .submenu ul li a:hover {
    background-color: #fff;
    color: #000;
}
.buybook::before, .buybook::after {
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: inline-block;
    position: relative;
    width: 25px;
    height: 20px;
}
.buybook::before {
    background-image: url('../img/arrow-right.svg');
    left: -25px;
}
.buybook::after {
    background-image: url('../img/arrow-left.svg');
    right: -25px;
}
.submenu-logo {
    background-color: #fff;
    padding-bottom: 40px;
}
.evil-logo-1 {
    font-size: 90px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    display: block;
    text-align: center;
    line-height: 1;
}
.evil-logo-1 span {
    display: block;
    color: #000;
}
.evil-logo-2 {
    display: none;
    color: #000;
    font-family: 'Agency FB Bold';
    font-size: 20px;
    line-height: 1;
    text-align: center;
}
.evil-logo-2 span {
    color: #656565;
    font-size: 18px;
}
.submenu-logo .submenu-evil {
    color: #fff;
    background-color: #669933;
    line-height: 74px;
}
.submenu-logo .submenu-origin {
    font-size: 58px;
}
.section-home {
    position: fixed;
    width: 100%;
    top: 0;
    /*transform: translateY(-50%);*/
    left: 0;
    z-index: 999;
    /*-webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    */
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    /*transform: translate3d(0,350px,0);*/
}
.home-evil-wrap, .home-origin-wrap {
    overflow: hidden;
}
.home-evil-wrap {
    margin-bottom: -1px;
}
.section-home.fixed-home {
    top: 70px;
    /*transform: translateY(0);*/
}
.home-evil {
    background-color: #669933;
    position: relative;
    overflow: hidden;
    transition-timing-function: cubic-bezier(.17,.62,.27,.87) !important;
}
.ev-desktop-hide {
    display: none;
}
/*.home-evil::before,
.home-origin::before {
    content: "";
    background-color: rgba(12, 12, 12, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.28;
    z-index: 2;
}*/
/*.bgvideo {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}*/
/*.bgvideo-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}*/
/*.bgvideo-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.25;
    z-index: 2;
    overflow: hidden;
}*/
.bgvideo-wrap {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0.25;
    z-index: 2;
    width: 100%;
    height: 100vh;
    overflow: hidden;
	mix-blend-mode: screen;
}
.bgvideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*.bgvideo {
    object-fit: fill;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}*/
/*.section-home .row {
    height: 100vh;
    align-content: center;
    transition: all 0.5s ease 0s;
}*/
.home-evil h1, .home-origin h2 {
    font-family: 'MVSans Bold';
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(.17,.62,.27,.87) !important;
}
.home-evil h1 {
    color: #fff;
    font-size: 150px;
    line-height: 105px;
    padding-top: 20px;
}
.home-origin {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transition-timing-function: cubic-bezier(.17,.62,.27,.87) !important;
}
.home-origin h2 {
    color: #000;
    font-size: 102px;
    transition-timing-function: cubic-bezier(.17,.62,.27,.87) !important;
}
.home-tag {
    padding-top: 20px;
}
.section-home.fixed-home .home-tag {
    opacity: 0 !important;
    transition-delay: 0s !important;
}
.home-tag h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
}
.home-layer-1 {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
}
.home-layer-1 > div {
    /*background-image: url("../img/ianbrady.png");*/
    background-image: url("../img/ianbradyblackback.webp");
    background-repeat: no-repeat;
    width: 504px;
    height: 1700px;
    height: calc(100vh + 700px);
    /*width: calc(100vh / 2.6);*/
    width: calc(100vh / 1.3);
    background-position: center 0px;
    background-size: contain;
    background-attachment: scroll;
    /*opacity: 0.6;*/
    margin-left: -20%;
}
/*.home-layer-2 {
    position: absolute;
    top: -310px;
    right: 0;
    max-height: initial;
    opacity: 0.7;
    z-index: -1;
}*/
.home-layer-2 {
    position: absolute;
    top: -310px;
    right: 0;
    max-height: initial;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}
/*.home-layer-1 img {
    max-width: 950px;
}*/
/*.section-two {
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
}*/
.section-two {
    position: relative;
    transition: all 0.5s ease 0s;
    margin-top: 100vh !important;
}
.section-two .evil-container {
    position: relative;
    z-index: 3;
}
.section-two h2,
.section-four h2 {
    color: #fff;
    font-size: 68px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 25px;
}
.section-two p,
.section-four p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}
.section-four p {
    font-size: 25px;
}
.evil-container {
    max-width: 1240px;
    max-width: calc(100vw/2 + 200px);
    margin-left: auto;
}
.evil-container-left {
    max-width: 1240px;
    margin-right: auto;
}
.hide-under-header.evil-hide {
    opacity: 0 !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
}
.section-three {
    margin-top: 300px;
    position: relative;
    z-index: 3;
}
.section-three h2 {
    text-align: center;
}
.section-three .evil-container {
    position: relative;
    z-index: 3;
}
.section-three h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
}

/*.section-four {
    position: relative;
    margin-top: 300px;
    margin-bottom: 400px;
}*/
.section-four {
    position: relative;
    min-height: 100vh;
    padding-top: 300px;
}
.section-four .container {
    position: relative;
    z-index: 3;
}
.section-five {
    position: relative;
    min-height: 686px;
}
.section-five h2 {
    color: #fff;
    font-size: 218px;
    line-height: 1;
    text-align: center;
    position: relative;
    z-index: 3;
}
.section-five p {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
}
.home-layer-3 {
    position: absolute;
    top: -100px;
    left: -150px;
    /*width: 772px;
    height: 686px;*/
    max-height: initial;
    /*opacity: 0.7;*/
}
.bottom-inner-sec {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
}
.section-six {
    position: relative;
    min-height: 100vh;
    z-index: 3;
}
.section-six.section-six-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.section-six .evil-container {
    max-width: 880px;
    margin-right: auto;
}
.section-six .home-evil {
    min-height: 50vh;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    padding:  0px 15px;
}
.section-six .home-origin {
    min-height: 50vh;
    padding:  0px 15px;
}
.section-six .home-evil::before, .section-six .home-origin::before {
    display: none;
}
.section-six .home-evil h1 {
    font-size: 294px;
    line-height: 210px;
}
.section-six .home-origin h2 {
    font-size: 200px;
    text-align: center;
}
.section-six .home-origin h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
}
.evil-next-arrow-wrap {
    position: fixed;
    bottom: 20px;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%) !important;
    width: 30px;
    display: none;
}
.section-seven {
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    width: 100%;
    z-index: 3;
    /*opacity: 0;
    visibility: hidden;*/
}
.section-seven.section-seven-fixed {
    /*opacity: 1;
    visibility: visible;*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
}
.evil-green-block {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #669933;
    height: 50%;
    width: 100%;
    z-index: 20;
}
.evil-white-block {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    height: 50%;
    width: 100%;
    z-index: 30;
}
.evil-logo-seven a {
    display: block;
    color: #fff;
    position: relative;
    font-size: 44px;
    font-family: 'Agency FB Bold';
    line-height: 1;
    text-align: center;
    padding-bottom: 30px;
    z-index: 1;
    transition-timing-function: cubic-bezier(.17,.62,.27,.87) !important;
}
.evil-logo-seven span {
    color: #000;
    font-size: 38px;
}
.home-evil-seven-wrap {
    position: relative;
    z-index: 31;
}
.home-evil-seven,
.home-origin-seven {
    overflow: hidden;
    position: relative;
}
.home-evil-seven h1, .home-origin-seven h2 {
    font-family: 'MVSans Bold';
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    transition-timing-function: cubic-bezier(.17,.62,.27,.87) !important;
}
.home-evil-seven h1 {
    font-size: 150px;
    line-height: 116px;
}
.home-origin-seven h2 {
    color: #000;
    font-size: 105px;
}
.evil-seven-middle {
    position: relative;
    z-index: 31;
}
.trailer-video-wrap {
    position: relative;
    margin-bottom: 20px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 67px;
    transition-timing-function: cubic-bezier(.17,.62,.27,.87) !important;
}
.trailer-video-wrap .trailer-video-inner {
    background-color: #000;
    transform: scaleY(0);
    position: relative;
    transition: all 1s ease 0s;
}
.evil-trailer-show .trailer-video-wrap .trailer-video-inner {
    transform: scaleY(1);
}
/*.trailer-video-wrap.aos-animate .trailer-video-inner {
    transform: scaleY(1);
}*/
.evils-trailer-video {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
}
.evil-trailer-play .evils-trailer-video,
.evil-trailer-play .play-btn {
    opacity: 1;
    visibility: visible;
}
.play-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    border-radius: 100px;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
.play-btn::before {
    content: "";
    border-top: 10px solid transparent;
    border-left: 10px solid #669933;
    border-right: 0 solid transparent;
    border-bottom: 10px solid transparent;
}
.play-btn.play-btn-hidden {
    opacity: 0;
    visibility: hidden;
}
.evil-video-buttons {
    background-color: rgba(255,255,255,0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 16;
    width: 100%;
}
.evil-audio-btn, .evil-rv-btn, .evil-pprv-btn {
    background-color: #fff;
    border-radius: 100px;
    background-image: url('../img/mic-mute-fill.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px auto;
    padding: 15px;
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}
.evil-audio-btn{
    opacity: 0.75;
}
.evil-audio-btn.evil-unmute {
    background-image: url('../img/mic-fill.svg');
}
.evil-pprv-btn {
    background-image: url('../img/pause-fill.svg');
    right: 45px;
    opacity: 0.75;
}
.evil-pprv-btn.evil-play {
    background-image: url('../img/play-fill.svg');
    opacity: 0.75;
}
.evil-rv-btn {
    background-image: url('../img/arrow-clockwise.svg');
    right: 80px;
    opacity: 0.75;
}
.evil-logo-seven, .home-evil-seven-wrap {
    align-self: center;
}
.evil-logo-seven {
    overflow: hidden;
    position: relative;
    bottom: 16px;
    z-index: 21;
}
.section-eight {
    position: relative;
}
.section-eight::before {
    content: '';
    background-image: url(../img/WebsiteBOOKpage.webp);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 100% auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1300px;
    /*opacity: 0.8;*/
}
.section-eight-row-wrap {
    min-height: 100vh;
    position: relative;
    z-index: 3;
}
.section-eight-row-inner {
    padding-top: 180px;
}
.section-eight-left,
.section-eight-right {
    position: relative;
    z-index: 3;
}
.section-eight h2 {
    font-size: 34px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 30px;
}
.section-eight p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}
.evil-scroll-down-btn-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    margin-bottom: 20px;
    z-index: 50;
    width: 100%;
}
.evil-scroll-down-btn-wrap .scroll-down-btn {
    display: inline-block;
    width: 27px;
    height: 24px;
    background-image: url(../img/polygon-down.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.scroll-down-btn-left,
.scroll-down-btn-right {
    position: absolute;
    bottom: 20px;
    width: 27px;
    height: 24px;
    background-image: url(../img/polygon-down.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 50;
    transform: translateX(-20%);
    display: none;
}
.scroll-down-btn-left {
    left: 20%;
}
.scroll-down-btn-right {
    right: 20%;
}
.evil-container-1 {
    max-width: 1600px;
    margin: 0 auto;
}
.evil-book-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    bottom: 100px;
    left: 0;
    z-index: 5;
    width: 100%;
}
.evil-book-links a {
    display: block;
    margin-right: 50px;
}
.evil-book-links a:last-child {
    margin-right: 0;
}
.evil-book-links h5 {
    color: #fff;
    font-family: 'Agency FB Bold';
    font-size: 18px;
    line-height: 1;
    margin-bottom: 20px;
    transition: all 0.3s ease 0s;
}
.evil-book-links a:hover h5 {
    color: #F08808;
}
.section-nine {
    position: relative;
    padding: 370px 0 100px;
    min-height: 100vh;
}
.section-nine .evil-container {
    margin-right: auto;
    max-width: 950px;
    position: relative;
    z-index: 3;
	padding-left: 280px;
}
.section-nine h2 {
    color: #fff;
    font-family: 'Agency FB Bold';
    font-size: 36px;
    line-height: 1;
    position: relative;
    z-index: 3;
}
.section-nine p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
}
#author-bio h2{
    text-transform: uppercase;
}
.home-layer-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    max-height: initial;
    opacity: 0.7;
    /*width: 772px;
    height: 686px;*/
}
/*.section-ten {
    min-height: 100vh;
    position: relative;
    padding-top: 84px;
    padding-bottom: 84px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}*/
.section-ten {
    min-height: 100vh;
    position: relative;
    padding-top: 144px;
    padding-bottom: 100px;
}
.section-ten::before {
    content: '';
    background-image: url('../img/donate-bg.webp');
    background-repeat: no-repeat;
    background-position: 0 300px;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1235px;
    height: 880px;
    opacity: 0.62;
    z-index: -1;
}
.section-ten .evil-container {
    max-width: 920px;
    margin-right: auto;
    position: relative;
    z-index: 3;
}
.section-ten h2 {
    color: #fff;
    font-family: 'Agency FB Bold';
    font-size: 138px;
    line-height: 1;
    margin-bottom: 30px;
}
.section-ten p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
}
.evil-hidden {
	opacity: 0 !important;
}
.evil-btn-wrap {
    text-align: center;
}
.section-ten .evil-btn-wrap {
    padding-top: 40px;
    padding-bottom: 20px;
}
.evil-btn {
    display: inline-block;
    background-color: #669933;
    border-radius: 16px;
    color: #fff;
    font-family: 'Agency FB Bold';
    font-size: 44px;
    line-height: 1;
    padding: 18px 30px;
    transition: all 0.3s ease 0s;
    min-width: 320px;
}
.section-ten .evil-btn.evil-btn-changed {
    font-family: 'Merriweather';
    font-size: 20px;
    font-weight: 700;
    padding-top: 30px;
    padding-bottom: 30px;
}
.evil-btn:hover {
    background-color: #656565;
    color: #fff;
}
.evil-donate-icon-right {
    text-align: right;
}
.evil-donate-icon-box {
    display: inline-block;
}
.evil-donate-icon-box h5 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 27px;
    text-align: center;
    opacity: 0;
}
.evil-donate-icon-box img {
    display: inline-block;
    /*opacity: 0.6;
    transition: all 0.3s ease 0s;*/
}
.evil-donate-icon-box img[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
}
.evil-donate-icon-box.evil-show img, .evil-donate-icon-box.evil-show h5, .evil-donate-icon-box.evil-show p {
    opacity: 1 !important;
    transition-duration: 0.3s !important;
    transition-delay: 0s !important;
}
.section-six.section-six-fixed-removed, .section-seven.section-seven-fixed-removed {
    transform: translate3d(0px, 0px, 0px) !important;
}

/*Loader*/
.evil-loader-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 99999;
}
.evil-loader {

}
.evil-book {
  border: 4px solid #FFFFFF;
  width: 60px;
  height: 45px;
  position: relative;
  perspective: 150px;
}
.evil-book-page {
  display: block;
  width: 30px;
  height: 45px;
  border: 4px solid #FFFFFF;
  border-left: 1px solid #fff;
  margin: 0;
  position: absolute;
  right: -4px;
  top: -4px;
  overflow: hidden;
  background: #669933;
  transform-style: preserve-3d;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.evil-book .evil-book-page:nth-child(1) {
  -webkit-animation: pageTurn 1.2s cubic-bezier(0, .39, 1, .68) 1.6s infinite;
  animation: pageTurn 1.2s cubic-bezier(0, .39, 1, .68) 1.6s infinite;
}
.evil-book .evil-book-page:nth-child(2) {
  -webkit-animation: pageTurn 1.2s cubic-bezier(0, .39, 1, .68) 1.45s infinite;
  animation: pageTurn 1.2s cubic-bezier(0, .39, 1, .68) 1.45s infinite;
}
.evil-book .evil-book-page:nth-child(3) {
  -webkit-animation: pageTurn 1.2s cubic-bezier(0, .39, 1, .68) 1.2s infinite;
  animation: pageTurn 1.2s cubic-bezier(0, .39, 1, .68) 1.2s infinite;
}
/* Page turn */

/* 28-08 */
/* .section-four p, .section-eight p, .section-eight h2 {
    color: #fff;
} */
.home-layer-2.mobile-show{
    display: none;
}
/* 31-08 */
.section-eight h2 {
    color: #fff;
}

/** 07-09 */
picture.givesend-logo-img,
picture.givesend-logo-img img{
    max-width: 250px !important;
}

@-webkit-keyframes pageTurn {
  0% {
    -webkit-transform: rotateY( 0deg);
    transform: rotateY( 0deg);
  }
  20% {
    background: #669933;
  }
  40% {
    background: #669933;
    -webkit-transform: rotateY( -180deg);
    transform: rotateY( -180deg);
  }
  100% {
    background: #669933;
    -webkit-transform: rotateY( -180deg);
    transform: rotateY( -180deg);
  }
}

@keyframes pageTurn {
  0% {
    transform: rotateY( 0deg);
  }
  20% {
    background: #669933;
  }
  40% {
    background: #669933;
    transform: rotateY( -180deg);
  }
  100% {
    background: #669933;
    transform: rotateY( -180deg);
  }
}
/*Loader End*/



/*Responsive*/
@media only screen and (min-width: 1025px) and (max-width: 1700px) {
    .header {
        padding: 16px 0;
    }
    .header .logo a {
        font-size: 34px;
    }
    .header .logo span {
        font-size: 30px;
    }
    .header-item > a {
        font-size: 30px;
    }
    .submenu ul li a {
        font-size: 22px;
    }
    .header-item:not(:last-child) {
        margin-right: 62px;
    }
    .home-evil h1 {
        font-size: 120px;
        line-height: 84px;
    }
    .home-origin h2 {
        font-size: 80px;
    }
    .home-tag h3 {
        font-size: 26px;
    }
    .section-two h2, .section-four h2 {
        font-size: 50px;
    }
    .section-two p, .section-four p {
        font-size: 16px;
    }
    .section-three h2 {
        font-size: 36px;
    }
    .home-layer-1 > div {
        /*width: 350px;
        height: 900px;*/
    }
    .evil-container {
        max-width: 940px;
        max-width: calc(100vw/2 + 200px);
    }
    .home-layer-2 {
        top: -150px;
        width: 300px;
    }
    .evil-logo-seven a {
        font-size: 30px;
        padding-bottom: 20px;
    }
    .evil-logo-seven span {
        font-size: 28px;
    }
    .home-evil-seven h1 {
        font-size: 100px;
        line-height: 80px;
    }
    .home-origin-seven h2 {
        font-size: 68px;
    }
    /*.section-six .home-evil h1 {
        font-size: 150px;
        line-height: 105px;
    }*/
    .section-six .home-evil h1 {
        font-size: 232px;
        line-height: 164px;
    }
    /*.section-six .home-origin h2 {
        font-size: 100px;
        text-align: center;
    }*/
    .section-six .home-origin h2 {
        font-size: 154px;
        text-align: center;
    }
    .section-six .home-origin h3 {
        font-size: 22px;
        text-align: center;
    }
    .trailer-video-wrap {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-five h2 {
        font-size: 174px;
    }
    .section-five p {
        font-size: 22px;
    }
    .home-layer-3 {
        top: 0;
        width: 600px;
    }
    .evil-container-1 {
        max-width: 1510px;
        margin: 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    .evil-book-links {
        left: 15px;
    }
    .home-layer-4 {
        top: 200px;
        width: 400px;
    }
    .section-eight h2 {
        font-size: 30px;
    }
    .section-ten {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    .section-ten h2 {
        font-size: 100px;
    }

}
@media only screen and (min-width: 1025px) and (max-width: 1500px) {
    .section-nine .evil-container {
        padding-right: 70px;
    }
    .section-eight h2 {
        font-size: 24px;
    }
    .section-nine p, .section-ten p {
        font-size: 14px;
    }
    .section-five {
        padding-top: 100px;
    }
    .evil-book-links {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 50px;
    }
    .home-layer-1 > div {
        /*width: 253px;*/
    }
    .section-eight-row-inner {
        padding-top: 100px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .evil-container, .evil-container-1 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header .logo a {
        font-size: 30px;
    }
    .header .logo span {
        font-size: 24px;
    }
    .header-item:not(:last-child) {
        margin-right: 20px;
    }
    .header-item > a {
        font-size: 34px;
    }
    .home-tag h3 {
        font-size: 20px;
        /*text-align: center;*/
    }
    .home-evil h1 {
        font-size: 116px;
        line-height: 80px;
        /*text-align: center;*/
    }
    .home-origin h2 {
        font-size: 78px;
        /*text-align: center;*/
    }
    .home-layer-1 > div {
        /*width: 296px;*/
    }
    .section-five h2 {
        font-size: 150px;
    }
    .section-two h2, .section-four h2 {
        font-size: 38px;
    }
    .section-three h2 {
        font-size: 26px;
        /*text-align: center;*/
    }
    .home-layer-2 {
        top: 0;
        width: 300px;
    }
    .section-four h2, .section-four p {
        max-width: 600px;
    }
    .section-six .home-evil h1 {
        font-size: 116px;
        line-height: 80px;
        text-align: center;
    }
    .section-six .home-origin h2 {
        font-size: 78px;
        text-align: center;
    }
    .section-six .home-origin h3 {
        font-size: 16px;
        text-align: center;
    }
    .home-evil-seven h1 {
        font-size: 80px;
        line-height: 62px;
    }
    .home-origin-seven h2 {
        font-size: 54px;
    }
    .section-ten h2 {
        font-size: 50px;
        text-align: center;
    }
    .section-ten::before {
        background-position: 0px 120px;
        width: 840px;
        height: 600px;
    }
    .evils-trailer-video {
        height: auto;
    }
    .evil-logo-seven a {
        font-size: 24px;
        padding-bottom: 10px;
    }
    .evil-logo-seven span {
        font-size: 20px;
    }
    .scroll-down-btn-left,
    .scroll-down-btn-right {
        bottom: 10px;
    }
    .evil-book-links {
        position: static;
        padding-top: 40px;
    }
    .evil-book-links a {
        margin-right: 20px;
    }
    .section-nine .evil-container {
        margin-left: 0;
    }
    .section-nine {
        padding-top: 100px;
        padding-bottom: 0;
        min-height: 100%;
    }
    .home-layer-4 {
        width: 300px;
    }
    .section-nine h2 {
        font-size: 32px;
    }
    .section-nine p,
    .section-ten p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .section-ten .evil-container {
        max-width: 100%;
    }
    .section-eight h2 {
        font-size: 20px;
    }
    .home-layer-1 > div {
        margin-left: -30%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home-layer-1 > div {
        /*width: 400px;*/
    }
    .evil-logo-seven a {
        font-size: 20px;
    }
    .evil-logo-seven span {
        font-size: 16px;
    }
    .home-evil-seven h1 {
        font-size: 50px;
        line-height: 40px;
    }
    .section-ten::before {
        background-position: -150px 50px;
        width: 100%;
        height: 540px;
    }
    .home-origin-seven h2 {
        font-size: 34px;
    }
    .section-eight {
        padding-top: 500px;
    }
    .section-eight-left {
        padding-top: 0;
    }
    .section-eight-middle {
        display: none;
    }
    .section-eight-right {
        align-self: self-start;
        padding-bottom: 0;
    }
    .home-layer-1 > div {
        margin-left: -50%;
    }
}
@media only screen and (max-width: 767px) {

    .section-six,
    .section-seven .evil-green-block,
    .section-seven .evil-white-block {
        display: none;
    }
    .evil-seven-middle{
        padding-right: 0;
        padding-left: 0;
    }
    .trailer-video-wrap .trailer-video-inner {
        background-color: #000;
        /*transform: scaleY(1);*/
        position: relative;
        transition:none;
    }
    .section-home {
        -webkit-transition: all 1s ease 0s;
        -moz-transition: all 1s ease 0s;
        -ms-transition: all 1s ease 0s;
        -o-transition: all 1s ease 0s;
        transition: all 1s ease 0s;
        /*transform: translate3d(0,350px,0);*/
    }
    .home-layer-1 > div{
        background-position: center -40px;
    }
    .evil-container, .evil-container-1 {
        padding-left: 40px;
        padding-right: 40px;
    }
    .section-home .evil-container, .evil-container-1{
        padding-left: 15px;
        padding-right: 15px;
    }
    .section-home .home-evil-origin  .evil-container {
        padding-right: 0;
        padding-left: 0;
    }
    .evil-header-left {
        display: none;
    }
    .header-items {
        justify-content: space-between;
    }
    .header-item:not(:last-child) {
        margin-right: 10px;
    }
    .header-item > a {
        font-size: 34px;
    }
    .buybook::before, .buybook::after {
        width: 20px;
        height: 15px;
    }
    .evil-container {
        max-width: 100%;
    }
    .home-evil h1 {
        font-size: 115px;
        line-height: 80px;
        text-align: center;
    }
    .home-origin h2 {
        font-size: 78px;
        text-align: center;
    }
    /*.home-layer-1 > div {
        width: 550px;
        height: 100vh;
    }*/
    .home-layer-1 > div {
        /*width: 260px;*/
    }
    .section-five h2 {
        font-size: 150px;
    }
    .section-two h2, .section-four h2 {
        font-size: 26px;
    }
    .section-two p, .section-four p {
        font-size: 16px;
    }
    .section-six{
        padding-top: 200px;
    }
    .section-six .home-evil h1 {
        font-size: 116px;
        line-height: 80px;
    }
    .section-six .home-origin h2 {
        font-size: 78px;
    }
    .section-six .home-origin h3 {
        font-size: 16px;
        text-align: center;
    }
    .home-evil-seven h1 {
        font-size: 100px;
        line-height: 70px;
    }
    .home-origin-seven h2 {
        font-size: 70px;
    }
    .section-ten h2 {
        font-size: 54px;
        text-align: center;
    }
    .section-ten::before {
        background-position: -70px 0px;
        width: 100%;
        height: 270px;
    }
    .home-tag {
        padding-top: 0;
        position: absolute;
        bottom: -290px;
        left: 0;
        /*opacity: 1 !important;*/
    }
    .home-tag h3 {
        font-size: 20px;
        text-align: center;
        padding: 25px;
    }

    .section-seven {
        padding-top: 30px;
    }
    .evil-logo-seven,
    .home-evil-seven-wrap {
        display: none;
    }
    /* .trailer-video-wrap {
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    } */
    .trailer-video-wrap {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .evils-trailer-video {
        height: auto;
    }
    .scroll-down-btn-left,
    .scroll-down-btn-right {
        bottom: 10px;
    }
    .section-eight::before {
        background-position: 50% 100px;
        background-size: 1000px auto;
    }
    .section-eight-row-inner {
        padding-top: 530px;
    }
    .section-eight h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .section-eight-left {
        margin-bottom: 16px;
    }
    .section-eight-right {
        padding-bottom: 50px;
    }
    .evil-book-links {
        justify-content: space-between;
        position: static;
        padding: 10px 0 30px;
    }
    .evil-book-links a {
        margin-right: 10px;
    }
    .section-nine {
        padding-top: 280px;
        padding-bottom: 0;
    }
    .home-layer-4 {
		top: -250px;
		left: 40px;
        width: 230px;
        aspect-ratio: auto;
        opacity: 1;
    }
    .section-nine h2 {
        font-size: 30px;
    }
    .section-nine p,
    .section-ten p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .section-ten .evil-btn-wrap {
        padding-bottom: 50px;
    }
    .evil-btn {
        font-size: 30px;
        min-width: 100%;
        line-height: 1.5;
    }
    .section-ten .evil-btn.evil-btn-changed {
        font-size: 12px;
        padding: 26px 5px;
    }
    .evil-donate-icon-box {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .evil-donate-icon-left {
        margin-bottom: 50px;
    }
    .evil-donate-icon-box h5 {
        font-size: 16px;
        margin-bottom: 0;
        text-align: center;
        width: 0;
        transition: all 0.3s ease 0s;
    }
    .evil-donate-icon-box a {
        width: 100%;
        text-align: center;
        transition: all 0.3s ease 0s;
    }
    .evil-donate-icon-box.evil-show h5,
    .evil-donate-icon-box.evil-show a {
        width: 50%;
    }
    .evil-donate-icon-left img {
        width: 50px;
    }
    .evil-donate-icon-right img {
        width: 100px;
    }
    .submenu ul li a {
        font-size: 20px;
    }
    .submenu-logo {
        padding-bottom: 20px;
    }
    .evil-logo-1 {
        margin-bottom: 20px;
    }
    .evil-logo-2 {
        display: block;
    }
    /* .home-layer-2 {
        top: 0;
        width: 250px;
    } */
    .scroll-down-btn-left, .scroll-down-btn-right {
        width: 15px;
        height: 12px;
    }
    .header {
        background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 60%);
    }
	.section-five{
		min-height: 450px;
	}
	.submenu-logo{
		border: none;
		overflow: hidden;
	}

    .ev-desktop-hide {
        display: block;
    }
    .ev-mobile-hide {
        display: none;
    }
    /*.bgvideo{
        width: 100%;
        height: auto;
    }*/
    .home-layer-2{
        display: none;
    }
    .home-layer-2.mobile-show {
        display: block !important;
    }
    .home-layer-2.mobile-show > div {
        background-image: url(../img/baby1.webp);
        background-repeat: no-repeat;
        height: 510px;
        width: 100%;
        background-position: center right !important;
        background-size: contain;
        background-attachment: scroll;
        /* opacity: 0.6; */
        transform: translateY(0px) !important;
    }
    .home-layer-2.mobile-show {
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        width: 100%;
    }
	.section-nine .evil-container {
		padding-left: 40px;
	}

}
@media only screen and (max-width: 480px) {
    .evil-next-arrow-wrap {
        width: 23px;
    }
    .section-two {
        padding-top: 100px;
    }
    .section-two .evil-container {
        /*max-width: 270px;*/
        text-align: center;
        margin: 0 auto;
    }
    .section-two h2, .section-four h2 {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    .section-three {
        margin-top: 150px;
        margin-bottom: 150px;
    }
    .section-three h2 {
        font-size: 20px;
        text-align: center;
    }
    /* .home-layer-2 {
        max-width: 50%;
    } */
    .section-four {
        padding-top: 400px;
    }
    .section-five h2 {
        font-size: 100px;
    }
    .section-five p {
        font-size: 14px;
    }
    .home-layer-3 {
        top: 140px;
        left: -20px;
    }
    .bottom-inner-sec {
        bottom: 160px;
    }
    .header-item > a {
        font-size: 24px;
    }
    .header-item > a > img {
        width: 25px;
    }
    .hamburger-menu-icon span {
        width: 20px;
        height: 4px;
        margin-top: 7px;
        margin-bottom: 7px;
    }
    .hamburger-menu-icon span::before, .hamburger-menu-icon span::after {
        width: 20px;
        height: 4px;
    }
    .hamburger-menu-icon span::before {
        top: -7px;
    }
    .hamburger-menu-icon span::after {
        top: 7px;
    }
    .section-six .home-origin h3 {
        font-size: 12px;
    }
    /* .section-two p, .section-four p {
        font-size: 14px;
    } */
    .section-two p {
        font-size: 14px;
    }
    .section-four p, .section-eight p, .section-nine p, .section-ten p {
        font-size: 13px;
    }
    .section-two p{
        line-height: 1;
    }
    .home-layer-1 > div {
        margin-left: -70%;
    }
    .submenu-logo {
        background-color: transparent;
        padding-bottom: 0;
    }
    .evil-logo-1 {
        margin-bottom: 0;
    }
    .evil-logo-2 {
        padding: 20px 0;
        background: #fff;
    }
    /* .section-nine p, .section-ten p {
        font-size: 14px;
    } */
    .section-ten h2 {
        font-size: 52px;
    }
    .evil-container-1 {
        padding-left: 30px;
        padding-right: 30px;
    }
    .section-eight h2 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 360px) {
    .home-evil h1, .section-six .home-evil h1 {
        font-size: 100px;
        line-height: 70px;
    }
    .home-origin h2, .section-six .home-origin h2 {
        font-size: 68px;
    }
    .section-ten .evil-btn.evil-btn-changed {
        font-size: 12px;
        padding: 27px 10px;
    }
    /* .trailer-video-wrap {
        width: 240px;
    } */
    .section-six .home-origin h3 {
        font-size: 10px;
    }
}
@media only screen and (max-width: 320px) {
    .header-item > a {
        font-size: 30px;
    }
    .section-ten .evil-btn.evil-btn-changed {
        font-size: 10px;
        padding: 28px 10px;
    }
    .home-evil h1, .section-six .home-evil h1 {
        font-size: 98px;
        line-height: 68px;
    }
    .home-origin h2, .section-six .home-origin h2 {
        font-size: 66px;
    }
    .scroll-down-btn-left, .scroll-down-btn-right {
        bottom: 3px;
    }
}



.evil-donate-icon-wrap .row {
    align-items: center;
}