




.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;
}


.image {
	font-size:0;
    line-height:0;
	position:relative;
    text-align:center;
    padding-top: 60px;
    padding-bottom: 60px;
    -webkit-transition: padding .25s ease-in-out;
       -moz-transition: padding .25s ease-in-out;
         -o-transition: padding .25s ease-in-out;
            transition: padding .25s ease-in-out;
}
.image img {
    opacity:0;
    background-repeat:no-repeat;
    background-size:cover;
}
.image.loaded img {
    opacity:1;
    max-width: 100%;
    -webkit-transition:opacity 0.5s;
    -moz-transition:opacity 0.5s;
    -o-transition:opacity 0.5s;
    transition:opacity 0.5s;
}
.image p {
    font-family: "PT Serif", Georgia, serif;
    margin-top: 20px;
    color: rgba(108,108,108,0.7) !important;
}
.image.full {
    position:relative;
}
.image.medium {
    padding-top: 40px;
    padding-bottom: 40px;
}
.image.small {
    padding-top: 20px;
    padding-bottom: 20px;
}
.image.small p,
.image.medium p,
.image.full p {
    max-width:733px;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
    width: 83.333333%;
}
.image.full .image-holder {
    max-width:100%;
    width:100vw;
    position: relative;
}
.image.medium .image-holder {
    max-width:1114px;
    width:100%;
    margin:0 auto;
    position: relative;
}
.image.small .image-holder {
    max-width:1114px;
    width:83.33333%;
    margin:0 auto;
    position: relative;
}
.image.full img,
.image.medium img {
    width:100%;
}
.image .image-wrapper {
    position: relative;
	 line-height:0;
}
.image .image-wrapper a,
.image .image-wrapper a:hover {
    border: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}
.image.small .image-wrapper {
    max-width: 734px;
    margin:0 auto;
}
.image.small p {
    width: auto;
}
.image.small.left .image-wrapper {
    margin: 0;
    text-align: left;
}
.image.small.left p {
    margin-left: 0;
}
.image.full p {
    opacity:0;
}
.image.full.loaded p {
    opacity:1;
    -webkit-transition:opacity 0.5s;
    -moz-transition:opacity 0.5s;
    -o-transition:opacity 0.5s;
    transition:opacity 0.5s;
}
.previewWrapper .image.small .image-wrapper:not(.not-fit) img,
body:not(.edit-mode) .image.small .image-wrapper:not(.not-fit) img {
    cursor: pointer;
}

.image p .font-size-1,
.image p.font-size-1 {
    font-size: 12px;
}
.image p .font-size-2,
.image p.font-size-2 {
    font-size: 13px;
}
.image p .font-size-3,
.image p.font-size-3 {
    font-size: 14px;
}
.image p .font-size-4,
.image p.font-size-4 {
    font-size: 15px;
}
.image p .font-size-5,
.image p.font-size-5 {
    font-size: 16px;
}
.image p .font-size-6,
.image p.font-size-6 {
    font-size: 17px;
}
.image p .font-size-7,
.image p.font-size-7 {
    font-size: 18px;
}
.image p .font-size-8,
.image p.font-size-8 {
    font-size: 19px;
}
.image p .font-size-9,
.image p.font-size-9 {
    font-size: 20px;
}
.image p .line-height-1,
.image p.line-height-1 {
    line-height: 1.43;
}
.image p .line-height-2,
.image p.line-height-2 {
    line-height: 1.53;
}
.image p .line-height-3,
.image p.line-height-3 {
    line-height: 1.63;
}
.image p .line-height-4,
.image p.line-height-4 {
    line-height: 1.73;
}
.image p .line-height-5,
.image p.line-height-5 {
    line-height: 1.83;
}
.image p .line-height-6,
.image p.line-height-6 {
    line-height: 1.93;
}
.image p .line-height-7,
.image p.line-height-7 {
    line-height: 2.03;
}

