@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(82, 149, 134, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.secwrapper {
  display: flex;
  flex-direction: column;
}

h1,
h2 {
  font-weight: 400;
  font-size: 1.2rem;
}

ul li {
  list-style: none;
  line-height: 1.4;
  padding-bottom: 5px;
}

a {
  text-decoration: none;
}

.navwrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.navwrapper .nav .mobile i.fa-bars {
  display: block;
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 20px;
  font-size: 1.5rem;
  z-index: 100;
}
.navwrapper .nav .mobile i.fa-bars.open {
  display: none;
}
.navwrapper .nav .mobile i.fa-xmark {
  display: none;
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 20px;
  font-size: 1.5rem;
  z-index: 100;
}
.navwrapper .nav .mobile i.fa-xmark.open {
  display: block;
}
.navwrapper .nav .navmenu {
  width: 100%;
}
.navwrapper .nav .navmenu ul {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #529586;
  padding-top: 0;
  opacity: 90%;
  z-index: 100;
  animation: rollup 0.5s linear;
  overflow: hidden;
}
.navwrapper .nav .navmenu ul li {
  display: inline-block;
  text-align: center;
  width: 100%;
  line-height: 0;
  border-bottom: solid 1px #fff;
  cursor: pointer;
  opacity: 0;
  animation: disappear 0.7s linear;
}
.navwrapper .nav .navmenu ul li a {
  color: #fff;
}
.navwrapper .nav .navmenu.open {
  display: block;
  width: 100%;
}
.navwrapper .nav .navmenu.open ul {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #529586;
  padding-top: 20%;
  opacity: 90%;
  z-index: 100;
  animation: dropdown 0.5s linear;
}
.navwrapper .nav .navmenu.open ul li {
  display: inline-block;
  text-align: center;
  width: 100%;
  line-height: 5;
  border-bottom: solid 1px #fff;
  cursor: pointer;
  opacity: 1;
  animation: appear 0.7s linear;
}
.navwrapper .nav .navmenu.open ul li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}
.navwrapper .nav .navmenu.open ul li:not(.here):hover, .navwrapper .nav .navmenu.open ul li:not(.here):active {
  background-color: orange;
}
@keyframes dropdown {
  0% {
    height: 0;
    padding-top: 0;
  }
  100% {
    height: 100vh;
    padding-top: 20%;
  }
}
@keyframes rollup {
  0% {
    height: 100vh;
    padding-top: 20%;
  }
  100% {
    height: 0;
    padding-top: 0;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
    line-height: 0;
  }
  100% {
    opacity: 1;
    line-height: 5;
  }
}
@keyframes disappear {
  0% {
    opacity: 1;
    line-height: 5;
  }
  100% {
    opacity: 0;
    line-height: 0;
  }
}
.header {
  position: relative;
}
.header .content {
  position: absolute;
  z-index: 1;
  top: 5%;
  left: 50%;
  margin-top: 5px;
  margin-left: -145px;
  width: 300px;
  height: 350px;
  text-align: center;
  transition: all 1000ms;
}
.header .content .title {
  font-size: 2.2rem;
  margin-top: 1rem;
}
.header .content .title img {
  width: 100%;
}
.header .content .text {
  display: none;
}

body#home .header::after {
  content: "";
  height: 40vh;
  width: 100%;
  background: url(../img/bg_grid4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 50%;
  display: block;
  transition: all 1000ms;
  border-top: 2px solid #3e7468;
  border-bottom: 3px solid orange;
}

