@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-Semibold.eot');
    src: url('../fonts/Graphik-Semibold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Graphik-Semibold.woff2') format('woff2'),
    url('../fonts/Graphik-Semibold.woff') format('woff'),
    url('../fonts/Graphik-Semibold.ttf') format('truetype'),
    url('../fonts/Graphik-Semibold.svg#Graphik-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-Medium.eot');
    src: url('../fonts/Graphik-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Graphik-Medium.woff2') format('woff2'),
    url('../fonts/Graphik-Medium.woff') format('woff'),
    url('../fonts/Graphik-Medium.ttf') format('truetype'),
    url('../fonts/Graphik-Medium.svg#Graphik-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-Regular.eot');
    src: url('../fonts/Graphik-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Graphik-Regular.woff2') format('woff2'),
    url('../fonts/Graphik-Regular.woff') format('woff'),
    url('../fonts/Graphik-Regular.ttf') format('truetype'),
    url('../fonts/Graphik-Regular.svg#Graphik-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik-Black.eot');
    src: url('../fonts/Graphik-Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Graphik-Black.woff2') format('woff2'),
    url('../fonts/Graphik-Black.woff') format('woff'),
    url('../fonts/Graphik-Black.ttf') format('truetype'),
    url('../fonts/Graphik-Black.svg#Graphik-Black') format('svg');
    font-weight: 900;
    font-style: normal;
}




/*----------font weight-------------------*/

.fw--light     { font-weight: 300; }
.fw--regular   { font-weight: 400; }
.fw--medium    { font-weight: 500; }
.fw--semibold  { font-weight: 600; }
.fw--extrabold { font-weight: 800; }
.fw--black     { font-weight: 900; }

/*----------font style------------------*/

.txt--uppercase   { text-transform: uppercase; }
.txt--lowercase   { text-transform: lowercase; }
.txt--capitalize  { text-transform: capitalize; }

.txt--overline    { text-decoration: overline; }
.txt--underline   { text-decoration: underline; } 
.txt--linethrough { text-decoration: line-through; }

/*-----------font align -------------------*/

.txt--center  { text-align: center; }
.txt--left    { text-align: left; }
.txt--right   { text-align: right; }
.txt--justify { text-align: justify; }

/*---------elements align------------------*/

.pull--left   { float: left; }
.pull--right  { float: right; }
.pull--none   { float: none; }
.clearfix     { clear: both; }
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/*--------overflow---------------------------------*/

.overflow--visible { overflow: visible; }
.overflow--auto    { overflow: auto; }
.overflow--hidden  { overflow: hidden; }

/*----------------------------------------------------------------------------*/
/*#CONTAINER STYLE*/
/*----------------------------------------------------------------------------*/

[class^='container'] {
    width: 100%;
    padding-left:  15px;
    padding-right: 15px;
    margin-left:  auto;
    margin-right: auto;
}
/*max-width = width of container + padding-left + padding-right*/
.container    { max-width: 1000px; }
.container--lg { }
.container--md { }
.container--sm { }
.container--xs { }

.row.gutters-xs {
    margin-left:  -5px;
    margin-right: -5px;
}

.row.gutters-xs [class*='col'] {
    padding-left:  5px;
    padding-right: 5px;
}

.row.gutters-sm {
    margin-left:  -10px;
    margin-right: -10px;
}

.row.gutters-sm [class*='col'] {
    padding-left:  10px;
    padding-right: 10px;
}

.row.gutters-md {
    margin-left:  -20px;
    margin-right: -20px;
}

.row.gutters-md [class*='col'] {
    padding-left:  20px;
    padding-right: 20px;
}

.row.gutters-lg {
    margin-left:  -25px;
    margin-right: -25px;
}

.row.gutters-lg [class*='col'] {
    padding-left:  25px;
    padding-right: 25px;
}

.row.gutters-xl {
    margin-left:  -30px;
    margin-right: -30px;
}

.row.gutters-xl [class*='col'] {
    padding-left:  30px;
    padding-right: 30px;
}

/*----------------------------------------------------------------------------*/
/*#FONT COLOR*/
/*----------------------------------------------------------------------------*/

