/* ROBOTO FONT */

@font-face {
    font-family: "Roboto";
    src: local(Roboto Thin), url("../font/roboto/Roboto-Thin.woff2") format("woff2"), url("../fonts/roboto/Roboto-Thin.woff") format("woff");
    font-weight: 100;
}
    
@font-face {
    font-family: "Roboto";
    src: local(Roboto Light), url("../font/roboto/Roboto-Light.woff2") format("woff2"), url("../fonts/roboto/Roboto-Light.woff") format("woff");
    font-weight: 300;
}
    
@font-face {
    font-family: "Roboto";
    src: local(Roboto Regular), url("../font/roboto/Roboto-Regular.woff2") format("woff2"), url("../fonts/roboto/Roboto-Regular.woff") format("woff");
    font-weight: 400;
}
    
@font-face {
    font-family: "Roboto";
    src: local(Roboto Medium), url("../font/roboto/Roboto-Medium.woff2") format("woff2"), url("../fonts/roboto/Roboto-Medium.woff") format("woff");
    font-weight: 500;
}
    
@font-face {
    font-family: "Roboto";
    src: local(Roboto Bold), url("../font/roboto/Roboto-Bold.woff2") format("woff2"), url("../fonts/roboto/Roboto-Bold.woff")format("woff");
    font-weight: 700;
}

/* GOOGLE SANS FONT */
    
