html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*----------------Reset CSS END */

/*----------------Super Classes */

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
  /* height of sticky header */
}

@font-face {
  font-family: Aileron;
  src: url("../assets/font/aileron.otf");
}

@font-face {
  font-family: Aileron Heavy;
  src: url("../assets/font/aileron.heavy.otf");
}

:root {
  /* --main-bg-color: white; */
  --themeColor: #000000;
  --subTextColor: #2e2e2e;
  --secThemeColor: rgba(0, 0, 0, 0.2);
  --accentColor: #F6AA1C;
  --liveIndicator: rgb(255, 64, 86);
  --bodyFontFamily: Aileron;
  /* --bodyFontFamily: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
}

.largeTitle {
  font-family: Montserrat, Helvetica, Times, serif;
  color: blacks;
  margin: 1.414em 0 0.5em;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  font-size: 4.853em;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.2) -15.83px 0.966667px;
  z-index: 2;
}

.designDesign {
  font-family: "Lobster", cursive;
  color: var(--liveIndicator);
  font-size: 2ems;
}

a {
  text-decoration: none;
  background-color: transparent;
}

/*----------------Super Classes End*/

/*----------------Page Layouts*/

.mainPage {
  width: 100%;
  height: 100%;
  font-family: var(--bodyFontFamily);
  display: grid;
  grid-template-rows: 60px auto 60px;
  grid-template-areas: "menuBar" "midSection" "footer";
  scroll-behavior: smooth
}

/* Every other page is based on this layout */

/* .pageContainer {
  width: 100%;
  height: 100%;
  font-family: var(--bodyFontFamily);
  display: grid;
  grid-template-rows: 110px auto 60px;
  grid-template-areas: "menuBar" "filler" "footer";
  grid-row-gap: 1em;
}

.projectPages {
  width: 100%;
  height: 100%;
  font-family: var(--bodyFontFamily);
  display: grid;
  grid-template-rows: 110px auto 60px;
  grid-template-areas: "menuBar" "filler" "footer";
  grid-row-gap: 1em;
} */

/*----------------Tablet */

@media only screen and (max-width: 930px) {
  .mainPage {
    grid-template-rows: 100px auto 135px;
  }
}

/*----------------Mobile */

@media only screen and (max-width: 768px) {
  .mainPage {
    grid-template-rows: 100px auto 145px;
  }
  .carouselText {
    top: 1px;
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }
}

/*----------------Nav bar and Bottom Bar */

top-bar {
  grid-area: menuBar;
}

bottom-bar {
  grid-area: footer;
}

/*----------------Index Page Carousel */

.scrollToTopBtn {
  background-color: black;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  line-height: 48px;
  width: 48px;
  border: black 1px solid;

  /* place it at the bottom right corner */
  position: fixed;
  bottom: 75px;
  right: 30px;
  
  /* keep it at the top of everything else */
  z-index: 100;
  /* hide with opacity */
  opacity: 0;
  /* also add a translate effect */
  transform: translateY(100px);
  /* and a transition */
  -webkit-transition: all .5s ease;
  -moz-transition:    all .5s ease;
  -ms-transition:     all .5s ease;
  -o-transition:      all .5s ease;
  transition: all .5s ease;
  
  box-shadow: rgb(0 0 0 / 40%) 4px 4px 8px;
}

.scrollToTopBtn:hover{
  background-color: var(--accentColor);
}

.showBtn {
  opacity: 1;
  transform: translateY(0)
}


.midSection {
  grid-area: midSection;
  background-color: var(--main-bg-color);
  text-align: center;

  display: grid;
  /* grid-row-gap: 1%; */
  grid-template-columns: 15% 1fr 15%;
  grid-template-areas: "hero hero hero" "auction auction auction" "process process process" "viewAuction viewAuction viewAuction";
  justify-content: center;
  padding: 0px 0px;
}

.maintexts {
  font-family: var(--bodyFontFamily);
  font-size: 60px;
  font-weight: 300;
}
.subtexts {
  font-family: var(--bodyFontFamily);
  font-size: 30px;
  font-weight: 300;
}
.lottexts {
  font-family: var(--bodyFontFamily);
  font-size: 20px;
  font-weight: 300;
}
.logoStyle {
  font-family: Aileron Heavy;
  letter-spacing: 15px;
  font-size: 25px;
}


.homeMainText {
  grid-area: homeMainText;
  height: 105px;
  width: 100%;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homeSubText {
  /* grid-area: homeSubText;
  height: 55px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(-45deg, #96a0b0,var(--themeColor), #090102,var(--themeColor));
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;

  color: white; */
}


@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

.sellPoint {
  grid-area: sellPoint;
  height: 105px;
  width: 100%;
  color: black;

  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: .5px solid black;
}

.hero {
  grid-area: hero;
  /* height:900px; */
  width: 100%;

  display: grid;
  grid-template-columns: repeat(1fr, 4);
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-areas:
    ". heroText heroImage heroImage"
    ". heroBtns heroImage heroImage";
  justify-content: center;
}

.heroText{
  grid-area: heroText;
  align-self: end;
  text-align: left;
  /* cursor: default;
    box-sizing: border-box; */
}

.heroBtns{
  grid-area: heroBtns;
  align-self: top;
  text-align: left;
  width: 100%;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-column-gap: 1em;
  grid-template-areas:
    "heroBtnDir heroBtnLink";
  /* justify-content: center; */
}

.heroBtnDir{
  grid-area: heroBtnDir;
}
.heroBtnLink{
  grid-area: heroBtnLink;
}

.heroText > h1{
  font-size: 74px;
  font-weight: initial;
}

.heroText > h2{
  font-size: 22px;
  font-weight: initial;
  line-height: 40px;
}

.heroImages{
  grid-area: heroImage;
  height: 100%;
}

.hero-image-big{
  height: auto;
  width: 100%;
}

.hero-image-small{
  display: none;
}
.lotViewing{
  margin: 1em;
}

.lotViewing  * {
  width: 100%;
  margin-top: 1em;
}

.lotViewingBorder{
  border: black 1px solid;
}

.lotImg{
  width: 100%;
  height: 250px;
}

.lotTitle{
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3em;
  /* padding: 5px; */
}

.lotDate{
  font-size: .8em;
  padding-bottom: 5px;
}

.slick-slide img{
  height: 265px;
}

.slick-dots li button:before{
  font-size: 15px !important;
}

.bidhausBtn{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5em;
  width: 100%;
  color: white;
  text-decoration: none; /* no underline */
  border: black 1px solid;

  background: linear-gradient(to left, black 50%, var(--accentColor) 50%) right;
  background-size: 235%;
  transition: .5s ease-out;
  
  box-shadow: rgba(0, 0, 0, 0.4) 4px 4px 8px;
}

.bidhausBtn:hover{
  background-position: left;
  color: black
}

.auction {
  position: relative;
  grid-area: auction;

  height: auto;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-image: url("../assets/images/Homepage/max-van-den-oetelaar-IMYe9uYN27E-unsplash.jpg");
  background-color: rgba(255,255,255,0.4);
  background-blend-mode: lighten;
  padding-bottom: 3em;

  display: grid;
  grid-template-areas: 
  "platform1 platform1 platform1" 
  "platform2 platform2 platform2" 
  "platform3 platform3 platform3" 
  "upcomingAuction upcomingAuction upcomingAuction";
  /* grid-template-columns: 1fr 100px 1fr; */
  grid-template-rows: repeat(3, 195px) 1fr;
  align-items: center;
  justify-self: center;
}

.platform1,
.platform2,
.platform3 {
  font-family: var(--bodyFontFamily);
  font-size: 65px;
  font-weight: initial;
  color: white;
  justify-self: center;

}

.platform1 {
  grid-area: platform1;
}

.platform2 {
  grid-area: platform2;
  height: 100%;
  width: 100%;
}

.platform2 > svg{
  fill: white;
  stroke-width: 10;
  width: 512px;
  stroke: black;
  text-shadow: -5px 0 black, 0 5px black, 5px 0 black, 0 -5px black;
}

.platform3 {
  grid-area: platform3;
}

.auction div h1 span {
  background-color: black;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.4) 4px 4px 8px;
}

.upcomingAuction{
  grid-area: upcomingAuction;
  position: relative;
  background-color: white;
  /* width: 100%; */

  display: grid;
  grid-column-gap: 1em;
  /* grid-row-gap: 1em; */
  padding: 2em;
  grid-template-columns: 250px 915px;  
  justify-self: center;
  box-shadow: rgba(0, 0, 0, 0.4) 4px 4px 8px;

  /* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); */

}

.futurelotTitle{
  align-self: center;
}

.auctionList {
  display: grid;
  grid-column-gap: 1em;
}

.upcomingAuction > .futurelotViewing{
  max-height: 500px;
  width: 100%;
  /* border: black 1px solid; */
}

.process {
  grid-area: process;
  /* background-color: orange; */
  /* height: 300px; */
  padding: 5% 0;
  display: grid;
  grid-template-areas: "processTitle" "processDets";
}

.processTitle {
  grid-area: processTitle;
  height: fit-content;
  /* padding: 10px; */
  width: 100%;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: white; */
}

.processDets {
  grid-area: processDets;
  padding: 3% 0;
  align-items: center;

  display: grid;
  grid-template-columns: repeat(4, 200px);
  grid-template-rows: 1fr;
  justify-self: center;
  align-self: center;
}

.processSubtitle{
  font-family: var(--bodyFontFamily);
  font-weight: 100;
  padding: 0.5rem;
  font-size: 20px;
}

.processDets .processSubtitle i{
  font-size: 2em;
  padding: 15px;
  -webkit-transition: color 1s;
  -moz-transition:    color 1s;
  -ms-transition:     color 1s;
  -o-transition:      color 1s;
  transition:         color 1s;
}

.processDets .processSubtitle i:hover{
  color: var(--accentColor);
  cursor: pointer;
}

.viewAuction {
  grid-area: viewAuction;
  background-color: rgba(0, 0, 0, 0.2);
  /* height: 300px; */
  width: 100%;
  padding: 3% 0;

  grid-template-areas: "viewAuctionTitle""viewallAuctionsBtn";
  grid-row-gap: 50px;
  align-self: center;
}

.viewAuctionTitle{
  grid-area: viewAuctionTitle;
  margin: 5%;
}

.viewallAuctionsBtn{
  grid-area: viewallAuctionsBtn;
  height: 100px;
  width: 250px;
  margin: 20px auto;
}

/*---------------- Mobile adjustments */

@media only screen and (max-width: 1590px) {
  .midSection {
    grid-template-columns: 10% 1fr 10%;
  }
}

@media only screen and (max-width: 1250px) {
  .midSection {
    grid-template-columns: 5% 1fr 5%;
  }

  .platform2 > svg {
    width: 220px;
  }

  .collage{
    grid-template-columns: repeat(2, 305px);
    grid-template-rows: auto;
  }

  .maintexts{
    font-size: 45px;
  }

  .upcomingAuction{
    grid-template-columns: 915px;  
    grid-template-rows: 100px 1fr;
  }
}

@media only screen and (max-width: 995px) {
  
  .midSection {
    grid-template-columns: 1fr;
    /* grid-template-areas: "homeMainText" "homeSubText" "sellPoint" "grid" "auction" "process" "viewAuction"; */
  }

  .hero {
    margin-top: 2em;
    grid-template-columns: repeat(1fr, 1);
    grid-template-areas:
      "heroText"
      "heroBtns"
      "heroImage";
    justify-items: center;
  }
  
  .heroText{
    text-align: center;
    padding: 0 5em;
  }
  
  .heroBtns{
    width: 50%;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-row-gap: 1em;
    grid-template-areas:
      "heroBtnLink"
      "heroBtnDir";
    /* justify-items: center; */
  }
  
  .heroText > h1{
    font-size: 50px;
  }
  
  .heroText > h2{
    font-size: 19px;
    padding: 0 2em;
  }

  .heroImage{
    justify-self: center;
  }

  .hero-image-big{
    display: none;
  }

  .hero-image-small{
    display: block;
  }

  .hero-image-small{
    height: auto;
    width: 90%;
    margin:auto;
  }
  
  .auction {
    height: auto;
    grid-template-areas: "platform1" "platform2" "platform3" "upcomingAuction";
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  
  .upcomingAuction{
    grid-template-columns: 1fr; 
  }

  .auctionList{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .maintexts {
    font-size: 35px;
  }
  .subtexts {
    font-size: 25px;
  }

  .collage{
    grid-template-columns: repeat(1, 305px);
    grid-template-rows: auto;
  }  
  .upcomingAuction{
    grid-template-columns: repeat(1, 305px);
    grid-template-rows: auto;
  }
  .processDets{
    grid-template-columns: repeat(2, 200px);
    grid-template-rows: auto;
  }
      
  .processDets .processSubtitle i{
    font-size: 1.5em;
    padding: 0;
  }

}

@media only screen and (max-width: 768px) {

  .platform1,
  .platform3 {
    font-size: 25px;
  }

  
  .platform2 > svg {
    width: 120px;
  }

  .processDets{
    grid-template-columns: 1fr;
  }

  .blink{
    font-size: 15px;
  }

  .heroText{
    text-align: center;
    padding: 0 1em;
  }

  .heroBtns{
    width: 75%;
  }

  .hero-image-small{
    height: auto;
    width: 100%;
    margin:auto;
  }
  
  .upcomingAuction{
    /* width: 100%; */
    padding: 2em 0;
    /* grid-row-gap: 1.5em; */
  }
    
  .viewAuctionTitle{
    margin: 0;
  }

  .processSubtitle {
    padding: 1.5rem 4em;
}
}

/*----------------Index Page END*/

/*----------------Auction Page */

.auctionFiller {
  grid-area: midSection;
  background-color: var(--main-bg-color);
  position: relative;
  padding: 30px;
  box-sizing: border-box;
  display: grid;
  grid-template-areas: "filterMenu" "filterContainer";
  grid-row-gap: 2em;
  grid-template-rows: 65px auto;
}

.filterMenu {
  grid-area: filterMenu;
  justify-content: center;
  align-self: center;
  padding: 2em 0;
  height: 30px;
  display: flex;
  flex-direction: row;
  list-style-type: none;
}

.filterMenu > li {
  font-family: var(--bodyFontFamily);
  list-style: none;
  padding: 3px;
  color: var(--themeColor);
  border-bottom: 1px solid var(--themeColor);
  margin-right: 15px;
  font-weight: 100;
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
  cursor: pointer;

  /* background: linear-gradient(to left, black 50%, var(--accentColor) 50%) right; */
  /* background-size: 201%; */
  transition: .2s ease-out;

}

.filterMenu li a {
  color: var(--themeColor);
}

.filterMenu li:hover {
  font-size: 20px;
  border-bottom: 5px solid var(--accentColor);
}

/*----------------Auction Page Container */

.filterContainer {
  grid-area: filterContainer;
  display: grid;
  grid-template-areas: "liveAuction" "futureAuction" "pastAuction";
}

.liveAuction{
  grid-area: liveAuction;
  /* background-color: var(--secThemeColor); */
  min-height: 300px;
  padding: 2% 0%;

  display: grid;
  grid-template-areas: "liveAuctionTitle blink" "liveAuctionDesc liveAuctionDesc" "liveAuctions liveAuctions";
  grid-column-gap:.5em;
  grid-row-gap: .5em;
  grid-template-columns: 430px auto;
  justify-self: center;
}

.blink {
  grid-area: blink;

  color: var(--liveIndicator);
  font-size: 35px;
  justify-self: left;
  align-self: center;
  animation: blinker .7s cubic-bezier(.5, 0, 1, 1) infinite alternate;  
}

@keyframes blinker {  
  from { opacity: 1; }
  to { opacity: 0; }
}

.liveAuctionTitle{
  grid-area: liveAuctionTitle;
  align-self: center;
  border-top: .5px solid;
}

.liveAuctionDesc{grid-area: liveAuctionDesc;}

.liveAuctions{
  grid-area: liveAuctions;
  TEXT-ALIGN: center;

  display: grid;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-columns: repeat(4, 305px);
  grid-template-rows: auto;
  grid-row: auto;
}

.futureAuction{
  grid-area: futureAuction;
  background-color: var(--secThemeColor);
  min-height: 300px;
  padding: 2% 0%;
  width: 100%;

  display: grid;
  grid-template-areas: "futureAuctionTitle" "futureAuctionDesc" "futureAuctions";
  grid-column-gap:.5em;
  grid-row-gap: .5em;
  /* grid-template-columns: 383px auto; */
  justify-self: center;

}

.futureAuctionTitle{
  grid-area: futureAuctionTitle;
  justify-self: center;
  border-top: .5px solid;
}

.futureAuctionDesc{
  grid-area: futureAuctionDesc;  
  justify-self: center;
}

.futureAuctions{
  grid-area: futureAuctions;
  TEXT-ALIGN: center;

  display: grid;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-columns: repeat(5, 305px);
  grid-template-rows: auto;
  grid-row: auto;
  justify-self: center;
}

.pastAuction{
  grid-area: pastAuction;
  min-height: 300px;
  padding: 2% 0%;

  display: grid;
  grid-template-areas: "pastAuctionTitle" "pastAuctionDesc" "pastAuctions";
  grid-column-gap:.5em;
  grid-row-gap: .5em;
  /* grid-template-columns: 383px auto; */
  justify-self: center;
}

.pastAuctionTitle{
  grid-area: pastAuctionTitle;
  justify-self: right;
  border-top: .5px solid;
}

.pastAuctionDesc{
  grid-area: pastAuctionDesc;
  justify-self: right;
}

.pastAuctions{
  grid-area: pastAuctions;
  TEXT-ALIGN: center;

  display: grid;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-columns: repeat(4, 305px);
  grid-template-rows: auto;
  grid-row: auto;
  justify-self: right;

}

/*----------------Project Page Filter Mobile adjustments */
@media only screen and (max-width: 1590px) {
  .filterContainer {
    grid-template-columns: repeat(4, 300px);
  }
  .coverFilter {
    padding: 0;
  }
}

@media only screen and (max-width: 1250px) {
  .filterContainer {
    grid-template-columns: repeat(3, 300px);
  }
}

@media only screen and (max-width: 930px) {
  .filterContainer {
    grid-template-columns: repeat(2, 300px);
  }
}

@media only screen and (max-width: 768px) {
  .filterContainer {
    grid-template-columns: repeat(1, 300px);
  }
  .filterMenu {
    flex-flow: wrap;
    /* height: auto; */
    padding: 2em 1em;
    justify-self: center;
  }
}


/*----------------Project Page Filter END */

/*----------------Office Page Container */

.officeContainer {
  grid-area: midSection;
  text-align: center;
  margin-top: 3em;
  margin-bottom: 1em;
  display: grid;
  grid-template-columns: 15% 1fr 15%;
  grid-template-areas: ". ueTeam ." ". ueDevTeam ." ". aboutUs ." ". contactUs .";
  grid-row-gap: 3rem;
  justify-content: center;
  padding: 0 15px;
}

.officePageImg {
  width: 100%;
  height: 100%;
  max-height: 552px;
}

.officeContainer h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 390;
  line-height: 1.5;
}

.officeContainer p {
  font-size: 14px;
  margin-bottom: 0.5rem;
  font-weight: 100;
  line-height: 2;
}

#ueTeam {
  grid-area: ueTeam;
  display: grid;
  grid-template-areas: "ueTeamImgs" "ueTeamNames";
  grid-row-gap: 2em;
}

.ueTeamImgs {
  grid-area: ueTeamImgs;
}

.ueTeamNames {
  grid-area: ueTeamNames;
}

#ueDevTeam {
  grid-area: ueDevTeam;
  display: grid;
  grid-template-areas: "ueTeamImgs" "ueTeamNames";
  grid-row-gap: 2em;
}

