
.banner {
  display: flex;
  padding: 20px;
  align-items: center;
}

.emptybox {
  flex: 1
}

.content {
  display: flex;
  flex-wrap: wrap;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: larger;
  align-items: end;
}

h2 {
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

article {
  padding: 10px;
  margin: 10px;
  flex: 1 300px;
  text-align: center;
}

#grad1 {
  background-image: linear-gradient(to left, rgb(116, 41, 132, 0.3), rgb(116, 41, 132, 1));
}

.gradient_text {
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  color: white;
  padding: 20px;
  margin: 20px;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  position: relative;
  top: 5px;
  margin: 5px;
}

.symbol-large {
  font-size: 30px;
}

a {
  color: rgb(116, 41, 132, 1);
  font-size: inherit;
  text-decoration: none;
}

.service-panel {
  background-color: rgb(116, 41, 132, 1);
  color: white;
}

.more-info {
  background-color: white;
  color: rgb(116, 41, 132, 1);
  font-size: 30px;
  font-weight: 500;
  /*margin: 1px;*/
  padding: 10px;
  border-radius: 20px;
}

.footer-panel {
  background-color: white;
  color: #1E9F39;
  padding: 10px;
  margin: 10px;
}

.banner-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.banner-right {
  position: absolute;
  top: 100px;
  right: 50px;
}

.banner-container {
  position: relative;
  text-align: center;
  color: white;
}

.banner-text {
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  color: rgb(116, 41, 132, 1);
}

.main-text {
  /* font-family: "Cormorant Garamond", serif; */
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
  color: rgb(116, 41, 132, 1);
  text-shadow: 1px 1px 1px white;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-text {
  display:flex;
  align-items: center;
  padding: 20px;
}

.page-side {
  flex: 0
}

.page-main {
  flex: 1
}

.main-box {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .main-text {
    font-size: 55px;
  }
}

@media only screen and (min-width: 1290px) {
  .page-side {
    flex: auto
  }
  
  .page-main {
    width: 1280px;
    flex: none;
  }
}







