

@import url("https://fonts.googleapis.com/css?family=Montserrat:500,700|Open+Sans");


*{
    border: 0;
    padding: 0;
    margin: 0;
}

:root {
    --primary: #e55c23;
    --second:#e55c23;
    --light: #EEF9FF;
    --dark:#127f9c;
  
}
.bg-c{
    background-color:var(--dark);
    color:var(--dark);
}

.text-c{
    color:var(--dark);
}

.mb-4, .pt-4{
  text-align: justify;
}

.bg-F{
    background-color: #eff5f7;
    color:var(--dark);
}
.navbar-brand h1{
   color: #e55c23;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
}
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 30px;
  padding: 25px 0;
  color: #FFFFFF;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover{
/* .navbar-light .navbar-nav .nav-link.active { */
  color: var(--primary);
}


@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link  {
      margin-right: 0;
      padding: 10px 0;
  }

  .navbar-light .navbar-nav {
      border-top: 1px solid #EEEEEE;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light .navbar-nav .nav-link.active {
  color: #e55c23;
}


.navbar-light.sticky-top {
  top: -100px;
  transition: .5s;
}



@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
      position: absolute;
      content: "";
      width: 0;
      height: 5px;
      top: -6px;
      left: 50%;
      background: #FFFFFF;
      transition: .5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
      width: 100%;
      left: 0;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
      display: none;
  }

  .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: .5s;
      opacity: 1;
  }
}

.border-primary {
  border-color: #e55c23 !important;
 

}


@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
      position: relative;
      min-height: 500px;
  }
  
  .header-carousel .owl-carousel-item img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .header-carousel .owl-carousel-item h5,
  .header-carousel .owl-carousel-item p {
      font-size: 14px !important;
      font-weight: 400 !important;
  }

  .header-carousel .owl-carousel-item h1 {
      font-size: 30px;
      font-weight: 600;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 45px;
  font-size: 22px;
  transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carosal/img\ \(1\).jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}
















/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}


/*** contact ***/
.bg-contact-c{
    background-color: var(--dark);
}

.btn-contact{
    color: white;
    background-color: var(--second);
}
.btn-contact:hover {
  color: var(--primary);
  background-color: #DDDDDD;
}

.btn-about{
    background-color: var(--primary);
    color: white;
}

.btn-about:hover{
    background-color: var(--dark);
    color: white;
}

/*** contact ***/
.footer-bg{
    background-color: var(--dark);
}
.footer-bg {
    color: var(--primary);
}
.footer-icon i{
    color: var(--primary);
}

.footer-icon i:hover{
    color: #DDDDDD;
    background-color: var(--dark);
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 34px;
    color: var(--dark);
  }
  
  .about h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
    color:var(--dark);
  }
  
  .about i {
    font-size: 48px;
    margin-top: 15px;
    color: #f39e7a;
  }
  
  .about p {
    font-size: 15px;
    color: #5a6570;
    text-align: justify;
  }
  
  @media (max-width: 991px) {
    .about .about-img img {
      max-width: 70%;
    }
  }
  
  @media (max-width: 767px) {
    .about .about-img img {
      max-width: 90%;
    }
  }
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0 0 40px 0;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #fff;
  }
  
  .services .icon-box:hover {
    transform: translateY(-5px);
    border-color: #ef7f4d;
  }
  
  .services .icon i {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
    color: #ef7f4d;
  }
  
  .services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .services .title a {
    color:  var(--dark);
  }
  
  .services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
  }
  


  
/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.Product {
  padding: 40px 0 40px 0;
}

.Product .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border: 1px solid #eef0ef;
  transition: 0.3s;
  border-bottom: 3px solid #fff;
  transition: all 0.3s ease-in-out;
}
.Product .icon-box img{
 width: 150px;
 height: 60px;

 
}

.Product .icon-box:hover {
 
  transform: translateY(-5px);
  border-color: #ef7f4d;
}


