/*******************************************************
*/
/* setting.css
 *******************************************************/

/* font-family */
body, html{font-family:'Paperlogy','Pretendard','Noto Sans KR','GmarketSans', "Helvetica Neue",Helvetica,Arial,sans-serif !important;}
input, button {font-family:'Paperlogy','Pretendard','Noto Sans KR', AppleSDGothicNeo-Regular,'Malgun Gothic','맑은 고딕',dotum,'돋움',sans-serif;}
textarea, select,button {font-family:'Pretendard','Noto Sans KR', AppleSDGothicNeo-Regular,'Malgun Gothic','맑은 고딕',dotum,'돋움',sans-serif;}

.border-radius{border-radius: 20px;overflow: hidden;}

/* form-control */
.control-label {display: inline-block;width: auto;margin-right: 0.25rem;font-size:14px;font-weight:500;color:#515151;white-space: nowrap;padding-right:8px;}
.form-control {display: block;width: 100%;height: calc(1.5em + 1rem + 2px);padding: 0.5rem 0.75rem;font-size: 1rem;font-weight: 400;line-height: 1.5;color: #495057;background-color: #fff;background-clip: padding-box;border: 1px solid #ced4da;border-radius: 0.125rem;transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;}
.form-btn{transition: 0.2s all;padding: 8px 35px;height: auto;background: #222;color: #fff;box-shadow: none;border: none;font-size: 15px;text-shadow: none;}
.form-btn:hover{background:#035ca0;}

/* table */
.table_wrap table{width:100%;min-width:750px;}
.table_wrap table td {text-align: center;padding: 11px;}

@media screen and (max-width: 768px) {
    .table_wrap {overflow-x: auto;white-space: nowrap;}

    .desktop { display: none; }
    .mobile { display: block; }
}

.alert-danger{background:#feecf0 !important;border-color:#fbd6d8 !important;}
.alert-danger-title{color:#d50136;}

/*******************************************************
*/
/* Layout
 *******************************************************/
:root {
    /*===================================================*/

    /* Container */
    --container-max-width: 1230px;
    --container-wide-max-width: 1430px;
    --container-padding: 0 15px;

    /* Section Padding */
    --section-padding-desktop: 120px 0;

    --section-padding-laptop: 110px 0;
    --section-padding-tablet: 90px 0;
    --section-padding-mobile: 70px 0;

}

/*===================================================*/

/* container */
.main-sec {padding:120px;overflow: hidden;}
body .container {max-width: var(--container-max-width);padding: var(--container-padding);width: 100%;margin: 0 auto;position: relative;overflow: hidden;}
body .container.wide {max-width: var(--container-wide-max-width);}
body .main_container {padding-top: 0;}

/* section-padding */
@media screen and (max-width: 1200px) {  .main-sec, .sub-sec {padding: var(--section-padding-desktop);}  }  @media screen and (max-width: 1024px) {  .main-sec, .sub-sec {padding: var(--section-padding-laptop);}  }  @media screen and (max-width: 768px) {  .main-sec, .sub-sec {padding: var(--section-padding-tablet);}  }  @media screen and (max-width: 480px) {  .main-sec, .sub-sec {padding: var(--section-padding-mobile);}  }


/*******************************************************
*/
/* Colors & button Components
 *******************************************************/

:root {
    /*===================================================*/

    /* Key Color  */
    --primary:#2196f3; /* ex)color-primary */
    --secondary:#007aff;
    --variant:#0D47A1;
    --variant-light: black; /* hover-color */
    --variant-dark: black;  /* hover-color */

    /* Black Scale */
    --black-100: #4d4d4d;
    --black-200: #404040;
    --black-300: #333333;
    --black-400: #282828;
    --black-500: #1d1d1d;
    --black-600: #000000;

    /* Greay Scale */
    --gray-100: #EBEBEB;
    --gray-200: #D9D9D9;
    --gray-300: #CCCCCC;
    --gray-400: #BDBDBD;
    --gray-500: #999999;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* 버튼 기본 스타일 */
    --button-height: 46px;
    --button-max-width:180px;
    --button-radius: 0;
    --button-padding: 0.7rem 1rem;
    --button-text-color: #fff;

    /* transition  */
    --color-transition: 0.3s;
    --button-transition: 0.4s;

    /*===================================================*/

    /* Status Colors */
    --color-info: #2768FF;
    --color-success: #27AE60;
    --color-warning: #FFB724;
    --color-error: #EB003B;
    /* Background Colors (10% 투명도) */
    --bg-info: rgba(39, 104, 255, 0.1);
    --bg-success: rgba(39, 174, 96, 0.1);
    --bg-warning: rgba(255, 183, 36, 0.1);
    --bg-error: rgba(235, 0, 59, 0.1);

}


/* Colors */
.color-primary{color: var(--primary) !important;transition: var(--color-transition);}
.color-secondary {color: var(--secondary);transition: var(--color-transition);}
.color-variant {color: var(--variant);transition: var(--color-transition);}

/* Black Scale */
.black{color:black !important;}
.black-100 { color: var(--black-100) !important;; }
.black-200 { color: var(--black-200) !important;; }
.black-300 { color: var(--black-300) !important;; }
.black-400 { color: var(--black-400) !important;; }
.white{color:white !important;}

/* Greay Scale */
.gray-100 { color: var(--gray-100) !important; }
.gray-200 { color: var(--gray-200) !important;}
.gray-300 { color: var(--gray-300) !important; }
.gray-400 { color: var(--gray-400) !important; }
.gray-500 { color: var(--gray-500) !important; }
.gray-600 { color: var(--gray-600) !important; }
.gray-700 { color: var(--gray-700) !important; }
.gray-800 { color: var(--gray-800) !important; }
.gray-900 { color: var(--gray-900) !important; }

/* Status Colors */
.info {color: var(--color-info);background-color: var(--bg-info);}
.success {color: var(--color-success);background-color: var(--bg-success);}
.warning {color: var(--color-warning);background-color: var(--bg-warning);}
.error {color: var(--color-error);background-color: var(--bg-error);}

/* 버튼 스타일 */
.button {border: none;display: flex;align-items: center;justify-content: center;border-radius: var(--button-radius);padding: var(--button-padding);height: var(--button-height);width: 100%;max-width: var(--button-max-width);transition: var(--button-transition);}
.button-primary {background-color: var(--primary) !important;color: var(--button-text-color);}
.button-secondary {background-color: var(--secondary) !important;color: var(--button-text-color);}
.button-variant {background-color: var(--variant) !important;color: var(--button-text-color);}
.button-variant-light {background-color: var(--variant-light) !important;color: var(--button-text-color);}
.button-variant-dark {background-color: var(--variant-dark) !important;color: var(--button-text-color);}


/* 호버 효과 */
.button-primary:hover {background-color: var(--variant) !important;}
.button-secondary:hover {background-color: var(--variant-dark) !important;}



/*******************************************************
*/
/* Text Components
 *******************************************************/

:root {
    /*===================================================*/

    --text-color:#333;
    --line-height: 1.3;

    --text-color-p:#333;
    --line-height-p: 1.3;

    /*===================================================*/
    --display-lg-font-size: 5.625rem;    /* 90px */
    --display-md-font-size: 4.5rem;      /* 72px */
    --display-sm-font-size: 4rem;        /* 64px */

    --h1-font-size: 4rem;                /* 64px */
    --h2-font-size: 3.5rem;              /* 56px */
    --h3-font-size: 2.5rem;              /* 40px */
    --h4-font-size: 2rem;                /* 32px */
    --h5-font-size: 1.5rem;              /* 24px */
    --h6-font-size: 1.25rem;             /* 20px */
    --p-font-size: 1rem;                 /* 16px */

    --h1-margin-bottom: 4rem;            /* 64px */
    --h2-margin-bottom: 2.5rem;          /* 40px */
    --h3-margin-bottom: 2rem;            /* 32px */
    --h4-margin-bottom: 1.5rem;          /* 24px */
    --h5-margin-bottom: 1.25rem;         /* 20px */
    --h6-margin-bottom: 1rem;            /* 16px */
    --p-margin-bottom: 0.875rem;         /* 14px */

    --section-title-margin: 5rem;        /* 80px */
    --section-title-font-size: 4rem;     /* 64px */
}


/* Title */
.section-title { margin-bottom: var(--section-title-margin); }
.section-title h1 {font-size:var(--section-title-font-size); }
.section-title.white h1{color:#fff !important;}

/* font-size */

.display-lg{font-size:var(--display-lg-font-size);}
.display-md{font-size:var(--display-md-font-size);}
.display-sm{font-size:var(--display-sm-font-size);}

.heading h1, .heading h2, .heading h3, .heading h4, .heading h5, .heading h6{color: var(--text-color);line-height: var(--line-height);}
.heading p{color: var(--text-color-p);line-height: var(--line-height-p);}

.heading h1 {font-size:var(--h1-font-size); margin-bottom: var(--h1-margin-bottom);}
.heading h2 {font-size:var(--h2-font-size); margin-bottom: var(--h2-margin-bottom);}
.heading h3 {font-size:var(--h3-font-size); margin-bottom: var(--h3-margin-bottom);}
.heading h4 {font-size:var(--h4-font-size); margin-bottom: var(--h4-margin-bottom);}
.heading h5 {font-size:var(--h5-font-size); margin-bottom: var(--h5-margin-bottom);}
.heading h6 {font-size:var(--h6-font-size); margin-bottom: var(--h6-margin-bottom);}
.heading p  {font-size: var(--p-font-size); margin-bottom: var(--p-margin-bottom);}


/* responsive */

@media screen and (max-width: 1200px) {
    :root {
        --display-lg-font-size: 5rem;
        --display-md-font-size: 4rem;
        --display-sm-font-size: 3.75rem;

        --h1-font-size: 3.5rem;
        --h2-font-size: 2.75rem;
        --h3-font-size: 2.5rem;

        --h1-margin-bottom: 3.5rem;
        --h2-margin-bottom: 2.25rem;
        --h3-margin-bottom: 1.875rem;
        --h4-margin-bottom: 1.375rem;
        --h5-margin-bottom: 1.25rem;
        --h6-margin-bottom: 1rem;
        --p-margin-bottom: 0.875rem;

        --section-title-margin: 4.8rem;
        --section-title-font-size: 3.5rem;
    }
}

@media screen and (max-width: 1024px) {
    :root {

        --display-lg-font-size: 4.75rem;
        --display-md-font-size: 4.25rem;
        --display-sm-font-size: 3.625rem;

        --h1-font-size: 3rem;
        --h2-font-size: 2.75rem;
        --h3-font-size: 2rem;
        --h4-font-size: 1.5rem;
        --h5-font-size: 1.3rem;
        --h6-font-size: 1.15rem;

        --h1-margin-bottom: 2.5rem;
        --h2-margin-bottom: 2rem;
        --h3-margin-bottom: 1.5rem;
        --h4-margin-bottom: 1.25rem;
        --h5-margin-bottom: 1.125rem;
        --h6-margin-bottom: 1rem;
        --p-margin-bottom: 0.875rem;

        --section-title-margin:4.5rem;
        --section-title-font-size:3rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --display-lg-font-size: 4.5rem;
        --display-md-font-size: 4rem;
        --display-sm-font-size: 3.5rem;

        --h1-font-size: 2.5rem;
        --h2-font-size: 2.25rem;
        --h3-font-size: 1.75rem;
        --h4-font-size: 1.5rem;
        --h5-font-size: 1.25rem;
        --h6-font-size: 1.125rem;
        --p-font-size: 0.9rem;

        --h1-margin-bottom: 2rem;
        --h2-margin-bottom: 1.75rem;
        --h3-margin-bottom: 1.375rem;
        --h4-margin-bottom: 1.125rem;
        --h5-margin-bottom: 1rem;
        --h6-margin-bottom: 0.875rem;
        --p-margin-bottom: 0.75rem;

        --section-title-margin: 4rem;
        --section-title-font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --display-lg-font-size: 3.5rem;
        --display-md-font-size: 2.5rem;
        --display-sm-font-size: 2.25rem;

        --h1-font-size: 2rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1.5rem;
        --h4-font-size: 1.25rem;
        --h5-font-size: 1.125rem;
        --h6-font-size: 1rem;
        --p-font-size:0.85rem;

        --h1-margin-bottom: 1.75rem;
        --h2-margin-bottom: 1.5rem;
        --h3-margin-bottom: 1.25rem;
        --h4-margin-bottom: 1rem;
        --h5-margin-bottom: 0.875rem;
        --h6-margin-bottom: 0.75rem;
        --p-margin-bottom: 0.75rem;

        --section-title-margin:3rem;
        --section-title-font-size: 2rem;
    }
}

@media screen and (max-width: 430px) {
    :root {
        --display-lg-font-size: 2.75rem;
        --display-md-font-size: 2rem;
        --display-sm-font-size: 1.75rem;

        --h1-font-size: 1.75rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --h4-font-size: 1.1rem;
        --h5-font-size: 1rem;
        --h6-font-size: 1rem;
        --p-font-size:0.844rem;

        /*--h1-margin-bottom: 1.5rem;*/
        /*--h2-margin-bottom: 1.25rem;*/
        /*--h3-margin-bottom: 1.125rem;*/
        /*--h4-margin-bottom: 1rem;*/
        /*--h5-margin-bottom: 0.875rem;*/
        /*--h6-margin-bottom: 0.75rem;*/
        /*--p-margin-bottom: 0.75rem;*/

        --section-title-margin:2rem;
        --section-title-font-size: 1.75rem;
    }
}


/*******************************************************
*/
/* Margin
 *******************************************************/

/* Margin Top */
body .mt-1{margin-top:1rem !important;}        /* 16px */
body .mt-2{margin-top:1.5rem !important;}      /* 24px */
body .mt-3{margin-top:2rem !important;}        /* 32px */
body .mt-4{margin-top:2.5rem !important;}      /* 40px */
body .mt-5{margin-top:3rem !important;}        /* 48px */
body .mt-6{margin-top:3.5rem !important;}      /* 56px */
body .mt-7{margin-top:4rem !important;}        /* 64px */
body .mt-8{margin-top:4.5rem !important;}      /* 72px */
body .mt-9{margin-top:5rem !important;}        /* 80px */
body .mt-10{margin-top:5.5rem !important;}     /* 88px */

/* Margin Bottom */
body .mb-1{margin-bottom:1rem !important;}     /* 16px */
body .mb-2{margin-bottom:1.5rem !important;}   /* 24px */
body .mb-3{margin-bottom:2rem !important;}     /* 32px */
body .mb-4{margin-bottom:2.5rem !important;}   /* 40px */
body .mb-5{margin-bottom:3rem !important;}     /* 48px */
body .mb-6{margin-bottom:3.5rem !important;}   /* 56px */
body .mb-7{margin-bottom:4rem !important;}     /* 64px */
body .mb-8{margin-bottom:4.5rem !important;}   /* 72px */
body .mb-9{margin-bottom:5rem !important;}     /* 80px */
body .mb-10{margin-bottom:5.5rem !important;}  /* 88px */


@media (max-width: 1200px) {
    body .mt-1{margin-top:1rem !important;}
    body .mt-2{margin-top:1.2rem !important;}
    body .mt-3{margin-top:1.5rem !important;}
    body .mt-4{margin-top:2rem !important;}
    body .mt-5{margin-top:2.5rem !important;}
    body .mt-6{margin-top:3rem !important;}
    body .mt-7{margin-top:3.5rem !important;}
    body .mt-8{margin-top:4rem !important;}
    body .mt-9{margin-top:4.5rem !important;}
    body .mt-10{margin-top:5rem !important;}

    body .mb-1{margin-bottom:1rem !important;}
    body .mb-2{margin-bottom:1.2rem !important;}
    body .mb-3{margin-bottom:1.5rem !important;}
    body .mb-4{margin-bottom:2rem !important;}
    body .mb-5{margin-bottom:2.5rem !important;}
    body .mb-6{margin-bottom:3rem !important;}
    body .mb-7{margin-bottom:3.5rem !important;}
    body .mb-8{margin-bottom:4rem !important;}
    body .mb-9{margin-bottom:4.5rem !important;}
    body .mb-10{margin-bottom:5rem !important;}
}

@media (max-width: 1024px) {
    body .mt-1{margin-top:0.9rem !important;}
    body .mt-2{margin-top:1.1rem !important;}
    body .mt-3{margin-top:1.3rem !important;}
    body .mt-4{margin-top:1.7rem !important;}
    body .mt-5{margin-top:2rem !important;}
    body .mt-6{margin-top:2.5rem !important;}
    body .mt-7{margin-top:3rem !important;}
    body .mt-8{margin-top:3.5rem !important;}
    body .mt-9{margin-top:4rem !important;}
    body .mt-10{margin-top:4.5rem !important;}

    body .mb-1{margin-bottom:0.9rem !important;}
    body .mb-2{margin-bottom:1.1rem !important;}
    body .mb-3{margin-bottom:1.3rem !important;}
    body .mb-4{margin-bottom:1.7rem !important;}
    body .mb-5{margin-bottom:2rem !important;}
    body .mb-6{margin-bottom:2.5rem !important;}
    body .mb-7{margin-bottom:3rem !important;}
    body .mb-8{margin-bottom:3.5rem !important;}
    body .mb-9{margin-bottom:4rem !important;}
    body .mb-10{margin-bottom:4.5rem !important;}
}

@media (max-width: 768px) {
    /*body .mt-1{margin-top:0.7rem !important;}*/
    body .mt-2{margin-top:0.9rem !important;}
    body .mt-3{margin-top:1.1rem !important;}
    body .mt-4{margin-top:1.3rem !important;}
    body .mt-5{margin-top:1.5rem !important;}
    body .mt-6{margin-top:2rem !important;}
    body .mt-7{margin-top:2.5rem !important;}
    body .mt-8{margin-top:3rem !important;}
    body .mt-9{margin-top:3.5rem !important;}
    body .mt-10{margin-top:4rem !important;}

    /*body .mb-1{margin-bottom:0.7rem !important;}*/
    body .mb-2{margin-bottom:0.9rem !important;}
    body .mb-3{margin-bottom:1.1rem !important;}
    body .mb-4{margin-bottom:1.3rem !important;}
    body .mb-5{margin-bottom:1.5rem !important;}
    body .mb-6{margin-bottom:2rem !important;}
    body .mb-7{margin-bottom:2.5rem !important;}
    body .mb-8{margin-bottom:3rem !important;}
    body .mb-9{margin-bottom:3.5rem !important;}
    body .mb-10{margin-bottom:4rem !important;}
}

@media (max-width: 480px) {
    /*body .mt-1{margin-top:0.6rem !important;}*/
    /*body .mt-2{margin-top:0.7rem !important;}*/
    /*body .mt-3{margin-top:0.8rem !important;}*/
    body .mt-4{margin-top:0.9rem !important;}
    body .mt-5{margin-top:1rem !important;}
    body .mt-6{margin-top:1.3rem !important;}
    body .mt-7{margin-top:1.6rem !important;}
    body .mt-8{margin-top:1.9rem !important;}
    body .mt-9{margin-top:2.2rem !important;}
    body .mt-10{margin-top:2.5rem !important;}

    body .mb-1{margin-bottom:0.6rem !important;}
    body .mb-2{margin-bottom:0.7rem !important;}
    body .mb-3{margin-bottom:0.8rem !important;}
    body .mb-4{margin-bottom:0.9rem !important;}
    body .mb-5{margin-bottom:1rem !important;}
    body .mb-6{margin-bottom:1.3rem !important;}
    body .mb-7{margin-bottom:1.6rem !important;}
    body .mb-8{margin-bottom:1.9rem !important;}
    body .mb-9{margin-bottom:2.2rem !important;}
    body .mb-10{margin-bottom:2.5rem !important;}
}


/*******************************************************
*/
/* font-face
 *******************************************************/

/* Paperlogy Thin - Weight 100 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/Paperlogy/Paperlogy-1Thin.eot'); /* IE6-IE8 */
    src: url('../fonts/Paperlogy/Paperlogy-1Thin.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-1Thin.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-1Thin.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-1Thin.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-1Thin.woff2') format('woff2');
}

/* Paperlogy ExtraLight - Weight 200 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/Paperlogy/Paperlogy-2ExtraLight.eot');
    src: url('../fonts/Paperlogy/Paperlogy-2ExtraLight.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-2ExtraLight.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-2ExtraLight.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-2ExtraLight.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-2ExtraLight.woff2') format('woff2');
}

/* Paperlogy Light - Weight 300 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Paperlogy/Paperlogy-3Light.eot');
    src: url('../fonts/Paperlogy/Paperlogy-3Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-3Light.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-3Light.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-3Light.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-3Light.woff2') format('woff2');
}

/* Paperlogy Regular - Weight 400 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Paperlogy/Paperlogy-4Regular.eot');
    src: url('../fonts/Paperlogy/Paperlogy-4Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-4Regular.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-4Regular.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-4Regular.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-4Regular.woff2') format('woff2');
}

/* Paperlogy Medium - Weight 500 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Paperlogy/Paperlogy-5Medium.eot');
    src: url('../fonts/Paperlogy/Paperlogy-5Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-5Medium.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-5Medium.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-5Medium.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-5Medium.woff2') format('woff2');
}

/* Paperlogy SemiBold - Weight 600 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Paperlogy/Paperlogy-6SemiBold.eot');
    src: url('../fonts/Paperlogy/Paperlogy-6SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-6SemiBold.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-6SemiBold.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-6SemiBold.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-6SemiBold.woff2') format('woff2');
}

/* Paperlogy Bold - Weight 700 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Paperlogy/Paperlogy-7Bold.eot');
    src: url('../fonts/Paperlogy/Paperlogy-7Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-7Bold.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-7Bold.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-7Bold.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-7Bold.woff2') format('woff2');
}

/* Paperlogy ExtraBold - Weight 800 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Paperlogy/Paperlogy-8ExtraBold.eot');
    src: url('../fonts/Paperlogy/Paperlogy-8ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-8ExtraBold.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-8ExtraBold.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-8ExtraBold.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-8ExtraBold.woff2') format('woff2');
}

/* Paperlogy Black - Weight 900 */
@font-face {
    font-family: 'Paperlogy';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Paperlogy/Paperlogy-9Black.eot');
    src: url('../fonts/Paperlogy/Paperlogy-9Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Paperlogy/Paperlogy-9Black.svg#Paperlogy') format('svg'),
    url('../fonts/Paperlogy/Paperlogy-9Black.ttf') format('truetype'),
    url('../fonts/Paperlogy/Paperlogy-9Black.woff') format('woff'),
    url('../fonts/Paperlogy/Paperlogy-9Black.woff2') format('woff2');
}


