/* --------general-------- */
/* fonts */
@font-face{
    font-family: "exo-regular";
    src: url('fonts/Exo2.0-Regular.otf'),
    url('fonts/Exo2.0-Regular.otf'); /* IE */
}
@font-face{
    font-family: "exo-light";
    src: url('fonts/Exo2.0-Light.otf'),
    url('fonts/Exo2.0-Light.otf'); /* IE */
}
@font-face{
    font-family: "exo-bold";
    src: url('fonts/Exo-Bold.otf'),
    url('fonts/Exo-Bold.otf'); /* IE */
}
@font-face{
    font-family: "exo-extralight";
    src: url('fonts/Exo2.0-ExtraLight.otf'),
    url('fonts/Exo2.0-ExtraLight.otf'); /* IE */
}
@font-face{
    font-family: "exo-medium";
    src: url('fonts/Exo2.0-Medium.otf'),
    url('fonts/Exo2.0-Medium.otf'); /* IE */
}
@font-face{
    font-family: "arahamah";
    src: url('fonts/AraHamah1964B-Bold.ttf'),
    url('fonts/AraHamah1964B-Bold.ttf'); /* IE */
}
@font-face{
    font-family: "cachet";
    src: url('fonts/CachetStd-Medium.otf'),
    url('fonts/CachetStd-Medium.otf'); /* IE */
}
p{
    font-size: 20px;
    margin-bottom: 0px;
}
ul{
    margin-bottom: 0px;
}
.bold-it{
  font-weight:bold;
}
.non-important{
    font-size:12px !important;
}
.copyright{
    font-size:14px;
}
/*--------colors--------*/
/* backgrounds */
.white-bg{
  background-color:white;
}
.blue-bg{
  background-color:blue;
}
/* text*/
.white{
  color:white;
}
.black{
  color:black !important;
}
/*--------alignment--------*/
/*html, body {
  height: 100%;
}*/

.pad-text{
    padding-bottom: 10px;
}
.force-center{
  margin-left:auto !important;
  margin-right:auto !important;
}

.zero-left{
    padding-left:0px !important;
    margin-left:0px !important;
}
.zero-right
{
    padding-right:0px !important;   
}
.zero-bottom{
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}
.footer-bottom{
    position: absolute;
    right: 0;
    left: 0;
    bottom:0;   
}
.vertical-middle-content {
  min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */
  display: flex;
  align-items: center;
}

.pad-font-awesome{
    padding-right:5px;
}
/*--------shape--------*/
.rounded{
  border-radius: 5px;
}
.rounded-content{
    border-radius: 12px;
}
.rounded-img{
  border-radius: 20px
}
.flip-image-horizontally {
   -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        filter: FlipH;
        -ms-filter: "FlipH";
}
/* fix bootstrap for mobiles*/
@media only screen and (max-width: 450px){
.xs-offset-1 {
    margin-left: 8.33333333%;
}
}
/*--------appearance--------*/
a,a:hover,a:active{
    text-decoration: none,
}
.hide{
  display:none
}
.list-one{
    list-style: none;
    padding-left:0px;
    padding-right: 30px;
}
.list-one{
    margin-left:0px;
}
.footer-top-margin{
    margin-top:80px;
}
/*overlay*/
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Provides cross-browser RGBa background */
    zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#80000000', endColorstr='#80000000');
    background: transparent;
    background: rgba(51, 51, 51, 0.5);
}

/* set filter as none for IE9+, because IE9+ support RGBa */
:root .overlay {
    filter: none\0/IE9;
}
/*back to top button*/

.top {
    display: inline-block;
    height: 60px;
    width: 60px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #439FE0 url("../images/top-arrow.svg") no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}
.top.is-visible, .top.fade-out, .no-touch .top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}
.top.is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}
.top.fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}
.no-touch .top:hover {
    background-color: #e86256;
    opacity: 1;
}
/* scrolldown animated: bounce */
.bounce {
    position:fixed;
    left:50%;
    bottom:0;
    margin-top:-25px;
    margin-left:-25px;
    height:50px;
    width:50px;
    color:white;
    -webkit-animation:bounce 2s infinite;
    -moz-animation:bounce 2s infinite;
    -o-animation:bounce 2s infinite;
    animation:bounce 2s infinite;    
}
@-webkit-keyframes bounce {
    0%       { bottom:0px; }
    100%     {bottom:10px;}
}

@-moz-keyframes bounce {
    0%       { bottom:0px; }
    100%     {bottom:10px;}
}

@-o-keyframes bounce {
   0%       { bottom:0px; }
   100%     {bottom:10px;}
}  

@keyframes bounce {
    0%       { bottom:0px; }
    100%     {bottom:10px;}
}