﻿/*
    content.css
    - A simple css for basic formatting
    - Used to format the built-in snippets (content blocks) in ContentBuilder.js
    - You can adjust or customize this css according to your site design
    - Can be combined with popular css frameworks    
*/
@import url('//fonts.googleapis.com/css?family=Open+Sans:300,400,600,800');
/* default font */
@import url("../ionicons/css/ionicons.min.css");
/* Icon support */


/**********************************
    Adjustment for css frameworks
***********************************/

/* For UIKit */
html {
    color: #000;
}

/* For Material Design Lite */
.mdl-cell {
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Images' default margin */
.container img {
    margin: 1.4rem 0 1rem;
}

/**********************************
    Default Typography
***********************************/

html {
    font-size: 100%;
}

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 100%;
    line-height: 2;
    font-weight: 300;
}

p,
td,
li,
label {
    font-size: 1.07rem;
    line-height: 2;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    letter-spacing: 0px;
    line-height: 1.4;
}

h1 {
    font-size: 2.36rem;
    margin: 0.4rem 0;
}

h2 {
    font-size: 2rem;
    margin: 0.6rem 0;
}

h3 {
    font-size: 1.73rem;
    margin: 0.7rem 0;
}

h4 {
    font-size: 1.6rem;
    margin: 0.8rem 0;
}

h5 {
    font-size: 1.48rem;
    margin: 0.8rem 0;
}

h6 {
    font-size: 1.3rem;
    margin: 0.8rem 0;
}

p {
    margin: 1rem 0;
}

.display {
    margin-bottom: 0.5rem;
}

.display h1 {
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.4;
    /* text-transform: uppercase; */
}

.display p {
    font-size: 1.3rem;
    /* font-style: italic; */
}

@media all and (max-width: 1024px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.73rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    h4 {
        font-size: 1.48rem;
    }

    h5 {
        font-size: 1.3rem;
        font-weight: bold;
    }

    h6 {
        font-size: 1rem;
        font-weight: bold;
    }

    .display h1 {
        font-size: 2.2rem;
    }

    .display p {
        font-size: 1.1rem;
    }
}


/**********************************
    Basic Elements
***********************************/

a {
    color: #000;
}

hr {
    background: none;
    background-color: transparent;
    border: none;
    border-top: rgba(0, 0, 0, 0.18) 1px solid;
    /* margin: 30px 0 25px; */
    /* padding: 5px; */
}

img {
    max-width: 100%;
}

figure {
    margin: 0
}

/*ol, ul {line-height: inherit; font-weight: inherit;}
ul {
    list-style: initial;
    padding-left: 20px;
}
ul li {
    list-style: initial;
}
ol {padding-left: 20px;}
*/
table td {
    padding: 12px;
}

pre {
    font-family: courier;
    font-size: 1rem;
    white-space: pre-wrap;
    line-height: 1.4;
    padding: 15px;
    background: rgba(0, 0, 0, 0.03);
}

blockquote {
    margin: 16px 40px;
}

b,
strong {
    font-weight: 600;
}

sup {
    vertical-align: super;
}

sub {
    vertical-align: sub;
}

/**********************************
    Simple Grid 
    (if css framework not used)
***********************************/
.container {
    margin: 0 auto;
    max-width: 800px;
}

