:root {
  --lane-width: 1084px;
  --lane-padding: 30px;
  --top-header-height: 40px;
  --header-big-height: 150px;
  --header-small-height: 60px;
  --footer-height: 250px;
  --image-height: 400px;
  --color-p1: #74A0CA;
  --color-p2: #5EBFBC;
  --color-c1: #FFFFFF;
  --color-c2: #646363;
  --color-c3: #eceee7;
  --color-c4: #6b9cc6;
  --color-c5: #87add1;
  --color-c6: #909090;
  --color-c7: #f5f6f6;
  --color-c8: #e0e0e0;
}

* {
  width: 100%;
  margin: 0px;
  box-sizing:border-box;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  background-color: var(--color-c1);
  color: var(--color-c6);
  font-family: Figtree;
  font-size: 20px;
}

.figtree-roman {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.large-container {
  width: 100%;
  display: flex;
}

.lane-container {
  max-width: calc(var(--lane-width) - var(--lane-padding) - var(--lane-padding));
  padding: 0px var(--lane-padding);
  display: flex;
  flex-direction: row;
}

.vertical {
  flex-direction: column;
}

.flexible-spacer {
  flex: 1 1;
}

.alt-background {
  background-color: var(--color-c7)
}

.top-header {
  height: var(--top-header-height);
  align-items: center;
  background-color: var(--color-p1);
}

.top-header-text {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.sticky-header {
  position: sticky;
  top: 0px;
}

.menu {
  position: absolute;
  height: 150px;
  background-color: white;
  transition: 0.4s;
}

.menu-bar {
  flex: 0 0;
  display: flex;
  flex-direction: row;
}

.menu-logo-text {
  position: absolute;
  width: unset;
  height: calc(var(--header-big-height) - 40px);
  margin: 20px 0px;
  opacity: 1;
  transition: 0.4s;
}

.menu-logo {
  position: absolute;
  width: unset;
  height: calc(var(--header-big-height) - 67px);
  margin: 20px 0px;
  opacity: 0;
  transition: 0.4s;
}

.menu-item {
  flex: 0 0;
  margin: 20px;
  color: var(--color-c4);
  align-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.menu-icon {
  margin: 13px;
}

.menu-marker-hidden {
  height: 3px;
  width: 0%;
  justify-self: center;
  background-color: var(--color-c4);
  transition: 0.2s;
}

.menu-marker-visible {
  height: 3px;
  width: 100%;
  justify-self: center;
  background-color: var(--color-c4);
  transition: 0.2s;
}

.drop-down-menu {
  position: absolute;
  height: 340px;
  flex-direction: column;
  background-color: var(--color-c4);
  color: white;
}

.drop-down-menu-item {
  flex: 0 0;
  padding: 20px 50px;
  border-bottom: 1px solid var(--color-c8);
  color: var(--color-c8);
  align-content: center;
  text-decoration: none;
}

.drop-down-btn {
  display: none;
  position: absolute;
  right: 15px;
  top: 13px;
  width: 35px;
  cursor: pointer;
}

.drop-down-close-btn {
  display: flex;
  width: 40px;
}

.banner-img {
  height: 600px;
  width: 100%;
  object-fit: cover;
}

.title-1 {
  margin: 60px 0px 0px 0px;
  font-size: 250%;
}

.title-2 {
  font-size: xx-large;
  color: var(--color-c4);
}

.text {
  margin: 30px 0px 0px 0px;
}

.text-li {
  margin: 15px 0px 0px 0px;
}

.seperation-text {
  width: unset;
  margin: 100px 240px 0px 240px;
  text-align: center;
  font-size: xx-large;
  color: var(--color-c4);
}

.topic-container {
  height: 600px;
}

.topic-img-container {
  flex: 12 12;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  -webkit-align-content: center;
}

.topic-img {
  height: var(--image-height);
  width: var(--image-height);
  margin: 80px;
  border-radius: 200px;
}

.topic-text-container {
  margin: 50px 0px;
  flex: 7 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.topic-text {
  line-height: 1.5;
}

.topic-title {
  margin: 15px 0px;
  font-size: x-large;
  font-weight: bold;
}

.topic-btn-container {
  margin: 20px 0px;
  display: flex;
  font-size: medium;
}

.topic-btn {
  width: unset;
  padding: 15px;
  background-color: var(--color-c4);
  text-decoration: none;
  color: var(--color-c1);
}

.main-content-col {
  flex: 0 0 calc(var(--lane-width) - var(--lane-padding) - var(--lane-padding));
  display: flex;
  flex-wrap: wrap;
  color: var(--color-c6);
}

.main-col {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.text-1 {
  margin: 30px 0px 0px 0px;
  font-weight: bold;
}

.text-2 {
  margin: 7px 0px 0px 0px;
}

.text-last {
  margin: 0px 0px 70px 0px;
}

.map {
  margin-top: 50px;
  width: 600px;
}

.table-container {
  margin: 30px 0px 50px 0px;
}

.table {
  width: 100%;
  margin-bottom: 30px;
  border-spacing: 0px;
  background-color: var(--color-c7);
}

.th {
  width: 55%;
  padding: 15px;
  background-color: var(--color-c4);
  color: var(--color-c1);
  text-align: left;
}

.th-price {
  width: 45%;
  text-align: right;
}

.td {
  width: 55%;
  padding: 15px;
  border-bottom: 1px solid var(--color-c8);
  background-color: var(--color-c7);
  text-align: left;
}

.td-price {
  width: 45%;
  text-align: right;
}

.td-partner-img {
  width: 200px;
  text-align: center;
  border-bottom: 20px solid var(--color-c1);
}

.td-partner-text {
  width: 400px;
  text-align: left;
  border-bottom: 20px solid var(--color-c1);
}

.partner-img {
  height: 150px;
  width: 150px;
  margin: 10px;
  border-radius: 200px;
}

.partner-link {
  text-decoration: none;
  color: var(--color-c6);
}

.footer-container {
  flex-direction: row;
}

.footer-logo {
  width: unset;
  height: calc(var(--footer-height) - 120px);
  margin: 35px 45px 50px 0px;
}

.footer-text {
  flex: 5 1;
  margin: 60px 10px;
}

.footer-link {
  text-decoration: none;
  color: var(--color-c6);
}

.menu_ {
  display: flex;
  color: var(--color-c4);
}

.menu-btn_ {
  width: 40px;
  display: none;
  align-content: center;
  cursor: pointer;
}

.header_ {
  position: absolute;
  height: var(--header-big-height);
  width: 100%;
  background-color: var(--color-c1);
  display: flex;
  transition: 0.4s;
}

.header-spacer_ {
  flex: auto;
}

.header-content_ {
  padding: 0px 30px;
  flex: 0 0 calc(var(--lane-width) - var(--lane-padding) - var(--lane-padding));
  display: flex;
}

.main_ {
  display: flex;
}

.main-spacer_ {
  flex: auto;
}

.main-content_ {
  padding: 0px 30px;
  flex: 0 0 calc(var(--lane-width) - var(--lane-padding) - var(--lane-padding));
  color: var(--color-c6);
}

.main-content-col_ {
  flex: 0 0 calc(var(--lane-width) - var(--lane-padding) - var(--lane-padding));
  display: flex;
  color: var(--color-c6);
}

.main-col_ {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.topic-gray_ {
  height: 600px;
  background-color: var(--color-c7);
  display: flex;
  color: var(--color-c6);
}

.topic-white_ {
  height: 600px;
  background-color: var(--color-c1);
  display: flex;
  color: var(--color-c6);
}

.topic-spacer_ {
  flex: auto;
}

.topic-content_ {
  padding: 0px 30px;
  flex: 0 0 calc(var(--lane-width) - var(--lane-padding) - var(--lane-padding));
  display: flex;
}



.xxx_ {
  padding: 7px 0px;
  vertical-align: top;
}

.footer {
  background-color: var(--color-c7);
  display: flex;
  font-family: Figtree;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.5;
  color: var(--color-c2);
}

.footer-spacer {
  flex: auto;
}

.footer-content {
  padding: 0px 30px;
  flex: 0 0 calc(var(--lane-width) - var(--lane-padding) - var(--lane-padding));
  display: flex;
}



.footer-adr {
  flex: 5 1;
  margin: 60px 10px;
}

.footer-tel {
  flex: 5 1;
  margin: 60px 10px;
}

.footer-time {
  flex: 5 1;
  margin: 60px 10px;
}



.your-class {
  background-image: url( "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 200'%3E%3Cpath d='M10 10h123v123H10z'/%3E%3C/svg%3E" );
}

@keyframes shrink {
  from {height: var(--top-header-height);}
  to {height: 0px;}
}

@keyframes grow {
  from {height: 0px;}
  to {height: var(--top-header-height);}
}

@media only screen and (max-width: 1000px) {
  .top-header {
    animation-name: shrink;
    animation-duration: 0.2s;
    animation-timing-function: linear;
    animation-fill-mode: both;
  }

  .top-header-text {
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  :root {
    --lane-width: 390px;
    --lane-padding: 10px;
  }
  
  .menu-bar {
    display: none;
  }

  .menu-btn {
    display: flex;
    height: 100px;
    color: transparent;
    align-self: center;
  }
  
  .drop-down-btn {
    display: flex;
  }
  
  .banner-img {
    height: 400px;
  }

  .title-1 {
    margin: 60px 0px 30px 0px;
    font-size: 180%;
    }
  
  .seperation-text {
    margin: 60px 0px 0px 0px;
  }

  .topic-container {
    height: unset;
  }

  .topic-img-container {
    flex: 0;
  }

  .team-container {
    flex-direction: column;
  }

  .topic-img {
    width: 0px;
    margin: 0px;
  }

  .team-img {
    height: 200px;
    width: 200px;
    margin-top: 70px;
  }

  .topic-text-container {
    text-align: center;
  }

  .topic-btn-container {
    justify-content: center;
  }

  .map {
    margin-top: 0px;
    margin-bottom: 60px;
    width: 350px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    height: 0px;
    margin: 0px;
  }
  
  .footer-text {
    margin: 30px 10px;
  }
}