@import url("https://fonts.googleapis.com/css2?family=Domine:wght@400;700&family=Raleway:wght@600&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  font-size: 100%;
  font-family: "Domine", Helvetica, Arial, sans-serif;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

input, textarea, button {
  border: none;
  outline: none;
  font-family: "Quicksand", Helvetica, Arial, sans-serif;
}

button {
  border: none;
}
button:hover {
  cursor: pointer;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
}

em {
  font-style: italic;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
select:hover {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

h1, h2, h3 {
  font-weight: 700;
}

h2, h3 {
  color: #010101;
}

h2 {
  margin-bottom: 60px;
  font-size: 3rem;
  text-align: center;
}

h3 {
  font-size: 2rem;
}

p {
  font-size: 1.25rem;
  line-height: 32px;
}

.btn {
  -webkit-transition: transform 100ms ease-in-out, background 100ms ease-in-out;
  -moz-transition: transform 100ms ease-in-out, background 100ms ease-in-out;
  -o-transition: transform 100ms ease-in-out, background 100ms ease-in-out;
  transition: transform 100ms ease-in-out, background 100ms ease-in-out;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
  border-radius: 36px;
  display: inline-block;
  padding: 0 60px;
  margin-top: 72px;
  font: 600 1.5rem "Raleway", Helvetica, Arial, sans-serif;
  line-height: 72px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFF;
}
.btn:hover {
  -moz-transform: scale(1.075);
  -o-transform: scale(1.075);
  -ms-transform: scale(1.075);
  -webkit-transform: scale(1.075);
  transform: scale(1.075);
}
.btn.black {
  margin-right: 25px;
  background-color: #010101;
}
.btn.black:hover {
  background-color: #272727;
}
.btn.red {
  background-color: #D21807;
}
.btn.red:hover {
  background-color: #eb1b08;
}

body > header {
  padding: 440px 0 80px;
  text-align: center;
  background: #857FC9 url(../img/figaro-logo.jpg) center top no-repeat;
}
body > header .row, body > header h1 {
  max-width: 1080px;
}
body > header h1 {
  margin: 0 auto;
  font-size: 3.75rem;
  color: #FFF;
}

body > footer {
  position: relative;
  padding: 48px 0;
  margin-top: 12px;
  background-color: #363636;
}
body > footer li, body > footer .copy {
  font-weight: 700;
  font-size: 1.125rem;
}
body > footer li {
  display: inline-block;
  color: #FFF;
}
body > footer li:not(:first-child) {
  padding-left: 16px;
}
body > footer li:not(:first-child)::before {
  content: "|";
}
body > footer li a {
  margin-left: 16px;
  color: #FFF;
}
body > footer li a:hover {
  text-decoration: underline;
}
body > footer .copy {
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  right: 40px;
  color: #C3C3C3;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.row {
  width: 100%;
  max-width: 1600px;
  padding: 0 40px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .row {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 600px) {
  .row {
    padding: 0 15px;
  }
}
.row::before, .row::after {
  display: table;
  line-height: 0;
  content: "";
}
.row::after {
  clear: both;
}
.row *[class^=col] {
  display: block;
  float: left;
  width: 100%;
  min-height: 30px;
}
.row *[class^=col].center {
  float: none;
  margin: 0 auto;
}

.feat-content, .services {
  padding: 100px 0;
}

.feat-content {
  text-align: center;
}
.feat-content .row {
  max-width: 1280px;
}
.feat-content .row .video {
  -webkit-transition: transform 100ms ease-in-out, box-shadow 100ms ease-in-out;
  -moz-transition: transform 100ms ease-in-out, box-shadow 100ms ease-in-out;
  -o-transition: transform 100ms ease-in-out, box-shadow 100ms ease-in-out;
  transition: transform 100ms ease-in-out, box-shadow 100ms ease-in-out;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border-radius: 16px;
  float: left;
  width: calc(33.33% - 21.33px);
  border: 2px solid #010101;
  overflow: hidden;
}
.feat-content .row .video:not(:last-child) {
  margin-right: 32px;
}
.feat-content .row .video a {
  display: block;
  width: 100%;
  height: 204px;
}
.feat-content .row .video:hover {
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
  -moz-transform: scale(1.25);
  -o-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}

.services {
  background-color: #F6F6F6;
}
.services .row {
  padding: 0 80px;
}
.services .col {
  width: calc(50% - 60px);
}
.services .col:first-child {
  margin-right: 120px;
}
.services .service:not(:first-child) {
  margin-top: 60px;
}
.services .service h3 {
  margin: 20px 0 24px;
}

/*# sourceMappingURL=main.css.map */