.image.full.textover p .font-size-1,
.image.full.textover p.font-size-1 {
    font-size: 18px;
}
.image.full.textover p .font-size-2,
.image.full.textover p.font-size-2 {
    font-size: 19px;
}
.image.full.textover p .font-size-3,
.image.full.textover p.font-size-3 {
    font-size: 20px;
}
.image.full.textover p .font-size-4,
.image.full.textover p.font-size-4 {
    font-size: 21px;
}
.image.full.textover p .font-size-5,
.image.full.textover p.font-size-5 {
    font-size: 22px;
}
.image.full.textover p .font-size-6,
.image.full.textover p.font-size-6 {
    font-size: 23px;
}
.image.full.textover p .font-size-7,
.image.full.textover p.font-size-7 {
    font-size: 24px;
}
.image.full.textover p .font-size-8,
.image.full.textover p.font-size-8 {
    font-size: 25px;
}
.image.full.textover p .font-size-9,
.image.full.textover p.font-size-9 {
    font-size: 26px;
}
.image.full.textover p .line-height-1,
.image.full.textover p.line-height-1 {
    line-height: 1.56;
}
.image.full.textover p .line-height-2,
.image.full.textover p.line-height-2 {
    line-height: 1.66;
}
.image.full.textover p .line-height-3,
.image.full.textover p.line-height-3 {
    line-height: 1.76;
}
.image.full.textover p .line-height-4,
.image.full.textover p.line-height-4 {
    line-height: 1.86;
}
.image.full.textover p .line-height-5,
.image.full.textover p.line-height-5 {
    line-height: 1.96;
}
.image.full.textover p .line-height-6,
.image.full.textover p.line-height-6 {
    line-height: 2.06;
}
.image.full.textover p .line-height-7,
.image.full.textover p.line-height-7 {
    line-height: 2.16;
}

@media screen and (min-width: 768px) {
    .image.full.textover {
        position:relative;
    }
    .image.full.textover p {
        position:absolute;
        bottom:0;
        color: rgba(255,255,255,0.9) !important;
        max-width:100%;
        padding:100px 8.333333%;
        width:100%;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAB9CAYAAABj9QkzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OEU1MUExMTc0QjYzMTFFNEJBMUQ5MTVCQTBCQ0JBMzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OEU1MUExMTg0QjYzMTFFNEJBMUQ5MTVCQTBCQ0JBMzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4RTUxQTExNTRCNjMxMUU0QkExRDkxNUJBMEJDQkEzMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4RTUxQTExNjRCNjMxMUU0QkExRDkxNUJBMEJDQkEzMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PozP3AgAAAA2SURBVHjaYvj//z8DCDAygUgmGAsbl5EUWWwEE8myTERyiZAYLixiJYgNU5JkSU8H6EkKIMAAKXUEjIrKehQAAAAASUVORK5CYII=);
        background-repeat:repeat-x;
        background-position:bottom;
        background-size: 100% 100%;
        z-index:10;
    }
}

@media screen and (max-width: 568px) {
    .image.full,
    .image.medium,
    .image.small {
        padding: 27px 0;
    }
}

