:root {
  --white: #ffffff;
  --yellow: #ffdd00;
  --dark-yellow: #e9cc14;
  --black: #272b2d;
  --grey100: #f0f2f4;
  --grey300: #dbdcdd;
  --grey500: #b7babb;
  --grey600: #95999b;
  --grey700: #75797c;
  --grey800: #565c5f;
  --grey900: #383e42;
}

.background-white {
  background: var(--white);
}

.background-light-grey {
  background: var(--grey100);
}

.background-dark-grey {
  background: var(--grey900);
}

.ui-h1 {
  font-family: 'torquebold', Arial, sans-serif;
  font-size: 57px;
  line-height: 60px;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.ui-h2 {
  font-family: 'torquebold', Arial, sans-serif;
  font-size: 47px;
  line-height: 56px;
  padding-bottom: 16px;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .ui-h2 {
    font-size: 34px;
    line-height: 34px;
    padding-bottom: 13px;
  }
}

.ui-h3 {
  font-family: 'torquebold', Arial, sans-serif;
  font-size: 33px;
  line-height: 40px;
  padding-bottom: 20px;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .ui-h3 {
    font-size: 24px;
    line-height: 28px;
  }
}

.ui-h4 {
  font-family: 'torquebold', Arial, sans-serif;
  font-size: 29px;
  line-height: 34px;
  padding-bottom: 16px;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .ui-h4 {
    font-size: 23px;
    line-height: 24px;
  }
}

.ui-h5 {
  font-family: 'torquebold', Arial, sans-serif;
  font-size: 18px;
  line-height: 22px;
}

.ui-button {
  font-family: 'torquemedium', Arial, sans-serif;
  clip-path: polygon(0 0, 0 100%, calc(100% - 13px) 100%, 100% calc(100% - 13px), 100% 0);
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  padding: 6px 25px;
  width: 130px;
  background-color: var(--yellow);
}

.ui-button:hover {
  background-color: var(--dark-yellow);
}

.ui-block {
  padding-top: 100px;
  padding-bottom: 90px;
}

@media (max-width: 1080px) {
  .ui-block {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

.breadcrumbs {
	font-size: 14px;
  line-height: 21px;
}

.breadcrumbs .breadcrumb_last {
  font-weight: 700;
}