@font-face {
    font-family: "Google Sans";
    src: local(Google Sans Regular), url("../font/googlesans/GoogleSans-Regular.ttf") format("ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Google Sans";
    src: local(Google Sans Regular Italic), url("../font/googlesans/GoogleSans-Italic.ttf") format("ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Google Sans";
    src: local(Google Sans Medium), url("../font/googlesans/GoogleSans-Medium.ttf") format("ttf");
    font-weight: 500;
}

@font-face {
    font-family: "Google Sans";
    src: local(Google Sans Medium Italic), url("../font/googlesans/GoogleSans-MediumItalic.ttf") format("ttf");
    font-weight: 500;
}
    
@font-face {
    font-family: "Google Sans";
    src: local(Google Sans Bold), url("../font/googlesans/GoogleSans-Bold.ttf") format("ttf");
    font-weight: 700;
}

@font-face {
    font-family: "Google Sans";
    src: local(Google Sans Bold Italic), url("../font/googlesans/GoogleSans-BoldItalic.ttf") format("ttf");
    font-weight: 700;
}

/* ALL DEFAULT COLORS */

.red {
    background: #F44336;
    color: #ffffff;
}

.pink {
    background: #E91E63;
    color: #ffffff;
}

.purple {
    background: #9C27B0;
    color: #ffffff;
}

.deep-purple {
    background: #673AB7;
    color: #ffffff;
}

.indigo {
    background: #3F51B5;
    color: #ffffff;
}

.blue {
    background: #2196F3;
    color: #ffffff;
}

.light-blue {
    background: #03A9F4;
    color: #212121;
}

.cyan {
    background: #00BCD4;
    color: #212121;
}

.teal {
    background: #009688;
    color: #ffffff;
}

.green {
    background: #4CAF50;
    color: #ffffff;
}

.light-green {
    background: #8BC34A;
    color: #212121;
}

.lime {
    background: #CDDC39;
    color: #212121;
}

.yellow {
    background: #FFEB3B;
    color: #212121;
}

.amber {
    background: #FFC107;
    color: #212121;
}

.orange {
    background: #FF9800;
    color: #212121;
}

.deep-orange {
    background: #FF5722;
    color: #ffffff;
}

.brown {
    background: #795548;
    color: #ffffff;
}

.gray {
    background: #9E9E9E;
    color: #ffffff;
}

.blue-gray {
    background: #607D8B;
    color: #ffffff;
}

.red-text {
    color: #F44336;
}

.pink-text {
    color: #E91E63;
}

.purple-text {
    color: #9C27B0;
}

.deep-purple-text {
    color: #673AB7;
}

.indigo-text {
    color: #3F51B5;
}

.blue-text {
    color: #2196F3;
}

.light-blue-text {
    color: #03A9F4;
}

.cyan-text {
    color: #00BCD4;
}

.teal-text {
    color: #009688;
}

.green-text {
    color: #4CAF50;
}

.light-green-text {
    color: #8BC34A;
}

.lime-text {
    color: #CDDC39;
}

.yellow-text {
    color: #FFEB3B;
}

.amber-text {
    color: #FFC107;
}

.orange-text {
    color: #FF9800;
}

.deep-orange-text {
    color: #FF5722;
}

.brown-text {
    color: #795548;
}

.gray-text {
    color: #9E9E9E;
}

.blue-gray-text {
    color: #607D8B;
}

.black-text {
    color: #212121;
}

.pitch-black-text {
    color: #000000;
}

.white-text {
    color: #ffffff;
}

/* HTML STYLES */
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

@media only screen and (min-width: 0) {
    html {
        font-size: 14px;
    }
}
  
@media only screen and (min-width: 993px) {
    html {
        font-size: 14.5px;
    }
}

@media only screen and (min-width: 1200px) {
    html {
        font-size: 15px;
    }
}

*, *:before, *:after {
    box-sizing: inherit;
    -webkit-box-sizing: inherit;
}

/* STANDART TAGS */

body {
    font-family: "Google Sans", sans-serif;
    font-weight: normal;
    line-height: 1.5;
    
    padding: 16px;
    margin: 40px 0 0 0;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

body {
    padding: 16px 0 0 0;
}

@media only screen and (min-width: 601px) {
    body {
        padding: 16px;
    }
}

p {
    line-height: 2rem;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

a {
    color: #039be5;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

/* INPUTS */

input {
    border: none;
}

input[type=email] {
    font-family: "Google Sans", sans-serif;
    font-size: 1.1rem;

    padding: 10px 16px 6px 16px;
    border-radius: 2px;
    outline-width: 0;

    transition: border-bottom .3s, background .3s;
    -webkit-transition: border-bottom .3s, background .3s;
}

/* BUTTONS */

button:focus { outline:0; }

button, mcard {
    margin: 1em 0.3em;

    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    
    transition: box-shadow, filter 100ms;
    -webkit-transition: -webkit-box-shadow 300ms, filter 100ms;
    transition: -webkit-box-shadow 300ms, filter 100ms;
    transition: box-shadow 300ms, filter 100ms;
    transition: box-shadow 300ms, -webkit-box-shadow 300ms, filter 100ms;
}

button:hover, mcard.hoverable:hover {
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3);
}

button:hover {
    cursor: pointer;
}

button:active {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

button.lighten:active {
    filter: brightness(110%);
}

button.darken:active {
    filter: brightness(90%);
}

button {
    font-family: "Roboto";
    font-size: 1rem;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;

    height: 36px;
    padding: 0 2rem;
    border: none;
    border-radius: 2px;
    display: inline-block;
    
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
}

button.disabled, mcard.disabled {
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: default;
}

/* CUSOM TAGS */

mcode {
    font-style: italic;
    font-size: 90%;

    padding: 3px 5px;
	padding-left: 0.2em;
	padding-right: 0.2em;
	padding-top: 0.1em;
    padding-bottom: 0.1em;
    
	border-radius: 2px;
}

mcard {
    position: relative;
    display: inline-block;
    border-radius: 2px;
    margin: 0.5rem 0 1rem 0;
    padding: 16px;
}

/* HEADERS */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
}

h1 {
    font-size: 4.2rem;
    line-height: 110%;
    margin: 2.1rem 0 1.68rem 0;
}

h2 {
    font-size: 3.56rem;
    line-height: 110%;
    margin: 1.78rem 0 1.424rem 0;
}

h3 {
    font-size: 2.92rem;
    line-height: 110%;
    margin: 1.46rem 0 1.168rem 0;
}

h4 {
    font-size: 2.28rem;
    line-height: 110%;
    margin: 1.14rem 0 0.912rem 0;
}

h5 {
    font-size: 1.64rem;
    line-height: 110%;
    margin: 0.82rem 0 0.656rem 0;
}

h6 {
    font-size: 1rem;
    line-height: 110%;
    margin: 0.5rem 0 0.4rem 0;
}

/* HEADER */

header {
    line-height: 56px;

    display: block;
    width: 100%;
    height: 56px;
    
    z-index: 9997;

    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

header {
    position: fixed;
    margin: -56px 0 0 0;
}

header .blur-layer {
    position: relative;
    height: inherit;
    width: inherit;
}

@supports ((backdrop-filter: saturate(180%) blur(15px)) or (-webkit-backdrop-filter: saturate(180%) blur(15px))) {
    header .blur-layer {
        backdrop-filter: saturate(180%) blur(15px);
        -webkit-backdrop-filter: saturate(180%) blur(15px);
    }
}

header ul {
    margin: 0;
}

header ul li {
    float: left;
    padding: 0;

    transition: background-color .3s;
    -webkit-transition: background-color .3s;
}

header ul li.active {
    background-color: rgba(0, 0, 0, 0.1);
}

header ul a {
    font-size: 1rem;
    
    display: block;
    padding: 0 15px;
    
    cursor: pointer;

    transition: background-color .3s;
    -webkit-transition: background-color .3s;
}

header ul a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

header ul.left {
    float: left;
}

header .brand-logo {
    position: absolute;
    display: inline-block;

    height: 56px;
    width: 120px;
    padding: 0;
    margin: 0;

    background-repeat: no-repeat;
    background-size: 120px 56px;
}

header .brand-logo.center {
    left: 50%;
    
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

#navigation {
    top: 56px;
    
    transition: top 0.3s;
    -webkit-transition: top 0.3s;
}

ul:not(.browser-default) > li {
    list-style-type: none;
}

@media only screen and (min-width: 601px) {
    header {
        margin: -56px 0 0 -16px;
    }
}

@media only screen and (max-width: 992px) {
    header.blur-layer.nav-wrapper {
        height: 100%;
    }
    
    header .brand-logo {
        display: inline-block;
        position: absolute;
        
        height: 56px;
        width: 120px;
        padding: 0;
        margin: 0;
        left: 50%;

        background-repeat: no-repeat;
        background-size: 120px 56px;

        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }
    
    ul:not(.browser-default) > li {
        list-style-type: none;
    }
}

@media only screen and (max-width: 992px) {
    header .brand-logo {
        left: 50%;

        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }
    header .brand-logo.left, header .brand-logo.right {
        padding: 0;

        transform: none;
        -webkit-transform: none;
    }
    header .brand-logo.left {
        left: 0.5rem;
    }
    header .brand-logo.right {
        right: 0.5rem;
        left: auto;
    }
}

@media only screen and (min-width: 993px) {
    header a.button-collapse {
        display: none;
    }
}

header .button-collapse {
    position: relative;

    float: left;
    height: 56px;
    margin: 0 18px;

    z-index: 1;
}

#mobile-toggle-open, #mobile-toggle-close {
    cursor: pointer;
}

header .button-collapse i {
    height: 56px;
    line-height: 56px;
}

/* MOBILE NAVIGATION */

#mobile-navigation {
    position: fixed;
    left: -400px;
    top: 0;
    height: 100%;
    width: 280px;
    
    box-shadow: 0 0 10px #85888C;
    
    z-index: 9999;
    
    transition: left 0.3s;
    -webkit-transition: left 0.3s;
}

#mobile-navigation ul {
    padding: 0;
}

#mobile-navigation ul li {
    padding: 0;
}

#mobile-navigation ul li a {
    line-height: 48px;
    font-size: 16px;

    display: block;
    padding: 0 32px;
    width: auto;
    height: 48px;
    
    transition: background-color 0.3s;
    -webkit-transition: background-color 0.3s;
}

