*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.banner{
    width: 100%;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}
.navbar{
    width: 100%;
    margin-left: 80px;
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.title-text{
    margin-left: 10px;
}
.banner-container{
    justify-content: end;
    text-align: right;
    position: absolute;
    right: 0;
}
.logo{
    width: 120px;
    cursor: pointer;
    clip-path: circle();
    margin:5px;
}
.logo-container{
    margin-left: 25px;
    margin-right: 70px;
    display: flex;
    flex-direction: column; /* So this is the part that's making the displays all funny*/
}
.logo-small{
    width: 30px;
    cursor: pointer;
    clip-path: circle();
    margin:2px;
}
.no-underline{
    text-decoration: none;
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin-left: 60px;
    margin-right: 20px;
}
.navbar-li div{    
    margin-top: 10px;
    position: absolute;
}
.navbar ul li a{
    text-decoration: none;
    color: #000000;
    text-transform: uppercase;
}
.navbar-li div::after{
    content: '';
    height: 3px;
    width: 0;
    background: #080e45;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}
.navbar-li div:hover::after{
    width: 100%;
}
.content{
    width: 100%;
    position: absolute;
    top: 20%;
    text-align: center;
    color: #fff;
}
.content h1{
    font-size: 70px;
    margin-top: 80px;
    line-height: 25px;
}
.content p{
    font-weight: 100;
    line-height: 25px;
    margin-top: 35px;
}
button{
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

span{
    background: #36e0d0;
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}
button:hover span{
    width: 100%;
    border: none;
}

.crop {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: 0% 25%;
}

.navbar-logo {
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.container {
  text-align: center;
  width: 90%;
  margin: auto;
  margin-top: 50px;
  border: solid 2px white;
  object-fit: cover;
}

.center {
    text-align: center;
}

.gallery {
  display: -ms-flexbox; /* IE 10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE 10 */
  flex-wrap: wrap;
  padding: 0 4px;
  justify-content: center;
}

* { box-sizing: border-box; }

/* ---- grid-item ---- */

.grid-item {
  width: 300px;
  height: 300px;
  border: 2px solid #fff;
  object-fit: cover;
  image-rendering: optimizeQuality;
}

.grid-item--height2 { height: 600px; }
.grid-item--width2 { width: 600px; }

.grid-item:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.gallery-item{
    width: 100%;
}

.gallery-item:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.square {
  width: 24vw;              /* 30% of viewport width */
  aspect-ratio: 1 / 1;      /* Makes the div a perfect square */
  overflow: hidden;         /* Hides parts of the image that overflow */
}

.square img {
  width: 95%;
  height: 95%;
  object-fit: contain;        /* Makes image fill square while keeping proportions */
}
