@font-face {
    font-family: "Gotham-Book";
    src: url('../fonts/Gotham-Book.otf');
}

@font-face {
    font-family: "Gotham-Medium";
    src: url('../fonts/Gotham-Medium.otf');
}

@font-face {
    font-family: "Gotham-Light";
    src: url('../fonts/Gotham-Light.otf');
}

@font-face {
    font-family: "Gotham-Black";
    src: url('../fonts/Gotham-Black.otf');
}

*{
    box-sizing: border-box;
}


footer{
    background-color: #598e9a;
    padding: 1.5em 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    font-size: .9em;
    font-family: "Gotham-Book";
}

footer p {
    color: white !important;
}

p{
    color : #6b9aa5;
}

.color-1 {
    color: #346c73;
}

.buttonStyle {
    font-family: "Gotham-Book";
    background-color: #598e9a;
    color: white;
    font-weight: 800;
    border-radius: 20px;
    padding: .5em 1em;
}
.buttonStyle:hover {
    color: white;
}

.nav-link {
    color: #598e9a;
}
.nav-link:hover{
    color: #598e9a;
}

.fit-image{
    object-fit: cover;
    object-position: 0 0;
    width: 100%;
    height: 337px;
}

.hr-bottom{
    content: "";
    width: 100%;
    height: 5px;
    background-color: #598e9a;
}

#masory-bootstrap img{
    width: 100%;
}
#masory-bootstrap .card {
    border: none;
    transition: .4s ease;
    text-decoration: none;
}
#masory-bootstrap .card:hover {
    background-color: rgba(52, 108, 115, .15);
}
#masory-bootstrap h3 {
    font-family: "Gotham-Medium";
    text-align: center;
    font-size: 14px;
    color: #346c73;
}
#masory-bootstrap p {
    font-family: "Gotham-Light";
    line-height: 25px;
    text-align: center;
    color: #346c73;
}
.heading-detail{
    border-bottom: 1px solid #598e9a
}
.text-contact-us h5 {
    font-family: "Gotham-Medium" !important;
    font-size: 1rem;
}
.text-contact-us p{
    line-height: 10px;
    font-family: "Gotham-Book" !important;
}
.text-contact-us span {
    font-family: "Gotham-Light" !important;
}
.card-columns {
    column-count: 3;
    /* @include media-breakpoint-only(lg) {
      column-count: 4;
    }
    @include media-breakpoint-only(xl) {
      column-count: 5;
      } */
  }

  /* Masonry Detail Product */
  /* fluid 5 columns */
  /* ---- grid ---- */

  .parent-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 40px;
    grid-auto-rows: minmax(180px, auto);
    grid-auto-flow: dense;
    /* padding: 10px; */
    width: 100%;
}

.parent-grid .card{
    background-color: transparent !important;
    border-radius: 0;
    transition: .4s ease-in-out;
}

.parent-grid .card:hover{
    background-color: rgba(52,108,115,.15) !important;
}

.parent-grid .card img{
    object-fit: cover;
    object-position: center;
    height: 398px;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(180px, auto);
    grid-auto-flow: dense;
    padding: 10px;
    width: 100%;
}

.grid-layout .grid-item img{
    object-fit: cover;
    object-position: 0 0;
    height: 100%;
}

.grid-item {
    /* padding: 1rem; */
    overflow: hidden;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #929796;
    background-color: #fff;

    /* border-radius: 5px; */
}


.grid-item img {
  width: 100%;
}
.grid-item:nth-child(odd) {
    background-color: #424242;
}

.rowspan-1 {grid-column-end: span 1;}
.rowspan-2 {grid-column-end: span 2;}
.rowspan-3 {grid-column-end: span 3;}
.rowspan-4 {grid-column-end: span 4;}
.rowspan-5 {grid-column-end: span 5;}
.rowspan-6 {grid-column-end: span 6;}

.colspan-1 {grid-row-end : span 1}
.colspan-2 {grid-row-end : span 2}
.colspan-3 {grid-row-end : span 3}
.colspan-4 {grid-row-end : span 4}
.colspan-5 {grid-row-end : span 5}
