@font-face {
    font-family: iransans;
    src: url('../fonts/IRANSansWeb.woff');
}

* {
    font-family: iransans !important;
}

body {
    direction: rtl;
    font-family: iransans;
}

p {
    text-align: justify;
}

.logo {
    display: flex;
    align-items: center;
    /*padding-right: 10px;*/
    /*border-right: 4px solid #68A4C4;*/
}

#main {
    margin-top: 110px;
}

#main.home-page {
    margin-top: 0;
}

#header .logo h1 {
    letter-spacing: 0;
}

#header-up {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: rgba(31, 31, 40, .9);
    height: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    color: white;
    direction: ltr;
}

.section-title {
    padding-bottom: 0;
}

.section-header h2 {
    padding-bottom: 20px;
}

.section-header p {
    line-height: 2;
    padding-top: 15px;
}

.pt-5 {
    padding-top: 0 !important;
}

ul {
    list-style: none;
    padding: 0;
}

ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #68A4C4;
}

ol {
    padding-right: 20px;
}

#grease h4 {
    margin-top: 25px;
    color: rgb(36, 49, 78);
}

.keywords {
    padding: 34px 0 10px;
    background: #092433;
}

.keywords h4 {
    margin-bottom: 20px;
    color: #3c6079;
}

.keyword p {
    color: #b9bdc0;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}

@media (max-width: 700px) {
  #hero {
    height: 450px;
  }
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    margin-right: 0;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.2);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 100px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #hero p {
    width: 80%;
    text-align: center;
  }
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

@media (max-width: 600px) {
  #hero .carousel-fade .carousel-inner .active {
    background-image: url('../img/superwash-slider-mobile.jpg') !important;
  }
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #427885;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #427885;
}