body:not(#home) .header::after {
  content: "";
  height: 40vh;
  max-height: 350px;
  width: 100%;
  background: url(../img/bg_grid_wo_logo.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  filter: brightness(70%);
  transition: all 1000ms;
  border-top: 2px solid #3e7468;
  border-bottom: 3px solid orange;
}

.card-container {
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 20px;
  place-items: center;
  line-height: 1.6;
}
.card-container .card_1 {
  background-image: url(../img/gears/gears_blue.png);
  background-repeat: no-repeat;
  background-position: 50% 70%;
  background-size: cover;
}
.card-container .card_2 {
  background-image: url(../img/gears/gears_orange.png);
  background-repeat: no-repeat;
  background-position: 50% 70%;
  background-size: cover;
}
.card-container .card_3 {
  background-image: url(../img/wheelchairs/roadsign.jpg);
  background-repeat: no-repeat;
  background-position: 25% 50%;
  background-size: cover;
}
.card-container .card_4 {
  background-image: url(../img/birds/bird-pexels-jana.jpg);
  background-repeat: no-repeat;
  background-position: 60% 80%;
  background-size: cover;
}
.card-container .card {
  color: #fff;
  padding: 10rem 0 0;
  min-width: 350px;
  max-width: 22ch;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 500ms ease;
}
.card-container .card .card-content {
  --padding: 1.5rem;
  padding: var(--padding);
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgb(0, 0, 0));
  transform: translateY(65%);
  transition: transform 500ms ease;
}
.card-container .card .card-content > *:not(.card-title) {
  opacity: 0;
}
.card-container .card .card-content p {
  margin-bottom: 8px;
}
.card-container .card:hover, .card-container .card:focus-within, .card-container .card:active {
  transform: scale(1.05);
}
.card-container .card:hover .card-title::after, .card-container .card:focus-within .card-title::after, .card-container .card:active .card-title::after {
  transform: scaleX(1);
}
.card-container .card:hover .card-content, .card-container .card:focus-within .card-content, .card-container .card:active .card-content {
  transform: translateY(0);
  transition-delay: 500ms;
}
.card-container .card:hover .card-content > *, .card-container .card:focus-within .card-content > *, .card-container .card:active .card-content > * {
  opacity: 1;
  transition: opacity 500ms linear;
  transition-delay: 1000ms;
}
.card-container .card .card-title {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 30px;
}
.card-container .card .card-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: calc(var(--padding) * -1);
  height: 4px;
  width: calc(100% + var(--padding));
  background: #f5d442;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms ease;
}
.card-container .card .card-body {
  color: #fff;
}
.card-container .card .button {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #20593c;
  padding: 0.5em 1.25em;
  border-radius: 0.25rem;
}
.card-container .card .button:hover, .card-container .card .button:focus {
  background-color: #529586;
}
.card-container .leader {
  background-color: #78c0b6;
  padding: 15px;
  width: 100%;
}
.card-container .leader h1,
.card-container .leader h2 {
  width: 100%;
  border-bottom: solid 1px #fff;
  margin-bottom: 8px;
}
.card-container .leader img {
  width: 100%;
  margin-top: 10px;
  margin-left: 20px;
}
.card-container .leader hr {
  margin: 8px 0;
  height: 1px;
  border: none;
  background-color: #fff;
}

body#home section .card-container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
body#home section.about {
  margin: 10px 20px 30px 20px;
}
body#home section.about .grid-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(82, 149, 134, 0.7);
}
body#home section.about .grid-2 .center img {
  width: 80%;
  margin: 20px 0;
}
body#home section.about .grid-2 .txt {
  width: 80%;
  margin: 15px 20px 15px 0;
  color: rgba(18, 35, 35, 0.9);
}
body#home section.about .grid-2 .txt h3 {
  margin-bottom: 5px;
}

body:not(#home) section .card-container {
  padding: 4rem 1rem;
}
body:not(#home) section.about .grid-2 .center img {
  width: 100%;
  margin: 20px 0;
}

.grid-3,
.grid-2 {
  grid-template-columns: 1fr;
}

.center {
  text-align: center;
  margin: auto;
}
.center p {
  text-align: left;
}

.bg-light {
  background: #f4f4f4;
  color: #122323;
}

.bg-dark {
  background: #122323;
  color: #f4f4f4;
}

