




.menu {
    display:block;
    width:100%;
    line-height:1;
    height:61px;
    position: relative;
	 box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	 z-index:1;
}

.menu.inverse {
    background:#24282c;
    color: rgba(255, 255, 255, 0.9);
}

.menu.compact.inverse .burger svg {
    stroke:rgba(255,255,255,0.9);
}
.menu.inverse .sections .items li a {
    color:rgba(255,255,255,0.6);    
}

.menu.inverse .sections .items li a:hover {
    color:rgba(255,255,255,1);  
}

.menu.inverse a {
    color:#fff; 
}

.menu.inverse .button {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color:rgba(255, 255, 255, 0.6);
}


.menu.inverse .sections li .button:hover {
    background:#fff;
    border-color:#fff;
    color:#24282c;
}

/* global position */
.menu.sticky {
    z-index:100;
    position: fixed;
    top:0;
    -webkit-transition:opacity 0.5s, -webkit-transform 0.5s;
    -moz-transition:opacity 0.5s, -moz-transform 0.5s;
    -o-transition:opacity 0.5s, -o-transform 0.5s;
    transition:opacity 0.5s, transform 0.5s;
}
.menu.compact {
    z-index: 100;
}

body:not(.edit-mode) .menu.sticky {
    -webkit-animation: showMenu 0.9s 1s backwards;
    -ms-animation: showMenu 0.9s 1s backwards;
    -o-animation: showMenu 0.9s 1s backwards;
    animation: showMenu 0.9s 1s backwards;
}

.menu.sticky::after {
	content: " ";
	display: block;
	position: absolute;
	z-index: 80;
	width:100%;
	height:100px;
	left:0;
}
.compactMenuVisible .menu.sticky::after,
.edit-mode .menu.sticky::after{
	display:none;
}

