@font-face {
	font-family: 'Butler_Bold';
	src: url('../fonts/butler/Butler_Bold.otf'); 
	src: 
		local('Butler_Bold'),
		local('Butler_Bold'),
		url('../fonts/butler/Butler_Bold.otf') 
		format('opentype');
	font-weight: bold;
}

@font-face {
	font-family: 'Work Sans';
	src: url('../fonts/work-sans/WorkSans-Regular.ttf'); 
	src: 
		local('WorkSans-Regular'),
		local('WorkSans-Regular'),
		url('../fonts/work-sans/WorkSans-Regular.ttf')
		format('opentype');
}

@font-face {
	font-family: 'Work Sans';
	src: url('../fonts/work-sans/WorkSans-Bold.ttf'); 
	src: 
		local('WorkSans-Bold'),
		local('WorkSans-Bold'),
		url('../fonts/work-sans/WorkSans-Bold.ttf')
    format('opentype');
    font-weight: bold;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Work Sans', sans-serif;
}

a {
  color: #fff;
  text-decoration: none;
}

.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
}

.col {
  width: 50%;
  position: relative;
}

.col--right {
  background: #000;
  color: #fff;
}

.col-right-wrap {
  width: 40vw;
  position: absolute;
  text-align: center;
  right: 18%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.logo-img {
  max-width: 145px;
  margin-bottom: 30px;
}

.col-right-wrap h2 {
  font-size: 15px;
  letter-spacing: 0.047em;
  margin-top: 0;
  text-transform: uppercase;
}

.col-right-wrap p {
  font-weight: bold;
  font-size: 15px;
}

.col-right-wrap > span {
  display: block;
  font-size: 15px;
}

.col-right-wrap > span span {
  margin-right: 14px;
}

.col-right-wrap > span .small-margin {
  margin-right: 10px;
}

.header_small {
  color: rgb(109, 105, 99);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.15em;
}

.col--left {
  background: url(../assets/roof-bg.jpg);
  background-size: cover;
  background-position: center -5.1px, center -5.1px;
  transition: background-position 0.7s linear 0s;
}

.col--left:hover {
  background-position: center -18.7px, center -14.8px;
}

.col--right {
  background: url(../assets/home-bg.jpg);
  background-size: cover;
  background-position: center -5.1px, center -5.1px;
  transition: background-position 0.7s linear 0s;
}

.col--right:hover {
  background-position: center -18.7px, center -14.8px;
}

.button {
  --offset: 10px;
  --border-size: 2px;
  display: block;
  position: relative;
  margin: 40px auto;
  padding: 1.5em 3em;
  appearance: none;
  border: 0;
  background: transparent;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--border-size) currentcolor;
  transition: background 0.8s ease;
  font-size: 10px;
}
.button--white {
  color: #fff;
}
.button:hover {
  background: rgba(0, 0, 0, .08);
}
.button--white:hover {
  background: rgba(255, 255, 255, .13);
}
.button__horizontal, .button__vertical {
  position: absolute;
  top: var(--horizontal-offset, 0);
  right: var(--vertical-offset, 0);
  bottom: var(--horizontal-offset, 0);
  left: var(--vertical-offset, 0);
  transition: transform 0.8s ease;
  will-change: transform;
}
.button__horizontal::before, .button__vertical::before {
  content: '';
  position: absolute;
  border: inherit;
}
.button__horizontal {
  --vertical-offset: calc(var(--offset) * -1);
  border-top: var(--border-size) solid currentcolor;
  border-bottom: var(--border-size) solid currentcolor;
}
.button__horizontal::before {
  top: calc(var(--vertical-offset) - var(--border-size));
  bottom: calc(var(--vertical-offset) - var(--border-size));
  left: calc(var(--vertical-offset) * -1);
  right: calc(var(--vertical-offset) * -1);
}
.button:hover .button__horizontal {
  transform: scaleX(0);
}
.button__vertical {
  --horizontal-offset: calc(var(--offset) * -1);
  border-left: var(--border-size) solid currentcolor;
  border-right: var(--border-size) solid currentcolor;
}
.button__vertical::before {
  top: calc(var(--horizontal-offset) * -1);
  bottom: calc(var(--horizontal-offset) * -1);
  left: calc(var(--horizontal-offset) - var(--border-size));
  right: calc(var(--horizontal-offset) - var(--border-size));
}
.button:hover .button__vertical {
  transform: scaleY(0);
}

@media (min-width: 450px) {
  .col-right-wrap h2 {
    font-size: 20px;
  }
}

@media (min-width: 850px) {
  .logo-img {
    max-width: none;
  }

  .col--left .logo-img {
    margin-bottom: 65px;
  }

  .col-right-wrap {
    width: 24vw;
  }

  .col-right-wrap h2 {
    font-size: 40px;
  }
  .button {
    font-size: 14px;
  }
  .header_small {
    font-size: 18px;
  }

  .col--left .header_small {
    margin-bottom: 60px;
  }
}