@media screen and (max-width: 767px) {
    .image.full.textover p .font-size-1,
    .image.full.textover p.font-size-1 {
        font-size: 12px;
    }
    .image.full.textover p .font-size-2,
    .image.full.textover p.font-size-2 {
        font-size: 13px;
    }
    .image.full.textover p .font-size-3,
    .image.full.textover p.font-size-3 {
        font-size: 14px;
    }
    .image.full.textover p .font-size-4,
    .image.full.textover p.font-size-4 {
        font-size: 15px;
    }
    .image.full.textover p .font-size-5,
    .image.full.textover p.font-size-5 {
        font-size: 16px;
    }
    .image.full.textover p .font-size-6,
    .image.full.textover p.font-size-6 {
        font-size: 17px;
    }
    .image.full.textover p .font-size-7,
    .image.full.textover p.font-size-7 {
        font-size: 18px;
    }
    .image.full.textover p .font-size-8,
    .image.full.textover p.font-size-8 {
        font-size: 19px;
    }
    .image.full.textover p .font-size-9,
    .image.full.textover p.font-size-9 {
        font-size: 20px;
    }
    .image.full.textover p .line-height-1,
    .image.full.textover p.line-height-1 {
        line-height: 1.43;
    }
    .image.full.textover p .line-height-2,
    .image.full.textover p.line-height-2 {
        line-height: 1.53;
    }
    .image.full.textover p .line-height-3,
    .image.full.textover p.line-height-3 {
        line-height: 1.63;
    }
    .image.full.textover p .line-height-4,
    .image.full.textover p.line-height-4 {
        line-height: 1.73;
    }
    .image.full.textover p .line-height-5,
    .image.full.textover p.line-height-5 {
        line-height: 1.83;
    }
    .image.full.textover p .line-height-6,
    .image.full.textover p.line-height-6 {
        line-height: 1.93;
    }
    .image.full.textover p .line-height-7,
    .image.full.textover p.line-height-7 {
        line-height: 2.03;
    }
}
/* PADDINGS start */
.image.top-padding-0 {
    padding-top: 0;
}
.image.top-padding-1 {
    padding-top: 10px;
}
.image.top-padding-2 {
    padding-top: 20px;
}
.image.top-padding-3 {
    padding-top: 30px;
}
.image.top-padding-4 {
    padding-top: 40px;
}
.image.top-padding-5 {
    padding-top: 50px;
}
.image.top-padding-6 {
    padding-top: 60px;
}
.image.top-padding-7 {
    padding-top: 70px;
}
.image.top-padding-8 {
    padding-top: 80px;
}
.image.top-padding-9 {
    padding-top: 90px;
}
.image.top-padding-10 {
    padding-top: 100px;
}
.image.top-padding-11 {
    padding-top: 110px;
}
.image.top-padding-12 {
    padding-top: 120px;
}

.image.bottom-padding-0 {
    padding-bottom: 0;
}
.image.bottom-padding-1 {
    padding-bottom: 10px;
}
.image.bottom-padding-2 {
    padding-bottom: 20px;
}
.image.bottom-padding-3 {
    padding-bottom: 30px;
}
.image.bottom-padding-4 {
    padding-bottom: 40px;
}
.image.bottom-padding-5 {
    padding-bottom: 50px;
}
.image.bottom-padding-6 {
    padding-bottom: 60px;
}
.image.bottom-padding-7 {
    padding-bottom: 70px;
}
.image.bottom-padding-8 {
    padding-bottom: 80px;
}
.image.bottom-padding-9 {
    padding-bottom: 90px;
}
.image.bottom-padding-10 {
    padding-bottom: 100px;
}
.image.bottom-padding-11 {
    padding-bottom: 110px;
}
.image.bottom-padding-12 {
    padding-bottom: 120px;
}
@media screen and (max-width: 568px) {
    .image.top-padding-0 {
        padding-top: 0;
    }
    .image.top-padding-1 {
        padding-top: 9px;
    }
    .image.top-padding-2 {
        padding-top: 18px;
    }
    .image.top-padding-3 {
        padding-top: 27px;
    }
    .image.top-padding-4 {
        padding-top: 36px;
    }
    .image.top-padding-5 {
        padding-top: 45px;
    }
    .image.top-padding-6 {
        padding-top: 54px;
    }
    .image.top-padding-7 {
        padding-top: 63px;
    }
    .image.top-padding-8 {
        padding-top: 72px;
    }
    .image.top-padding-9 {
        padding-top: 81px;
    }
    .image.top-padding-10 {
        padding-top: 90px;
    }
    .image.top-padding-11 {
        padding-top: 99px;
    }
    .image.top-padding-12 {
        padding-top: 108px;
    }

    .image.bottom-padding-0 {
        padding-bottom: 0;
    }
    .image.bottom-padding-1 {
        padding-bottom: 9px;
    }
    .image.bottom-padding-2 {
        padding-bottom: 18px;
    }
    .image.bottom-padding-3 {
        padding-bottom: 27px;
    }
    .image.bottom-padding-4 {
        padding-bottom: 36px;
    }
    .image.bottom-padding-5 {
        padding-bottom: 45px;
    }
    .image.bottom-padding-6 {
        padding-bottom: 54px;
    }
    .image.bottom-padding-7 {
        padding-bottom: 63px;
    }
    .image.bottom-padding-8 {
        padding-bottom: 72px;
    }
    .image.bottom-padding-9 {
        padding-bottom: 81px;
    }
    .image.bottom-padding-10 {
        padding-bottom: 90px;
    }
    .image.bottom-padding-11 {
        padding-bottom: 99px;
    }
    .image.bottom-padding-12 {
        padding-bottom: 108px;
    }
}
/* PADDINGS end */