#mobile-navigation > a {
    margin-left: 32px;
    margin-top: 32px;
}

#dimming-layer {
    background-color: rgba(0, 0, 0, 0.5);
    
    top: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    
    z-index: 9998;
    
    transition: visibility 0s, opacity 0.3s;
    -webkit-transition: visibility 0s, opacity 0.3s;
}

/* Further given code is written by materializecss.com */

/* HIDE OPTIONS */

@media only screen and (max-width: 600px) {
    .hide-on-small-only, .hide-on-small-and-down {
        display: none !important;
    }
}

@media only screen and (max-width: 992px) {
    .hide-on-med-and-down {
        display: none !important;
    }
}

@media only screen and (min-width: 601px) {
    .hide-on-med-and-up {
        display: none !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
    .hide-on-med-only {
        display: none !important;
    }
}

@media only screen and (min-width: 993px) {
    .hide-on-large-only {
        display: none !important;
    }
}

@media only screen and (min-width: 993px) {
    .show-on-large {
        display: block !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
    .show-on-medium {
        display: block !important;
    }
}

@media only screen and (max-width: 600px) {
    .show-on-small {
        display: block !important;
    }
}

@media only screen and (min-width: 601px) {
    .show-on-medium-and-up {
        display: block !important;
    }
}

@media only screen and (max-width: 992px) {
    .show-on-medium-and-down {
        display: block !important;
    }
}

@media only screen and (max-width: 600px) {
    .center-on-small-only {
        text-align: center;
    }
}

.hide {
    display: none !important;
}

.left-align {
    text-align: left;
}

.right-align {
    text-align: right;
}

.center, .center-align {
    text-align: center;
}

.left {
    float: left !important;
}

.right {
    float: right !important;
}

/* GRID LAYOUT */

.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}

@media only screen and (min-width: 601px) {
    .container {
        width: 85%;
    }
}

@media only screen and (min-width: 993px) {
    .container {
        width: 70%;
    }
}

.container .row {
    margin-left: 0;
    margin-right: 0;
}

.section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.section.no-pad {
    padding: 0;
}

.section.no-pad-bot {
    padding-bottom: 0;
}

.section.no-pad-top {
    padding-top: 0;
}

.row {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.row .col {
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 0.75rem;
    min-height: 1px;
}

.row .col[class*="push-"], .row .col[class*="pull-"] {
    position: relative;
}

.row .col.s1 {
    width: 8.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s2 {
    width: 16.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s3 {
    width: 25%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s4 {
    width: 33.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s5 {
    width: 41.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s6 {
    width: 50%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s7 {
    width: 58.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s8 {
    width: 66.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s9 {
    width: 75%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s10 {
    width: 83.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s11 {
    width: 91.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.s12 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}

.row .col.offset-s1 {
    margin-left: 8.3333333333%;
}

.row .col.pull-s1 {
    right: 8.3333333333%;
}

.row .col.push-s1 {
    left: 8.3333333333%;
}

.row .col.offset-s2 {
    margin-left: 16.6666666667%;
}

.row .col.pull-s2 {
    right: 16.6666666667%;
}

.row .col.push-s2 {
    left: 16.6666666667%;
}

.row .col.offset-s3 {
    margin-left: 25%;
}

.row .col.pull-s3 {
    right: 25%;
}

.row .col.push-s3 {
    left: 25%;
}

.row .col.offset-s4 {
    margin-left: 33.3333333333%;
}

.row .col.pull-s4 {
    right: 33.3333333333%;
}

.row .col.push-s4 {
    left: 33.3333333333%;
}

.row .col.offset-s5 {
    margin-left: 41.6666666667%;
}

.row .col.pull-s5 {
    right: 41.6666666667%;
}

.row .col.push-s5 {
    left: 41.6666666667%;
}

.row .col.offset-s6 {
    margin-left: 50%;
}

.row .col.pull-s6 {
    right: 50%;
}

.row .col.push-s6 {
    left: 50%;
}

.row .col.offset-s7 {
    margin-left: 58.3333333333%;
}

.row .col.pull-s7 {
    right: 58.3333333333%;
}

.row .col.push-s7 {
    left: 58.3333333333%;
}

.row .col.offset-s8 {
    margin-left: 66.6666666667%;
}

.row .col.pull-s8 {
    right: 66.6666666667%;
}

.row .col.push-s8 {
    left: 66.6666666667%;
}

.row .col.offset-s9 {
    margin-left: 75%;
}

.row .col.pull-s9 {
    right: 75%;
}

.row .col.push-s9 {
    left: 75%;
}

.row .col.offset-s10 {
    margin-left: 83.3333333333%;
}

.row .col.pull-s10 {
    right: 83.3333333333%;
}

.row .col.push-s10 {
    left: 83.3333333333%;
}

.row .col.offset-s11 {
    margin-left: 91.6666666667%;
}

.row .col.pull-s11 {
    right: 91.6666666667%;
}

.row .col.push-s11 {
    left: 91.6666666667%;
}

.row .col.offset-s12 {
    margin-left: 100%;
}

.row .col.pull-s12 {
    right: 100%;
}

.row .col.push-s12 {
    left: 100%;
}

@media only screen and (min-width: 601px) {
    .row .col.m1 {
        width: 8.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m2 {
        width: 16.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m3 {
        width: 25%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m4 {
        width: 33.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m5 {
        width: 41.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m6 {
        width: 50%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m7 {
        width: 58.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m8 {
        width: 66.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m9 {
        width: 75%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m10 {
        width: 83.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m11 {
        width: 91.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.m12 {
        width: 100%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.offset-m1 {
        margin-left: 8.3333333333%;
    }
    .row .col.pull-m1 {
        right: 8.3333333333%;
    }
    .row .col.push-m1 {
        left: 8.3333333333%;
    }
    .row .col.offset-m2 {
        margin-left: 16.6666666667%;
    }
    .row .col.pull-m2 {
        right: 16.6666666667%;
    }
    .row .col.push-m2 {
        left: 16.6666666667%;
    }
    .row .col.offset-m3 {
        margin-left: 25%;
    }
    .row .col.pull-m3 {
        right: 25%;
    }
    .row .col.push-m3 {
        left: 25%;
    }
    .row .col.offset-m4 {
        margin-left: 33.3333333333%;
    }
    .row .col.pull-m4 {
        right: 33.3333333333%;
    }
    .row .col.push-m4 {
        left: 33.3333333333%;
    }
    .row .col.offset-m5 {
        margin-left: 41.6666666667%;
    }
    .row .col.pull-m5 {
        right: 41.6666666667%;
    }
    .row .col.push-m5 {
        left: 41.6666666667%;
    }
    .row .col.offset-m6 {
        margin-left: 50%;
    }
    .row .col.pull-m6 {
        right: 50%;
    }
    .row .col.push-m6 {
        left: 50%;
    }
    .row .col.offset-m7 {
        margin-left: 58.3333333333%;
    }
    .row .col.pull-m7 {
        right: 58.3333333333%;
    }
    .row .col.push-m7 {
        left: 58.3333333333%;
    }
    .row .col.offset-m8 {
        margin-left: 66.6666666667%;
    }
    .row .col.pull-m8 {
        right: 66.6666666667%;
    }
    .row .col.push-m8 {
        left: 66.6666666667%;
    }
    .row .col.offset-m9 {
        margin-left: 75%;
    }
    .row .col.pull-m9 {
        right: 75%;
    }
    .row .col.push-m9 {
        left: 75%;
    }
    .row .col.offset-m10 {
        margin-left: 83.3333333333%;
    }
    .row .col.pull-m10 {
        right: 83.3333333333%;
    }
    .row .col.push-m10 {
        left: 83.3333333333%;
    }
    .row .col.offset-m11 {
        margin-left: 91.6666666667%;
    }
    .row .col.pull-m11 {
        right: 91.6666666667%;
    }
    .row .col.push-m11 {
        left: 91.6666666667%;
    }
    .row .col.offset-m12 {
        margin-left: 100%;
    }
    .row .col.pull-m12 {
        right: 100%;
    }
    .row .col.push-m12 {
        left: 100%;
    }
}

@media only screen and (min-width: 993px) {
    .row .col.l1 {
        width: 8.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l2 {
        width: 16.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l3 {
        width: 25%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l4 {
        width: 33.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l5 {
        width: 41.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l6 {
        width: 50%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l7 {
        width: 58.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l8 {
        width: 66.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l9 {
        width: 75%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l10 {
        width: 83.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l11 {
        width: 91.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.l12 {
        width: 100%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.offset-l1 {
        margin-left: 8.3333333333%;
    }
    .row .col.pull-l1 {
        right: 8.3333333333%;
    }
    .row .col.push-l1 {
        left: 8.3333333333%;
    }
    .row .col.offset-l2 {
        margin-left: 16.6666666667%;
    }
    .row .col.pull-l2 {
        right: 16.6666666667%;
    }
    .row .col.push-l2 {
        left: 16.6666666667%;
    }
    .row .col.offset-l3 {
        margin-left: 25%;
    }
    .row .col.pull-l3 {
        right: 25%;
    }
    .row .col.push-l3 {
        left: 25%;
    }
    .row .col.offset-l4 {
        margin-left: 33.3333333333%;
    }
    .row .col.pull-l4 {
        right: 33.3333333333%;
    }
    .row .col.push-l4 {
        left: 33.3333333333%;
    }
    .row .col.offset-l5 {
        margin-left: 41.6666666667%;
    }
    .row .col.pull-l5 {
        right: 41.6666666667%;
    }
    .row .col.push-l5 {
        left: 41.6666666667%;
    }
    .row .col.offset-l6 {
        margin-left: 50%;
    }
    .row .col.pull-l6 {
        right: 50%;
    }
    .row .col.push-l6 {
        left: 50%;
    }
    .row .col.offset-l7 {
        margin-left: 58.3333333333%;
    }
    .row .col.pull-l7 {
        right: 58.3333333333%;
    }
    .row .col.push-l7 {
        left: 58.3333333333%;
    }
    .row .col.offset-l8 {
        margin-left: 66.6666666667%;
    }
    .row .col.pull-l8 {
        right: 66.6666666667%;
    }
    .row .col.push-l8 {
        left: 66.6666666667%;
    }
    .row .col.offset-l9 {
        margin-left: 75%;
    }
    .row .col.pull-l9 {
        right: 75%;
    }
    .row .col.push-l9 {
        left: 75%;
    }
    .row .col.offset-l10 {
        margin-left: 83.3333333333%;
    }
    .row .col.pull-l10 {
        right: 83.3333333333%;
    }
    .row .col.push-l10 {
        left: 83.3333333333%;
    }
    .row .col.offset-l11 {
        margin-left: 91.6666666667%;
    }
    .row .col.pull-l11 {
        right: 91.6666666667%;
    }
    .row .col.push-l11 {
        left: 91.6666666667%;
    }
    .row .col.offset-l12 {
        margin-left: 100%;
    }
    .row .col.pull-l12 {
        right: 100%;
    }
    .row .col.push-l12 {
        left: 100%;
    }
}

@media only screen and (min-width: 1201px) {
    .row .col.xl1 {
        width: 8.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl2 {
        width: 16.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl3 {
        width: 25%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl4 {
        width: 33.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl5 {
        width: 41.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl6 {
        width: 50%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl7 {
        width: 58.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl8 {
        width: 66.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl9 {
        width: 75%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl10 {
        width: 83.3333333333%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl11 {
        width: 91.6666666667%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.xl12 {
        width: 100%;
        margin-left: auto;
        left: auto;
        right: auto;
    }
    .row .col.offset-xl1 {
        margin-left: 8.3333333333%;
    }
    .row .col.pull-xl1 {
        right: 8.3333333333%;
    }
    .row .col.push-xl1 {
        left: 8.3333333333%;
    }
    .row .col.offset-xl2 {
        margin-left: 16.6666666667%;
    }
    .row .col.pull-xl2 {
        right: 16.6666666667%;
    }
    .row .col.push-xl2 {
        left: 16.6666666667%;
    }
    .row .col.offset-xl3 {
        margin-left: 25%;
    }
    .row .col.pull-xl3 {
        right: 25%;
    }
    .row .col.push-xl3 {
        left: 25%;
    }
    .row .col.offset-xl4 {
        margin-left: 33.3333333333%;
    }
    .row .col.pull-xl4 {
        right: 33.3333333333%;
    }
    .row .col.push-xl4 {
        left: 33.3333333333%;
    }
    .row .col.offset-xl5 {
        margin-left: 41.6666666667%;
    }
    .row .col.pull-xl5 {
        right: 41.6666666667%;
    }
    .row .col.push-xl5 {
        left: 41.6666666667%;
    }
    .row .col.offset-xl6 {
        margin-left: 50%;
    }
    .row .col.pull-xl6 {
        right: 50%;
    }
    .row .col.push-xl6 {
        left: 50%;
    }
    .row .col.offset-xl7 {
        margin-left: 58.3333333333%;
    }
    .row .col.pull-xl7 {
        right: 58.3333333333%;
    }
    .row .col.push-xl7 {
        left: 58.3333333333%;
    }
    .row .col.offset-xl8 {
        margin-left: 66.6666666667%;
    }
    .row .col.pull-xl8 {
        right: 66.6666666667%;
    }
    .row .col.push-xl8 {
        left: 66.6666666667%;
    }
    .row .col.offset-xl9 {
        margin-left: 75%;
    }
    .row .col.pull-xl9 {
        right: 75%;
    }
    .row .col.push-xl9 {
        left: 75%;
    }
    .row .col.offset-xl10 {
        margin-left: 83.3333333333%;
    }
    .row .col.pull-xl10 {
        right: 83.3333333333%;
    }
    .row .col.push-xl10 {
        left: 83.3333333333%;
    }
    .row .col.offset-xl11 {
        margin-left: 91.6666666667%;
    }
    .row .col.pull-xl11 {
        right: 91.6666666667%;
    }
    .row .col.push-xl11 {
        left: 91.6666666667%;
    }
    .row .col.offset-xl12 {
        margin-left: 100%;
    }
    .row .col.pull-xl12 {
        right: 100%;
    }
    .row .col.push-xl12 {
        left: 100%;
    }
}