.ueDevTeamImgs {
  grid-area: ueTeamImgs;
}

.ueDevTeamNames {
  grid-area: ueTeamNames;
}

#aboutUs {
  grid-area: aboutUs;
  display: grid;
  grid-template-areas: "aboutUsImg" "aboutUsText";
  grid-row-gap: 3em;
}

.aboutUsImg {
  grid-area: aboutUsImg;
}

.aboutUsText {
  grid-area: aboutUsText;
}

#contactUs {
  grid-area: contactUs;
  display: grid;
  grid-row-gap: 2em;
  grid-column-gap: 3em;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "contactUsImg contactUsImg" "contactUsText contactUsText";
}

.contactUsImg {
  grid-area: contactUsImg;
}

.contactUsText {
  grid-area: contactUsText;
  text-align: center;
  justify-self: center;
  align-self: center;
}

.contactUsText h4 {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  line-height: inherit;
}

.contactUsText a {
  text-decoration: none;
  color: black;
}

.contactUsMap {
  grid-area: contactUsMap;
  text-align: right;
  display: none;
}

#map {
  width: 100%;
  max-width: 650px;
  height: 400px;
  background-color: grey;
}

/*----------------Office Page Filter Mobile adjustments */

@media only screen and (max-width: 1590px) {
  .officeContainer {
    grid-template-columns: 10% 1fr 10%;
  }
}