.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;
    }
}






























.subscribe {
    padding-top: 100px;
    padding-bottom: 40px;
    text-align:center;
    -webkit-transition: padding .25s ease-in-out;
       -moz-transition: padding .25s ease-in-out;
         -o-transition: padding .25s ease-in-out;
            transition: padding .25s ease-in-out;
}
.subscribe .container {
    max-width: 734px;
    margin: 0 auto;
    width: 83.333333%;
    position: relative;
    z-index: 1;
}

.subscribe h1 {
    font-weight: 600;
    letter-spacing: -1.78px;
    text-align: center;
    color: #424242;
    margin-top:10px;
    margin-bottom: 20px;
}
.subscribe .hero {
    font-weight: 200;
    text-align: center;
    color: #6C6C6C;
    margin-bottom: 32px;
}
.subscribe h2 {
    margin-bottom: 32px;
}

.subscribe input {
    padding:20px;
    font-size:24px;
    padding:15px 28px;
    border-radius:30px;
    border:1px solid rgba(129,129,129,0.7);
    outline:none;
    text-align:left;
    width:340px;
    color:#6C6C6C;
    background:transparent;
    font-weight:200;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

    -webkit-transition:border-color 0.35s, background 0.35s;
    -moz-transition:border-color 0.35s, background 0.35s;
    -o-transition:border-color 0.35s, background 0.35s;
    transition:border-color 0.35s, background 0.35s;
}

.subscribe.error input {
	color:#D47070;
	border-color:#D47070;
	-webkit-transform-origin:50% 50%;
	-webkit-animation: bounceIn 0.5s 1s;
	animation: bounceIn 0.5s 1s;
}

.subscribe.loading .button {
	-webkit-animation: loading-subcscribe 0.75s infinite;
	animation: loading-subcscribe 0.75s infinite;
}

@-webkit-keyframes loading-subcscribe {
	50% { color:rgba(255,255,255,0.25);}
}

@keyframes loading-subcscribe {
	50% { color:rgba(255,255,255,0.25);}
}

.subscribe.done {
	cursor:default !important;
	pointer-events:none !important;
}

.subscribe.done .button {
	background:#51AF7E !important;
	border-color:#51AF7E !important;
}
.subscribe.done .button .text-default {
    display: none;
}
.subscribe.done .button .text-done {
    display: inline;
}

.subscribe:not(.error) input:focus {
    border:1px solid #11A1EC;
    background:#fff;
}

.subscribe input::-webkit-input-placeholder {
    color:rgba(129,129,129,0.7);
    -webkit-transition:opacity 0.35s;
    transition:opacity 0.35s;
}
.subscribe input:focus::-webkit-input-placeholder {
    opacity:0;
}

/* Firefox < 19 */
.subscribe input:-moz-placeholder {
    color:rgba(129,129,129,0.7);
    -moz-transition:opacity 0.35s;
}
.subscribe input:focus:-moz-placeholder {
    opacity:0;
}

/* Firefox > 19 */
.subscribe input::-moz-placeholder {
    color:rgba(129,129,129,0.7);
    -moz-transition:opacity 0.35s;
}
.subscribe input:focus::-moz-placeholder {
    opacity:0;
}

/* Internet Explorer 10 */
.subscribe input:-ms-input-placeholder {
    color:rgba(129,129,129,0.7);
}
.subscribe input:focus:-ms-input-placeholder {
    opacity:0;
}

.subscribe .button {
    background:#11A1EC;
    padding:15px 40px;
    border:1px solid #11A1EC !important;
    border-radius:30px;
    outline:none;
    margin:0 10px;
    font-weight:200;
    cursor:pointer;
    display: inline-block;
    vertical-align: top;

    -webkit-transition:0.35s;
    -moz-transition:0.35s;
    -ms-transition:0.35s;
    -o-transition:0.35s;
    transition:0.35s;
}
.subscribe .button .text-done {
    display: none;
}
.subscribe .button::-moz-focus-inner {
    padding:0;
    border:none;
    margin:0;
}

