@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

body {
  font-family: "Ubuntu", sans-serif;
  background-color: white;
  min-height: 100vh;
  height: 100vh;
  margin: 0px auto;
}

.wrapper {
  display: grid;
  align-content: end;
  align-self: start;
  min-width: 0;
  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 1fr;
  grid-template-areas:
    "top"
    "navc"
    "middle"
    "bottom";
  min-height: 100%;
  background-color: none;
  display: flex;
  flex-flow: column;
}

.header {
  background-color: rgb(252, 128, 97);
}

.top-bar {
  grid-area: top;
  --auto-grid-min-size: 0;
  padding: 10px 20px;
  max-width: 100%;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--auto-grid-min-size), 1fr)
  );
  grid-auto-flow: row;
  display: grid;
  grid-template-areas: "hl hr";
}

.title-logo {
  justify-self: start;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 0px;
  grid-area: hl;
}

.logo {
  align-self: center;
  justify-self: center;
}

#logo {
  width: 90px;
  height: auto;

  align-self: center;
}

.title {
  padding: 0px;
  align-self: center;
}

#mtitle {
  font-size: 50px;
  margin: 0px;
  padding: 0px;
  text-align: center;
  color: rgb(5, 80, 87);
  /* text-shadow: 0 1px 1px rgb(255, 255, 255),
        0 0 5px rgb(255, 255, 255),
        0 0 10px rgb(0, 0, 0); */
}

#mtitle2 {
  font-size: 20px;

  margin: 0px;
  padding: 0px;
  text-align: center;
  color: rgb(5, 80, 87);
  /* text-shadow: 0 1px 1px rgb(255, 255, 255), 0 0 1px rgb(255, 255, 255),
    0 0 4px rgb(255, 137, 53); */
}

#tag {
  font-size: 20px;
  margin: 0px;
  text-align: center;
  padding: 0px;
  color: #053b0d;
}

#phone-addr {
  grid-area: hr;
  text-align: right;
  padding: 0px;
  margin: 0px;
  background-color: none;
  align-self: end;
  justify-self: end;
}

#phone {
  font-size: 20px;
  padding: 0px;
  margin: 10px;
}

#phone a {
  color: black;
  text-decoration: none;

  font-weight: bold;
}

.nav-container {
  background-color: #e9fbff;
  grid-area: navc;
  width: 100%;
}

.navbar-custom {
  padding: 0px 20px;
}

.navbar-custom ul li a {
  color: rgb(0, 0, 0) !important;
}

.navbar-nav > .active > a {
  font-weight: bold;
}

.contactnav {
  margin-left: auto;
}

.navbar-nav > li > a:hover {
  background-color: rgba(230, 245, 148, 0.425);
}

.main {
  margin: 20px 40px;
  grid-area: middle;
  flex: 1;
}

.contactmain {
  margin: 20px 40px;
  grid-area: middle;
  flex: 1;
}

.noticemain {
  margin: 20px 40px;
  grid-area: middle;
}

.card {
  background-color: #f0f0f0;
}

.cardquote {
  background-color: #ffffff00;
  border-radius: 40px;
  text-align: center;
}

.cardin {
  background-color: transparent;
  border-color: transparent;
}

.cardindex {
  background-color: #ffffff;
  border-bottom: 2px solid rgb(252, 128, 97);
}

.cardbindex {
  background-color: transparent;
  border-color: transparent;
}

.cardcontact {
  border-color: transparent;
  background-color: transparent;
}

.right {
  margin-left: 100pc;
}

.bottom {
  width: 100%;
  display: grid;
  grid-area: bottom;
  grid-template-columns: 2fr 4fr 2fr;
  grid-template-areas: "c e d";
  font-size: 15px;
  border-top: 2px solid black;
  align-self: end;
}

.bottom p {
  padding: 0px;
  margin: 0px;
}

.bottom * {
  padding: 10px 20px;
}

.bottom > a {
  color: orange;
}

.foot-mail {
  width: 100%;
  border-color: black;
  margin: 0px;
  grid-area: c;
}

.foot-mobile {
  width: 100%;
  grid-area: d;
  margin: 0px;
  text-align: right;
}

.copy {
  grid-area: e;
  text-align: center;
}

@media screen and (max-width: 1050px) {
  .top-bar {
    grid-template-areas:
      "hl"
      "hr";
  }

  .title-logo {
    justify-self: center;
    border-bottom: solid;
    border-color: rgba(252, 0, 0, 0.5);
  }

  #phone-addr {
    justify-self: center;
    background-color: none;
  }
}

@media screen and (max-width: 600px) {
  #mtitle {
    font-size: 8.333vw;
  }

  #tag {
    font-size: 3.333vw;
  }

  #logo {
    width: 15vw;
    height: auto;
    align-self: center;
  }

  #phone {
    font-size: 3.333vw;
  }

  .main {
    margin: 10px 10px;
  }
}

@media screen and (max-width: 900px) {
  .bottom {
    grid-template-areas: "c" "d" "e";
    grid-template-columns: 1fr;
    padding: 0px 5px;
  }

  .bottom * {
    padding: 0px 10px;
  }

  .foot-mail {
    text-align: center;
  }

  .foot-mobile {
    text-align: center;
  }
}

.width {
  max-width: 1120px;
  margin: auto;
}

a {
  text-decoration: none;
  color: #023f1e;
}

.ahl {
  text-decoration: none;
  color: #023f1e;
  font-weight: 500;
}

.lead {
  font-size: 16px;
}

@media (min-width: 375px) {
  .navbar-expand-custom {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-custom .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-custom .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-custom .navbar-collapse {
    display: flex !important;
  }

  .navbar-expand-custom .navbar-toggler {
    display: none;
  }
}

@media (max-width: 375px) {
  .navbar-custom {
    padding: 0px 0px;
  }

  .nav-item {
    margin-left: 10px;
  }
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.navbar-toggler {
  outline: none;
  box-shadow: none;
  border: none;
}

.navbarlogo {
  display: none;
  margin-right: 20px;
}