@media only screen and (max-width: 1250px) {
  .officeContainer {
    grid-template-columns: 5% 1fr 5%;
  }
}

@media only screen and (max-width: 930px) {
  .officeContainer {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .officeContainer {
    grid-template-columns: 1fr;
  }
  #contactUs {
    grid-template-columns: 1fr;
    grid-template-areas: "contactUsImg" "contactUsText" "contactUsMap";
  }
  .contactUsText {
    text-align: center;
  }
  #map {
    max-width: 100%;
  }
}

/*----------------Office Page Container */

.practiceContainer {
  grid-area: filler;
  text-align: center;
  margin-top: 3em;
  margin-bottom: 3em;
  display: grid;
  grid-template-columns: 15% 1fr 15%;
  grid-template-areas: ". services ." ". Work ." ". publication .";
  grid-row-gap: 10rem;
  justify-content: center;
  padding: 0 15px;
}

.practicePageImg {
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 400px;
  /* min-width: 400px; */
  /* min-height: 500px; */
}

#Work {
  grid-area: Work;
  display: grid;
  grid-template-areas: "WorkTitle WorkTitle WorkTitle" "WorkImgs WorkText WorkText" "WorkImgs WorkText WorkText";
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.WorkImgs {
  grid-area: WorkImgs;
  align-self: center;
  justify-self: center;
}