.subscribe .button:hover {
    opacity:0.9;
}

@media screen and (max-width: 768px) {
.subscribe input {
    width:100%;
    margin-bottom:16px;
    font-size: 18px;
}
.subscribe .button {
    font-size:21px;
}
}

@media screen and (max-width: 568px) {
    .subscribe h1 {
        margin-top:35px;
        margin-bottom: 10px;
    }
    .subscribe p {
        margin-top: 18px;
    }
    .subscribe .hero {
        margin-top: 22px;
    }
}
/* PADDINGS start */
.subscribe.top-padding-0 {
    padding-top: 0;
}
.subscribe.top-padding-1 {
    padding-top: 10px;
}
.subscribe.top-padding-2 {
    padding-top: 20px;
}
.subscribe.top-padding-3 {
    padding-top: 30px;
}
.subscribe.top-padding-4 {
    padding-top: 40px;
}
.subscribe.top-padding-5 {
    padding-top: 50px;
}
.subscribe.top-padding-6 {
    padding-top: 60px;
}
.subscribe.top-padding-7 {
    padding-top: 70px;
}
.subscribe.top-padding-8 {
    padding-top: 80px;
}
.subscribe.top-padding-9 {
    padding-top: 90px;
}
.subscribe.top-padding-10 {
    padding-top: 100px;
}
.subscribe.top-padding-11 {
    padding-top: 110px;
}
.subscribe.top-padding-12 {
    padding-top: 120px;
}

