@font-face {
  font-family: 'century_gothicregular';
  src: url('fonts/gothic-webfont.woff2') format('woff2'),
    url('fonts/gothic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'century_gothicbold';
  src: url('fonts/gothicb-webfont.woff2') format('woff2'),
    url('fonts/gothicb-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: 'century_gothicregular', sans-serif;
}

body {
  font-family: 'century_gothicregular', sans-serif;
  margin: 15px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* background-color: #f4f4f4; */
}

/*.logo {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 53%;*/
/*  transform: translate(-50%);*/
/*  font-size: 2.96vw;*/
/*  color: #eb3f43;*/
/*  transition: top 0.3s ease, font-size 0.3s ease;*/
/*  z-index: 99999;*/
/*  max-width: 185px;*/
/*}*/
.logo {
    position: absolute;
    top: 5px !important;
    left: 53%;
    transform: translate(-50%);
    font-size: 1vw;
    width: 22vw;
    color: white;
    transition: top 0s ease, font-size 0.3s ease;
    z-index: 99999;
    /*padding-top: 10px;*/
    position: fixed;
}
@media only screen and (min-width: 2560px) {
    .logo {
        top: -34px !important;
        left: 52% !important;
        transform: translate(-50%);
        font-size: 1vw;
        width: 10vw;
        color: white;
        transition: top 0s ease, font-size 0.3s ease;
        z-index: 99999;
        padding-top: 0;
        position: fixed;
    }
    .logo img {
      max-width: 100%;
      width: 100% !important;
    }
}

@media (max-width: 576px) {

    .logo {
        width: 44vw !important;
        top: 2% !important;
        left: 50% !important;
      }
      .logo img {
            max-width: 100% !important;
            width: 100% !important;
            margin-top: 0px !important;
        }
}


.logo img {
  max-width: 100%;
  width: 60%;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 22px 10px;
  color: black;
  background: white;
  z-index: 1000;
  box-shadow: 0 40px 58px rgba(255, 255, 255, 4.1);
  transition: background-color 0.3s ease;
}

.navbar .left-links,
.navbar .right-links {
  display: flex;
  align-items: center;
}

.navbar .left-links a,
.navbar .right-links a {
  margin: 3px 15px;
  color: black !important;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.navbar .left-links a:hover,
.navbar .right-links a:hover {
  color: white;
  /* Highlight color */
}

.image-grid {
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns */
  grid-auto-rows: 150px;
  /* Each row has a base height of 150px */
  max-width: 1200px;
  /* Optional, to keep the grid centered */
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 950px;
}

.image-grid div {
  position: relative;
  overflow: hidden;
  background-color: #ddd;
  border: 1px solid #ccc;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.image-grid img:hover {
  transform: scale(1.1);
}

/* Custom sizes for different boxes */
.wide {
  grid-column: span 2;
  /* Spans 2 columns */
}

.tall {
  grid-row: span 2;
  /* Spans 2 rows */
}

.wide-tall {
  grid-column: span 2;
  /* Spans 2 columns */
  grid-row: span 2;
  /* Spans 2 rows */
}

/* Responsive Design */
@media (max-width: 768px) {}

@media (max-width: 480px) {

  .navbar .left-links a,
  .navbar .right-links a {
    font-size: 14px;
  }
}



/* moblie_menu */

.logo {
  position: fixed;
  top: 2%;
  left: 53%;
  transform: translate(-50%);
  font-size: 2.96vw;
  color: #eb3f43;
  transition: top 0.3s ease, font-size 0.3s ease;
  z-index: 99999;
}

.mobile-menu {
  display: block;
  width: 100%;
  /*e0b88f/*c99393/*e5d1a4/*dcc591/*EFD3A3*/
  /* background: #8aa8bd
  ; */
  background: #eb3f43;
  line-height: 1.6em;
  font-weight: 400;
  width: 100%;
  text-align: center;
  position: relative;
  margin: 0 auto;
  z-index: 3;
  position: fixed;
  top: 0;
}

/*Strip the ul of padding and list styling*/
.mobile-menu ul {
  list-style-type: none;
  margin: 0 auto;
  padding-left: 0;
  text-align: center;
  width: 100%;
  position: absolute;
  /* background: #8aa8bd; */
  background: #eb3f43;
}

/*Create a horizontal list with spacing*/
.mobile-menu li {
  display: inline-block;
  /*float: left;
	margin-right: 1px;*/
}

/*Style for menu links*/
.mobile-menu li a {
  display: block;
  min-width: 140px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  text-transform: uppercase;
  /* background: #8aa8bd; */
  background: #eb3f43;
  text-decoration: none;
  margin-left: -5px;
  padding: 10px 0;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

/*Hover state for top level links*/
/* .mobile-menu li:hover a {
  color: #4db3ff;
  background-color: #ccddee;
} */

/*Style for dropdown links*/
.mobile-menu li:hover ul a {
  background: #f3f3f3;
  color: #2f3036;
  height: 40px;
  line-height: 40px;
}

/*Hover state for dropdown links*/
/* .mobile-menu li:hover .mobile-menu ul a:hover {
  color: #4db3ff;
} */

/*Hide dropdown links until they are needed*/
.mobile-menu li ul {
  display: none;
}

/*Make dropdown links vertical*/
.mobile-menu li ul li {
  display: block;
  float: none;
}

/*Prevent text wrapping*/
.mobile-menu li ul li a {
  width: auto;
  min-width: 100px;
  padding: 0 20px;
}


/*Style 'show menu' label button and hide it by default*/
.mobile-menu .show-menu {
  text-decoration: none;
  color: #fff;
  /* background: #8aa8bd; */
  /* background-color: #eb3f43; */
  background-color: #fff;
  /* background-color: #eb3f43c9; */
  text-align: center;
  /* padding: 10px 15px; */
  padding: 15px 15px;
  display: none;
  cursor: pointer;
  text-transform: uppercase;
}

.mobile-menu .show-menu span {
  padding-left: 25px;
}

/*Hide checkbox*/
.mobile-menu input[type=checkbox] {
  display: none;
}

/*Show menu when invisible checkbox is checked*/
.mobile-menu input[type=checkbox]:checked~#menu {
  display: block;
}

/*Responsive Styles*/

@media screen and (max-width : 800px) {
  .mobile-menu .lines {
    border-bottom: 15px double #000;
    border-top: 5px solid #000;
    content: "";
    /* height: 5px; */
    /* width: 20px; */
    height: 25px;
    width: 30px;
    padding-right: 15px;
    float: right;
  }

  /*Make dropdown links appear inline*/
  .mobile-menu ul {
    position: static;
    display: none;
  }

  /*Create vertical spacing*/
  .mobile-menu li {
    margin-bottom: 1px;
  }

  /*Make all menu links full width*/
  .mobile-menu ul li,
  .mobile-menu li a {
    width: 100%;
  }

  /*Display 'show menu' link*/
  .mobile-menu .show-menu {
    display: block;
  }
}

@media screen and (max-width : 800px) {
  div#navbar {
    display: none;
  }
}

@media screen and (max-width : 480px) {
  .main-section {
    padding: 50px 20px;
  }
}


.image-grid-main {
  display: flex;
  gap: 27px;
  flex-direction: column;
  width: 100%;
  /*padding: 80px 20px 10px;*/
  padding: 10px 20px 10px;
  box-sizing: border-box;
  /* position: absolute; */
  background-color: white;
  margin-top: 1800px;
  /* margin-top: 1100px; */
  /* top: 515px; */
}

.grid-container {
  margin-bottom: 20px;
}

.image-grid-second {
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns */
  grid-auto-rows: 220px;
  /* Each row has a base height of 150px */
  /* max-width: 1200px; Optional, to keep the grid centered */
  width: 100%;
  padding: 80px;
  box-sizing: border-box;
  position: absolute;
  /* background-color: white; */
  margin-top: 940px;
  top: 515px;
}

.image-grid-4 {
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(4, 1fr);
  /*  grid-auto-rows: 260px;  */
  grid-auto-rows: 291px;
}

.image-grid-3 {
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
}

.image-grid-5 {
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 260px;
}

.grid-container div {
  position: relative;
  overflow: hidden;
  /*  background-color: #ddd;*/
  background-color: #fff;
  /*  border: 1px solid #ccc;*/
  border: 1px solid #fff;
  transition: all .3s;
}

/*.grid-container div:hover {
  border: 1px solid #EB3F43;  
}*/
.img-overlay {
  position: absolute !important;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #EB3F43 !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 30px;
  text-align: center;
  opacity: 0;
  transition: all .3s;
}

/* .grid-container div:hover .img-overlay {
 opacity: 1;
} */

.grid-container .meraki:hover .img-overlay {
  opacity: 1;
}

.image-grid-second img,
.grid-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.image-grid-second img:hover,
.grid-container img:hover {
  transform: scale(1.1);
}

/* Custom sizes for different boxes */
.wide {
  grid-column: span 2;
  /* Spans 2 columns */
}

.tall {
  grid-row: span 2;
  /* Spans 2 rows */
}

.wide-tall {
  grid-column: span 2;
  /* Spans 2 columns */
  grid-row: span 2;
  /* Spans 2 rows */
}

.post-container img {
  width: 100%;
}

.col-md-2.meraki.\31 {
  width: 20%;
}

.col-md-5.meraki.\32 {
  width: 40%;
}

.col-md-5.meraki.\33 {
  width: 40%;
}

.col-md-5.meraki.\34 {
  width: 38%;
}

.col-md-2.meraki.\35 {
  width: 20%;
}

.sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 0em;
  gap: 17px;
  row-gap: 28px;
}

@media (min-width: 1440px) {
  .image-grid-main {
    margin-top: 2100px;
  }
}

@media (max-width: 1280px) {
  .image-grid-main {
    margin-top: 1600px;
  }
}

@media (max-width: 1024px) {
  .image-grid-main {
    margin-top: 1300px;
  }
}

@media (max-width: 768px) {
  .image-grid-main {
    margin-top: 1020px;
  }
}

@media (max-width: 576px) {

  .image-grid-main {
    margin-top: 6050px;
  }

  .col-md-2.meraki.\31 {
    width: 100%;
  }

  .col-md-5.meraki.\32 {
    width: 100%;
  }

  .col-md-5.meraki.\33 {
    width: 100%;
  }

  .col-md-5.meraki.\34 {
    width: 100%;
  }

  .col-md-2.meraki.\35 {
    width: 100%;
  }

  .image-grid img {
    width: 100%;
  }

  .sub {
    display: block;
  }

  .img-box {
    margin-bottom: 17px;
  }

  .image-grid-3 {
    grid-auto-rows: 284px;
    grid-template-columns: repeat(1, 1fr);
  }

  .image-grid-4 {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 284px;
  }

  .image-grid-5 {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 284px;
  }

  .grid-container .row {
    display: inline-grid !important;
    background: #fff !important;
    row-gap: 20px !important;
  }

}

@media (max-width: 425px) {

  .image-grid-main {
    margin-top: 4850px;
  }
/* 
  .image-grid-main {
    margin-top: 6100px !important;
  } */
}

@media (max-width: 320px) {

  .image-grid-main {
    margin-top: 4400px;
  }
}