@font-face {
  font-family: iransans;
  src: url('fonts/iransans/IRAN\ Sans\ Regular.ttf');
}

body {
  font-family: iransans;
}

.loader-page {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #FFF #FFF transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader-page::after,
.loader-page::before {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #FF3D00 #FF3D00;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.loader-page::before {
  width: 88px;
  height: 88px;
  border-color: #FFF #FFF transparent transparent;
  animation: rotation 1.5s linear infinite;
}
    
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
    

.preLoader {
  position: fixed;
  display:flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #383737;
  z-index: 99999;
  overflow: hidden;
}
.navbar{
  background-color: #fb9f00;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.navbar .nav-link {
  color: #000000!important;
}

/*.nav-link.active {
  color: red!important;
  border-bottom: 2px solid red!important;
}*/

.nav-item a:hover {
  color: red!important;
  border-bottom: 2px solid red!important;
}

.nav-item {
  padding: 0 3px;
}

.navbar-toggler i {
  color: #000000;
}

.dropdown-toggle::after {
  vertical-align: middle !important;
}



.dropdown-menu li {
  position: relative;
}

.dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}

.dropdown-menu .dropdown-submenu-right {
  right: 98%;
  left: auto;
}

.dropdown-menu>li:hover>.dropdown-submenu {
  display: block;
}



/* Height for devices larger than 576px */
/* @media (min-width: 575px) {
  .banner {
    margin-top:58px;
  }
} */
.top-banner{
  margin-top: 58px;
}

.banner-image img {
  width: 90%;
}
.banner-content h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff ;
  padding-top: 20px;
}
.banner-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fd8301;
  border-right: 0.1875rem solid #f00808 !important;
  padding-left: 0.4375rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

#particles_js{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #070f40;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;

}
.typed-cursor {
  -webkit-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  position: relative;
  top: -0.125rem;
  color: #ffffff;
}
/*carousel*/

#introCarousel,
.carousel-inner,
.carousel-item,
.carousel-item.active {
  height: 40vw;
}

.carousel-item:nth-child(1) {
  background-image: url('../img/Pics/carousel-Img/1.jpg');
  background-repeat: no-repeat;
  background-size:cover;
  background-position: center center;
}

.carousel-item:nth-child(2) {
  background-image: url('../img/Pics/carousel-Img/2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.carousel-item:nth-child(3) {
  background-image: url('../img/Pics/carousel-Img/6.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.carousel-item:nth-child(4) {
  background-image: url('../img/Pics/carousel-Img/7.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.carousel-item:nth-child(5) {
  background-image: url('../img/Pics/carousel-Img/5.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}




.footer-address , .footer-address a {
  font-size: 1.2rem  ;
  color: white !important;
  line-height: 2rem;
}
.footer-address a:hover{
  color: red !important;
}



.copyright {
  font-size: 1rem ;
  color: white ;
}

.copyright a {
  font-size: 1.3rem ;
  color: white ;
}
.copyright a:hover{
  color: red !important;
}

.Service-Group p {
    text-align:justify;
    font-size:1.3rem;
    line-height:2.5rem;
}
.Service-Title {
    background-color:orange;
    border-radius:10px;
    padding:0px 10px;
}
/*Back-To-Top */
.back-to-top {
    position: fixed;
    left: 25px;
    bottom: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

    .back-to-top.show {
        bottom: 25px;
        opacity: 1;
        visibility: visible;
        z-index: 999;
    }

    .back-to-top a {
        font-size: 0.75rem;
        text-align: center;
        line-height: 2.5rem;
        border-radius: 100%;
        color: #fff;
        width: 40px;
        height: 40px;
        display: inline-block;
        background: #fb9f00;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

        .back-to-top a:hover {
            background: #fb9f00;
            color: #fff;
        }

/*Back-To-Top */






 /* media Query */
 /* @media screen and (max-width:767.98px)
 {

  .banner-content h1 {
    font-size: 1.7rem;
}
 } */
 @media screen and (max-width: 992.98px )
 {
  .banner-content h1{
    font-size: 1.7rem;
  }

 }

 @media screen and (max-width :757.98px )
 {
  .footer-address , .footer-address a {
    font-size: 0.65rem  ;
    line-height: 2rem;
  }
  .copyright {
    font-size: 0.7rem ;
    color: white ;
  }
  


 }