.subscribe.bottom-padding-0 {
    padding-bottom: 0;
}
.subscribe.bottom-padding-1 {
    padding-bottom: 10px;
}
.subscribe.bottom-padding-2 {
    padding-bottom: 20px;
}
.subscribe.bottom-padding-3 {
    padding-bottom: 30px;
}
.subscribe.bottom-padding-4 {
    padding-bottom: 40px;
}
.subscribe.bottom-padding-5 {
    padding-bottom: 50px;
}
.subscribe.bottom-padding-6 {
    padding-bottom: 60px;
}
.subscribe.bottom-padding-7 {
    padding-bottom: 70px;
}
.subscribe.bottom-padding-8 {
    padding-bottom: 80px;
}
.subscribe.bottom-padding-9 {
    padding-bottom: 90px;
}
.subscribe.bottom-padding-10 {
    padding-bottom: 100px;
}
.subscribe.bottom-padding-11 {
    padding-bottom: 110px;
}
.subscribe.bottom-padding-12 {
    padding-bottom: 120px;
}
@media screen and (max-width: 568px) {
    .subscribe.top-padding-0 {
        padding-top: 0;
    }
    .subscribe.top-padding-1 {
        padding-top: 9px;
    }
    .subscribe.top-padding-2 {
        padding-top: 18px;
    }
    .subscribe.top-padding-3 {
        padding-top: 27px;
    }
    .subscribe.top-padding-4 {
        padding-top: 36px;
    }
    .subscribe.top-padding-5 {
        padding-top: 45px;
    }
    .subscribe.top-padding-6 {
        padding-top: 54px;
    }
    .subscribe.top-padding-7 {
        padding-top: 63px;
    }
    .subscribe.top-padding-8 {
        padding-top: 72px;
    }
    .subscribe.top-padding-9 {
        padding-top: 81px;
    }
    .subscribe.top-padding-10 {
        padding-top: 90px;
    }
    .subscribe.top-padding-11 {
        padding-top: 99px;
    }
    .subscribe.top-padding-12 {
        padding-top: 108px;
    }

    .subscribe.bottom-padding-0 {
        padding-bottom: 0;
    }
    .subscribe.bottom-padding-1 {
        padding-bottom: 9px;
    }
    .subscribe.bottom-padding-2 {
        padding-bottom: 18px;
    }
    .subscribe.bottom-padding-3 {
        padding-bottom: 27px;
    }
    .subscribe.bottom-padding-4 {
        padding-bottom: 36px;
    }
    .subscribe.bottom-padding-5 {
        padding-bottom: 45px;
    }
    .subscribe.bottom-padding-6 {
        padding-bottom: 54px;
    }
    .subscribe.bottom-padding-7 {
        padding-bottom: 63px;
    }
    .subscribe.bottom-padding-8 {
        padding-bottom: 72px;
    }
    .subscribe.bottom-padding-9 {
        padding-bottom: 81px;
    }
    .subscribe.bottom-padding-10 {
        padding-bottom: 90px;
    }
    .subscribe.bottom-padding-11 {
        padding-bottom: 99px;
    }
    .subscribe.bottom-padding-12 {
        padding-bottom: 108px;
    }
}
/* PADDINGS end */
.subscribe .button.font-size-1,
.subscribe .button.font-size-1 {
    font-size: 17px;
}
.subscribe .button.font-size-2,
.subscribe .button.font-size-2 {
    font-size: 18px;
}
.subscribe .button.font-size-3,
.subscribe .button.font-size-3 {
    font-size: 19px;
}
.subscribe .button.font-size-4,
.subscribe .button.font-size-4 {
    font-size: 20px;
}
.subscribe .button.font-size-5,
.subscribe .button.font-size-5 {
    font-size: 21px;
}
.subscribe .button.font-size-6,
.subscribe .button.font-size-6 {
    font-size: 22px;
}
.subscribe .button.font-size-7,
.subscribe .button.font-size-7 {
    font-size: 23px;
}
.subscribe .button.font-size-8,
.subscribe .button.font-size-8 {
    font-size: 24px;
}
.subscribe .button.font-size-9,
.subscribe .button.font-size-9 {
    font-size: 26px;
}
.subscribe .button.line-height-1,
.subscribe .button.line-height-1 {
    line-height: 1.65;
}
.subscribe .button .line-height-1,
.subscribe .button.line-height-1 {
    line-height: 1.1;
}
.subscribe .button .line-height-2,
.subscribe .button.line-height-2 {
    line-height: 1.2;
}
.subscribe .button .line-height-3,
.subscribe .button.line-height-3 {
    line-height: 1.3;
}
.subscribe .button .line-height-4,
.subscribe .button.line-height-4 {
    line-height: 1.4;
}
.subscribe .button .line-height-5,
.subscribe .button.line-height-5 {
    line-height: 1.5;
}
.subscribe .button .line-height-6,
.subscribe .button.line-height-6 {
    line-height: 1.6;
}
.subscribe .button .line-height-7,
.subscribe .button.line-height-7 {
    line-height: 1.7;
}


.footer {
    padding-top: 120px;
    padding-bottom: 0;
    -webkit-transition: padding .25s ease-in-out;
       -moz-transition: padding .25s ease-in-out;
         -o-transition: padding .25s ease-in-out;
            transition: padding .25s ease-in-out;
}

.footer.without-text-editing {
    text-align: center;
}

.footer .container {
    border-top:1px solid rgba(151,151,151,0.2);
    padding:25px;
    font-size:18px;
    line-height:29px;
    color:rgba(108,108,108,0.7);
    position: relative;
}

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

.footer.logo .container {
    line-height:0;  
}
.footer .container a.brand {
    border: none;
}

