
/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color:#031851;
}
/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.owl-carousel .owl-item {
    transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-item .card {
    padding: 10px;
    position: relative;
}

.owl-carousel .owl-stage-outer {
    overflow-y: auto !important;
    padding-bottom: 40px;
}

.owl-carousel .owl-item img {
    height: auto;
    width:100%;
    object-fit: cover;
    border-radius: 6px;
}

.owl-carousel .owl-item .card .name {
    position: absolute;
    bottom: -20px;
    left: 33%;
    color: #101c81;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: aquamarine;
    padding: 0.3rem 0.4rem;
    border-radius: 5px;
    box-shadow: 2px 3px 15px #3c405a;
}

.owl-carousel .owl-item .card {
    opacity: 0.2;
    transform: scale3d(0.8, 0.8, 0.8);
    transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-item.active.center .card {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    height: 20px;
    background: #2a6ba3 !important;
    border-radius: 2px !important;
    opacity: 0.8;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    height: 13px;
    width: 13px;
    opacity: 1;
    transform: translateY(2px);
    background: #83b8e7 !important;
}

@media(min-width: 480.6px) and (max-width: 575.5px) {
    .owl-carousel .owl-item .card .name {
        left: 24%;
    }
}

@media(max-width: 360px) {
    .owl-carousel .owl-item .card .name {
        left: 30%;
    }
}

.navbar-nav>li {
    padding-left: 10px;
    padding-right: 10px;
  }
  input[type=text], select, textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 1px;
    margin-bottom: 12px;
    resize: vertical;
  }
  #mySidenav a {
    position: fixed;
    right: -100px;
    transition: 0.3s;
    padding: 15px;
    width: 150px;
    text-decoration: none;
    font-size: 16px;
    color: white;
    border-radius: 0 2px 2px 0;
  }
  
  /* #mySidenav a:hover {
    right: 0;
  } */
  
  
  #projects {
    bottom: 150px;
  }
  
   .download-brochure {
    position: fixed;
    top: 50%;
    right: -67px;
    transform: translateY(-50%);
    z-index: 9999;
  }
  
  .download-brochure a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edb20e;
    color: black;
    font-size: 12px;
    width: 165px;
    height: 30px;
    border-radius: 5px 0 0 5px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .download-brochure a:hover {
    background-color: #DAA102;
  }
  
  .download-brochure i {
    margin-right: 10px;
  }
  
  .download-brochure span {
    white-space: nowrap;
  }
  #login {
    bottom: 125px;
    /* background-color:gray; */
    -ms-transform: rotate(90deg); /* IE 9 */
    transform: rotate(90deg);
  }  
  .image {
    border: 2px solid #fff;
    width: 100%;
    height: auto;
    overflow: hidden
}

.image img {
    width: 100%;
    height: auto;
    transition: all 2s ease-in-out
}

.image:hover img {
    transform: scale(2, 2);
    cursor: pointer
}
  #zoomA {
  /* (A) OPTIONAL DIMENSIONS */
  width: 600px;
  height: auto;
 
  /* (B) ANIMATE ZOOM */
  /* ease | ease-in | ease-out | linear */
  transition: transform ease-in-out 0.3s;
}
 
/* (C) ZOOM ON HOVER */
#zoomA:hover { transform: scale(1.2); }

.animated-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.2s ease-out;
}

.animated-section.animated {
  opacity: 1;
  transform: translateY(0);
}
.download-btn i {
  animation: popup 1s infinite;
}

@keyframes popup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.download-btn.paused i {
  animation-play-state: paused;
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 3px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color:#edb20e;
  color: black;
  cursor: pointer;
  /* padding: 5px; */
  width:40px;
  border-radius: 10px;
}

#myBtn:hover {
  background-color:#DAA102;
}
