a {
  color: #8d691c;
  text-decoration: none;
}

.container {
  display: block;
  overflow: hidden;
  height: 100vh;
  max-height: 100vh;
  max-width: 100vw;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.column {
  height: 100vh;
  padding-right: 0px;
  padding-left: 0px;
  background-color: transparent;
}

.column.cleft {
  background-image: url('../images/bckg_l.jpg');
  background-position: 100% 0%;
  background-size: cover;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.column.cleft.overlay {
  background-image: none;
}

.column.cright {
  padding-right: 0px;
  padding-left: 0px;
  background-image: url('../images/bckg_r.jpg');
  background-position: 0% 0%;
  background-size: cover;
}

.column.cright.overlay {
  background-image: none;
}

.body {
  overflow: hidden;
  height: 100vh;
  max-height: 100vh;
  background-color: #000;
  font-family: mostra-nuova, sans-serif;
}

.title {
  position: absolute;
  left: 0%;
  top: 45%;
  right: 0%;
  bottom: auto;
  z-index: 1;
  width: 40%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.heading {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #8d691c;
  font-size: 4vw;
  line-height: 1em;
  font-weight: 400;
  text-transform: uppercase;
}

.nameblock {
  width: 100%;
  margin-top: 72vh;
  text-align: center;
  cursor: crosshair;
}

.nameblock.nright {
  padding-left: 30%;
}

.nameblock.nleft {
  padding-right: 30%;
}

.name {
  color: #fff;
  font-size: 2em;
  line-height: 1em;
  font-weight: 300;
}

.name.gold {
  margin-bottom: 30px;
  color: #8d691c;
  font-size: 2.4em;
  line-height: 0.8em;
  font-weight: 400;
}

.link {
  width: 10ch;
  margin-top: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 2px solid #8d691c;
  color: #8d691c;
  font-size: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
}

.logo {
  position: absolute;
  left: 0%;
  top: 3vh;
  right: 0%;
  bottom: auto;
  z-index: 1;
  width: 5vw;
  height: 5vw;
  margin-right: auto;
  margin-left: auto;
  background-image: url('../images/logo.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
}

.contact {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  width: 325px;
  height: 80px;
  margin-right: auto;
  margin-left: auto;
  border-style: solid;
  border-width: 2px 2px 0px;
  border-color: #8d691c;
  background-color: transparent;
  -webkit-transition: background-color 200ms ease, color 200ms ease;
  transition: background-color 200ms ease, color 200ms ease;
  color: #8d691c;
  font-size: 1.4em;
  line-height: 36px;
  font-weight: 400;
  text-align: center;
}

.contact:hover {
  background-color: #8d691c;
  color: #fff;
}

.contact.q {
  display: none;
}

.overlaycont {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  padding: 12% 8%;
  background-color: hsla(0, 0%, 100%, 0.95);
}

.overlaycont.infobeata {
  display: block;
}

.overlaycont.infobartosz {
  display: block;
}

.text {
  font-family: 'PT Sans', sans-serif;
  font-size: 1em;
}

.socialprofiles {
  margin-top: 14px;
  color: #8d691c;
  font-size: 1.2em;
  text-align: center;
  text-transform: uppercase;
}

.socialprofiles.socialright {
  padding-left: 30%;
}

.socialprofiles.socialleft {
  padding-right: 30%;
}

.columns {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
}

.columns-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flexcontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flexchild {
  width: 50vw;
  height: 100vh;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.flexchild.beata {
  position: relative;
  float: left;
  background-image: url('../images/bckg_l.jpg');
  background-position: 100% 0%;
  background-size: cover;
  text-align: left;
}

.flexchild.bartosz {
  position: relative;
  float: right;
  background-image: url('../images/bckg_r.jpg');
  background-position: 0% 0%;
  background-size: cover;
}

.flexchild.infobartosz {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  z-index: 999;
  display: none;
}

.flexchild.infobeata {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 999;
  display: none;
}

.gridbox {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.icons {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 6px;
  margin-left: 6px;
  float: none;
  background-image: url('../images/ico_t.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.icons.sm_t {
  display: none;
  background-image: url('../images/ico_t.png');
}

.icons.sm_f {
  display: none;
  background-image: url('../images/ico_f.png');
}

.icons.sm_in {
  background-image: url('../images/ico_in.png');
}

.icons.sm_yt {
  display: none;
  background-image: url('../images/ico_yt.png');
}

.icons.sm_mail {
  background-image: url('../images/ico_mail.png');
}

.icons.title_f {
  margin-top: 8px;
  background-image: url('../images/ico_f.png');
}

.list {
  text-align: center;
}

.if {
  font-size: 0.6em;
  line-height: 18px;
}

.italic-text {
  font-style: normal;
}

@media screen and (min-width: 1280px) {
  .container {
    overflow: hidden;
  }
  .body {
    overflow: hidden;
  }
  .name {
    font-size: 2.6em;
  }
  .logo {
    width: 4vw;
    height: 4vw;
  }
  .text {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 991px) {
  .column.cleft {
    height: 50vh;
  }
  .column.cright {
    height: 50vh;
  }
  .nameblock.nright {
    margin-top: 72vh;
    padding-left: 0%;
  }
  .nameblock.nleft {
    padding-right: 0%;
  }
  .logo {
    top: 28px;
    bottom: auto;
  }
  .overlaycont.infobeata {
    z-index: 99;
    padding: 10%;
  }
  .overlaycont.infobartosz {
    z-index: 99;
    padding: 10%;
  }
  .socialprofiles.socialright {
    padding-left: 0%;
  }
  .socialprofiles.socialleft {
    padding-right: 0%;
  }
  .flexchild.beata {
    background-image: url('../images/bckg_l_m.jpg');
  }
  .flexchild.bartosz {
    background-image: url('../images/bckg_r_m.jpg');
  }
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 3vw;
  }
  .nameblock.nright {
    margin-top: 25vh;
  }
  .nameblock.nleft {
    margin-top: 25vh;
  }
  .contact {
    width: 200px;
    height: 66px;
    font-size: 1em;
    line-height: 22px;
  }
  .flexchild.beata {
    background-image: url('../images/bckg_l_m.jpg');
  }
  .flexchild.bartosz {
    background-image: url('../images/bckg_r_m.jpg');
  }
  .if {
    line-height: 14px;
  }
}

@media screen and (max-width: 479px) {
  .title {
    top: 10%;
  }
  .heading {
    font-size: 6vw;
  }
  .nameblock.nright {
    position: absolute;
    left: -100%;
    top: auto;
    right: 0%;
    bottom: 28%;
    z-index: 9999;
    width: 100vw;
    min-width: 200%;
  }
  .nameblock.nleft {
    position: absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 48%;
    z-index: 999;
    display: block;
    width: 100vw;
    min-width: 100vw;
    margin-right: auto;
    margin-left: auto;
  }
  .name {
    width: 100vw;
    font-size: 1.6em;
  }
  .link {
    width: 10ch;
  }
  .socialprofiles.socialright {
    position: absolute;
    left: -100%;
    top: auto;
    right: 0%;
    bottom: 20%;
    z-index: 999;
    width: 100vw;
  }
  .socialprofiles.socialleft {
    position: absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 40%;
    z-index: 99;
    width: 100vw;
    min-width: 100%;
  }
  .flexchild.beata {
    background-image: url('../images/bckg_l_m.jpg');
  }
  .flexchild.bartosz {
    overflow: visible;
    background-image: url('../images/bckg_r_m.jpg');
  }
  .flexchild.infobartosz {
    z-index: 999999;
    width: 100vw;
  }
  .flexchild.infobeata {
    z-index: 999999;
    width: 100vw;
  }
}