@media screen and (max-width: 568px) {
    .footer {
        padding-top:72px;
    }
}
[class*=footer4] .container, [class*=footer5] .container, [class*=footer6] .container {
    border-top: none !important;
}
.footer .font-size-1 {
    font-size: 15px;
}
.footer .font-size-2 {
    font-size: 16px;
}
.footer .font-size-3 {
    font-size: 17px;
}
.footer .font-size-4 {
    font-size: 18px;
}
.footer .font-size-5 {
    font-size: 19px;
}
.footer .font-size-6 {
    font-size: 20px;
}
.footer .font-size-7 {
    font-size: 21px;
}
.footer .line-height-1 {
    line-height: 1.31;
}
.footer .line-height-2 {
    line-height: 1.41;
}
.footer .line-height-3 {
    line-height: 1.51;
}
.footer .line-height-4 {
    line-height: 1.61;
}
.footer .line-height-5 {
    line-height: 1.71;
}
.footer .line-height-6 {
    line-height: 1.81;
}
.footer .line-height-7 {
    line-height: 1.91;
}
/* PADDINGS start */
.footer.top-padding-0 {
    padding-top: 0;
}
.footer.top-padding-1 {
    padding-top: 10px;
}
.footer.top-padding-2 {
    padding-top: 20px;
}
.footer.top-padding-3 {
    padding-top: 30px;
}
.footer.top-padding-4 {
    padding-top: 40px;
}
.footer.top-padding-5 {
    padding-top: 50px;
}
.footer.top-padding-6 {
    padding-top: 60px;
}
.footer.top-padding-7 {
    padding-top: 70px;
}
.footer.top-padding-8 {
    padding-top: 80px;
}
.footer.top-padding-9 {
    padding-top: 90px;
}
.footer.top-padding-10 {
    padding-top: 100px;
}
.footer.top-padding-11 {
    padding-top: 110px;
}
.footer.top-padding-12 {
    padding-top: 120px;
}

.footer.bottom-padding-0 {
    padding-bottom: 0;
}
.footer.bottom-padding-1 {
    padding-bottom: 10px;
}
.footer.bottom-padding-2 {
    padding-bottom: 20px;
}
.footer.bottom-padding-3 {
    padding-bottom: 30px;
}
.footer.bottom-padding-4 {
    padding-bottom: 40px;
}
.footer.bottom-padding-5 {
    padding-bottom: 50px;
}
.footer.bottom-padding-6 {
    padding-bottom: 60px;
}
.footer.bottom-padding-7 {
    padding-bottom: 70px;
}
.footer.bottom-padding-8 {
    padding-bottom: 80px;
}
.footer.bottom-padding-9 {
    padding-bottom: 90px;
}
.footer.bottom-padding-10 {
    padding-bottom: 100px;
}
.footer.bottom-padding-11 {
    padding-bottom: 110px;
}
.footer.bottom-padding-12 {
    padding-bottom: 120px;
}
@media screen and (max-width: 568px) {
    .footer.top-padding-0 {
        padding-top: 0;
    }
    .footer.top-padding-1 {
        padding-top: 9px;
    }
    .footer.top-padding-2 {
        padding-top: 18px;
    }
    .footer.top-padding-3 {
        padding-top: 27px;
    }
    .footer.top-padding-4 {
        padding-top: 36px;
    }
    .footer.top-padding-5 {
        padding-top: 45px;
    }
    .footer.top-padding-6 {
        padding-top: 54px;
    }
    .footer.top-padding-7 {
        padding-top: 63px;
    }
    .footer.top-padding-8 {
        padding-top: 72px;
    }
    .footer.top-padding-9 {
        padding-top: 81px;
    }
    .footer.top-padding-10 {
        padding-top: 90px;
    }
    .footer.top-padding-11 {
        padding-top: 99px;
    }
    .footer.top-padding-12 {
        padding-top: 108px;
    }

    .footer.bottom-padding-0 {
        padding-bottom: 0;
    }
    .footer.bottom-padding-1 {
        padding-bottom: 9px;
    }
    .footer.bottom-padding-2 {
        padding-bottom: 18px;
    }
    .footer.bottom-padding-3 {
        padding-bottom: 27px;
    }
    .footer.bottom-padding-4 {
        padding-bottom: 36px;
    }
    .footer.bottom-padding-5 {
        padding-bottom: 45px;
    }
    .footer.bottom-padding-6 {
        padding-bottom: 54px;
    }
    .footer.bottom-padding-7 {
        padding-bottom: 63px;
    }
    .footer.bottom-padding-8 {
        padding-bottom: 72px;
    }
    .footer.bottom-padding-9 {
        padding-bottom: 81px;
    }
    .footer.bottom-padding-10 {
        padding-bottom: 90px;
    }
    .footer.bottom-padding-11 {
        padding-bottom: 99px;
    }
    .footer.bottom-padding-12 {
        padding-bottom: 108px;
    }
}
/* PADDINGS end */