.menu.sticky.hide:hover {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

/* EXCEPTIONS */
/* cover */
body:not(.edit-mode) .dm-menu:not(.sticky) + .dm-cover .cover {
  height:-webkit-calc(100vh - 61px);
  height:-moz-calc(100vh - 61px);
  height:calc(100vh - 61px);
}
body:not(.edit-mode) .dm-menu.sticky + .dm-cover .cover .container-holder {
  top: 61px;
  height:-webkit-calc(100vh - 61px);
  height:-moz-calc(100vh - 61px);
  height:calc(100vh - 61px);
}

/* feature */
body:not(.edit-mode) .dm-menu.sticky + .dm-feature .container {
  margin-top: 61px;
}

/* grid */
body:not(.edit-mode) .dm-menu.sticky + .dm-grid .container {
  margin-top: 61px;
}

/* subscribe */
body:not(.edit-mode) .dm-menu.sticky + .dm-subscribe .container {
  margin-top: 61px;
}

/* text */
body:not(.edit-mode) .dm-menu.sticky + .dm-text .container {
  margin-top: 61px;
}

/* embed */
body:not(.edit-mode) .dm-menu.sticky + .dm-embed .container {
  margin-top: 61px;
}

/* image */
body:not(.edit-mode) .dm-menu.sticky + .image img {
	margin-top:61px;
}

/* footer */
body:not(.customize-support) .dm-menu.sticky + .dm-footer .container {
  margin-top: 61px;
}


@-webkit-keyframes showMenu { from { -webkit-transform: translateY(-30px) scale(1.01); opacity: 0;}}
@-moz-keyframes showMenu { from { -moz-transform: translateY(-30px) scale(1.01); opacity: 0;}}
@-o-keyframes showMenu { from { -o-transform: translateY(-30px) scale(1.01); opacity: 0;}}
@keyframes showMenu { from { transform: translateY(-30px) scale(1.01); opacity: 0;}}

.hide {
    opacity:0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.compactMenuVisible > * {
    -webkit-trasition:-webkit-filter 0.5s;
    -moz-trasition:-moz-filter 0.5s;
    -o-trasition:-o-filter 0.5s;
    trasition:filter 0.5s;
}

.compactMenuVisible .hide {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

/* sections */
.menu .sections {
    position:relative;
    display:table;
    width:100%;
    vertical-align:middle;
    height: 100%;
    z-index:150;
}


.menu .sections > li {
    display:table-cell;
}

/* section sizes */
.menu.column-1 .sections > li {
    display:table-cell;
    width:100%;
    vertical-align:middle;
}

.menu.column-1 .sections > li.center {
	padding:0;
}
.menu.column-2 .sections > li {
    display:table-cell;
    width:50%;
    vertical-align:middle;
}

.menu.column-3 .sections > li {
    display:table-cell;
    width:33.333%;
    vertical-align:middle;
    padding:0 13px;
}


/* section paddings */
.menu .sections > li:first-child { padding:0 13px 0 26px; }
.menu .sections > li:last-child, .menu .sections > li.last-child { padding:0 26px 0 13px; }
.menu .sections > li.crop { width:auto; }

/* section aligns */
.menu .sections > li.left { text-align:left; }
.menu .sections > li.center { text-align:center;}
.menu .sections > li.right{ text-align:right;}

/* odds */
.menu.column-2 .sections > li.wide {
    width:100%;
}

.menu.column-3 .sections > li.wide {
    width:100%;
}


/* styles */
/* logo */
.menu .logo {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.menu .logo img {
    position: relative;
    top: 1px;
    height:25px;
    vertical-align: top;
}
.menu .logo a {
    display: block;
}
.menu .logo a, menu .logo a:hover {
    border:none;
}

/* items */
.menu .sections .items {
    display:inline;
    white-space:nowrap;
    overflow-x:hidden;
}


.menu .sections .items li {
    display:inline-block;
    margin:0 11px;
}

.menu .sections .items li a {
    color:inherit;
	 border-bottom:none;
}

.menu .sections .items li a:hover {
    color:#11A1EC;
    border-bottom:none;
}
.menu .sections li .button:hover {
    background:#11A1EC;
    color:#fff !important; 
    border:1px solid #11A1EC !important;
}

.menu .sections .items li:first-child {
    margin-left:0;  
}

.menu .sections .items li:last-child {
    margin-right:0; 
}

/* button */
.menu li .button {
    padding:8px 17px;
    border:1px solid rgba(66,66,66,0.2) !important;
    border-radius:18px;
    white-space:nowrap;
    display: inline-block;
    vertical-align: top;
}

/* compact view */

.menu .sections > li {
    -webkit-transition:opacity 0.5s, color 0.5s, -webkit-transform 0.5s;
    -moz-transition:opacity 0.5s, color 0.5s, -moz-transform 0.5s;
    -o-transition:opacity 0.5s, color 0.5s, -o-transform 0.5s;
    transition:opacity 0.5s, color 0.5s, transform 0.5s;
}

.menu .burger {
    
    -webkit-transition: opacity 0.5s, color 0.5s, -webkit-transform 0.5s;
    -moz-transition: opacity 0.5s, color 0.5s, -moz-transform 0.5s;
    -o-transition: opacity 0.5s, color 0.5s, -o-transform 0.5s;
    transition: opacity 0.5s, color 0.5s, transform 0.5s;
    
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    
    opacity: 0;
    
    font-size: 16px;
    height: 61px;
    padding: 14px 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.compactMenu {
    position: fixed;
    top:0;
    left:0;
    z-index: 90;
    
    display:block;
    width: 100%;
    height: 100%;
    padding: 82px 6% 16px;
    background: rgba(36, 40, 44, 0.95);
    text-align: center;
    line-height: 36px;
    font-size: 33px;
    font-weight: 700;
    letter-spacing: -1.2px;
    padding-top: 65px;
    box-shadow: inset 0 0 100px rgba(36, 40, 44, 1);
    
    -webkit-transform: translateY(-150%);
    -moz-transform: translateY(-150%);
    -o-transform: translateY(-150%);
    transform: translateY(-150%);
    opacity: 0;
    
    -webkit-transition: opacity 0.75s, background 0.75s, box-shadow 0.75s, -webkit-transform 0.5s;
    -moz-transition: opacity 0.75s, background 0.75s, box-shadow 0.75s, -moz-transform 0.5s;
    -o-transition: opacity 0.75s, background 0.75s, box-shadow 0.75s, -o-transform 0.5s;
    transition: opacity 0.75s, background 0.75s, box-shadow 0.75s, transform 0.5s;
    
    overflow-y: scroll;
}

.compactMenu .items a {
    color:#fff;
    padding:24px 0;
    display:block;
}

.compactMenu .items a:hover {
    border-bottom: 1px solid rgba(255,255,255,0);
    color: #0080C8;
}

.compactMenu .items li {
    border-bottom:1px solid inherit;
}

.compactMenu .items li:last-child {
    border-bottom:none; 
}

.compactMenu .button {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 80px;
    padding: 21px 49px;
    color: #fff;
    margin: 24px 0;
}

/*
.compactMenu dt {
    
    -webkit-transition: -webkit-transform 1.5s, opacity 1.5s;
    -moz-transition: -moz-transform 1.5s, opacity 1.5s;
    -o-transition: -o-transform 1.5s, opacity 1.5s;
    transition: transform 1.5s, opacity 1.5s;
    
    -webkit-transform: translateY(-150%);
    -moz-transform: translateY(-150%);
    -o-transform: translateY(-150%);
    transform: translateY(-150%);
    
    font-size: 19px;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.5);
    width: 110px;
    margin: 0 auto 16px;
    border-radius:50px;
    opacity:0;
} */


.compactMenuVisible .compactMenu dt {
    opacity:0.4 !important;
}

.compactMenu .cell *:nth-child(1) {
    
    -webkit-transition: -webkit-transform 0.35s, opacity 0.35s;
    -moz-transition: -moz-transform 0.35s, opacity 0.35s;
    -o-transition: -o-transform 0.35s, opacity 0.35s;
    transition: transform 0.35s, opacity 0.35s;
    
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    opacity:0;
}

.compactMenu .cell *:nth-child(2) {
    -webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
    -moz-transition: -moz-transform 0.6s, opacity 0.6s;
    -o-transition: -o-transform 0.6s, opacity 0.6s;
    transition: transform 0.6s, opacity 0.6s;
    
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    opacity:0;
}
.compactMenu .cell *:nth-child(3) {
    -webkit-transition: -webkit-transform 0.75s, opacity 0.75s;
    -moz-transition: -moz-transform 0.75s, opacity 0.75s;
    -o-transition: -o-transform 0.75s, opacity 0.75s;
    transition: transform 0.75s, opacity 0.75s;
    
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    opacity:0;
}
.compactMenu .cell *:nth-child(4) {
    -webkit-transition: -webkit-transform 0.9s, opacity 0.9s;
    -moz-transition: -moz-transform 0.9s, opacity 0.9s;
    -o-transition: -o-transform 0.9s, opacity 0.9s;
    transition: transform 0.9s, opacity 0.9s;
    
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    opacity:0;
}
.compactMenu .cell *:nth-child(5) {
    -webkit-transition: -webkit-transform 1.05s, opacity 1.05s;
    -moz-transition: -moz-transform 1.05s, opacity 1.05s;
    -o-transition: -o-transform 1.05s, opacity 1.05s;
    transition: transform 1.05s, opacity 1.05s;
    
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    opacity:0;
}
.compactMenu .cell *:nth-child(6) {
    -webkit-transition: -webkit-transform 1.25s, opacity 1.25s;
    -moz-transition: -moz-transform 1.25s, opacity 1.25s;
    -o-transition: -o-transform 1.25s, opacity 1.25s;
    transition: transform 1.25s, opacity 1.25s;
    
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    opacity:0;
}
.compactMenu .cell *:nth-child(7) {
    -webkit-transition: -webkit-transform 1.35s, opacity 1.35s;
    -moz-transition: -moz-transform 1.35s, opacity 1.35s;
    -o-transition: -o-transform 1.35s, opacity 1.35s;
    transition: transform 1.35s, opacity 1.35s;
    
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    opacity:0;
}
.compactMenu .cell *:nth-child(8) {
    -webkit-transition: -webkit-transform 1.4s, opacity 1.4s;
    -moz-transition: -moz-transform 1.4s, opacity 1.4s;
    -o-transition: -o-transform 1.4s, opacity 1.4s;
    transition: transform 1.4s, opacity 1.4s;
    
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    opacity:0;
}
.compactMenu .cell *:nth-child(9) {
    -webkit-transition: -webkit-transform 1.55s, opacity 1.55s;
    -moz-transition: -moz-transform 1.55s, opacity 1.55s;
    -o-transition: -o-transform 1.55s, opacity 1.55s;
    transition: transform 1.55s, opacity 1.55s;
    
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    opacity:0;
}
.compactMenu .cell *:nth-child(10) {
    -webkit-transition: -webkit-transform 1.7s, opacity 1.7s;
    -moz-transition: -moz-transform 1.7s, opacity 1.7s;
    -o-transition: -o-transform 1.7s, opacity 1.7s;
    transition: transform 1.7s, opacity 1.7s;
    
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    opacity:0;
}
.compactMenu .cell *:nth-child(11) {
    -webkit-transition: -webkit-transform 1.85s, opacity 1.85s;
    -moz-transition: -moz-transform 1.85s, opacity 1.85s;
    -o-transition: -o-transform 1.85s, opacity 1.85s;
    transition: transform 1.85s, opacity 1.85s;
    
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -o-transform: translateY(-200px);
    transform: translateY(-200px);
    opacity:0;
}



.compactMenuVisible .compactMenu .cell * {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    opacity:1;
}


.compactMenu .button:active, .compactMenu .button:hover {
    border-color:#0080C8;
    background:#0080C8;
    color:#fff;
}


.compactMenu .items .button:hover {
    color:#fff;
    background:#0080C8;
    border-color:#0080C8;
}


.compactMenuVisible .compactMenu {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    top: 0;
}
.edit-mode .compactMenuVisible .compactMenu {
    top: 122px;
}

.menu.compact .burger {
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    opacity: 1;
    top: 33px;
    right: 20px;
    width: 20px;
    height: 14px;
}
.menu .burger svg {
    width: 20px;
    height: 2px;
    background: #393536;
    position: absolute;
    left: 0;
    top: 6px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.menu .burger svg * {
    display: none;
}
.menu .burger:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    width: 20px;
    background: #393536;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.menu .burger:after {
    content: '';
    position: absolute;
    display: block;
    top: 12px;
    left: 0;
    right: 0;
    height: 2px;
    width: 20px;
    background: #393536;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.compactMenuVisible .menu.compact .burger svg {
    opacity:0;
}

.compactMenuVisible .menu.compact .burger:before {
    -webkit-transform: translateX(0) translateY(-6px) rotate(45deg);
    -moz-transform: translateX(0) translateY(-6px) rotate(45deg);
    -o-transform: translateX(0) translateY(-6px) rotate(45deg);
    -ms-transform: translateX(0) translateY(-6px) rotate(45deg);
    transform: translateX(0) translateY(-6px) rotate(45deg);
    opacity:1;
    margin-top: 12px;
}

.compactMenuVisible .menu.compact .burger:after {
    -webkit-transform: translateX(0) translateY(6px) rotate(-45deg);
    -moz-transform: translateX(0) translateY(6px) rotate(-45deg);
    -o-transform: translateX(0) translateY(6px) rotate(-45deg);
    -ms-transform: translateX(0) translateY(6px) rotate(-45deg);
    transform: translateX(0) translateY(6px) rotate(-45deg);
    opacity:1;
    margin-top: -12px;
}

.menu.compact .sections li:not(.logo):not(.burger){
    -webkit-transform:translateY(10px);
    -moz-transform:translateY(10px);
    -o-transform:translateY(10px);
    transform:translateY(10px);
    opacity:0;
    visibility: hidden;
}

.qards-iframe .menu .table .cell {
	vertical-align: top;
}

.menu .font-size-1 {
    font-size: 16px;
}
.menu .font-size-2 {
    font-size: 18px;
}
.menu .font-size-3 {
    font-size: 19px;
}
.menu .font-size-4 {
    font-size: 20px;
}
.menu .font-size-5 {
    font-size: 21px;
}
.menu .font-size-6 {
    font-size: 22px;
}
.menu .font-size-7 {
    font-size: 23px;
}
.menu .line-height-1 {
    line-height: 1;
}
.menu .line-height-2 {
    line-height: 1.1;
}
.menu .line-height-3 {
    line-height: 1.2;
}
.menu .line-height-4 {
    line-height: 1.3;
}
.menu .line-height-5 {
    line-height: 1.4;
}
.menu .line-height-6 {
    line-height: 1.5;
}
.menu .line-height-7 {
    line-height: 1.6;
}


.cover {
    background: #000;
    color: #fff;
    overflow: hidden;
    position: relative;
    height:100vh;
    font-size: 26px;
    margin-bottom:40px;
}
.qards-iframe .cover {
	height: 56.25vw;
	min-height:500px;
	 -webkit-transition:height 0.5s;
	    -moz-transition:height 0.5s;
	      -o-transition:height 0.5s;
	         transition:height 0.5s;
}
.cover:last-of-type {
    margin-bottom: 0;
}
.cover .content {
    max-width: 545px;
	 width:100%;
    position: relative;
    font-size: 30px;
    text-align: left;
}
.cover.center .content {
    text-align: center;
    margin: 0 auto;
    max-width: 730px;
}
.cover.right .content {
    float: right;
}
.cover.inverse {
    color: #303336;
    background: #fff;
}

.cover.inverse .button {
   border: 2px solid rgba(48, 51, 54, 1);
	opacity:0.7;
}
.cover.inverse .button:hover {
	opacity:1;
}

.cover .container-holder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    z-index:1;
}
.cover .container {
    display: table;
    table-layout:fixed;
    height: 100%;
    width: 100%;
}
.cover .holder {
    display: table-cell;
    vertical-align: middle;
    padding: 136px 11.5%;
    width: 100%;
}
.cover.top .holder {
    vertical-align: top;
}
.cover.bottom .holder {
    vertical-align: bottom;
}
.cover h1 {
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 16px;
}
.cover .hero {
    opacity: 0.7;
    font-weight: 200;
}

.cover .button {
    font-size: 18px;
    line-height: 23px;
    padding: 11px 28px;
    border-radius: 45px;
    margin-top: 32px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    opacity:0.7;
    color: inherit;
    white-space:nowrap;
    border: 2px solid #fff;
    -webkit-transition: opacity 0.35s;
    -moz-transition: opacity 0.35s;
    -o-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
.cover .button:hover {
	opacity:1;
}
/* background */
.cover .background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 100%;
    width: 100%;
    
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: inherit;
    
    -webkit-animation:fadeIn 0.5s;
    -webkit-animation:fadeIn 0.5s;
    -webkit-animation:fadeIn 0.5s;
    -webkit-animation:fadeIn 0.5s;
    
    /* xlr8 */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}
.cover .background svg {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
}

@-webkit-keyframes fadeIn { from { opacity: 0;}}
@-moz-keyframes fadeIn { from { opacity: 0;}}
@-o-keyframes fadeIn { from { opacity: 0;}}
@keyframes fadeIn { from { opacity: 0;}}
.background-holder {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: none;
    background-position: 50% 50%;
}

.cover.video .background {
    -webkit-animation:none;
    -moz-animation:none;
    -o-animation:none;
    animation:none;
}
.cover.video .mbYTP_wrapper {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.cover .background .overlay {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: inherit;
}
.cover.video iframe{
    pointer-events:none;
}

.cover.video .mbYTP_wrapper.no-transition {
    -webkit-transition:0;
    -moz-transition:0;
    -o-transition:0;
    transition:0;
}

/* responsive for cover */
@media screen and (max-width: 568px) {
    .cover .holder {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

@media screen and (min-width: 768px) {
    .cover .content {
        max-width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .cover .content {
        max-width: 100%;
    }
}

@media screen and (min-width: 1600px) {
    .cover .holder {
        padding-top: 200px;
        padding-bottom: 200px;
    }
    .cover .content {
        max-width: 540px;
    }
}
.cover .button .font-size-1,
.cover .button.font-size-1 {
    font-size: 17px;
}
.cover .button .font-size-2,
.cover .button.font-size-2 {
    font-size: 18px;
}
.cover .button .font-size-3,
.cover .button.font-size-3 {
    font-size: 19px;
}
.cover .button .font-size-4,
.cover .button.font-size-4 {
    font-size: 20px;
}
.cover .button .font-size-5,
.cover .button.font-size-5 {
    font-size: 21px;
}
.cover .button .font-size-6,
.cover .button.font-size-6 {
    font-size: 22px;
}
.cover .button .font-size-7,
.cover .button.font-size-7 {
    font-size: 23px;
}
.cover .button .font-size-8,
.cover .button.font-size-8 {
    font-size: 24px;
}
.cover .button .font-size-9,
.cover .button.font-size-9 {
    font-size: 26px;
}
.cover .button .line-height-1,
.cover .button.line-height-1 {
    line-height: 1.2;
}
.cover .button .line-height-2,
.cover .button.line-height-2 {
    line-height: 1.3;
}
.cover .button .line-height-3,
.cover .button.line-height-3 {
    line-height: 1.4;
}
.cover .button .line-height-4,
.cover .button.line-height-4 {
    line-height: 1.5;
}
.cover .button .line-height-5,
.cover .button.line-height-5 {
    line-height: 1.6;
}
.cover .button .line-height-6,
.cover .button.line-height-6 {
    line-height: 1.7;
}
.cover .button .line-height-7,
.cover .button.line-height-7 {
    line-height: 1.8;
}

@media screen and (max-width: 568px) {
    .cover p .line-height-1,
    .cover p.line-height-1 {
        line-height: 1.18;
    }
    .cover p .line-height-2,
    .cover p.line-height-2 {
        line-height: 1.28;
    }
    .cover p .line-height-3,
    .cover p.line-height-3 {
        line-height: 1.38;
    }
    .cover p .line-height-4,
    .cover p.line-height-4 {
        line-height: 1.48;
    }
    .cover p .line-height-5,
    .cover p.line-height-5 {
        line-height: 1.58;
    }
    .cover p .line-height-6,
    .cover p.line-height-6 {
        line-height: 1.68;
    }
    .cover p .line-height-7,
    .cover p.line-height-7 {
        line-height: 1.78;
    }
}