/* YIH v2022 */

/* Silka from www.atipofoundry.com/ */
@font-face {
  font-family: 'Silka';
    src: url('../fonts/Silka-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal; }
@font-face {
  font-family: 'Silka-SemiBold';
    src: url('../fonts/Silka-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal; }
@font-face {
  font-family: 'Silka-Bold';
    src: url('../fonts/Silka-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal; }

* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
html {
  margin: 0; 
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: 'Silka', 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}
h1 {
  font-family: 'Silka-SemiBold', 'Poppins', sans-serif;
  font-size: 56px;
  background-color: inherit;
  color: #080743;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
p {
  font-size: 18px;
  background-color: inherit;
  line-height: 150%;
  color: #6D6D83;
  margin: 30px 0;
}
.logo {
  display: block;
  margin: 0 auto 30px auto;
}
.desc {
  padding-bottom: 20px;
}
.button {
  transition: 0.1s;
  /*background-color: #EC5E36;*/
  background-color: #fff;
  border: 1px solid #B2B2C6;
  color: #080743;
  padding: 15px 48px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 17px;
  font-family: 'Silka-SemiBold', 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 14px;
  box-shadow: 0px 1px 2px 0px rgba(8, 7, 67, 0.1);
}
.button:hover {
  background: #fff;
  border: 1px solid #6D6D83;
  box-shadow: 0px 1px 2px 0px rgba(8, 7, 67, 0.15);
}
.small {
  margin: 0;
  padding: 10px 0 0 0;
  font-size: 12px;
  background-color: inherit;
  color: #999;
}
.content {
  text-align: center;
  max-width: 40em;
  margin: 0 auto;
  padding: 4em 2em;
}
.content-inner {
  width: 100%;
}
.illustration {
  background-color: #F3F8FB;
  background-image: url('../images/aside.svg');
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  background-color: #93D4E0;
}

/* Responsive layout: one-col for small, two-col for large resolutions */
@media (min-width: 1100px) {
  .content {
    text-align: left;
    align-items: center;
    padding: 8em;
    max-width: 400em;
  }
  .container {
  	display: -ms-flex;
  	display: -webkit-flex;
  	display: flex;
  }
  .container > .col {
    flex: 50%;
  	align-self: stretch;
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 6em;
  }
  .illustration {
    color: inherit;
    background-color: #F3F8FB;
    background-image: url('../images/aside.svg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    min-height: 500px !important;
  }
}

/* Animate with a simple fade in */
.animated-2s {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-3s {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