.WorkTitle {
  grid-area: WorkTitle;
  text-align: center;
  justify-self: center;
  color: var(--themeColor);
  font-size: 40px;
  font-family: var(--bodyFontFamily);
  font-weight: 330;
  font-style: normal;
}

.WorkText {
  grid-area: WorkText;
  align-self: center;
  text-align: justify;
  font-family: var(--bodyFontFamily);
  font-weight: 100;
  line-height: 25px;
  font-size: 20px;
  padding-left: 5%;
  padding-right: 5%;
}

.WorkText span {
  color: var(--themeColor);
  font-size: 30px;
}

#publication {
  grid-area: publication;
  display: grid;
  grid-template-areas: "publicationText publicationText publicationImg" "publicationText publicationText publicationImg";
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.publicationImg {
  grid-area: publicationImg;
  align-self: center;
  justify-self: center;
}

.publicationText {
  grid-area: publicationText;
  align-self: center;
  text-align: center;
  font-family: var(--bodyFontFamily);
  font-weight: 100;
  line-height: 35px;
  font-size: 20px;
  padding-left: 5%;
  padding-right: 5%;
}

.publicationText h2 {
  font-weight: 400;
}

.publicationText h1 {
  text-align: center;
  color: var(--themeColor);
  font-size: 40px;
  font-family: var(--bodyFontFamily);
  font-weight: 330;
}

