/*** FONT ***/
@font-face {
  font-family: 'Aarielle';
  src: url("../fonts/AarielleRegular.otf") format("opentype"); 
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: 'Aarielle';
  src: url("../fonts/AarielleBold.otf") format("opentype"); 
  font-style: normal;
  font-weight: 700;
}
/*** // FONT ***/
/*** ICON FONT: ***/
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?y84j24');
  src:  url('fonts/icomoon.eot?y84j24#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?y84j24') format('truetype'),
    url('../fonts/icomoon.woff?y84j24') format('woff'),
    url('../fonts/icomoon.svg?y84j24#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-linkedin:before {
  content: "\eac9";
}
/*** //ICON FONT ***/

* {
  box-sizing: border-box;
}
body {
  font-family: 'Aarielle';  
  font-size: 18px;
  margin: 0;
}
.container {
  width: 100vw;
  height: 100vh;
  background: rgba(246,246,243,1);
  opacity: 1;
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
}
.left, .right {
  width: 49vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.image {
  width: 100%;
  height: 100%;
  min-height: 50vh;
  min-width: 49vw;
  background: url("../images/rebekkastoffel_ux_ui_design_freelance_zurich.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 1;
  overflow: hidden;
}
.right {
  padding:8vh 8vw;
  align-content: center;
}
.content {
  opacity: 1;
  overflow: hidden;
}
.title {
  width: 100%;
  color: rgba(31,28,28,1);
  font-weight: Bold;
  font-size: 1.8rem;
  opacity: 1;
  text-align: left;
}
h2, h3 {
  width: 100%;
  color: rgba(31,28,28,1);
  font-weight: 500;
  font-size: 1rem;
  opacity: 1;
  text-align: left;
}
.btn-group {
  width: 100%;
  height: auto;
  position: relative;
  opacity: 1;
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
}
.btn-primary, .btn-default {
  width: 100%;
  height: 44px;
  padding: 12px 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: Bold;
  text-decoration: none;
  opacity: 1;
  border-radius: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  overflow: hidden;
  display: inline-block;
  position: relative;
}
.btn-primary {
  color: rgba(246,246,243,1);  
  background: rgba(31,28,28,1);
}
.btn-default {
  color: rgba(31,28,28,1);
  background: rgba(246,246,243,1);
  border: 1px solid rgba(31,28,28,1);
}
.btn-default:hover .icon, .icon::before {
  text-indent: 0 !important;
}
.btn-primary:hover, .btn-default:hover {
  transition: all 0.2s linear 0s;
  &:before {
    content: "\ea3c";
    font-family: icomoon;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 16px;
    top: 0;
    opacity: 0;
    height: 100%;
    width: 40px;
    transition: all 0.1s linear 0s;
  }
  &:hover {
    text-indent: -20px;
    &:before {
      opacity: 1;
      text-indent: 0px;
    }
  }
}


@media screen and (max-width: 980px) {
  .container {
    flex-direction: column;
  }
  .left, .right {
    width: 100vw;
    min-height: 50vh;
    height: auto;
  }
  .btn-group {
    flex-flow: column wrap;
  }
}

@media screen and (min-width: 981px) and (max-width: 1440px) {
  .btn-group {
    flex-flow: column wrap;
  }
}