footer {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer p {
  font-size: 0.85rem;
  margin: 0;
}
footer p.top {
  margin-bottom: 18px;
}
footer p.bottom {
  margin-top: 18px;
}
footer p a {
  color: #fff;
}
footer p a:hover {
  color: #f5d442;
}

section.services {
  width: 100%;
}
section.services img {
  width: 10%;
}

article.table {
  display: flex;
  flex-direction: column;
  align-items: center;
}
article.table p {
  margin-bottom: 10px;
}

body#home section.services {
  background-color: rgba(82, 149, 134, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

body:not(#home) .table h1,
body:not(#home) .table h2 {
  text-align: left;
  border-bottom: 1px solid #fff;
}
body:not(#home) .table p {
  width: 90%;
}
body:not(#home) .table h2,
body:not(#home) .table ul {
  align-self: stretch;
}
body:not(#home) .table h2 {
  margin: 20px 5% 15px 5%;
}
body:not(#home) .table ul {
  margin: -5px 5% 15px 5%;
}
body:not(#home) .table ul li {
  font-size: 0.9rem;
}
body:not(#home) .table table {
  width: 90%;
  margin-bottom: 15px;
}
body:not(#home) .table tr td {
  padding: 4px 6px;
  color: rgba(18, 35, 35, 0.9);
  border: solid 1px #fff;
}

body#business section.services {
  background-color: rgba(0, 159, 183, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
body#business .card-container .leader {
  background-color: rgba(0, 53, 84, 0.2);
}
body#business .card-container .leader a {
  color: #f5d442;
}
body#business .card-container .leader a:hover {
  color: #f56642;
}
body#business .card-container .leader p.img_bg {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
body#business .card-container .leader p.download {
  text-align: right;
  margin-top: 15px;
}
body#business .card-container .leader p.download i {
  font-size: 1.2rem;
}
body#business .card-container .leader.item-1 img {
  width: 55%;
  padding: 4px 0;
}
body#business .card-container .leader.item-2 img {
  width: 90%;
  padding: 12px 0;
}
body#business .card-container .leader span {
  color: #f5d442;
}
body#business .card-container .leader table {
  margin: 7px auto;
  width: 100%;
}
body#business .card-container .leader table tr td {
  font-size: 0.9rem;
}
body#business .card-container .leader table tr.td2 td,
body#business .card-container .leader table tr.td3 td {
  width: 33%;
}
body#business .card-container .leader ul.business {
  margin-top: 10px;
  padding-left: 15px;
}
body#business .card-container .leader ul.business li {
  list-style: circle;
  font-size: 1rem;
}
body#business article.table {
  background-color: rgba(0, 53, 84, 0.2);
}
body#business article.table table#vehicles tr td img {
  width: 100%;
  height: auto;
}
body#business article.table table#equipment tr td {
  text-align: center;
  vertical-align: bottom;
}
body#business article.table table#equipment tr td img {
  max-width: 100px;
}
body#business article.table table#equipment tr td:nth-child(1) img {
  max-height: 378px;
  width: auto;
}
body#business article.table tr td {
  width: 50%;
}
body#business article.table tr td p {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px;
  font-size: 0.9rem;
  text-align: left;
}
body#business article.table tr:nth-child(1) td img {
  width: 100%;
}

