/*
  Theme Name: CEC SYRIA
  Theme URL:  CEC.SY
  Author: Anas Kahrea
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #666666;
  font-family: 'Tajawal', sans-serif;
}

a {
  color: #FFF;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus,
li.active a {
  color: #E9582D;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.overlay {
  background-color: rgba(36, 52, 63, .8);
  top: 0;
  left: 0;
  width: 100%;
}

.scrolled {
  background-color: #292929 !important;
  transition: all .3s ease-in-out;
}


/**======== INTRO SECTION ========**/

#intro-section {
  background-image: url(../img/bg1.jpg);
  background-position: center;
  background-size: cover;
}

#intro-section .intro-content {
  color: #FFF;
  height: 400px;
  width: 100%;
}

#intro-section .intro-content h1 {
  font-weight: bold;
  margin: 0;
}

#intro-section .intro-content h1::after {
  content: '';
  background-color: #E9582D;
  display: block;
  position: relative;
  top: 20px;
  left: 0;
  right: 0;
  width: 240px;
  margin: 0 auto;
  height: 4px;
}

#intro-section .intro-content p {
  margin: 40px 0;
}

#intro-section div.btn {
  background-color: #E9582D;
  border: 2px solid #E9582D;
  border-radius: 8px; 
  letter-spacing: 3px;
}

#intro-section div.btn:hover {
  background-color: transparent;
  border: 2px dashed #E9582D;
  box-shadow: 0px 8px 14px 3px #292929;
}

#intro-section img {
  height: 180px;
}

#intro-section a {
  padding-left: 10px;
  font-size: 18px;
}

p.lead {
  margin-bottom: 20px !important;
  padding-bottom: 0;
}
/*======== Prelaoder ========*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #3483C5;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #F38736;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}