.column {
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

@media (min-width: 40rem) {
    .row {
        display: flex;
    }

    .column {
        float: left;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .column.full {
        width: 100%;
    }

    .column.two-third {
        width: 66.7%;
    }

    .column.two-fourth {
        width: 75%;
    }

    .column.two-fifth {
        width: 80%;
    }

    .column.two-sixth {
        width: 83.3%;
    }

    .column.half {
        width: 50%;
    }

    .column.third {
        width: 33.3%;
    }

    .column.fourth {
        width: 25%;
    }

    .column.fifth {
        width: 20%;
    }

    .column.sixth {
        width: 16.6%;
    }

    .column.flow-opposite {
        float: right;
    }
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}


/**********************************
    Useful Classes
***********************************/

.spacer {
    width: 100%
}

.center {
    text-align: center
}

.right {
    text-align: right
}

.left {
    text-align: left
}

.img-circular {
    display: inline-block;
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.img-circular img {
    display: inline;
    margin: 0 auto;
    height: 100%;
    width: auto;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
}

.padding-0 {
    padding: 0px !important;
    box-sizing: border-box;
}

.padding-10 {
    padding: 10px !important;
    box-sizing: border-box;
}

.padding-20 {
    padding: 20px !important;
    box-sizing: border-box;
}

.padding-30 {
    padding: 30px !important;
    box-sizing: border-box;
}

.padding-40 {
    padding: 40px !important;
    box-sizing: border-box;
}

.padding-50 {
    padding: 50px !important;
    box-sizing: border-box;
}

.padding-60 {
    padding: 60px !important;
    box-sizing: border-box;
}

@media all and (max-width: 540px) {
    .padding-0 {
        padding: 0px !important;
    }

    .padding-10 {
        padding: 5px !important;
    }

    .padding-20 {
        padding: 10px !important;
    }

    .padding-30 {
        padding: 15px !important;
    }

    .padding-40 {
        padding: 20px !important;
    }

    .padding-50 {
        padding: 25px !important;
    }

    .padding-60 {
        padding: 30px !important;
    }
}

.margin-0 {
    margin: 0 !important
}

.margin-20 {
    margin: 20px !important
}

.margin-25 {
    margin: 25px !important
}

.margin-30 {
    margin: 30px !important
}

.margin-35 {
    margin: 35px !important
}

.margin-40 {
    margin: 40px !important
}

.is-card {
    display: table;
    background-color: #fff;
}

.is-card>* {
    display: table;
}

.is-card-circle {
    width: 280px;
    height: 280px;
    border-radius: 500px;
    padding: 70px;
    margin: 0 auto;
}

@media all and (max-width: 540px) {
    .is-card-circle {
        zoom: 0.7;
        -moz-transform: scale(0.7);
    }
}

.is-card-content-centered {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.max-390 {
    max-width: 390px;
    margin: 0 auto;
}

.shadow-1 {
    /* card */
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.shadow-2 {
    /* screenshot */
    -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.shadow-3 {
    /* highlight */
    -webkit-box-shadow: 0 0px 100px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0px 100px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0px 100px rgba(0, 0, 0, 0.2);
}

img.circle {
    border-radius: 500px;
    margin-top: 0;
}

img.bordered {
    border: #ccc 1px solid;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    margin-top: 1.4em;
    margin-bottom: 1em;
}

.embed-responsive.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive.embed-responsive-4by3 {
    padding-bottom: 75%;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.list {
    position: relative;
    margin: 1.5em 0;
    box-shadow: none;
}

.list>i {
    position: absolute;
    left: -3px;
    top: 6px;
    font-size: 1.7em;
    line-height: 1;
}

.list>h2,
.list>h3 {
    margin: 0 0 0 50px !important;
    line-height: 1.2 !important;
}

.list>p {
    margin: 5px 0 0 50px !important
}

.list.larger>i {
    position: absolute;
    left: -3px;
    top: 0;
    font-size: 1.7em;
    line-height: 1;
}

.list.larger>h2,
.list.larger>h3 {
    margin: 0 0 0 70px !important;
    line-height: 1.2 !important;
}

.list.larger>p {
    margin: 5px 0 0 70px !important
}

.quote {
    position: relative;
    margin: 1.5em 0;
}

.quote>i {
    position: absolute;
    top: -10px;
    left: -7px;
    font-size: 2em;
}

.quote>small {
    margin-left: 50px;
    opacity: 0.7;
    font-size: 1em;
}

.quote>p {
    margin-left: 50px;
    font-size: 1.5em;
}

@media all and (max-width: 540px) {
    .quote>i {
        left: -15px;
        font-size: 1.5em;
    }

    .quote>small {
        margin-left: 20px;
        font-size: 1em;
    }

    .quote>p {
        margin-left: 20px;
        font-size: 1.2em;
    }
}

.is-social {
    line-height: 1;
    padding: 20px 0;
    /* margin-bottom:1.5em */
}

.is-social a>i {
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
    margin: 0 15px;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.is-social a:first-child>i {
    margin: 0 15px 0 0
}

.is-social a:last-child>i {
    margin: 0 0 0 15px
}

/* .is-social a:hover > i {color:#08c9b9;} */
.is-light-text .is-social a>i {
    color: rgba(255, 255, 255, 0.93)
}

.is-light-text .is-social a:hover>i {
    color: rgba(255, 255, 255, 0.93)
}

.is-dark-text .is-social a>i {
    color: #000
}

.is-dark-text .is-social a:hover>i {
    color: #000
}

/* .is-rounded-button-big {} */
.is-rounded-button-big a {
    display: inline-block;
    text-align: center;
    margin: 0 20px;
    border-radius: 500px;
    width: 110px;
    height: 110px;
    background-color: #aaa;
    overflow: hidden;
    text-decoration: none;
}

.is-rounded-button-big a i {
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    color: #ffffff;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.is-rounded-button-big a:first-child {
    margin: 0 20px 0 0;
}

.is-rounded-button-big a:last-child {
    margin: 0 0 0 20px;
}

/* .is-rounded-button-medium {} */
.is-rounded-button-medium a {
    display: inline-block;
    text-align: center;
    margin: 0 20px;
    border-radius: 500px;
    width: 70px;
    height: 70px;
    background-color: #aaa;
    overflow: hidden;
    text-decoration: none;
}

.is-rounded-button-medium a i {
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    color: #ffffff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.is-rounded-button-medium a:first-child {
    margin: 0 20px 0 0;
}

.is-rounded-button-medium a:last-child {
    margin: 0 0 0 20px;
}

.is-boxed-button-big {
    display: inline-block;
}

.is-boxed-button-big a {
    display: table;
    float: left;
    text-align: center;
    margin: 0 30px 0 0;
    width: 110px;
    height: 110px;
    background-color: #aaa;
    text-decoration: none;
}

.is-boxed-button-big a i {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    color: #ffffff;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.is-boxed-button-big2 {
    display: inline-block;
}

.is-boxed-button-big2 a {
    display: table;
    float: left;
    text-align: center;
    margin: 0 30px 0 0;
    width: 150px;
    height: 70px;
    background-color: #aaa;
    text-decoration: none;
}

.is-boxed-button-big2 a i {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    color: #ffffff;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.is-boxed-button-medium {
    display: inline-block;
}

.is-boxed-button-medium a {
    display: table;
    float: left;
    text-align: center;
    margin: 0 30px 0 0;
    width: 70px;
    height: 70px;
    background-color: #aaa;
    text-decoration: none;
}

.is-boxed-button-medium a i {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    color: #ffffff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.is-boxed-button-medium2 {
    display: inline-block;
}

.is-boxed-button-medium2 a {
    display: table;
    float: left;
    text-align: center;
    margin: 0 30px 0 0;
    width: 100px;
    height: 50px;
    background-color: #aaa;
    text-decoration: none;
}

.is-boxed-button-medium2 a i {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    color: #ffffff;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.is-boxed-button-small {
    display: inline-block;
}

.is-boxed-button-small a {
    display: table;
    float: left;
    text-align: center;
    margin: 0 20px 0 0;
    width: 50px;
    height: 50px;
    background-color: #aaa;
    text-decoration: none;
}

.is-boxed-button-small a i {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.height-20 {
    height: 20px
}

.height-40 {
    height: 40px
}

.height-60 {
    height: 60px
}

.height-80 {
    height: 80px
}

.height-100 {
    height: 100px
}

.height-120 {
    height: 120px
}

.height-140 {
    height: 140px
}

.height-160 {
    height: 160px
}

.height-180 {
    height: 180px
}

.height-200 {
    height: 200px
}

.height-220 {
    height: 220px
}

.height-240 {
    height: 240px
}

.height-260 {
    height: 260px
}

.height-280 {
    height: 280px
}

.height-300 {
    height: 300px
}

@media (min-width: 1921px) {
    .height-20 {
        height: 2.5vh
    }

    .height-40 {
        height: 5vh
    }

    .height-60 {
        height: 7.5vh
    }

    .height-80 {
        height: 10vh
    }

    .height-100 {
        height: 12.5vh
    }

    .height-120 {
        height: 15vh
    }

    .height-140 {
        height: 17, 5vh
    }

    .height-160 {
        height: 20vh
    }

    .height-180 {
        height: 22.5vh
    }

    .height-200 {
        height: 25vh
    }

    .height-220 {
        height: 27.5vh
    }

    .height-240 {
        height: 30vh
    }

    .height-260 {
        height: 32.5vh
    }

    .height-280 {
        height: 35vh
    }

    .height-300 {
        height: 37.5vh
    }
}

@media (max-width: 1440px) {
    .height-20 {
        height: 10px
    }

    .height-40 {
        height: 20px
    }

    .height-60 {
        height: 30px
    }

    .height-80 {
        height: 40px
    }

    .height-100 {
        height: 50px
    }

    .height-120 {
        height: 60px
    }

    .height-140 {
        height: 70px
    }

    .height-160 {
        height: 80px
    }

    .height-180 {
        height: 90px
    }

    .height-200 {
        height: 100px
    }

    .height-220 {
        height: 110px
    }

    .height-240 {
        height: 120px
    }

    .height-260 {
        height: 130px
    }

    .height-280 {
        height: 140px
    }

    .height-300 {
        height: 150px
    }
}

@media (max-width: 1024px) {
    .height-20 {
        height: 10px
    }

    .height-40 {
        height: 15px
    }

    .height-60 {
        height: 20px
    }

    .height-80 {
        height: 25px
    }

    .height-100 {
        height: 30px
    }

    .height-120 {
        height: 35px
    }

    .height-140 {
        height: 40px
    }

    .height-160 {
        height: 45px
    }

    .height-180 {
        height: 50px
    }

    .height-200 {
        height: 55px
    }

    .height-220 {
        height: 60px
    }

    .height-240 {
        height: 65px
    }

    .height-260 {
        height: 70px
    }

    .height-280 {
        height: 75px
    }

    .height-300 {
        height: 80px
    }
}

.size-12 {
    font-size: 12px !important
}

.size-14 {
    font-size: 14px !important
}

.size-15 {
    font-size: 15px !important
}

.size-16 {
    font-size: 16px !important
}

.size-17 {
    font-size: 17px !important
}

.size-18 {
    font-size: 18px !important
}

.size-19 {
    font-size: 19px !important
}

.size-21 {
    font-size: 21px !important
}

.size-24 {
    font-size: 24px !important
}

.size-28 {
    font-size: 28px !important
}

.size-32 {
    font-size: 32px !important
}

.size-35 {
    font-size: 35px !important
}

.size-38 {
    font-size: 38px !important
}

.size-42 {
    font-size: 42px !important
}

.size-46 {
    font-size: 46px !important
}

.size-48 {
    font-size: 48px !important
}

.size-50 {
    font-size: 50px !important;
    overflow-wrap: break-word;
}

.size-54 {
    font-size: 54px !important;
    overflow-wrap: break-word;
}

.size-60 {
    font-size: 60px !important;
    overflow-wrap: break-word;
}

.size-64 {
    font-size: 64px !important;
    overflow-wrap: break-word;
}

.size-68 {
    font-size: 68px !important;
    overflow-wrap: break-word;
}

.size-72 {
    font-size: 72px !important;
    overflow-wrap: break-word;
}

.size-76 {
    font-size: 76px !important;
    overflow-wrap: break-word;
}

.size-80 {
    font-size: 80px !important;
    overflow-wrap: break-word;
}

.size-84 {
    font-size: 84px !important;
    overflow-wrap: break-word;
}

.size-88 {
    font-size: 88px !important;
    overflow-wrap: break-word;
}

.size-92 {
    font-size: 92px !important;
    overflow-wrap: break-word;
}

.size-96 {
    font-size: 96px !important;
    overflow-wrap: break-word;
}

.size-100 {
    font-size: 100px !important;
    overflow-wrap: break-word;
}

.size-104 {
    font-size: 104px !important;
    overflow-wrap: break-word;
}

.size-108 {
    font-size: 108px !important;
    overflow-wrap: break-word;
}

.size-112 {
    font-size: 112px !important;
    overflow-wrap: break-word;
}

.size-116 {
    font-size: 116px !important;
    overflow-wrap: break-word;
}

.size-120 {
    font-size: 120px !important;
    overflow-wrap: break-word;
}

.size-124 {
    font-size: 124px !important;
    overflow-wrap: break-word;
}

.size-128 {
    font-size: 128px !important;
    overflow-wrap: break-word;
}

.size-132 {
    font-size: 132px !important;
    overflow-wrap: break-word;
}

.size-136 {
    font-size: 136px !important;
    overflow-wrap: break-word;
}

.size-140 {
    font-size: 140px !important;
    overflow-wrap: break-word;
}

.size-144 {
    font-size: 144px !important;
    overflow-wrap: break-word;
}

.size-148 {
    font-size: 148px !important;
    overflow-wrap: break-word;
}

.size-152 {
    font-size: 152px !important;
    overflow-wrap: break-word;
}

.size-156 {
    font-size: 156px !important;
    overflow-wrap: break-word;
}

.size-160 {
    font-size: 160px !important;
    overflow-wrap: break-word;
}

.size-164 {
    font-size: 164px !important;
    overflow-wrap: break-word;
}

.size-168 {
    font-size: 168px !important;
    overflow-wrap: break-word;
}

.size-172 {
    font-size: 172px !important;
    overflow-wrap: break-word;
}

.size-176 {
    font-size: 176px !important;
    overflow-wrap: break-word;
}

.size-180 {
    font-size: 180px !important;
    overflow-wrap: break-word;
}

.size-184 {
    font-size: 184px !important;
    overflow-wrap: break-word;
}

.size-188 {
    font-size: 188px !important;
    overflow-wrap: break-word;
}

.size-192 {
    font-size: 192px !important;
    overflow-wrap: break-word;
}

.size-196 {
    font-size: 196px !important;
    overflow-wrap: break-word;
}

.size-200 {
    font-size: 200px !important;
    overflow-wrap: break-word;
}

.size-204 {
    font-size: 204px !important;
    overflow-wrap: break-word;
}

.size-208 {
    font-size: 208px !important;
    overflow-wrap: break-word;
}

.size-212 {
    font-size: 212px !important;
    overflow-wrap: break-word;
}

.size-216 {
    font-size: 216px !important;
    overflow-wrap: break-word;
}

.size-220 {
    font-size: 220px !important;
    overflow-wrap: break-word;
}

.size-224 {
    font-size: 224px !important;
    overflow-wrap: break-word;
}

.size-228 {
    font-size: 228px !important;
    overflow-wrap: break-word;
}

.size-232 {
    font-size: 232px !important;
    overflow-wrap: break-word;
}

.size-236 {
    font-size: 236px !important;
    overflow-wrap: break-word;
}

.size-240 {
    font-size: 240px !important;
    overflow-wrap: break-word;
}

.size-244 {
    font-size: 244px !important;
    overflow-wrap: break-word;
}

.size-248 {
    font-size: 248px !important;
    overflow-wrap: break-word;
}

.size-252 {
    font-size: 252px !important;
    overflow-wrap: break-word;
}

.size-256 {
    font-size: 256px !important;
    overflow-wrap: break-word;
}

.size-260 {
    font-size: 260px !important;
    overflow-wrap: break-word;
}

.size-264 {
    font-size: 264px !important;
    overflow-wrap: break-word;
}

.size-268 {
    font-size: 268px !important;
    overflow-wrap: break-word;
}

.size-272 {
    font-size: 272px !important;
    overflow-wrap: break-word;
}

.size-276 {
    font-size: 276px !important;
    overflow-wrap: break-word;
}

.size-280 {
    font-size: 280px !important;
    overflow-wrap: break-word;
}

.size-284 {
    font-size: 284px !important;
    overflow-wrap: break-word;
}

.size-288 {
    font-size: 288px !important;
    overflow-wrap: break-word;
}

.size-292 {
    font-size: 292px !important;
    overflow-wrap: break-word;
}

.size-296 {
    font-size: 296px !important;
    overflow-wrap: break-word;
}

.size-300 {
    font-size: 300px !important;
    overflow-wrap: break-word;
}

.size-304 {
    font-size: 304px !important;
    overflow-wrap: break-word;
}

.size-308 {
    font-size: 308px !important;
    overflow-wrap: break-word;
}

.size-312 {
    font-size: 312px !important;
    overflow-wrap: break-word;
}

.size-316 {
    font-size: 316px !important;
    overflow-wrap: break-word;
}

.size-320 {
    font-size: 320px !important;
    overflow-wrap: break-word;
}

.size-324 {
    font-size: 324px !important;
    overflow-wrap: break-word;
}

.size-328 {
    font-size: 328px !important;
    overflow-wrap: break-word;
}

.size-332 {
    font-size: 332px !important;
    overflow-wrap: break-word;
}

.size-336 {
    font-size: 336px !important;
    overflow-wrap: break-word;
}

.size-340 {
    font-size: 340px !important;
    overflow-wrap: break-word;
}

.size-344 {
    font-size: 344px !important;
    overflow-wrap: break-word;
}

.size-348 {
    font-size: 348px !important;
    overflow-wrap: break-word;
}

.size-352 {
    font-size: 352px !important;
    overflow-wrap: break-word;
}

.size-356 {
    font-size: 356px !important;
    overflow-wrap: break-word;
}

.size-360 {
    font-size: 360px !important;
    overflow-wrap: break-word;
}

.size-364 {
    font-size: 364px !important;
    overflow-wrap: break-word;
}

.size-368 {
    font-size: 368px !important;
    overflow-wrap: break-word;
}

.size-372 {
    font-size: 372px !important;
    overflow-wrap: break-word;
}

.size-376 {
    font-size: 376px !important;
    overflow-wrap: break-word;
}

.size-380 {
    font-size: 380px !important;
    overflow-wrap: break-word;
}

.size-384 {
    font-size: 384px !important;
    overflow-wrap: break-word;
}

.size-388 {
    font-size: 388px !important;
    overflow-wrap: break-word;
}

.size-392 {
    font-size: 392px !important;
    overflow-wrap: break-word;
}

.size-396 {
    font-size: 396px !important;
    overflow-wrap: break-word;
}

.size-400 {
    font-size: 400px !important;
    overflow-wrap: break-word;
}

@media all and (max-width: 1800px) {
    .size-12 {
        font-size: 0.74vw !important
    }

    .size-14 {
        font-size: 0.86vw !important
    }

    .size-15 {
        font-size: 0.93vw !important
    }

    .size-16 {
        font-size: 0.99vw !important
    }

    .size-17 {
        font-size: 1.05vw !important
    }

    .size-18 {
        font-size: 1.11vw !important
    }

    .size-19 {
        font-size: 1.17vw !important
    }

    .size-21 {
        font-size: 1.29vw !important
    }

    .size-24 {
        font-size: 1.48vw !important
    }

    .size-28 {
        font-size: 1.56vw !important
    }

    .size-32 {
        font-size: 1.64vw !important
    }

    .size-35 {
        font-size: 1.82vw !important
    }

    .size-38 {
        font-size: 1.98vw !important
    }

    .size-42 {
        font-size: 2.19vw !important
    }

    .size-46 {
        font-size: 2.4vw !important
    }

    .size-48 {
        font-size: 2.5vw !important
    }

    .size-50 {
        font-size: 2.61vw !important;
    }

    .size-54 {
        font-size: 2.81vw !important;
    }

    .size-60 {
        font-size: 3.13vw !important;
    }

    .size-64 {
        font-size: 3.33vw !important;
    }

    .size-68 {
        font-size: 3.54vw !important;
    }

    .size-72 {
        font-size: 3.75vw !important;
    }

    .size-76 {
        font-size: 3.96vw !important;
    }

    .size-80 {
        font-size: 4.17vw !important
    }

    .size-84 {
        font-size: 4.38vw !important
    }

    .size-88 {
        font-size: 4.58vw !important
    }

    .size-92 {
        font-size: 4.79vw !important
    }

    .size-96 {
        font-size: 5vw !important
    }

    .size-100 {
        font-size: 5.21vw !important
    }

    .size-104 {
        font-size: 5.42vw !important
    }

    .size-108 {
        font-size: 5.63vw !important
    }

    .size-112 {
        font-size: 5.84vw !important
    }

    .size-116 {
        font-size: 6.04vw !important
    }

    .size-120 {
        font-size: 6.25vw !important
    }

    .size-124 {
        font-size: 6.46vw !important
    }

    .size-128 {
        font-size: 6.67vw !important
    }

    .size-132 {
        font-size: 6.88vw !important
    }

    .size-136 {
        font-size: 7.09vw !important
    }

    .size-140 {
        font-size: 7.29vw !important
    }

    .size-144 {
        font-size: 7.5vw !important
    }

    .size-148 {
        font-size: 7.71vw !important
    }

    .size-152 {
        font-size: 7.92vw !important
    }

    .size-156 {
        font-size: 8.13vw !important
    }

    .size-160 {
        font-size: 8.34vw !important
    }

    .size-164 {
        font-size: 8.54vw !important
    }

    .size-168 {
        font-size: 8.75vw !important
    }

    .size-172 {
        font-size: 8.96vw !important
    }

    .size-176 {
        font-size: 9.17vw !important
    }

    .size-180 {
        font-size: 9.38vw !important
    }

    .size-184 {
        font-size: 9.59vw !important
    }

    .size-188 {
        font-size: 9.79vw !important
    }

    .size-192 {
        font-size: 10vw !important
    }

    .size-196 {
        font-size: 10.21vw !important
    }

    .size-200 {
        font-size: 10.42vw !important
    }

    .size-204 {
        font-size: 10.63vw !important
    }

    .size-208 {
        font-size: 10.84vw !important
    }

    .size-212 {
        font-size: 11.05vw !important
    }

    .size-216 {
        font-size: 11.25vw !important
    }

    .size-220 {
        font-size: 11.46vw !important
    }

    .size-224 {
        font-size: 11.67vw !important
    }

    .size-228 {
        font-size: 11.88vw !important
    }

    .size-232 {
        font-size: 12.09vw !important
    }

    .size-236 {
        font-size: 12.3vw !important
    }

    .size-240 {
        font-size: 12.5vw !important
    }

    .size-244 {
        font-size: 12.71vw !important
    }

    .size-248 {
        font-size: 12.92vw !important
    }

    .size-252 {
        font-size: 13.13vw !important
    }

    .size-256 {
        font-size: 13.34vw !important
    }

    .size-260 {
        font-size: 13.55vw !important
    }

    .size-264 {
        font-size: 13.75vw !important
    }

    .size-268 {
        font-size: 13.96vw !important
    }

    .size-272 {
        font-size: 14.17vw !important
    }

    .size-276 {
        font-size: 14.38vw !important
    }

    .size-280 {
        font-size: 14.59vw !important
    }

    .size-284 {
        font-size: 14.8vw !important
    }

    .size-288 {
        font-size: 15vw !important
    }

    .size-292 {
        font-size: 15.21vw !important
    }

    .size-296 {
        font-size: 15.42vw !important
    }

    .size-300 {
        font-size: 15.63vw !important
    }

    .size-304 {
        font-size: 15.84vw !important
    }

    .size-308 {
        font-size: 16.06vw !important
    }

    .size-312 {
        font-size: 16.26vw !important
    }

    .size-316 {
        font-size: 16.46vw !important
    }

    .size-320 {
        font-size: 16.67vw !important
    }

    .size-324 {
        font-size: 16.88vw !important
    }

    .size-328 {
        font-size: 17.09vw !important
    }

    .size-332 {
        font-size: 17.3vw !important
    }

    .size-336 {
        font-size: 17.5vw !important
    }

    .size-340 {
        font-size: 17.71vw !important
    }

    .size-344 {
        font-size: 17.92vw !important
    }

    .size-348 {
        font-size: 18.13vw !important
    }

    .size-352 {
        font-size: 18.34vw !important
    }

    .size-356 {
        font-size: 18.55vw !important
    }

    .size-360 {
        font-size: 18.76vw !important
    }

    .size-364 {
        font-size: 18.96vw !important
    }

    .size-368 {
        font-size: 19.17vw !important
    }

    .size-372 {
        font-size: 19.38vw !important
    }

    .size-376 {
        font-size: 19.59vw !important
    }

    .size-380 {
        font-size: 19.8vw !important
    }

    .size-384 {
        font-size: 20vw !important
    }

    .size-388 {
        font-size: 20.21vw !important
    }

    .size-392 {
        font-size: 20.42vw !important
    }

    .size-396 {
        font-size: 20.63vw !important
    }

    .size-400 {
        font-size: 20.84vw !important
    }
}

@media all and (min-width: 1921px) {

    /* v2 */
    .v2 .size-12 {
        font-size: 0.63vw !important
    }

    .v2 .size-14 {
        font-size: 0.73vw !important
    }

    .v2 .size-15 {
        font-size: 0.78vw !important
    }

    .v2 .size-16 {
        font-size: 0.83vw !important
    }

    .v2 .size-17 {
        font-size: 0.89vw !important
    }

    .v2 .size-18 {
        font-size: 0.94vw !important
    }

    .v2 .size-19 {
        font-size: 0.99vw !important
    }

    .v2 .size-21 {
        font-size: 1.09vw !important
    }

    .v2 .size-24 {
        font-size: 1.25vw !important
    }

    .v2 .size-28 {
        font-size: 1.46vw !important
    }

    .v2 .size-32 {
        font-size: 1.67vw !important
    }

    .v2 .size-35 {
        font-size: 1.82vw !important
    }

    .v2 .size-38 {
        font-size: 1.98vw !important
    }

    .v2 .size-42 {
        font-size: 2.19vw !important
    }

    .v2 .size-46 {
        font-size: 2.4vw !important
    }

    .v2 .size-48 {
        font-size: 2.5vw !important
    }

    .v2 .size-50 {
        font-size: 2.61vw !important;
    }

    .v2 .size-54 {
        font-size: 2.81vw !important;
    }

    .v2 .size-60 {
        font-size: 3.13vw !important;
    }

    .v2 .size-64 {
        font-size: 3.33vw !important;
    }

    .v2 .size-68 {
        font-size: 3.54vw !important;
    }

    .v2 .size-72 {
        font-size: 3.75vw !important;
    }

    .v2 .size-76 {
        font-size: 3.96vw !important;
    }

    .v2 .size-80 {
        font-size: 4.17vw !important
    }

    .v2 .size-84 {
        font-size: 4.38vw !important
    }

    .v2 .size-88 {
        font-size: 4.58vw !important
    }

    .v2 .size-92 {
        font-size: 4.79vw !important
    }

    .v2 .size-96 {
        font-size: 5vw !important
    }

    .v2 .size-100 {
        font-size: 5.21vw !important
    }

    .v2 .size-104 {
        font-size: 5.42vw !important
    }

    .v2 .size-108 {
        font-size: 5.63vw !important
    }

    .v2 .size-112 {
        font-size: 5.84vw !important
    }

    .v2 .size-116 {
        font-size: 6.04vw !important
    }

    .v2 .size-120 {
        font-size: 6.25vw !important
    }

    .v2 .size-124 {
        font-size: 6.46vw !important
    }

    .v2 .size-128 {
        font-size: 6.67vw !important
    }

    .v2 .size-132 {
        font-size: 6.88vw !important
    }

    .v2 .size-136 {
        font-size: 7.09vw !important
    }

    .v2 .size-140 {
        font-size: 7.29vw !important
    }

    .v2 .size-144 {
        font-size: 7.5vw !important
    }

    .v2 .size-148 {
        font-size: 7.71vw !important
    }

    .v2 .size-152 {
        font-size: 7.92vw !important
    }

    .v2 .size-156 {
        font-size: 8.13vw !important
    }

    .v2 .size-160 {
        font-size: 8.34vw !important
    }

    .v2 .size-164 {
        font-size: 8.54vw !important
    }

    .v2 .size-168 {
        font-size: 8.75vw !important
    }

    .v2 .size-172 {
        font-size: 8.96vw !important
    }

    .v2 .size-176 {
        font-size: 9.17vw !important
    }

    .v2 .size-180 {
        font-size: 9.38vw !important
    }

    .v2 .size-184 {
        font-size: 9.59vw !important
    }

    .v2 .size-188 {
        font-size: 9.79vw !important
    }

    .v2 .size-192 {
        font-size: 10vw !important
    }

    .v2 .size-196 {
        font-size: 10.21vw !important
    }

    .v2 .size-200 {
        font-size: 10.42vw !important
    }

    .v2 .size-204 {
        font-size: 10.63vw !important
    }

    .v2 .size-208 {
        font-size: 10.84vw !important
    }

    .v2 .size-212 {
        font-size: 11.05vw !important
    }

    .v2 .size-216 {
        font-size: 11.25vw !important
    }

    .v2 .size-220 {
        font-size: 11.46vw !important
    }

    .v2 .size-224 {
        font-size: 11.67vw !important
    }

    .v2 .size-228 {
        font-size: 11.88vw !important
    }

    .v2 .size-232 {
        font-size: 12.09vw !important
    }

    .v2 .size-236 {
        font-size: 12.3vw !important
    }

    .v2 .size-240 {
        font-size: 12.5vw !important
    }

    .v2 .size-244 {
        font-size: 12.71vw !important
    }

    .v2 .size-248 {
        font-size: 12.92vw !important
    }

    .v2 .size-252 {
        font-size: 13.13vw !important
    }

    .v2 .size-256 {
        font-size: 13.34vw !important
    }

    .v2 .size-260 {
        font-size: 13.55vw !important
    }

    .v2 .size-264 {
        font-size: 13.75vw !important
    }

    .v2 .size-268 {
        font-size: 13.96vw !important
    }

    .v2 .size-272 {
        font-size: 14.17vw !important
    }

    .v2 .size-276 {
        font-size: 14.38vw !important
    }

    .v2 .size-280 {
        font-size: 14.59vw !important
    }

    .v2 .size-284 {
        font-size: 14.8vw !important
    }

    .v2 .size-288 {
        font-size: 15vw !important
    }

    .v2 .size-292 {
        font-size: 15.21vw !important
    }

    .v2 .size-296 {
        font-size: 15.42vw !important
    }

    .v2 .size-300 {
        font-size: 15.63vw !important
    }

    .v2 .size-304 {
        font-size: 15.84vw !important
    }

    .v2 .size-308 {
        font-size: 16.06vw !important
    }

    .v2 .size-312 {
        font-size: 16.26vw !important
    }

    .v2 .size-316 {
        font-size: 16.46vw !important
    }

    .v2 .size-320 {
        font-size: 16.67vw !important
    }

    .v2 .size-324 {
        font-size: 16.88vw !important
    }

    .v2 .size-328 {
        font-size: 17.09vw !important
    }

    .v2 .size-332 {
        font-size: 17.3vw !important
    }

    .v2 .size-336 {
        font-size: 17.5vw !important
    }

    .v2 .size-340 {
        font-size: 17.71vw !important
    }

    .v2 .size-344 {
        font-size: 17.92vw !important
    }

    .v2 .size-348 {
        font-size: 18.13vw !important
    }

    .v2 .size-352 {
        font-size: 18.34vw !important
    }

    .v2 .size-356 {
        font-size: 18.55vw !important
    }

    .v2 .size-360 {
        font-size: 18.76vw !important
    }

    .v2 .size-364 {
        font-size: 18.96vw !important
    }

    .v2 .size-368 {
        font-size: 19.17vw !important
    }

    .v2 .size-372 {
        font-size: 19.38vw !important
    }

    .v2 .size-376 {
        font-size: 19.59vw !important
    }

    .v2 .size-380 {
        font-size: 19.8vw !important
    }

    .v2 .size-384 {
        font-size: 20vw !important
    }

    .v2 .size-388 {
        font-size: 20.21vw !important
    }

    .v2 .size-392 {
        font-size: 20.42vw !important
    }

    .v2 .size-396 {
        font-size: 20.63vw !important
    }

    .v2 .size-400 {
        font-size: 20.84vw !important
    }
}

@media all and (max-width: 970px) {
    .size-12 {
        font-size: 12px !important
    }

    .size-14 {
        font-size: 14px !important
    }

    .size-15 {
        font-size: 15px !important
    }

    .size-16 {
        font-size: 16px !important
    }

    .size-17 {
        font-size: 17px !important
    }

    .size-18 {
        font-size: 18px !important
    }

    .size-19 {
        font-size: 19px !important
    }

    .size-21 {
        font-size: 21px !important
    }

    .size-24 {
        font-size: 24px !important
    }

    .size-28 {
        font-size: 28px !important
    }

    .size-32 {
        font-size: 32px !important
    }

    .size-35 {
        font-size: 35px !important
    }

    .size-38 {
        font-size: 38px !important
    }

    .size-42 {
        font-size: 40px !important
    }

    .size-46 {
        font-size: 42px !important
    }

    .size-48 {
        font-size: 44px !important
    }

    .size-50 {
        font-size: 46px !important;
    }

    .size-54 {
        font-size: 48px !important;
    }

    .size-60 {
        font-size: 50px !important;
    }

    .size-64 {
        font-size: 52px !important
    }

    .size-68 {
        font-size: 54px !important
    }

    .size-72 {
        font-size: 56px !important
    }

    .size-76 {
        font-size: 57px !important
    }

    .size-80 {
        font-size: 58px !important
    }

    .size-84 {
        font-size: 59px !important
    }

    .size-88 {
        font-size: 60px !important
    }

    .size-92 {
        font-size: 61px !important
    }

    .size-96 {
        font-size: 62px !important
    }

    .size-100 {
        font-size: 63px !important;
    }

    .size-104 {
        font-size: 63px !important;
    }

    .size-108 {
        font-size: 63px !important;
    }

    .size-112 {
        font-size: 64px !important;
    }

    .size-116 {
        font-size: 64px !important;
    }

    .size-120 {
        font-size: 64px !important;
    }

    .size-124 {
        font-size: 65px !important;
    }

    .size-128 {
        font-size: 65px !important;
    }

    .size-132 {
        font-size: 65px !important;
    }

    .size-136 {
        font-size: 66px !important;
    }

    .size-140 {
        font-size: 66px !important;
    }

    .size-144 {
        font-size: 66px !important;
    }

    .size-148 {
        font-size: 67px !important;
    }

    .size-152 {
        font-size: 67px !important;
    }

    .size-156 {
        font-size: 67px !important;
    }

    .size-160 {
        font-size: 68px !important;
    }

    .size-164 {
        font-size: 68px !important;
    }

    .size-168 {
        font-size: 68px !important;
    }

    .size-172 {
        font-size: 69px !important;
    }

    .size-176 {
        font-size: 69px !important;
    }

    .size-180 {
        font-size: 69px !important;
    }

    .size-184 {
        font-size: 70px !important;
    }

    .size-188 {
        font-size: 70px !important;
    }

    .size-192 {
        font-size: 70px !important;
    }

    .size-196 {
        font-size: 71px !important;
    }

    .size-200 {
        font-size: 71px !important;
    }

    .size-204 {
        font-size: 72px !important;
    }

    .size-208 {
        font-size: 72px !important;
    }

    .size-212 {
        font-size: 72px !important;
    }

    .size-216 {
        font-size: 72px !important;
    }

    .size-220 {
        font-size: 73px !important;
    }

    .size-224 {
        font-size: 73px !important
    }

    .size-228 {
        font-size: 73px !important
    }

    .size-232 {
        font-size: 73px !important
    }

    .size-236 {
        font-size: 74px !important
    }

    .size-240 {
        font-size: 74px !important
    }

    .size-244 {
        font-size: 74px !important
    }

    .size-248 {
        font-size: 74px !important
    }

    .size-252 {
        font-size: 75px !important
    }

    .size-256 {
        font-size: 75px !important
    }

    .size-260 {
        font-size: 75px !important
    }

    .size-264 {
        font-size: 75px !important
    }

    .size-268 {
        font-size: 76px !important
    }

    .size-272 {
        font-size: 76px !important
    }

    .size-276 {
        font-size: 76px !important
    }

    .size-280 {
        font-size: 76px !important
    }

    .size-284 {
        font-size: 77px !important
    }

    .size-288 {
        font-size: 77px !important
    }

    .size-292 {
        font-size: 77px !important
    }

    .size-296 {
        font-size: 77px !important
    }

    .size-300 {
        font-size: 78px !important
    }

    .size-304 {
        font-size: 78px !important
    }

    .size-308 {
        font-size: 78px !important
    }

    .size-312 {
        font-size: 78px !important
    }

    .size-316 {
        font-size: 79px !important
    }

    .size-320 {
        font-size: 79px !important
    }

    .size-324 {
        font-size: 79px !important
    }

    .size-328 {
        font-size: 79px !important
    }

    .size-332 {
        font-size: 80px !important
    }

    .size-336 {
        font-size: 80px !important
    }

    .size-340 {
        font-size: 80px !important
    }

    .size-344 {
        font-size: 80px !important
    }

    .size-348 {
        font-size: 81px !important
    }

    .size-352 {
        font-size: 81px !important
    }

    .size-356 {
        font-size: 81px !important
    }

    .size-360 {
        font-size: 81px !important
    }

    .size-364 {
        font-size: 82px !important
    }

    .size-368 {
        font-size: 82px !important
    }

    .size-372 {
        font-size: 82px !important
    }

    .size-376 {
        font-size: 82px !important
    }

    .size-380 {
        font-size: 83px !important
    }

    .size-384 {
        font-size: 83px !important
    }

    .size-388 {
        font-size: 83px !important
    }

    .size-392 {
        font-size: 83px !important
    }

    .size-396 {
        font-size: 84px !important
    }

    .size-400 {
        font-size: 84px !important
    }
}

@media all and (max-width: 1024px) {
    .margin-left-1024-reset {
        margin-left: 0px !important;
    }

    .margin-right-1024-reset {
        margin-right: 0px !important;
    }
}

.letter-spacing-25 {
    letter-spacing: 25px !important
}

.letter-spacing-24 {
    letter-spacing: 24px !important
}

.letter-spacing-23 {
    letter-spacing: 23px !important
}

.letter-spacing-22 {
    letter-spacing: 22px !important
}

.letter-spacing-21 {
    letter-spacing: 21px !important
}

.letter-spacing-20 {
    letter-spacing: 20px !important
}

.letter-spacing-19 {
    letter-spacing: 19px !important
}

.letter-spacing-18 {
    letter-spacing: 18px !important
}

.letter-spacing-17 {
    letter-spacing: 17px !important
}

.letter-spacing-16 {
    letter-spacing: 16px !important
}

.letter-spacing-15 {
    letter-spacing: 15px !important
}

.letter-spacing-14 {
    letter-spacing: 14px !important
}

.letter-spacing-13 {
    letter-spacing: 13px !important
}

.letter-spacing-12 {
    letter-spacing: 12px !important
}

.letter-spacing-11 {
    letter-spacing: 11px !important
}

.letter-spacing-10 {
    letter-spacing: 10px !important
}

.letter-spacing-9 {
    letter-spacing: 9px !important
}

.letter-spacing-8 {
    letter-spacing: 8px !important
}

.letter-spacing-7 {
    letter-spacing: 7px !important
}

.letter-spacing-6 {
    letter-spacing: 6px !important
}

.letter-spacing-5 {
    letter-spacing: 5px !important
}

.letter-spacing-4 {
    letter-spacing: 4px !important
}

.letter-spacing-3 {
    letter-spacing: 3px !important
}

.letter-spacing-2 {
    letter-spacing: 2px !important
}

.letter-spacing-1 {
    letter-spacing: 1px !important
}

@media all and (max-width: 1024px) {
    .letter-spacing-25 {
        letter-spacing: 5px !important
    }

    .letter-spacing-24 {
        letter-spacing: 5px !important
    }

    .letter-spacing-23 {
        letter-spacing: 5px !important
    }

    .letter-spacing-22 {
        letter-spacing: 5px !important
    }

    .letter-spacing-21 {
        letter-spacing: 5px !important
    }

    .letter-spacing-20 {
        letter-spacing: 5px !important
    }

    .letter-spacing-19 {
        letter-spacing: 5px !important
    }

    .letter-spacing-18 {
        letter-spacing: 5px !important
    }

    .letter-spacing-17 {
        letter-spacing: 5px !important
    }

    .letter-spacing-16 {
        letter-spacing: 5px !important
    }

    .letter-spacing-15 {
        letter-spacing: 5px !important
    }

    .letter-spacing-14 {
        letter-spacing: 5px !important
    }

    .letter-spacing-13 {
        letter-spacing: 5px !important
    }

    .letter-spacing-12 {
        letter-spacing: 5px !important
    }

    .letter-spacing-11 {
        letter-spacing: 5px !important
    }

    .letter-spacing-10 {
        letter-spacing: 5px !important
    }

    .letter-spacing-9 {
        letter-spacing: 5px !important
    }

    .letter-spacing-8 {
        letter-spacing: 4px !important
    }

    .letter-spacing-7 {
        letter-spacing: 4px !important
    }

    .letter-spacing-6 {
        letter-spacing: 3px !important
    }

    .letter-spacing-5 {
        letter-spacing: 3px !important
    }
}


/**********************************
    Title Styles
***********************************/

.is-light-text * {
    color: rgba(255, 255, 255, 0.93);
}

.is-dark-text * {
    color: #000;
}

/* Style 1 */

.is-title1-96 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.is-title1-80 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.is-title1-64 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.is-title1-48 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.is-title1-32 {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Style 2 */

.is-title2-96 {
    margin-top: 25px;
    margin-bottom: 20px;
}

.is-title2-80 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.is-title2-64 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.is-title2-48 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.is-title2-32 {
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Style 3 */

.is-title3-96 {
    margin-top: 30px;
    margin-bottom: 35px;
    padding: 20px 0;
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
}

.is-title3-80 {
    margin-top: 25px;
    margin-bottom: 33px;
    padding: 20px 0;
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
}

.is-title3-64 {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 18px 0;
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
}

.is-title3-48 {
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 18px 0;
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
}

.is-title3-32 {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
}

.is-light-text .is-title3-96 {
    border-top: #fff 2px solid;
    border-bottom: #fff 2px solid;
}

.is-light-text .is-title3-80 {
    border-top: #fff 2px solid;
    border-bottom: #fff 2px solid;
}

.is-light-text .is-title3-64 {
    border-top: #fff 2px solid;
    border-bottom: #fff 2px solid;
}

.is-light-text .is-title3-48 {
    border-top: #fff 2px solid;
    border-bottom: #fff 2px solid;
}

.is-light-text .is-title3-32 {
    border-top: #fff 2px solid;
    border-bottom: #fff 2px solid;
}

.is-dark-text .is-title3-96 {
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
}

.is-dark-text .is-title3-80 {
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
}

.is-dark-text .is-title3-64 {
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
}

.is-dark-text .is-title3-48 {
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
}

.is-dark-text .is-title3-32 {
    border-top: #000 2px solid;
    border-bottom: #000 2px solid;
}

/* Style 4 */

.is-title4-96 {
    margin-top: 30px;
    margin-bottom: 35px;
    padding: 20px 30px;
    border: #000 2px solid;
}

.is-title4-80 {
    margin-top: 25px;
    margin-bottom: 33px;
    padding: 20px 30px;
    border: #000 2px solid;
}

.is-title4-64 {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 18px 28px;
    border: #000 2px solid;
}

.is-title4-48 {
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 18px 25px;
    border: #000 2px solid;
}

.is-title4-32 {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: #000 2px solid;
}

.is-light-text .is-title4-96 {
    border: #fff 2px solid;
}

.is-light-text .is-title4-80 {
    border: #fff 2px solid;
}

.is-light-text .is-title4-64 {
    border: #fff 2px solid;
}

.is-light-text .is-title4-48 {
    border: #fff 2px solid;
}

.is-light-text .is-title4-32 {
    border: #fff 2px solid;
}

.is-dark-text .is-title4-96 {
    border: #000 2px solid;
}

.is-dark-text .is-title4-80 {
    border: #000 2px solid;
}

.is-dark-text .is-title4-64 {
    border: #000 2px solid;
}

.is-dark-text .is-title4-48 {
    border: #000 2px solid;
}

.is-dark-text .is-title4-32 {
    border: #000 2px solid;
}

/* Style 5 */

.is-title5-96 {
    margin-top: 10px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: #000 2px solid;
}

.is-title5-80 {
    margin-top: 10px;
    margin-bottom: 33px;
    padding-bottom: 25px;
    border-bottom: #000 2px solid;
}

.is-title5-64 {
    margin-top: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: #000 2px solid;
}

.is-title5-48 {
    margin-top: 10px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: #000 2px solid;
}

.is-title5-32 {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: #000 2px solid;
}

.is-light-text .is-title5-96 {
    border-bottom: #fff 2px solid;
}

.is-light-text .is-title5-80 {
    border-bottom: #fff 2px solid;
}

.is-light-text .is-title5-64 {
    border-bottom: #fff 2px solid;
}

.is-light-text .is-title5-48 {
    border-bottom: #fff 2px solid;
}

.is-light-text .is-title5-32 {
    border-bottom: #fff 2px solid;
}

.is-dark-text .is-title5-96 {
    border-bottom: #000 2px solid;
}

.is-dark-text .is-title5-80 {
    border-bottom: #000 2px solid;
}

.is-dark-text .is-title5-64 {
    border-bottom: #000 2px solid;
}

.is-dark-text .is-title5-48 {
    border-bottom: #000 2px solid;
}

.is-dark-text .is-title5-32 {
    border-bottom: #000 2px solid;
}

/* Extra Title Styles */

.is-title-lite {
    letter-spacing: 3px;
    word-spacing: 5px;
}

.is-title-lite.is-title3-96,
.is-title-lite.is-title4-96,
.is-title-lite.is-title5-96 {
    letter-spacing: 4px;
    word-spacing: 8px;
}

.is-title-lite.is-title3-80,
.is-title-lite.is-title4-80,
.is-title-lite.is-title5-80 {
    letter-spacing: 4px;
    word-spacing: 8px;
}

.is-title-lite.is-title3-64,
.is-title-lite.is-title4-64,
.is-title-lite.is-title5-64 {
    letter-spacing: 4px;
    word-spacing: 8px;
}

.is-title-lite.is-title3-48,
.is-title-lite.is-title4-48,
.is-title-lite.is-title5-48 {
    letter-spacing: 4px;
    word-spacing: 8px;
}

.is-title-lite.is-title3-32,
.is-title-lite.is-title4-32,
.is-title-lite.is-title5-32 {
    letter-spacing: 3px;
    word-spacing: 5px;
}

.is-title-bold {
    font-weight: 800;
}

.is-title-bold.is-title3-96,
.is-title-bold.is-title4-96,
.is-title-bold.is-title5-96 {
    border-width: 4px;
}

.is-title-bold.is-title3-80,
.is-title-bold.is-title4-80,
.is-title-bold.is-title5-80 {
    border-width: 4px;
}

.is-title-bold.is-title3-64,
.is-title-bold.is-title4-64,
.is-title-bold.is-title5-64 {
    border-width: 3px;
}

.is-title-bold.is-title3-48,
.is-title-bold.is-title4-48,
.is-title-bold.is-title5-48 {
    border-width: 3px;
}

.is-title-bold.is-title3-32,
.is-title-bold.is-title4-32,
.is-title-bold.is-title5-32 {
    border-width: 2px;
}


/**********************************
    Into Styles
***********************************/

.is-info1 {
    margin-top: 10px;
    margin-bottom: 0px;
    font-style: italic;
}

.is-info1.size-21 {
    margin-top: 12px;
}

.is-info1.size-24 {
    margin-top: 15px;
}

.is-info2 {
    margin-top: 10px;
    margin-bottom: 0px;
}

.is-info2.size-21 {
    margin-top: 12px;
}

.is-info2.size-24 {
    margin-top: 15px;
}


/**********************************
    Buttons Styles
***********************************/

.is-btn,
a.is-btn {
    padding: 10px 50px;
    font-size: 1rem;
    line-height: 2rem;
    border-radius: 0;
    letter-spacing: 3px;
    display: inline-block;
    margin: 3px 0;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-transition: all 0.16s ease;
    transition: all 0.16s ease;
    text-decoration: none;
    color: #000;
}

.is-btn:hover,
.is-btn:visited,
.is-btn:focus,
a.is-btn:hover,
a.is-btn:visited,
a.is-btn:focus {
    color: initial;
    text-decoration: initial;
    opacity: initial;
}

/* prevent overide */

/* ghost1 default */
.is-btn-ghost1,
a.is-btn-ghost1 {
    color: #000;
    border: 2px solid #111;
}

/* ghost1 light-text */
.is-light-text .is-btn-ghost1,
.is-dark-text .is-light-text .is-btn-ghost1,
.is-light-text a.is-btn-ghost1,
.is-dark-text .is-light-text a.is-btn-ghost1 {
    color: #fff;
    border: 2px solid #fff;
}

/* ghost1 dark-text */
.is-dark-text .is-btn-ghost1,
.is-light-text .is-dark-text .is-btn-ghost1,
.is-dark-text a.is-btn-ghost1,
.is-light-text .is-dark-text a.is-btn-ghost1 {
    color: #000;
    border: 2px solid #111;
}

/* ghost2 default */
.is-btn-ghost2,
a.is-btn-ghost2 {
    color: #000;
    border: 2px solid #dcdcdc;
    background-color: #dcdcdc;
}

/* ghost2 light-text */
.is-light-text .is-btn-ghost2,
.is-dark-text .is-light-text .is-btn-ghost2,
.is-light-text a.is-btn-ghost2,
.is-dark-text .is-light-text a.is-btn-ghost2 {
    color: #000;
    border: 2px solid #f9f9f9;
    background-color: #f9f9f9;
}

/* ghost2 dark-text */
.is-dark-text .is-btn-ghost2,
.is-light-text .is-dark-text .is-btn-ghost2,
.is-dark-text a.is-btn-ghost2,
.is-light-text .is-dark-text a.is-btn-ghost2 {
    color: #000;
    border: 2px solid #d7d7d7;
    background-color: #d7d7d7;
}

.is-btn.is-btn-small,
.is-btn-small {
    padding: 5px 25px;
    font-size: 0.85em;
}

.is-btn.is-upper,
.is-upper {
    text-transform: uppercase;
}

.is-btn.is-rounded-30,
.is-rounded-30 {
    border-radius: 30px;
}

/* Lightbox */

.block-click {
    cursor: pointer;
}

.block-click>* {
    pointer-events: none;
    user-select: none;
}

/* Column Height */

.min-height-300 {
    min-height: 300px !important;
}

.min-height-350 {
    min-height: 350px !important;
}

.min-height-400 {
    min-height: 400px !important;
}

.min-height-450 {
    min-height: 450px !important;
}

.min-height-500 {
    min-height: 500px !important;
}

.min-height-550 {
    min-height: 550px !important;
}

.min-height-600 {
    min-height: 600px !important;
}

.min-height-650 {
    min-height: 650px !important;
}

.min-height-700 {
    min-height: 700px !important;
}

@media all and (max-width: 1024px) {
    .min-height-300 {
        min-height: 300px !important;
    }

    .min-height-350 {
        min-height: 340px !important;
    }

    .min-height-400 {
        min-height: 380px !important;
    }

    .min-height-450 {
        min-height: 430px !important;
    }

    .min-height-500 {
        min-height: 480px !important;
    }

    .min-height-550 {
        min-height: 530px !important;
    }

    .min-height-600 {
        min-height: 580px !important;
    }

    .min-height-650 {
        min-height: 630px !important;
    }

    .min-height-700 {
        min-height: 680px !important;
    }
}

@media all and (max-width: 640px) {
    .min-height-300 {
        min-height: 240px !important;
    }

    .min-height-350 {
        min-height: 270px !important;
    }

    .min-height-400 {
        min-height: 300px !important;
    }

    .min-height-450 {
        min-height: 350px !important;
    }

    .min-height-500 {
        min-height: 400px !important;
    }

    .min-height-550 {
        min-height: 430px !important;
    }

    .min-height-600 {
        min-height: 460px !important;
    }

    .min-height-650 {
        min-height: 500px !important;
    }

    .min-height-700 {
        min-height: 540px !important;
    }
}

@media all and (max-width: 540px) {
    .min-height-300 {
        min-height: 180px !important;
    }

    .min-height-350 {
        min-height: 210px !important;
    }

    .min-height-400 {
        min-height: 240px !important;
    }

    .min-height-450 {
        min-height: 270px !important;
    }

    .min-height-500 {
        min-height: 300px !important;
    }

    .min-height-550 {
        min-height: 310px !important;
    }

    .min-height-600 {
        min-height: 320px !important;
    }

    .min-height-650 {
        min-height: 360px !important;
    }

    .min-height-700 {
        min-height: 400px !important;
    }
}

@media all and (max-width: 425px) {
    .min-height-300 {
        min-height: 150px !important;
    }

    .min-height-350 {
        min-height: 185px !important;
    }

    .min-height-400 {
        min-height: 220px !important;
    }

    .min-height-450 {
        min-height: 240px !important;
    }

    .min-height-500 {
        min-height: 260px !important;
    }

    .min-height-550 {
        min-height: 270px !important;
    }

    .min-height-600 {
        min-height: 280px !important;
    }

    .min-height-650 {
        min-height: 315px !important;
    }

    .min-height-700 {
        min-height: 350px !important;
    }
}