body#caretaxi section.services {
  background-color: rgba(102, 184, 58, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
body#caretaxi .card-container .leader ul {
  padding-left: 25px;
}
body#caretaxi .card-container .leader ul li {
  list-style: circle;
}
body#caretaxi .card-container .leader img {
  width: 100%;
}
body#caretaxi article.table {
  background-color: rgba(36, 116, 98, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  padding-bottom: 50px;
}
body#caretaxi article.table .content_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body#caretaxi article.table .content_wrap img {
  align-self: flex-end;
  width: 50%;
  margin: 20px 30px 0;
  border: solid 1px #fff;
}
body#caretaxi article.table tr:nth-child(even) {
  background-color: rgba(147, 230, 135, 0.8);
}
body#caretaxi article.table tr:nth-child(odd) {
  background-color: rgba(45, 95, 70, 0.6);
}
body#caretaxi article.table tr:nth-child(odd) td {
  color: #fff;
}
body#caretaxi article.table tr td {
  width: 50%;
}
body#caretaxi .card-container .leader {
  background-color: rgba(36, 116, 98, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

body#fare section.services {
  background-color: rgba(127, 216, 190, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
body#fare article.table {
  background-color: rgba(8, 126, 139, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
body#fare article.table ul li,
body#fare article.table h2 {
  color: rgba(18, 35, 35, 0.9);
}
body#fare article.table .content_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body#fare article.table .content_wrap img {
  align-self: flex-end;
  width: 55%;
  margin: 20px 30px 0 0;
}
body#fare article.table tr:nth-child(even) {
  background-color: rgba(244, 224, 77, 0.4);
}
body#fare article.table tr:nth-child(odd) {
  background-color: rgba(218, 204, 62, 0.3);
}
body#fare article.table tr:nth-child(1) {
  background-color: rgba(81, 90, 71, 0.3);
}
body#fare article.table tr:first-child td {
  color: #fff;
}
body#fare article.table tr td:first-child {
  width: 40%;
}
body#fare .card-container .leader {
  background-color: rgba(8, 126, 139, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  color: rgba(18, 35, 35, 0.9);
}

body#company section.services {
  background-color: rgba(249, 220, 92, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
body#company article.table {
  background-color: rgba(45, 95, 70, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
body#company article.table .content_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body#company article.table .content_wrap img {
  align-self: flex-end;
  width: 55%;
  margin: 20px 30px 0 0;
}
body#company article.table tr:nth-child(even) {
  background-color: rgba(147, 230, 135, 0.6);
}
body#company article.table tr:nth-child(odd) {
  background-color: rgba(102, 184, 58, 0.4);
}
body#company article.table tr td:first-child {
  width: 40%;
}
body#company article table#org tr td {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
}
body#company article table#org tr td img {
  width: 85px;
  max-height: 30px;
  margin: 2px auto 2px 10px;
}
body#company .card-container {
  display: flex;
}
body#company .card-container .leader {
  background-color: rgba(45, 95, 70, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
body#company .card-container .leader img {
  max-width: 550px;
  margin-left: 8px;
}

body#sitemap .container section.services {
  min-height: calc(100vh - 698px);
  background-color: rgba(139, 0, 139, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
body#sitemap .container .card-container .leader {
  background-color: rgba(164, 14, 76, 0.5);
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-around;
  padding-bottom: 50px;
}
body#sitemap .container .card-container .leader ul li {
  display: block;
  width: 130px;
  padding: 24px 0 5px 5px;
  border-bottom: dotted 1px #fff;
}
body#sitemap .container .card-container .leader ul li a {
  color: #fff;
}
body#sitemap .container .card-container .leader ul li a:hover {
  color: #f5d442;
}

body#privacy article.table {
  background-color: rgba(125, 21, 56, 0.6);
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  padding: 50px 0;
}