.txt--white,
.txt--white li         { color: #fff; }
.txt--black            { color: #000; }
.txt--gray             { color: #9f9f9f; }
.txt--light-gray       { color: #8eaabf; }
.txt--red              { color: #CD4A43; }

/*----------------------------------------------------------------------------*/
/*#BACKGROUND STYLE*/
/*----------------------------------------------------------------------------*/

.bg--white { background-color: #fff; }
.bg--blue  { background-color: #8eaabf; }
.bg--gray  { background-color: #f1f4f5; }

/*----------------------------------------------------------------------------*/
/*#PADDING STYLE*/
/*----------------------------------------------------------------------------*/

/*padding top/left/right/bottom --> { p-- } */
.p--0 { padding: 0!important; }

/*padding top/left/right/bottom --> { pt-- / pl-- / pr-- / pb-- } */
.pb--0 { padding-bottom: 0; }

/*padding left-right/top-bottom --> { p-lr-- / p-tb-- } */
.p-tb--0 {
    padding-top:    0;
    padding-bottom: 0;
}

.plr--10 {
    padding-left: 10px;
    padding-right: 10px;
}

/*----------------------------------------------------------------------------*/
/*#MARGIN STYLE*/
/*----------------------------------------------------------------------------*/

/*margin top/left/right/bottom --> { m-- } */
.m--0 { margin: 0!important; }

/*margin left-right/top-bottom --> { m-lr-- / m-tb-- } */
.m-tb--0 {
    margin-top:    0;
    margin-bottom: 0;
}

/*----------------------------------------------------------------------------*/
/*#GLOBAL STYLE*/
/*----------------------------------------------------------------------------*/

body {
    font-family: 'Graphik', sans-serif;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 900;
}

h1{
    font-size: 49px;
    color: #fff1c1;
}

h2 {
    font-size: 49px;
    color: #000000;
}

h3 {
    font-size: 26px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}

p,
a,
ul li,
ol li {
    font-size: 22px;
    line-height: 1.4;
    color: #333;
    font-weight: 400;
    margin-bottom: 30px;
}

p:last-child { margin-bottom: 0; }

.block--center {
    display: block;
    margin: auto;
}


/*----------------------------------------------------------------------------*/
/*#FONT SIZE*/
/*----------------------------------------------------------------------------*/

.txt--xxs       { font-size: 11px; }
.txt--xs        { font-size: 14px; }
.txt--sm        { font-size: 16px; }
.txt--md        { font-size: 22px; }
.txt--lg        { font-size: 24px; }
.txt--xl        { font-size: 28px; }
.txt--xxl       { font-size: 66px; }

/*----------------------------------------------------------------------------*/
/*#BACKGROUNDS*/
/*----------------------------------------------------------------------------*/

main {
    margin: auto;
    background-color: #fff;
}

/* HEADER */

.header__wrap {
    width: 100%;
    max-width: 515px;
}

.header__img {
    position: absolute;
    right: 0;
    bottom: 30px;
    z-index: 0;
    display: block;
}


/* IMAGES DEFAULT STYLES */

.left-img {
    margin-right: 35px;
    margin-bottom: 30px;
}

.right-img {
    margin-left: 35px;
    margin-bottom: 30px;
}

.box--shadow {
    -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}


/* LISTS */

.list li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 30px;
}

.list--check li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    display: block;
    background-repeat: no-repeat;
}

.list--check li { padding-left: 42px; }

.list--check li::before {
    width: 32px;
    height: 25px;
    background-position: 0 1px;
    background-image: url("../images/check.png");
}

.list--ordered,
.list--bullet { margin-bottom: 30px; }

.list--ordered li,
.list--bullet li {
    margin-bottom: 20px;
    margin-left: 40px;
}


.list--ordered li:last-child,
.list--bullet li:last-child { margin-bottom: 0; }

.list--ordered li { list-style: decimal; }
.list--bullet li { list-style: disc; }


.img-arrow {
    position: absolute;
    left: 50%;
    margin-left: -29px;
    bottom: -38px;
}

.p--relative { position: relative; }

/* PANEL */

.panel {
    border-radius: 10px;
    max-width: 840px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.panel__heading {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px;
}

.panel__item { padding: 25px 10px; }

.panel__item p { font-size: 17px; }

.border--right-white { border-right: 1px solid #fff; }
.border--right-gray  { border-right: 1px solid #f1f4f5; }


/*----------------------------------------------------------------------------*/
/*#BUTTON STYLE*/
/*----------------------------------------------------------------------------*/


.btn {
    -webkit-transition: all .3s ease-in-out;
         -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
    text-align: center;
}

.btn:hover {
    -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}

.btn--properties {
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    width: 100%;
    max-width: 505px;
    display: block;
    padding: 20px;
    border-radius: 4px;
    margin: 0 auto 15px;
    text-shadow: 0 2px 2px rgba(82, 60, 0, 0.5);
}

.btn--yellow {
    background: rgb(240,170,0);
    background: -moz-linear-gradient(0deg, rgba(240,170,0,1) 0%, rgba(242,193,0,1) 50%, rgba(243,203,0,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(240,170,0,1) 0%, rgba(242,193,0,1) 50%, rgba(243,203,0,1) 100%);
    background: linear-gradient(0deg, rgba(240,170,0,1) 0%, rgba(242,193,0,1) 50%, rgba(243,203,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f0aa00",endColorstr="#f3cb00",GradientType=1);
}

.container--padding {
    padding-top: 55px;
    padding-bottom: 55px;
}


/* FOOTER */

footer {
    background: #e8e8e8;
    padding: 40px 0;
}

.dsplay {
    width: 100%;
    display: table;
    box-sizing: border-box;
}

.ftrtxt, .ftrtxt2 {
    font-size: 18px;
    line-height: 30px;
    color: #737373;
    text-align: center;
    margin-bottom: 0;
}

.ftrtxt2 {
    font-size: 15px;
    line-height: 20px;
    padding: 10px 0 0 0;
}

.ftrtxt a {
    font-size: 18px;
    color: #737373;
}

.ftrtxt a:hover {
    color: #000;
}

.fancybox-content {
    padding: 0 !important;
    max-width: 850px;
}

.check-submit.disabled { opacity: 0.7; }
.check-submit.enabled { opacity: 1; }

.check-submit.disabled:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
}

.holder {
    position: relative;
    padding: 30px;
    overflow: hidden;
}

.scrollable-content {
    overflow-x: hidden;
    height: 100%;
    max-height: 600px;
    overflow-y: scroll;
    padding: 20px;
    background: #f1f1f1;
}

.title-bar h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.fancybox-slide--html .fancybox-close-small { right: 15px !important; }

.checkbox { margin-top: 50px; }

.checkbox label {
    cursor: pointer;
    position: relative;
}

.checkbox label::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 0;
    height: 15px;
    width: 15px;
    display: block;
    border: 1px solid #a2a2a2;
    background-color: #fff;
    color: #333;
    text-align: center;
    line-height: 1;
}

.checkbox label { padding-left: 10px; }

.checkbox input[type="checkbox"]:checked+label::before { content: "\2713"; }

.check {
    visibility: hidden;
    outline: none;
}

.error-msg {
    text-align: center;
    color: #FA4400;
    display: none;
    font-size: 18px;
    margin-top: -20px;
    margin-bottom: 10px !important;
}


/* MARGINS */

.mb--0          { margin-bottom: 0; }
.mb--10         { margin-bottom: 10px; }
.mb--30         { margin-bottom: 30px; }
.mb--60         { margin-bottom: 60px; }
.mr--m55        { margin-right: -55px; }

/*----------------------------------------------------------------------------*/
/*#RESPONSIVE STYLE*/
/*----------------------------------------------------------------------------*/

@media (max-width: 1080px) {
    .mr--m55 { margin-right: 0; }
}


@media (max-width: 960px) {
    .container--padding {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header__wrap { max-width: 100%; }

    .header__img {
        position: relative;
        margin: 50px auto auto;
        display: block;
        bottom: 0;
    }

    .tablet-mt--40 { margin-top: 40px; }
    .tablet-mb--20 { margin-bottom: 20px; }
}

@media (max-width: 900px) {
    .pull--right,
    .pull--left {
        float: none;
        display: block;
        margin: auto auto 30px;
    }
}


@media (max-width: 768px) {
    h1,
    h2 { font-size: 37px; }
}

@media (max-width: 576px) {
    .panel__item {
        padding: 10px 5px;
        min-height: 62px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .panel__item p { font-size: 15px; }

    .panel__item p.fw--medium { font-weight: 400; }

    .mb--60 { margin-bottom: 30px; }

    h1,
    h2 {
        font-size: 27px;
        margin-bottom: 20px;
    }

    h3 { font-size: 22px; }

    p,
    a,
    ul li {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .btn--properties { font-size: 28px; }

    .ftrtxt,
    .ftrtxt a {
        font-size: 15px;
        line-height: 20px;
    }
}

@media ( max-width: 420px) {
    h1,
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }

    .btn--properties {
        font-size: 23px;
        padding: 15px;
    }
}

@media ( max-width: 330px) {
    .panel__item p { font-size: 15px; }
}