body {
	margin: 0;
  }

  .loading-bg {
	height: 100%;
	width: 100%;
	text-align: center;
	position: fixed;
	z-index: 1001;
	top: 0;
  }

  .loading-curtain {
	position: absolute;
	width: 100%;
	height: 100%;
	/* background: rgb(255 255 255 / 50%); */
	background: rgb(255 255 255 / 0%);
  }

  .loading-title {
	position: relative;
	max-width: 800px;
	height: 52%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding: 0 20px;
  }

  .loading-title img {
	width:auto;
	height:auto;
	max-width:100%;
	max-height:100%;
  }

  .loading-text {
	font-size: 1.3rem;
	font-weight: 600;
	color: #091138;
	position: relative;
  }

  .loading-text img {
	width:auto;
	height:auto;
	max-width:100%;
	max-height:100%;
  }

  .loading-text span {
	display: inline-block;
	margin: 0 .3em;
	animation-name: loading;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-iteration-count: 1;
	height: 100%;
  }


  .loading-text span:nth-child(2) {
	animation-delay: .3s;
  }
  .loading-text span:nth-child(3) {
	animation-delay: .6s;
  }
  .loading-text span:nth-child(4) {
	animation-delay: .9s;
  }
  .loading-text span:nth-child(5) {
	animation-delay: 1.2s;
  }
  .loading-text span:nth-child(6) {
	animation-delay: 1.5s;
  }
  .loading-text span:nth-child(7) {
	animation-delay: 1.7s;
  }
  @keyframes loading {
	0% {
	  opacity: 0.15;
	}
	100% {
	  opacity: 0.9;
	}
  }

  .tile_container {
	  height: 100vh;
	  width: 100vw;
	  overflow: hidden;
	  position: absolute;
	  z-index: 1000;
  }

  *,
  *::before,
  *::after {
	box-sizing: border-box;
  }
  .row {
	display: flex;
	justify-content: space-between;
  }
  .row:first-child .brick {
	/* margin-top: 4px; */
	border-top: 4px solid #254c55;
  }
  .row:last-child .brick {
	/* margin-bottom: 4px; */
	border-bottom: 4px solid #254c55;
  }
  .row:nth-child(even) .brick:first-child {
	display: none;
  }
  .row:nth-child(even) .brick:last-child {
	/* margin-right: 2px; */
	border-right: 2px solid #254c55;
  }
  .row:nth-child(even)::before,
  .row:nth-child(even)::after {
	position: relative;
	content: "";
	background: #fdfdfd;
	width: 200px;
	height: 90px;
	/* border-radius: 10px; */
	/* margin: 2px; */
	border: 2px solid #254c55;
	/* box-shadow: 0 0 19px 1px #737373 inset; */

	/* background-image: linear-gradient(90deg, #fff 25%, #ddd 25%, #ddd 50%, #fff 50%, #fff 75%,#ddd 75%, #ddd ); */
	background-image: url(../img/panel_1.png);
	/* background-size: 12px 12px; */
	background-size: 250%;
  }

  .row:nth-child(even)::before {
	/* margin-left: 4px; */
	border-left: 4px solid #254c55;
  }
  .row:nth-child(even)::after {
	/* margin-right: 4px; */
	border-right: 4px solid #254c55;
  }
  .brick {
	background: #fdfdfd;
	width: 400px;
	height: 90px;
	flex-grow: 1;
	/* border-radius: 10px; */
	/* margin: 2px; */
	border: 2px solid #254c55;
	/* box-shadow: 0 0 19px 1px #737373 inset; */

	/* background-image: linear-gradient(90deg, #fff 25%, #ddd 25%, #ddd 50%, #fff 50%, #fff 75%,#ddd 75%, #ddd ); */
	/* background-image: url(../img/modelhouse/panel_1.png); */
	/* background-size: 12px 12px; */
	background-size: 100%;

  }
  .brick:last-child {
	/* margin-right: 4px; */
	border-right: 4px solid #254c55;
  }
  .brick:first-child {
	/* margin-left: 4px; */
	border-left: 4px solid #254c55;
  }

  .brick:nth-child(even) {
	/* background-image: url(../img/modelhouse/panel_3.png); */
	background-size: cover;
  }

  .brick > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .hide-s{
	opacity: 0;
	visibility: hidden;
	transition-property: opacity visibility;
  }

  @media screen and (min-width: 768px) {
	.loading-text{
	  height: 33px;
	}
  }

  @media screen and (max-width: 767px) {
	.loading-text{
	  height: 22px;
    margin-top: 30px;
	}
	.row:nth-child(even)::before,
	.row:nth-child(even)::after {
	  height: 50px;
	}
	.brick {
	  height: 50px;
	}

	.loading-title {
		justify-content: center;
		flex-flow: column;
		align-items: center;
		height: auto;
		margin-top: 30%;
	}
	.loading-title_logo {
		width: 50vw;
	}
  }

  @media only screen and (min-width: 767px) and (max-width: 1024px) {
	.loading-text{
	  height: 29px;
	}
	.row:nth-child(even)::before,
	.row:nth-child(even)::after {
	  height: 85px;
	}
	.brick {
	  height: 85px;
	}
  }

  @media screen and (max-width: 480px) {
    .loading-text span {
      height: 80%;
    }
  }