/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
.Service {
    padding: 0;
    margin-top: 40px;
  }
  
  .Service .container {
    background-color: rgb(252, 252, 252);
    padding: 60px 50px;
  }
  
  @media (max-width: 992px) {
    .Service .container {
      padding: 30px;
    }
  }
  



  /*--------------------------------------------------------------
# product section
--------------------------------------------------------------*/
/* .product-details .icon-box {
    padding: 30px;
    border-radius: 6px;
    background: #fff;
    transition: ease-in-out 0.3s;
  }
  
  .product-details .icon-box i {
    float: left;
    color: #3498db;
    font-size: 40px;
    line-height: 0;
  }
  
  .product-details .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .product-details .icon-box h4 a {
    color: #384046;
    transition: 0.3s;
  }
  
  .product-details .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
  }
  
  .product-details .icon-box:hover {
    box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
  }
  
  .product-details .icon-box:hover h4 a {
    color: #3498db;
  } */


  /*--------------------------------------------------------------
# img
--------------------------------------------------------------*/

  .imgopci{
    border-radius: 20%;
    opacity: 0.75;

  }
  .imglenier{
    position: relative;
  display: inline-block;
  }
.imglenier:before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 1) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(49%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 1)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 1) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 1) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 1) 100%);
    /* IE10+ */
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 1) 100%);
    /* W3C */
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
    /* IE6-9 */
  }


  /*--------------------------------------------------------------
# Product-main
--------------------------------------------------------------*/
.product-main {
  padding:30px
}
.product-main .content {
    padding: 30px;
    background: #ffffff;
    border-radius: 4px;
    color: #0b0a0a;
  }
  /* ###############################################.product-main .content ################################### */
  /* .product-main .content img:first-child{
     width: 358px;
     height: 200px;  

  } */

  /* ############################################################################################################## */


  .product-main .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
  }
  
  .product-main .content p {
    margin-bottom: 30px;
    text-align: justify;
  }
  
  .product-main .content .more-btn {
    display: inline-block;
    background: rgba(26, 2, 2, 0.1);
    padding: 6px 30px 8px 30px;
    color: var(--second);
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
  }
  
  .product-main .content .more-btn i {
    font-size: 14px;
  }
  
  .garnet-size{
    font-weight: bold;
  }
  .product-main .content .more-btn:hover {
    background-color: #eff5f7;
    color:var(--dark);
    
  }
 
    /* #########################################  .product-main .icon-boxes .icon-box ############################################ */

    .product-main .icon-boxes .icon-box-saudi:first-child {
    /* width: 700px; */
    padding: 0;
    
    }
    .product-main .icon-boxes .icon-box-saudi:first-child img {
      /* object-fit: cover; */
      width: 600px;
      height: 340px;
    }


    .product-main .row{
      justify-content: space-evenly;
    }

/* ######################################################################################################################### */

  .product-main .icon-boxes .icon-box {
    text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    /* width: 250px; */
   
    transition: 0.3s;
    border-bottom: 3px solid #fff;
    transition: all 0.3s ease-in-out;
    
  }
  .product-main .icon-boxes .icon-box img{
     height: 140px;
     width: 200px;
   
  }
  
  .product-main .icon-boxes .icon-box i {
    font-size: 40px;
    color: #009970;
    margin-bottom: 30px;
  }
  
  .product-main .icon-boxes .icon-box h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 30px 0;
  }
  
  .product-main .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
  }
  
  .product-main .icon-boxes .icon-box:hover {
    box-shadow: var(--dark);
    transform: translateY(-5px);
    border-color: #ef7f4d;
  }
 
  #product-main{
    background-color: #faf7f4;
  }

  .team-padding{
    padding: 17px;
  }
  /* @media screen and (-webkit-min-device-pixel-ratio:0) { 
    property: value;
  
  } */

  @media (max-width: 995px) {

    .product-main .icon-boxes{
      margin: 0 auto;
    }
  
  }

  @media (max-width: 767px) {
    .product-main .icon-boxes{
      margin: 0 auto;
    }
    .product-main .icon-boxes .icon-box-saudi:first-child img {
      /* object-fit: cover; */
      width: 450px;
      height: 300px;
    }
  }
  @media (max-width: 520px) {

    .product-main .icon-boxes{
      margin: 0 auto;
    }
    
    .product-main .icon-boxes .icon-box-saudi:first-child img {
      /* object-fit: cover; */
      width: 250px;
      height: 200px;
    }
  }



  