@import "fonts.css";

* {margin: 0; padding: 0;}

body {
  padding: 0;
  margin: 0;
  background-color: #000;
  color: #fff;
  direction: rtl;
}

@media only screen and (max-width: 768px) {
    #intro {width: 85%;}
    #intro h1 {font-size: 30px; text-align: center;}
    .wrapperBefore {margin-top: 100px;}
}

.wrapperBefore {
    position: relative;
    margin-top: 60px;
}
.wrapper1::before { background: url(../imgs/backgrounds/2.jpg); }

.wrapperBefore::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}

.logoArea {
    opacity: .6;
    filter: alpha(opacity=60);
    background-color: #000;
    color: #fff;
    padding: 6px 7px;
    cursor: pointer;
    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    -o-transition: all .25s linear;
    -ms-transition: all .25s linear;
    transition: all .25s linear;
    position: fixed;
    display: block;
    left: 20px;
    bottom: 20px;
    width: 140px;
    z-index: 99999999999999999999999;
}
.logoArea img {
    width: 100%;
}