/*********************** PC Screen ***********************/
@media (min-width: 980px) {
  body#home .header::after {
    background-position: center 45%;
  }
}
@media (min-width: 680px) {
  .navwrapper {
    height: 50px;
    background-color: #529586;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a9e5c9' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
    border-bottom: 2px solid #3e7468;
  }
  .navwrapper .nav {
    max-width: 1000px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .navwrapper .nav .mobile {
    display: none;
  }
  .navwrapper .nav .navmenu,
  .navwrapper .nav .navmenu.open {
    display: flex;
  }
  .navwrapper .nav .navmenu ul,
  .navwrapper .nav .navmenu.open ul {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    height: 50px;
    margin-left: 20px;
    animation: none;
  }
  .navwrapper .nav .navmenu ul li,
  .navwrapper .nav .navmenu.open ul li {
    opacity: 1;
    display: inline-block;
    width: 20%;
    line-height: 3;
    border-bottom: none;
    text-align: center;
    animation: none;
  }
  .navwrapper .nav .navmenu ul li:nth-child(1),
  .navwrapper .nav .navmenu.open ul li:nth-child(1) {
    width: 70px;
  }
  .navwrapper .nav .navmenu ul li:nth-child(2),
  .navwrapper .nav .navmenu.open ul li:nth-child(2) {
    width: 100px;
  }
  .navwrapper .nav .navmenu ul li:nth-child(3),
  .navwrapper .nav .navmenu.open ul li:nth-child(3) {
    width: 100px;
  }
  .navwrapper .nav .navmenu ul li a:not(.here):hover,
  .navwrapper .nav .navmenu ul li a:not(.here):focus,
  .navwrapper .nav .navmenu ul li a:not(.here):active,
  .navwrapper .nav .navmenu.open ul li a:not(.here):hover,
  .navwrapper .nav .navmenu.open ul li a:not(.here):focus,
  .navwrapper .nav .navmenu.open ul li a:not(.here):active {
    color: orange;
  }
  .secwrapper {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .secwrapper section.services,
  .secwrapper section.about {
    align-self: center;
  }
  .header .content {
    top: 10%;
    margin-top: 105px;
  }
  .header .text {
    line-height: 1.7;
    margin-top: 1rem;
  }
  section.services {
    margin-top: 50px;
    max-width: 1000px;
    position: relative;
  }
  section.about {
    max-width: 1000px;
  }
  section.about .grid-2 {
    flex-direction: row;
  }
  section.about .grid-2 .center {
    width: 70%;
  }
  .grid-3 {
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: baseline;
    grid-template-areas: "areaA areaB" "areaC areaB";
  }
  .grid-2 .item-1 {
    grid-area: areaA;
  }
  .grid-2 .item-2 {
    grid-area: areaB;
  }
  .grid-2 .item-3 {
    grid-area: areaC;
  }
  body#home section.services .card-container {
    padding: 60px;
  }
  body#home section.about .grid-2 {
    flex-direction: row;
  }
  body:not(#home) .header::after {
    max-height: 280px;
    height: 30vh;
  }
  body:not(#home) .header .content .title img {
    transform: translateY(-20px);
    transform: translateX(-100px);
    width: 150%;
  }
  body:not(#home) .about .grid-2 {
    grid-template-columns: 1fr;
  }
  body#business .table_wrapper {
    display: flex;
    flex-direction: row;
  }
  body#business .table_wrapper .table {
    width: 50%;
  }
  body#caretaxi article.table .content_wrap {
    flex-direction: row-reverse;
    align-items: flex-start;
    margin: 0 5%;
  }
  body#caretaxi article.table .content_wrap img {
    align-self: flex-end;
    width: 35%;
    margin: 0 20px 0 0;
  }
  body#company .grid-2 {
    grid-template-columns: 2fr;
  }
  body#company .grid-2 .leader {
    display: flex;
    flex-direction: row;
  }
  body#company .grid-2 .leader .txt {
    width: 50%;
    margin-top: -10px;
  }
  body#company .grid-2 .leader img {
    width: 45%;
    height: 45%;
    margin: auto auto auto 30px;
    align-self: center;
  }
  body#company .card-container .leader {
    width: 100%;
  }
}
@media (max-width: 679px) {
  .header .content .title img {
    margin-top: 120px;
    transform: translateX(-85px);
    width: 140%;
  }
}
/* Landscape */
@media (max-height: 500px) {
  .content .title,
  .content .text {
    display: none;
  }
  .content {
    top: 0;
  }
}/*# sourceMappingURL=style.css.map */