.publicationText a {
  color: blue;
}

#services {
  grid-area: services;
  display: grid;
  grid-template-areas: "servicesImg servicesImg servicesImg" "servicesText servicesText servicesText";
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.servicesImg {
  grid-area: servicesImg;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 300px);
  justify-self: center;
}

.servicesText {
  grid-area: servicesText;
  align-self: center;
  text-align: center;
  font-family: var(--bodyFontFamily);
  font-weight: 100;
  line-height: 35px;
  font-size: 20px;
  padding-left: 5%;
  padding-right: 5%;
}

.servicesText h2 {
  text-align: center;
  color: var(--themeColor);
  font-size: 40px;
  font-family: var(--bodyFontFamily);
  font-weight: 330;
}

/*----------------Practice Page Filter Mobile adjustments */

@media only screen and (max-width: 1590px) {
  .practiceContainer {
    grid-template-columns: 10% 1fr 10%;
  }
}

@media only screen and (max-width: 1250px) {
  .practiceContainer {
    grid-template-columns: 5% 1fr 5%;
  }
  .servicesImg {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 300px);
  }
  .services3 {
    display: none;
  }
}

@media only screen and (max-width: 930px) {
  .practiceContainer {
    grid-template-columns: 1fr;
  }
  .servicesImg {
    grid-template-columns: repeat(1, 1fr);
  }
  .services2 {
    display: none;
  }
  #Work {
    grid-template-areas: "WorkTitle" "WorkImgs" "WorkText";
  }
  #publication {
    grid-template-areas: "publicationImg" "publicationText";
  }
}

