@font-face {
  font-family: 'SuisseBold';
  src: url('font/SuisseBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SuisseAntique';
  src: url('font/SuisseAntique.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SuisseRegular';
  src: url('font/SuisseRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


------------------------------------------------------*/



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "SuisseAntique", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #222;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  position: relative;
  text-decoration: none;
}

/* Header */
header {
  background: #fff;
  color: #222;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/*-------------------------------*/

.copyright {
    font-family: "Inter", sans-serif;
    font-size: 2vw;
    line-height: 3vw;
    margin-top: 4vw;
    padding-left: 10vw;
}

.logo-mark {
  width: 100px;
  height: 100px;
  margin-left: 10vw;
  display: inline-block;
  flex-shrink: 0;
}

/*-------------------------------*/

header h1 {
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Main */
main {
  flex: 1;
  margin: 0 auto;
  padding: 1.5rem;
}

.app-card {
  background: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-image {
  width: 300px;
  max-width: 100%;
  height: 300px;
  background: #fff;
  display: block;
  flex-shrink: 0;
}

.app-image::after {
  display: none;
}

.app-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  box-sizing: border-box;
}

.app-content {
  padding: 1rem 1.25rem 1rem 0;
  border-bottom: 1px solid #dedede;
}

.app-card:last-child .app-content {
  border-bottom: none;
}

.app-title {
  font-size: 1.5rem;
  margin-bottom: 0.01rem;
}

.app-title a {
  color: #1a1a2e;
  font-weight: 600;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.01em;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease-out;
}

a:hover::after {
  transform: scaleX(1);
}

.app-description {
  font-family: 'SuisseRegular';
  font-size: 0.9375rem;
  color: #555;
}

/* Footer */
footer {
  background: #fff;
  color: #999;
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
}

footer a {
  color: #7dd3fc;
}



/* Mobile: 425px and up */
@media (max-width: 425px) {

  .copyright {
    /*padding-left: 25px;*/
    font-size: 1em;
  }

  .logo-mark {
    /*padding-left: 25px;*/
  /*margin-left: 5vw;*/
  }
}



/* Tablet: 768px and up */
@media (min-width: 768px) {
  header {
    padding: 1.5rem 2rem;
  }

  .copyright {
    padding-left: 5vw;
  }

  .logo-mark {
  margin-left: 5vw;
  }



  header h1 {
    font-size: 1.5rem;
  }

  main {
    padding: 2rem;
  }

  .app-card {
    flex-direction: row;
    align-items: stretch;
    border-top: none;
  }

  .app-image {
    width: 300px;
    min-width: 300px;
    height: 300px;
    flex-shrink: 0;
  }

  .app-image img {
    width: 300px;
    height: 300px;
  }

  .app-content {
    padding: 1.25rem 1.5rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: none;
  }

  .app-title {
    font-size: 1.5rem;
  }

  .app-description {
    font-size: 1rem;
  }

  footer {
    padding: 1.25rem 2rem;
  }
}



/*------------------------------------------------------*/


/* Desktop: 1024px and up */
@media (min-width: 1024px) {
  header {
    padding: 2rem 2.5rem;
  }

  .logo {
    margin-bottom: 1rem;
  }

  header h1 {
    font-size: 1.75rem;
  }

  main {
    padding: 2.5rem;
    max-width: 960px;
  }

  .app-card {
    margin-bottom: 2rem;
    flex-direction: row;
    gap: 15px;
    border-top: none;
  }

  .app-image {
    width: 300px;
    min-width: 300px;
    height: 300px;
    flex-shrink: 0;
  }

  .app-image img {
    width: 300px;
    height: 300px;
  }

  .app-content {
    padding: 1.5rem 2rem;
    min-width: 0;
    border-bottom: none;
  }

  .app-title {
    font-size: 1.65rem;
  }

  .app-description {
    font-size: 1.0625rem;
    line-height: 1.6;
  }

  footer {
    padding: 1.5rem 2.5rem;
    font-size: 0.9375rem;
  }
}






/* -------------- link -------------- */
a {	

  text-decoration-color: black;
  text-decoration-thickness: .125em;
  text-underline-offset: 1px;

	display:inline-block;
	text-decoration: none;
	-webkit-transition: transform 0.01s; /* Safari */
  transition: transform 0.01s;
}

a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  transition: transform 0.01s ease;
}


/* -------------- underline -------------- */
.language1 a > span {
	border-bottom:0.3vw solid black;
	bottom margin: -10px;
}

.language2 a > span {
	border-bottom:0.3vw solid white;
	bottom margin: -10px;
}
/* -------------- link color -------------- */

.language1 a {
	color:black;
}

.language2 a {
	color:white;
}
/* -------------- breakable -------------- */
/* .container {
	width: 100vw;
} */

.language1 {
	position:absolute;
	left:0px;
	width:100vw;
	min-height:110%;
	overflow-x:hidden;	
	z-index:10;
	color: black;
	background-color: white;
}

.language2 {
	position:absolute;
	right:0px;
	width:100vw;
	min-height:110%;
	overflow-x:hidden;
	z-index:20;
	color:white;
	background-color:black;
  pointer-events: none;
}

.copyblock {
	position:relative;
	padding:40px 40px 40px 25px;
}

.hand {
  font-size:12vw;
  line-height:15vw;
  margin-bottom: 1vw;
  margin-top: 3vw;
  padding-left: 3vw;
  overflow: visible;
}

.description {
	font-size: 3vw;
	font-family: "SuisseRegular", sans-serif;
	text-transform: uppercase;
	padding-left: 16vw;
	line-height: 4.5vw;
	margin-bottom: 3vw;
}

.clients {
	font-size:2vw;
	line-height: 3vw;
	font-family: "SuisseRegular", sans-serif;
	text-transform: none;
	color: #505050;
	padding-left: 16vw;
	padding-right: 7vw;
	margin-bottom: 4vw;
}

.clientCopyblock-1 {
    visibility: visible;
}

.clientCopyblock-2 {
    visibility: hidden;
    display: none;
}

.bold {
		font-family: "SuisseBold", sans-serif;
}

.contact {
	font-family: "SuisseRegular", sans-serif;
  font-size:2vw;
  line-height:3vw;
  padding-left: 10vw;
}

.copyright {
	font-family: "SuisseRegular", sans-serif;
	font-size:2vw;
  line-height:3vw;
	margin-top: 4vw;
  padding-left: 5vw;
}

.logo {
 	  margin-top: 5vw;
}

svg {
  padding: 0 2vw 0.85vw 5vw;
  display: inline-block;
  vertical-align: middle;
  width: 8%;
  height: 8%;
}

/* ------------------ breakpoints ------------------ */


@media only screen and (max-width: 600px) {

.app-title {
    font-size: 1.5rem;
  }

	.description {
		font-size:5vw;
		padding-left: 6vw;
	  line-height: 7vw;
	}

	.clients {
		font-size:2.6vw;
		padding-left: 6vw;
	  line-height: 3.8vw;
	  margin-bottom: 5vw;
	}

	.clientCopyblock-2 {
		visibility: visible;
		display: contents;
	}

	.clientCopyblock-1 {
		visibility: hidden;
		display: none;
	}

	.contact {
  	font-size:2.5vw;
  	line-height:3vw;
  	padding-left: 6vw;
	}

	.logo {
  	margin-top: 8vw;
	}

	svg {
	  padding: 0vw 0 0 6vw;
	  display: inline-block;
	  vertical-align: middle;
	  width: 12%;
	  height: 12%;
	}

	.copyright {
		margin-top: 5vw;
 		font-size:2vw;
  	line-height:1.5vw;
  	padding-left: 6vw;
	}
}

/* ---------------*/

/* 600px and up */
@media only screen and (min-width: 600px) {


}

/* ---------------*/

/* 768px and up */
@media only screen and (min-width: 768px) {


} 

/* ---------------*/

/* 992px and up */
@media only screen and (min-width: 992px) {


} 

/* ---------------*/

/* 1200px and up */
@media only screen and (min-width: 1200px) {


}
