/* fonts */
@font-face {
font-family: Custom;
src: url('/vendors/fonts/custom/custom.ttf');
}
@font-face {
font-family: Roboto;
src: url('/vendors/fonts/roboto/Roboto-Regular.ttf');
}
@font-face {
font-family: Roboto-bold;
src: url('/vendors/fonts/roboto/Roboto-Bold.ttf');
}
@font-face {
font-family: Roboto-thin;
src: url('/vendors/fonts/roboto/Roboto-Thin.ttf');
}
@font-face {
  font-family: Nunito;
  src: url('/vendors/fonts/nunito/Nunito-Regular.ttf');
}

a.card-link, a:link.card-link, a:visited.card-link {
  color: black;
  text-decoration: none;
}

/* text typo */
.text-thin {
  font-family: 'Roboto-thin', sans-serif !important;
}
.text-regular {
  font-family: 'Roboto', sans-serif !important;
}
.text-bold {
  font-family: 'Roboto-bold', sans-serif !important;
}
.text-alt {
  font-family: 'Nunito', sans-serif !important;
}
.text-custom {
font-family: 'Custom', sans-serif !important;
}

.card-header {
  background-color: transparent;
  border-bottom: none;
}
.spacing-top-1 {
  margin-top: 1rem;
}
.spacing-top-2 {
  margin-top: 2rem;
}
.spacing-top-3 {
  margin-top: 3rem;
}
.spacing-bottom-3 {
  margin-bottom: 3rem;
}
.spacing-top-5 {
  margin-top: 5rem;
}
.spacing-bottom-5 {
  margin-bottom: 5rem;
}
.spacing-5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.lacontainer {
  padding: 3rem;
}
.icon-title {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.icon-md {
  padding: 1rem;
  text-align: center;
}

.card-img-50 {
  width: 50px !important;
  height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
  object-fit: cover;
}

.card-img-100 {
  width: 100px !important;
  height: 100px !important;
  max-width: 100px !important;
  max-height: 100px !important;
  object-fit: cover;
}

.card-img-200 {
  width: 200px !important;
  height: 200px !important;
  max-width: 200px !important;
  max-height: 200px !important;
  object-fit: cover;
}
.text-black {
  color: black;
}
.navbar-mini {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-left: 1.5rem !important;
}
.navbar-mini a.btn {
  line-height: 1.9;
}
ul#primary-menu li.nav-item a.nav-link{
  color: white;
}
.pl-logo {
  max-width: 450px;
}
.card-footer {
  background: none;
}

.bg-light {
  background-color: #fff !important;
}

.lift {
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-shadow: none;
}
.lift:hover {
  transform: translateY(-0.3333333333rem);
  box-shadow: 0 0.5rem 2rem 0 rgba(33, 40, 50, 0.25);
}
.lift:active {
  transform: none;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
}

.box-img {
  width: 200px !important;
  height: 200px !important;
  object-fit: cover !important;
}

article {
  margin-bottom: 3rem;
}



.card {
  border: none !important;
}
.bg-secondary {
  background-color: #e1f5f7 !important;
}
.bg-native, .bg-carousel  {
  background-color: #e8e8e8;
}
.carousel-item>img {
    max-height: 500px;
    height: 500px;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 992px) {
  .carousel-item>img {
      max-height: 60vh;
      height: 60vh;
  }
};

.img-grid {
  max-width: 100%;
  height: auto;
}

.h1-header {
  font-family: 'Roboto-bold', sans-serif !important;
}

.h2-header {
  font-family: 'Roboto-bold', sans-serif !important;
  margin-bottom: 3rem;
}

.h2-header-icon {
  background: -webkit-linear-gradient(#e8e8e8, #000);
  background-clip: border-box;
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h3-header {
  font-family: 'Roboto-bold', sans-serif !important;
}

.subborder {
  width: 100px;
  height: 4px;
  background-color: #d72d20;
  display: inline-block;
}

.carousel-header-text {
  font-size: 2.5rem;
}

.highlight {
  font-family: 'Roboto-bold', sans-serif !important;
  font-size: 120%;
}

section {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.nav-phone, .nav-phone:hover {
  text-decoration: none;
  color: #d72d20;
  font-size: 150%
}

a:link, a:visited {
  text-decoration: none;

}


.img-grid-card {
  min-height: 13rem !important;
}


/* img zoom ************************************************ start */
/* https://w3bits.com/css-image-hover-zoom/ */

.img-hover-zoom {
  height: 300px; /* [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

.img-hover-zoom img {
  transition: transform .5s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.1);
}

.img-hover-zoom--more:hover img {
  transform: scale(1.5);
}

/* Quick-zoom Container */
.img-hover-zoom--quick-zoom img {
  transform-origin: 0 0;
  transition: transform .25s, visibility .25s ease-in;
}

/* The Transformation */
.img-hover-zoom--quick-zoom:hover img {
  transform: scale(2);
}

/* Point-zoom Container */
.img-hover-zoom--point-zoom img {
  transform-origin: 65% 75%;
  transition: transform 1s, filter .5s ease-out;
}

/* The Transformation */
.img-hover-zoom--point-zoom:hover img {
  transform: scale(5);
}

/* Zoom-n-rotate Container */
.img-hover-zoom--zoom-n-rotate img {
  transition: transform .5s ease-in-out;
}

/* The Transformation */
.img-hover-zoom--zoom-n-rotate:hover img {
  transform: scale(2) rotate(25deg);
}

/* Slow-motion Zoom Container */
.img-hover-zoom--slowmo img {
  transform-origin: 50% 65%;
  transition: transform 5s, filter 3s ease-in-out;
  filter: brightness(150%);
}

/* The Transformation */
.img-hover-zoom--slowmo:hover img {
  filter: brightness(100%);
  transform: scale(3);
}

/* Brightness-zoom Container */
.img-hover-zoom--brightness img {
  transition: transform 2s, filter 1.5s ease-in-out;
  transform-origin: center center;
  filter: brightness(50%);
}

/* The Transformation */
.img-hover-zoom--brightness:hover img {
  filter: brightness(100%);
  transform: scale(1.3);
}

/* Horizontal Zoom-n-pan Container */
.img-hover-zoom--zoom-n-pan-h img {
  transition: transform .5s ease-in-out;
  transform: scale(1.4);
  transform-origin: 100% 0;
}

/* The Transformation */
.img-hover-zoom--zoom-n-pan-h:hover img {
  transform: scale(1.5) translateX(30%);
}

/* Vertical Zoom-n-pan Container */
.img-hover-zoom--zoom-n-pan-v img {
  transition: transform .5s ease-in-out;
  transform: scale(1.4);
  transform-origin: 0 0;
}

/* The Transformation */
.img-hover-zoom--zoom-n-pan-v:hover img {
  transform: scale(1.25) translateY(-30%);
}

/* Blur-zoom Container */
.img-hover-zoom--blur img {
  transition: transform 1s, filter 2s ease-in-out;
  filter: blur(2px);
  transform: scale(1.2);
}

/* The Transformation */
.img-hover-zoom--blur:hover img {
  filter: blur(0);
  transform: scale(1);
}

/* Colorize-zoom Container */
.img-hover-zoom--colorize img {
  transition: transform .5s, filter 1.5s ease-in-out;
  filter: grayscale(100%);
}

/* The Transformation */
.img-hover-zoom--colorize:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
}

/* img zoom ************************************************** end */


.img-grid-card {
   min-height: 10rem !important;
}



.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.navbar-nav .nav-link {
  font-size: 120%;
  margin-right: 1rem;
}
