.hideimage{
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
    overflow: hidden;
    opacity: 0.1;
    background-color: white;
}

@keyframes loadImage{
    from{    
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
    overflow: hidden;
    opacity: 0.1;
    background-color: white;}
    to{
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
    overflow: hidden;
    opacity: 1;
    background-color: black;
    }
}

.loadOver{
    animation-name: loadImage;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-play-state: running;
    /* Firefox: */
    -moz-animation-name: loadImage;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: alternate;
    -moz-animation-play-state: running;
    /* Safari 和 Chrome: */
    -webkit-animation-name: loadImage;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: alternate;
    -webkit-animation-play-state: running;
    /* Opera: */
    -o-animation-name: loadImage;
    -o-animation-duration: 1s;
    -o-animation-timing-function: linear;
    -o-animation-iteration-count: 1;
    -o-animation-direction: alternate;
    -o-animation-play-state: running;
}
.share_div{width:0px;height:0px;overflow:hidden;}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,.slick-slider .slick-track {
    transform: translate3d(0,0,0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block
}

.slick-track:after,.slick-track:before {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}


.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.hinge {
    animation-duration: 2s
}

.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY {
    animation-duration: .75s
}

@keyframes bounce {
    20%,53%,80%,from,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translate3d(0,0,0)
    }

    40%,43% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0)
    }

    90% {
        transform: translate3d(0,-4px,0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    50%,from,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    from {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        transform: scale3d(1,1,1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    from {
        transform: scale3d(1,1,1)
    }

    30% {
        transform: scale3d(1.25,.75,1)
    }

    40% {
        transform: scale3d(.75,1.25,1)
    }

    50% {
        transform: scale3d(1.15,.85,1)
    }

    65% {
        transform: scale3d(.95,1.05,1)
    }

    75% {
        transform: scale3d(1.05,.95,1)
    }

    to {
        transform: scale3d(1,1,1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    from,to {
        transform: translate3d(0,0,0)
    }

    10%,30%,50%,70%,90% {
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        transform: translate3d(10px,0,0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate3d(0,0,1,15deg)
    }

    40% {
        transform: rotate3d(0,0,1,-10deg)
    }

    60% {
        transform: rotate3d(0,0,1,5deg)
    }

    80% {
        transform: rotate3d(0,0,1,-5deg)
    }

    to {
        transform: rotate3d(0,0,1,0deg)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    from {
        transform: scale3d(1,1,1)
    }

    10%,20% {
        transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)
    }

    40%,60%,80% {
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)
    }

    to {
        transform: scale3d(1,1,1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    from {
        transform: none
    }

    15% {
        transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)
    }

    30% {
        transform: translate3d(20%,0,0) rotate3d(0,0,1,3deg)
    }

    45% {
        transform: translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)
    }

    60% {
        transform: translate3d(10%,0,0) rotate3d(0,0,1,2deg)
    }

    75% {
        transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)
    }

    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    11.1%,from,to {
        transform: none
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        transform: skewX(.39063deg) skewY(.39063deg)
    }

    88.8% {
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes bounceIn {
    20%,40%,60%,80%,from,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    20% {
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        transform: scale3d(1,1,1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    60%,75%,90%,from,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0)
    }

    75% {
        transform: translate3d(0,-10px,0)
    }

    90% {
        transform: translate3d(0,5px,0)
    }

    to {
        transform: none
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    60%,75%,90%,from,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0)
    }

    75% {
        transform: translate3d(-10px,0,0)
    }

    90% {
        transform: translate3d(5px,0,0)
    }

    to {
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    60%,75%,90%,from,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    from {
        opacity: 0;
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0)
    }

    75% {
        transform: translate3d(10px,0,0)
    }

    90% {
        transform: translate3d(-5px,0,0)
    }

    to {
        transform: none
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    60%,75%,90%,from,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    from {
        opacity: 0;
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    75% {
        transform: translate3d(0,10px,0)
    }

    90% {
        transform: translate3d(0,-5px,0)
    }

    to {
        transform: translate3d(0,0,0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    from {
        transform: perspective(400px) rotate3d(0,1,0,-360deg);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95,.95,.95);
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotate3d(1,0,0,10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotate3d(1,0,0,-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipInX
}

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotate3d(0,1,0,-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotate3d(0,1,0,10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotate3d(0,1,0,-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipInY
}

@keyframes flipOutX {
    from {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important
}

@keyframes flipOutY {
    from {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotate3d(0,1,0,-15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    from {
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }

    to {
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    from {
        transform-origin: center;
        transform: rotate3d(0,0,1,-200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    from {
        transform-origin: left bottom;
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    from {
        transform-origin: right bottom;
        transform: rotate3d(0,0,1,-90deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    from {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate3d(0,0,1,200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    from {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate3d(0,0,1,45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    from {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    from {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate3d(0,0,1,-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    from {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate3d(0,0,1,90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        transform: rotate3d(0,0,1,80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        transform: rotate3d(0,0,1,60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

.hinge {
    animation-name: hinge
}

@keyframes rollIn {
    from {
        opacity: 0;
        transform: translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0) rotate3d(0,0,1,120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    from {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px,0,0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px,0,0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    from {
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,0,0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,0,0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,0,0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    from {
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,0,0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0,0,0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,100%,0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0,0,0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%,0,0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0,0,0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%,0,0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0,0,0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-100%,0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

.no-js body,.no-match-media body {
    overflow: auto
}

.no-js .fp,.no-match-media .fp {
    visibility: visible;
    z-index: 1
}

.no-js .fp,.no-match-media .fp {
    position: initial
}

.no-js .fp-scrolled,.no-match-media .fp-scrolled {
    overflow-y: auto
}

@media (min-width: 100px) {
    body,html {
        height:100%;
        /*overflow: hidden*/
    }
    .intro{
      z-index:1;
    }
    .fp {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        visibility: hidden;
        overflow: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translate3d(0,0,0);
        transform-style: preserve-3d
    }
    
    .fp-current {
        visibility: visible;
        z-index: 1
    }

    .fp-scrolled {
        overflow-y: scroll
    }

    .fp-on-top {
        z-index: 99
    }

    .fp-moveToTopEasing {
        animation: moveToTop .7s ease-in-out both
    }

    .fp-moveToBottomEasing {
        animation: moveToBottom .7s ease-in-out both
    }

    .fp-moveToTop {
        animation: moveToTop .6s ease both
    }

    .fp-moveFromTop {
        animation: moveFromTop .6s ease both
    }

    .fp-moveToBottom {
        animation: moveToBottom .6s ease both
    }

    .fp-moveFromBottom {
        animation: moveFromBottom .6s ease both
    }

    .fp .to-animate {
        visibility: hidden
    }

    .fp .to-animate.animated {
        visibility: visible
    }
}

@keyframes moveToTop {
    to {
        transform: translateY(-100%)
    }
}

@keyframes moveFromTop {
    from {
        transform: translateY(-100%)
    }
}

@keyframes moveToBottom {
    to {
        transform: translateY(100%)
    }
}

@keyframes moveFromBottom {
    from {
        transform: translateY(100%)
    }
}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

body {
    line-height: 1
}

ol,ul {
    list-style: none
}

blockquote,q {
    quotes: none
}

blockquote:after,blockquote:before,q:after,q:before {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

*,:after,:before {
    box-sizing: border-box
}

/*@font-face {
    font-family: latobold;
    src: url(../fonts/lato-bold-webfont.eot);
    src: url(../fonts/lato-bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/lato-bold-webfont.woff2) format("woff2"),url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.ttf) format("truetype"),url(../fonts/lato-bold-webfont.svg#latobold) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: latolight;
    src: url(../fonts/lato-light-webfont.eot);
    src: url(../fonts/lato-light-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/lato-light-webfont.woff2) format("woff2"),url(../fonts/lato-light-webfont.woff) format("woff"),url(../fonts/lato-light-webfont.ttf) format("truetype"),url(../fonts/lato-light-webfont.svg#latolight) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: latoregular;
    src: url(../fonts/lato-regular-webfont.eot);
    src: url(../fonts/lato-regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/lato-regular-webfont.woff2) format("woff2"),url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.ttf) format("truetype"),url(../fonts/lato-regular-webfont.svg#latoregular) format("svg");
    font-weight: 400;
    font-style: normal
}*/

html {
    font-size: 16px
}

@media (max-width: 1440px) {
    html {
        font-size:14px
    }
}

body {
    font-family: latolight,sans-serif;
    background-color: #000;
    color: #676767
}

.container {
    width: 100%;
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 15px
}

h1,h2,h3,h4,h5 {
    font-family: Rajdhani,sans-serif;
    font-weight: 400
}

h1 {
    font-size: 3rem
}

@media (max-width: 374px) {
    h1 {
        font-size:2.5rem
    }
}

@media (min-width: 992px) {
    h1 {
        font-size:3.75rem
    }
}

h2 {
    font-size: 2rem
}

@media (min-width: 992px) {
    h2 {
        font-size:2.7rem
    }
}

.h3,h3 {
    font-size: 2rem;
    line-height: 1.2
}

@media (min-width: 1400px) {
    .h3,h3 {
        font-size:2.5rem
    }
}

h4 {
    font-size: 2.4rem
}

@media (min-width: 992px) {
    h4 {
        font-size:3rem
    }
}

h5 {
    font-size: 1.125rem
}

h6 {
    font-size: 1rem
}

@media (min-width: 1400px) {
    h6 {
        font-size:1.125rem
    }
}

p {
    line-height: 1.5;
    text-align: left;
}

@media (min-width: 992px) {
    p {
        text-align:inherit
    }
}

section {
    background-color: #222;
    min-height: 100vh;
    display: -ms-flexbox;
    display: flex;
    padding: 15px
}

@media (min-width: 768px) {
    section {
        padding:50px
    }
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

.highlight {
    color: #dbbc90
}

@media (min-width: 738px) {
    .screen-hide {
        display:none
    }
}

@media (max-width: 992px) {
    .mobile-hide {
        display:none
    }
}

@media (min-width: 1200px) {
    ::-webkit-scrollbar {
        width:12px
    }

    ::-webkit-scrollbar-thumb {
        background-color: #222
    }
}

.icon {
/*    background: url(../images/sprite.png) no-repeat center center;
*/    
    background-color: white;
    width: 100px;
    height: 100px;
    display: inline-block
}

.icon.separate{
    display: block;
    margin-left: 0em;
    margin-right: 0em;
    margin-bottom: .4em;
    background-color: #ffffff;
    width:90%;
    height: 1px;
}

.icon.ae{
    background: url(../images/Adobe_ae.svg) no-repeat center center;
    background-size: 100px;
}
.icon.ai{
    background: url(../images/Adobe_ai.svg) no-repeat center center;
    background-size: 100px;
}
.icon.dw{
    background: url(../images/Adobe_dw.svg) no-repeat center center;
    background-size: 100px;
}
.icon.fl{
    background: url(../images/Adobe_fl.svg) no-repeat center center;
    background-size: 100px;
}
.icon.lr{
    background: url(../images/Adobe_lr.svg) no-repeat center center;
    background-size: 100px;
}
.icon.pr{
    background: url(../images/Adobe_pr.svg) no-repeat center center;
    background-size: 100px;
}
.icon.ps{
    background: url(../images/Adobe_ps.svg) no-repeat center center;
    background-size: 100px;
}
.icon.js{
    background: url(../images/Badge_js.svg) no-repeat center center;
    background-size: 100px;
}
.icon.css{
    background: url(../images/CSS.svg) no-repeat center center;
    background-size: 100px;
}
.icon.html{
    background: url(../images/HTML5.svg) no-repeat center center;
    background-size: 100px;
}
.icon.sai{
    background: url(../images/sai.png) no-repeat center center;
    background-size: 100px;
}
.icon.py{
    background: url(../images/Python2.svg) no-repeat center center;
    background-size: 100px;
}

header {
    z-index: 2;
    position: fixed;
    width: 100%;
    transition: .2s ease-out background-color;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center
}

header.active {
    background-color: rgba(34,34,34,.95);
    min-height: 100vh;
    z-index: 100
}

header nav li {
    display: none
}

header.active nav li {
    display: block;
    text-align: center;
    margin-bottom: 3vw
}

header.active li:hover {
   background-color: white
}
header.active nav a {
    font-size: 10vw;
    
    display: block
}

header nav a {
    text-decoration: none;
    color: inherit
}

header .hamburger {
    border: none;
    outline: 0;
    background-color: transparent;
    color: #676767;
    position: absolute;
    top: 2vh;
    right: 5vw;
    z-index: 1000
}

header .hamburger::after {
    content: '\2630';
    font-size: 60px
}

header .hamburger.active::after {
    content: '\02DF';
    font-size: 120px
}

@media (min-width: 1080px) {
    header .hamburger {
        display:none
    }
}

@media (min-width: 1080px) {
    header {
        position:inherit;
        min-height: 0;
        display: inherit
    }

    header.active {
        background-color: transparent
    }

    header nav {
        position: fixed;
        z-index: 100
    }

    header nav ul {
        font-size: 0
    }

    header nav li,header.active nav li {
        display: inline-block;
        margin-bottom: 0
    }

    header nav a,header.active nav a {
        font-size: 1rem
    }

    header .top-menu {
        left: 0;
        right: 0;
        text-align: center;
        background-color: #222
    }

    header .top-menu .top-menu-link {
        padding: 18px 0;
        display: block;
        position: relative
    }

    header .top-menu .line-through,header .top-menu .top-menu-link::after {
        content: '';
        display: block;
        height: 1px;
        position: absolute;
        left: 0;
        width: 0;
        top: 50%;
        margin-top: -1px;
        transition: .18s ease-out width;
        background: #676767
    }

    header .top-menu .line-through {
        position: relative;
        transition: .38s ease-out transform;
        top: calc(18px + .5rem)
    }

    header .top-menu .top-menu-link:hover::after {
        width: 100%
    }

    header .top-menu>ul li {
        margin-right: 45px
    }

    header .top-menu>ul li:last-child {
        margin-right: 0
    }

    header .side-menu {
        left: 5px;
        top: 50%;
        transform: rotate(-90deg) translate(-50%,100%);
        transform-origin: 0 50%
    }

    header .side-menu>ul li {
        margin-right: 32px
    }

    header .side-menu>ul li:last-child {
        margin-right: 0
    }
}

.intro {
    /*z-index:0;*/
    /*background: url(../images/intro-background.jpg) no-repeat center center;*/
    /*background-size: initial;*/
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 768px) {
    .intro {
        height:calc(100vh - 30px)
    }
}

/*@media (min-width: 768px) {*/
/*    .intro {*/
/*        background-size:100% auto*/
/*    }*/
/*}*/

.intro .intro-text {
    text-align: center
}

.intro .intro-text .highlight {
    display: inline-block
}

.intro .intro-text>h1 {
    color: black;
    height: auto；
    font-weight: 800
}


.intro .intro-text>h1 .js-rolling-text {
    font-weight: 800
}

.intro .intro-text>small {
    font-size: 2em;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 2em;
    color: white;
    animation-delay: .5s
}

#welcomeBG{
    background-color: white;
    z-index: -100;
    width: 90%;
    /*border:1px solid white;*/
    height: 80%;
    position: absolute;
}

@media (min-width: 1200px) {
    .about {
        height:100vh
    }
}

.about-me-container {
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    background-color: #fff
}

@media (min-width: 1200px) {
    .about-me-container {
        -ms-flex-flow:row nowrap;
        flex-flow: row nowrap
    }
}

.about-me-container .photo {
    display: none
}

@media (min-width: 1200px) {
    .about-me-container .photo {
        -ms-flex-negative:1;
        flex-shrink: 1;
        display: block;
        height: calc(100vh - 100px)
    }
}

.about-me-container .photo img {
    display: block;
    height: 100%;
    width: auto
}

.about-me-container .about-me-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    background-color: #fff;
    width: 100%
}

@media (min-width: 768px) and (max-width:1199px) {
    .about-me-container .about-me-content {
        -ms-flex-preferred-size:100%;
        flex-basis: 100%
    }
}

.about-me-container .about-me-content .experience-headers {
    padding-left: 5%;
    padding-right: 5%
}

@media (min-width: 768px) {
    .about-me-container .about-me-content .experience-headers {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
}

@media (min-width: 992px) {
    .about-me-container .about-me-content .experience-headers {
        padding-left:7%;
        padding-right: 7%
    }
}

@media (min-width: 1440px) {
    .about-me-container .about-me-content .experience-headers {
        padding-left:8%;
        padding-right: 8%
    }
}

.about-me-container .about-me-content .experience-headers h2 {
    color: #cdb187;
    margin-bottom: 3%;
    font-size: 2.4rem;
    font-weight: 600
}

@media (max-width: 767px) {
    .about-me-container .about-me-content .experience-headers h2 {
        margin-top:5%;
        margin-bottom: 6%
    }
}

@media (min-width: 1440px) {
    .about-me-container .about-me-content .experience-headers h2 {
        font-size:3.75rem;
        margin-bottom: 5%
    }
}

.about-me-container .about-me-content .experience-headers h3 {
    color: #222;
    margin-bottom: 4%;
    line-height: 1.2
}

@media (max-width: 767px) {
    .about-me-container .about-me-content .experience-headers h3 {
        margin-bottom:6%
    }
}

@media (min-width: 1440px) {
    .about-me-container .about-me-content .experience-headers h3 {
        margin-bottom:6%
    }
}

@media (min-width: 768px) {
    .about-me-container .experience-text {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
}

.about-me-container .experience-text .experience-description {
    -ms-flex-preferred-size: 56.22%;
    flex-basis: 56.22%;
    color: #292929;
    padding-left: 5%;
    padding-right: 5%
}

@media (max-width: 767px) {
    .about-me-container .experience-text .experience-description {
        padding-bottom:7%
    }
}

@media (min-width: 992px) {
    .about-me-container .experience-text .experience-description {
        padding-left:7%;
        padding-right: 4%
    }
}

@media (min-width: 1440px) {
    .about-me-container .experience-text .experience-description {
        font-size:1.125rem;
        padding-left: 8%;
        padding-right: 12%
    }
}

.about-me-container .experience-text .experience-description p {
    margin-bottom: 4%
}

@media (min-width: 1440px) {
    .about-me-container .experience-text .experience-description p {
        margin-bottom:6%
    }
}

.about-me-container .experience-text .experience-description>h6 {
    font-weight: 700;
    line-height: 1.5
}

.about-me-container .experience-text .experience-description li {
    line-height: 1.5
}

.about-me-container .experience-text .experience-description ul li:before {
    content: "\002D";
    padding-right: 6px
}

.about-me-container .experience-text .awards {
    display: inline-block;
    -ms-flex-preferred-size: 43.78%;
    flex-basis: 43.78%;
    background-color: #676767
}

.about-me-container .experience-text .awards>ul {
    padding: 0 0 6% 5%
}

@media (min-width: 768px) {
    .about-me-container .experience-text .awards>ul {
        padding:8% 0 0 11%
    }
}

@media (min-width: 992px) {
    .about-me-container .experience-text .awards>ul {
        padding:2% 0 0 10%
    }
}

.about-me-container .experience-text .awards>ul>li {
    color: #fafffd;
    font: 1.125rem Rajdhani,sans-serif;
    font-weight: 400
}

.about-me-container .experience-text .awards>ul>li .highlight {
    font-size: 1rem;
    text-align: left;
    display: block;
    /*padding-bottom: 2em;*/
    width: 4rem
}


.about-me-container .experience-text .awards div {
    display: inline-block
}

.softwars {
    background-color: #292929;
    width: 100%
}

@media (max-width: 768px) {
    .softwars {
        height:calc(100vh - 30px)
    }
}

.softwars * {
    min-height: 0;
    min-width: 0
}

.softwars .softwars-content {
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center
}

.softwars .softwars-content h3 {
    text-align: center
}

@media (max-width: 732px) and (orientation:landscape) {
    .softwars .softwars-content h3 {
        margin-top:5%
    }
}

.softwars .softwars-content .softwars-logos {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 3%
}

@media (min-width: 1440px) {
    .softwars .softwars-content .softwars-logos {
        margin-top:6%
    }
}

.softwars .softwars-content .softwars-logos .client {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    text-align: center;
    margin-bottom: 2%
}

@media (min-width: 768px) {
    .softwars .softwars-content .softwars-logos .client {
        -ms-flex-preferred-size:33.3333%;
        flex-basis: 33.3333%
    }
}

@media (min-width: 992px) {
    .softwars .softwars-content .softwars-logos .client {
        -ms-flex-preferred-size:25%;
        flex-basis: 25%
    }
}

@media (min-width: 1440px) {
    .softwars .softwars-content .softwars-logos .client {
        margin-bottom:3%
    }
}

.portfolio-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px
}

@media (min-width: 992px) {
    .portfolio-content {
        margin-top:100px
    }
}

.case {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 70px
}

.case .case-picture {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    height: 150px;
    background-position: center 25%;
    transition: .18s ease-out filter
}

.case .case-picture:hover {
    filter: saturate(125%) brightness(125%)
}

@media (min-width: 992px) {
    .case .case-picture {
        -ms-flex-preferred-size:41.66667%;
        flex-basis: 41.66667%;
        height: 100%;
        min-height: 500px
    }
}

@media (min-width: 992px) {
    .case:nth-of-type(2n+1) .case-picture {
        background-position:top right;
        margin-left: 8.33333%
    }
}

@media (min-width: 992px) {
    .case:nth-of-type(2n) .case-picture {
        background-position:top left;
        margin-right: 8.33333%;
        -ms-flex-order: 2;
        order: 2
    }
}

@media (min-width: 992px) {
    .case:nth-of-type(2n+1) .case-description {
        padding:0 35px 0 30px;
        margin-right: 8.33333%
    }
}

@media (min-width: 992px) {
    .case:nth-of-type(2n+1) .case-description h3 {
        left:-5.5rem
    }
}

@media (min-width: 992px) {
    .case:nth-of-type(2n) .case-description {
        padding:0 30px 0 0;
        margin-left: 8.33333%
    }
}

@media (min-width: 992px) {
    .case:nth-of-type(2n) .case-description h3 {
        left:0;
        width: 150%
    }
}

.case .case-description {
    position: relative;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
}

@media (min-width: 992px) {
    .case .case-description {
        -ms-flex-preferred-size:41.66667%;
        flex-basis: 41.66667%
    }
}

.case .case-description h3 {
    color: #fafafa;
    white-space: normal;
    font-weight: 600;
    margin: 20px 0;
    z-index: 1
}

@media (min-width: 992px) {
    .case .case-description h3 {
        position:relative;
        font-size: 4.5rem;
        margin: 40px 0 20px
    }
}

.case .case-description h5 {
    color: #a2a2a2;
    line-height: 1.667
}

.case .case-description h5::after {
    margin: 30px 0
}

.case .case-description .case-link::before {
    margin: 35px 0 35px auto
}

@media (min-width: 992px) {
    .case .case-description .case-link::before {
        margin:35px 0 47px auto
    }
}

.case .case-description .case-link::before,.case .case-description h5::after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #676767;
    display: block
}

.case .case-description .case-link {
    font: 1.125rem Rajdhani,sans-serif;
    font-weight: 600;
    text-transform: uppercase
}

.case .case-description a {
    text-decoration: none;
    color: #dbbc90;
    transition: .2s ease-out all
}

.case .case-description a:hover {
    color: #fff;
    background-color: #222;
}

.recommendations {
    background-color: #fafafa;
    width: 100%
}

@media (max-width: 768px) {
    .recommendations {
        height:calc(100vh - 30px)
    }
}

.recommendations .testimonials-slider {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%
}

.recommendations .testimonials-slider .slick-dots {
    position: absolute;
    top: 10%;
    left: 30px;
    display: -ms-flexbox;
    display: flex
}

@media (min-width: 992px) {
    .recommendations .testimonials-slider .slick-dots {
        left:15px
    }
}

.recommendations .testimonials-slider .slick-dots li button {
    font-size: 0;
    border: none;
    outline: 0;
    width: 15px;
    height:15px;
    border-radius: 50%;
    background-color: #676767;
    margin-right: 10px;
    position: relative
    transition:all 0.2s linear;
}

.recommendations .testimonials-slider .slick-dots li button:focus{
    width: 20px;
    height: 20px
}

.recommendations .testimonials-slider .slide {
    outline: 0
}

.recommendations .testimonials-slider .slide .recommendation {
    padding: 0 15px
}
.recommendations h5{
    text-align: center;
    margin-top: 5em
}

@media (min-width: 992px) {
    .recommendations .testimonials-slider .slide .recommendation {
        margin-right:8.33333%
    }

    .recommendations .testimonials-slider .slide .recommendation:nth-child(2n+1) {
        padding: 0 15px 0 0
    }

    .recommendations .testimonials-slider .slide .recommendation:nth-child(2n) {
        padding: 0 0 0 15px
    }
}

/*.recommendations .testimonials-slider .slide .recommendation h4,.recommendations .testimonials-slider .slide .recommendation h5 {
    color: #222
}
*/
.recommendations .testimonials-slider .slide .recommendation h4 {
    margin: 12px 0 35px
}

@keyframes slick-active-indicator {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

.contact-information {
    background-color: #292929;
    width: 100%;
    text-align: center
}

@media (max-width: 768px) {
    .contact-information {
        height:calc(100vh - 30px)
    }
}

.contact-information .contact-content {
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center
}

.contact-information address {
    display: inline-block;
    font-family: Rajdhani,sans-serif
}

.contact-information address a {
    display: block;
    text-decoration: none;
    color: #dbbc90;
    font-weight: 600;
    font-size: 1.6rem
}

@media (min-width: 380px) {
    .contact-information address a {
        font-size:2rem
    }
}

@media (min-width: 768px) {
    .contact-information address a {
        font-size:2.75rem
    }
}

@media (min-width: 1200px) {
    .contact-information address a {
        font-size:3.75rem
    }
}

.contact-information address .email {
    margin-top: 10%;
    margin-bottom: 10%
}

.single-post .case-section-content {
    background: url(../images/case-section-bg.jpg) no-repeat top center #222
}

.single-post .logo-wrap,.single-post h1:first-child {
    margin-top: 6rem;
    margin-bottom: 2rem
}

.single-post .description {
    padding: 0 1rem
}

.single-post .description p {
    text-align: center
}

.single-post section>div {
    text-align: center;
    width: 100%
}

.single-post .illustration {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto
}

.single-post .pictures {
    margin-top: 7rem
}

.single-post .pictures>a {
    display: block
}

.single-post h1 {
    color: #fafafa;
    white-space: normal;
    font-weight: 600;
    margin: 2rem 0
}

@media (min-width: 992px) {
    .single-post h1 {
        font-size:4.5rem
    }
}

.site-badge-box {
    width: 80px;
    top: 30px;
    position: fixed;
    left: 0;
    z-index: 100
}

.site-badge-box img {
    display: block;
    width: 100%;
    height: auto
}