@media only screen and (max-width: 768px) {
  .practiceContainer {
    grid-template-columns: 1fr;
  }
  #contactUs {
    grid-template-columns: 1fr;
    grid-template-areas: "contactUsImg" "contactUsText";
  }
  .contactUsText {
    text-align: center;
  }
  #map {
    max-width: 100%;
  }
}

/*----------------Error Page Container */

.errorContainer {
  justify-self: center;
}

.face {
  width: 300px;
  height: 300px;
  border: 4px solid #383a41;
  border-radius: 10px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 100px;
}

@media screen and (max-width: 400px) {
  .face {
    margin-top: 40px;
    transform: scale(0.8);
  }
}

.face .band {
  width: 350px;
  height: 27px;
  border: 4px solid #383a41;
  border-radius: 5px;
  margin-left: -25px;
  margin-top: 50px;
}

.face .band .red {
  height: calc(100% / 3);
  width: 100%;
  background-color: #eb6d6d;
}

.face .band .white {
  height: calc(100% / 3);
  width: 100%;
  background-color: #fff;
}

.face .band .blue {
  height: calc(100% / 3);
  width: 100%;
  background-color: #5e7fdc;
}

.face .band:before {
  content: "";
  display: inline-block;
  height: 27px;
  width: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  z-index: 999;
}

