*
{
    margin: 0;
    padding: 0;
}
body
{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#nav-bar
{
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar
{
    /* background-image: linear-gradient(to right, #F1C95D,#F1C95D,#d4d4d4,#d4d4d4,#9a9a9a); */
    background-color: rgb(30, 45, 59);
    padding: 0 !important;
    height: 90px;
    

}

.navbar-brand img
{
    height: 90px;
    position: relative;
}

.navbar-nav li 
{
    padding: 0 15px;
    padding-top: 50;
    
    
}

.navbar-nav li a 
{
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    height: 0;    
}

.navbar-nav li a:hover {
    color: #FFD245

}
.container-fluid-wrapper {
    padding-left: 0 !important;
}



/* The dropdown container */
.dropdown {
    float: left;
    overflow: hidden;
    padding-top: 28;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-weight: 400;
    font-size: 14px;
    height: 0;    
    border: none;
    outline: none;
    color: #fff;
    padding: 30px 15px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Add a red background color to navbar links on hover */
  .dropdown:hover .dropbtn {
    background-color: none;
    color: #FFD245;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    height: 50;
    display: none;
    position: fixed;
    background-color:#fff;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    text-decoration: none;
    display: block;
    text-align: left;
    padding: 15px 16px;

  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }


  .languageSwitch {
    position: relative;
    display: inline-block;
    margin: 0 0px;
    padding-top: 20px;
  }

/*-----------------------------------------Banner Section------------------------*/

.scroll-container {
    height: 50vh;
    min-height: 450px;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
  
  .scroll-container:nth-of-type(1) {
    background-color: #fff;
  }
  .scroll-container:nth-of-type(2) {
    background-color:  #fff;
  }
  .scroll-container:nth-of-type(3) {
    background-color:  #fff;
  }
  .scroll-container:nth-of-type(4) {
    background-color:  #fff;
  }
  .scroll-container:nth-of-type(5) {
    background-color:  #fff;
  }
  .scroll-container:nth-of-type(6) {
    background-color:  #fff;
  }
  .scroll-container:nth-of-type(7) {
    background-color:  #fff;
  }
  .scroll-container:nth-of-type(even) {
    flex-direction: row-reverse;
    background-color:  #fff;
  }
  
  .scroll-element,
  .scroll-caption {
    width: 50%;
  }
  
  .scroll-element {
    min-height: 300px;
    height: 100%;
    background-color:  #fff;
  }

  .scroll-element img{
    width: 100%;
    height: 100%;
    border: 10px solid #FFD245;
    border-radius: 4px;
  }
  
  .scroll-caption {
    margin: 1rem;
    font-family: avenir-lt-w01_85-heavy1475544, avenir-lt-w05_85-heavy, sans-serif !important;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    color: #3d5975;
    text-transform: uppercase;
  }

  @media screen and (max-width: 650px) {
    .scroll-container,
    .scroll-container:nth-of-type(even) {
      flex-direction: column;
      align-content: inherit;
    }
  
    .scroll-element {
      height: 100%;
    }
  
    .scroll-element,
    .scroll-caption {
      width: 100%;
    }
  }
  /**Styling scrollable elements*/
  
  .js-scroll {
    opacity: 0;
    transition: opacity 500ms;
  }
  
  .js-scroll.scrolled {
    opacity: 1;
  }
  
  .scrolled.fade-in {
    animation: fade-in 1s ease-in-out both;
  }
  
  .scrolled.fade-in-bottom {
    animation: fade-in-bottom 1s ease-in-out both;
  }
  
  .scrolled.slide-left {
    animation: slide-in-left 1s ease-in-out both;
  }
  
  .scrolled.slide-right {
    animation: slide-in-right 1s ease-in-out both;
  }
  @keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-100px);
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(100px);
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fade-in-bottom {
    0% {
      -webkit-transform: translateY(50px);
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
    
#banner 
{
    background-image: linear-gradient(to right, #F1C95D,#FFD245);
    color: #fff;
    padding-top: 0%;
}

.promo-title
{
    font-size: 40px;
    font-weight: 600;
    margin-top: 100px;
}

.banner-img
{
    height: 1000px;
    width: 100%;
    
}
.centered {
    position: absolute;
    top: 20%;
    left: 30%;
    transform: translate(-20%, -50%);
    font-size: 30px;
    font-weight: 400;
    margin-top: 100px;
    color: #696969;
  }


.carousel-caption 
{
    top: 60%;
    transform: translateY(-50%);
    bottom: initial;
    color: #000 !important;
    font-size: 100px !important;
    font-weight: 600;
}

.carousel-item img{
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.centered .line1 
{
    color: #F1C95D;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    /*transform: translate(40%, -10%);
    /*animation: glow 1s ease-in-out infinite alternate;*/
    text-transform: uppercase;
}

.line2
{
    /*color: #F8F9FA;
    color: #F1C95D;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;*/
    transform: translate(350px,-450px)!important;
    top: 60%;
    bottom: initial;
    color: #000 !important;
    font-size: 100px !important;
    font-weight: 600;
}

@media screen and (max-width: 480px) {
    .line2
    {
    top: 60%;
    bottom: initial;
    color: #000 !important;
    font-size: 50px !important;
    font-weight: 600;
    transform: translate(60PX,-450px)!important;
    }
}
    

.centered img{
    transform: translate(400px, 0%);

}
.carousel-item .line1 
{
    color: #F1C95D;
    font-size: 50px;
    font-weight: 600;
    /*animation: glow 1s ease-in-out infinite alternate;*/
}
/*@-webkit-keyframes glow {
    from {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #F1C95D, 0 0 40px #F1C95D, 0 0 50px #F1C95D, 0 0 60px #F1C95D, 0 0 70px #F1C95D;
    }
    
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #696969, 0 0 40px #696969, 0 0 50px #696969, 0 0 60px #696969, 0 0 70px #696969, 0 0 80px #696969;
    }
}*/
.carousel-item .line2
{
    color: #F8F9FA;
    font-size: 40px;
    font-weight: 600;
}



/*---------------------------------------Systems Section------------------------*/
#PRODUCTS
{
    padding: 80px 0;
}
.card{
    box-shadow: 0 4px 8px 0 #d4d4d4;
    transition: 0.3s;
    width: 322px;
    height: 300px;
}

.product-img
{
    width: 320px;
    height: 300px;
    margin-top: 0px;
}

.products
{
    padding: 20px;
}

.products h4
{
    padding: 5px;
    margin-top: 25px;
    text-transform: uppercase;
    font-size: 18;
    font-family: Arial,Helvetica,sans-serif;
    color: #3b3a3a;
}

.title::after
{
    color: #000;
    content: '';
    background: #F1C95D;
    height: 5px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#PRODUCTS .btn-primary
{
    box-shadow: none;
    padding: 8px 25px;
    border: none;
    border-radius: 20px;
    background-image: linear-gradient(to right, #F1C95D,#FFD245);

}


/*---------------------------------------About Us Section------------------------*/

#ABOUT
{
    background: #F8F9FA;
    padding-bottom: 50px;
    padding-top: 50px;
    
    
}

#ABOUT ul li
{
    margin: 20px 0;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 15px;
    color: #3b3a3a;
    text-align: left;
}

#ABOUT img
{
    padding-top: 20px;
    background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

#ABOUT .btn-primary
{
    box-shadow: none;
    padding: 8px 25px;
    border: none;
    border-radius: 20px;
    background-image: linear-gradient(to right, #F1C95D,#FFD245);

}
/*---------------------------------------Services Section------------------------*/
#SERVICES
{
    background-color: #f7da7c; 
    padding: 60px 0;
}
.servcard{
    box-shadow: 0 4px 8px 0 #d4d4d4;
    transition: 0.3s;
    width: 200px;
    height: 100px;
}

.services
{
    padding: 30px;
    
}
.services p{
    color: #3d5975;
}
.services .fa
{
    margin-right: 8px;
    font-size: 30px;
    height: 50px;
    width: 40px;
    text-align: center;
    padding-top: 7px;
    border-radius: 2px;
    color: #3d5975;
}

.servtitle{
    color: #3d5975;
}
.servtitle::after
{
    color: #fff;
    content: '';
    background: #fff;
    height: 5px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
#ser{
    flex-direction: row;
}
/*---------------------------------------Profiles Section------------------------*/

#profiles
{
    margin: 100px 0;
}

.profiles img
{
    height: 80%;
    width: 65%;
    border-radius: 30%;
    margin: 0 10px;
    padding-top: 50px;
    filter: gray; /* IE5+ */
    -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
    -webkit-transition: all .8s ease-in-out;  
    
}

@media screen and (max-width: 480px) {
  .profiles img {
    width: 160px;
    height: 100px;
    border-radius: 0%;
  }
}


.profiles img:hover {
  filter: none;
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.01);
  }
/*---------------------------------------Projects Section------------------------*/

#PROJECTS
{
    margin: 100px 0;
    padding-bottom: 50px;
    padding-top: 50px;
}

.content
{
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: auto;
    overflow: hidden
}

.content .content-overlay
{
    background: rgba(0,0,0,0.7);
    position: absolute;
    height: 78%;
    width: 100%;
    left: 10;
    top: 50;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s
}

.content:hover .content-overlay
{
    opacity: 1
}
.content-image
{
    height: 100%;
    width: 100%;
    margin: 0 10px;
    padding-bottom: 50px;
    padding-top: 50px;
}

@media screen and (max-width: 480px) {
  .content-image{
    width: 100%;
    height: 82%;
  }
}


.content-details
{
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s
}

.content:hover .content-details
{
    top: 50%;
    left: 50%;
    opacity: 1
}

.content-details h3
{
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase
}

.content-details p{
    color: #fff;
    font-size: 0.8em
}
    
.fadeIn-bottom
{
    top: 80%
}

#PROJECTS .btn-primary
{
    box-shadow: none;
    padding: 8px 25px;
    border: none;
    border-radius: 20px;
    background-image: linear-gradient(to right, #F1C95D,#FFD245);

}
/*---------------------------------------Slogan Section------------------------*/
#SLOGAN
{
    background-color:#F1C95D;
    margin-top: 10px;
    padding: 40px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #3d5975;
}
/*---------------------------------------Clients Section------------------------*/
#CLIENTS
{
    padding-bottom: 50px;
    padding-top: 50px;
    
}

#CLIENTS
{
    margin: 100px 0;
}


.clients img
{
    height: 75%;
    width: 50%;
    border-radius: 30%;
    margin: 0 10px;
    filter: gray; /* IE5+ */
    -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
    -webkit-transition: all .8s ease-in-out;  
    
}

@media screen and (max-width: 480px) {
  .clients img {
    width: 160px;
    height: 100px;
    border-radius: 0%;
  }
}


.clients img:hover {
  filter: none;
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.01);
  }


/*---------------------------------------Contact Us Section------------------------*/

#CONTACT
{
    background-color: #fff;
    padding-top: 50px;
    
}

.footer-box
{
    padding: 20px;
}

.footer-box img
{
    width: 220px;
    margin-bottom: 20px;
}
.footer-box p
{
    font-family: avenir-lt-w01_85-heavy1475544, avenir-lt-w05_85-heavy, sans-serif;
    color: #3d5975;
}
.footer-box .fa
{
    margin-right: 8px;
    font-size: 25px;
    height: 50px;
    width: 40px;
    text-align: center;
    padding-top: 7px;
    border-radius: 2px;
    background-image: linear-gradient(to right, #F1C95D,#FFD245);
}
/*.test{
    background-color: darkred;

}

@media screen and (min-width: 480px) {
  .test {
    background-color: lightgreen;
  }
}*/

@media screen and (min-width: 480px) {
  .carousel-item {
    height: fit-content;
  }
}

@media screen and (max-width: 480px) {
  #ser {
    flex-direction: column!important;
  }
}

@media screen and (max-width: 480px) {
  .card {
    width: auto;
  }
  .product-img{
    width: auto;
  }
}