/* .face .band:after {
    content: "";
    display: inline-block;
    height: 27px;
    width: 30px;
    background-color: rgba(56, 58, 65, 0.3);
    position: absolute;
    z-index: 999;
    right: 0;
    margin-top: -27px;
} */

.face .eyes {
  width: 128px;
  margin: 0 auto;
  margin-top: 40px;
}

.face .eyes:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 15px;
  border: 7px solid #383a41;
  margin-right: 20px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom: 0;
}

.face .eyes:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 15px;
  border: 7px solid #383a41;
  margin-left: 20px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom: 0;
}

.face .dimples {
  width: 180px;
  margin: 0 auto;
  margin-top: 15px;
}

.face .dimples:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 80px;
  border-radius: 50%;
  background-color: rgba(235, 109, 109, 0.4);
}

.face .dimples:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 80px;
  border-radius: 50%;
  background-color: rgba(235, 109, 109, 0.4);
}

.face .mouth {
  width: 40px;
  height: 5px;
  border-radius: 5px;
  background-color: #383a41;
  margin: 0 auto;
  margin-top: 25px;
}

.errorPageText {
  font-weight: 800;
  color: #383a41;
  text-align: center;
  font-size: 2.5em;
  padding-top: 20px;
}

@media screen and (max-width: 400px) {
  .errorPageText {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 2em;
  }
}

.btn {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  padding: 20px;
  background-color: rgba(94, 127, 220, 1);
  color: white;
  width: 320px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2em;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 80px;
  margin-bottom: 50px;
  transition: all 0.2s linear;
}

@media screen and (max-width: 400px) {
  .btn {
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 50px;
    width: 200px;
  }
}

.btn:hover {
  background-color: rgba(94, 127, 220, 0.8);
  transition: all 0.2s linear;
}
