

/*=======================================================================
// Fonts
=========================================================================*/
@import 'https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i|Playfair+Display:400,400i,700,700i,900,900i';
@font-face {
    font-family: 'Gobold';
    src: url('../fonts/GoboldBold.eot');
    src: url('../fonts/GoboldBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoboldBold.woff2') format('woff2'),
        url('../fonts/GoboldBold.woff') format('woff'),
        url('../fonts/GoboldBold.ttf') format('truetype'),
        url('../fonts/GoboldBold.svg#GoboldBold') format('svg');
    font-weight: bold;
    font-style: normal;
}
.Gobold{
    font-family: 'Gobold';
}
.playfair{
    font-family: 'Playfair Display', serif;
}

/*=======================================================================
// Normalization
=========================================================================*/
htm,body{
    color: #666666;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: .8px;
} 
a{
    color: #222222;
    transition: all ease 500ms;
    -moz-transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    -ms-transition: all ease 500ms;
    -o-transition: all ease 500ms;
}
a:hover{
    text-decoration: none;
    color: #1f3a93;
}
a:focus{
    outline-style:none !important;;
    text-decoration: none;
}
input:focus,
textarea:focus,
select:focus,
*:focus{
    outline-style:none !important;;
    border: 0px solid transparent !important;
}
ul,
ol{
    margin: 0;
    padding: 0;
    list-style: none;
}
button{
    border: none;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Lato', sans-serif;
    color: #000000;
    margin: 0;

}
blockquote{
    padding: 0;
    margin: 0;
    border: none;
    padding-left: 125px;
    position: relative;
    margin-bottom: 30px;
}
blockquote:before{
    position: absolute;
    left: 0;
    top: -33px;
    content: '';
    font-size: 217px;
    line-height: .8;
    background: url(../images/icon/qu.png) no-repeat scroll center center/cover;
    width: 90px;
    height: 71px;
}
blockquote p{
    font-size: 18px;
    color: #666666;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: .9px;
}


/*=======================================================================
//  Margin and padding setup
=========================================================================*/
.noPadding{
    padding: 0px !important;
}
.noPaddingBottom{
    padding-bottom: 0px !important;
}
.noPaddingLeft{
    padding-left: 0px !important;
}
.noPaddingRight{
    padding-right: 0px !important;
}
.noMarginBottom{
    margin-bottom: 0px !important;
}
.noMarginRight{
    margin-right: 0px !important;
}
.noPaddingTop{
    padding-top: 0px !important;
}

/*=======================================================================
//  Section Common Style
=========================================================================*/
.commonSection{
    padding: 150px 0;
    position: relative;
}
.commonTitle{
    margin-bottom: 53px;
}
.commonTitle h2{
    text-transform: uppercase;
    font-size: 20px;
    line-height: .8;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 20px;
}
.commonTitle p{
    line-height: 28px;
}
.bggray{
    background: #f2f1f1;
}
.overlay75G,
.overlay85G,
.overlay90G{
    position: relative;
}
.overlay75G:before{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(31, 58, 147, .75);
}
.overlay85G:before{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.4);
}
.overlay90G:before{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
[data-biglatter]{
    position: relative;
}
[data-biglatter]::before {
    color: rgba(0, 0, 0, 0.05);
    content: attr(data-biglatter);
    font-family: "Gobold";
    font-size: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}



/*=======================================================================
//  Button Style
=========================================================================*/
.roja_button{
    font-size: 16px;
    color: #000;
    letter-spacing: 1.6px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding: 0;
    line-height: .8;
    background: transparent;
}
.roja_button.white{
    color: #fff;
}
.roja_button:hover{
    color: #666;
}
.roja_button:after{
    position: absolute;
    content: '';
    left: 0;
    width: 76%;
    height:1px;
    background: #000;
    bottom: -2px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.roja_button.white:after{
    background: #fff;
}
.roja_button.white:hover{
    color: #9f9f9f;
}
.roja_button.white:after{
    background: #9f9f9f;
}
.roja_button i{
    font-size: 18px;
    position: relative;
    top: 2px;
    margin-left: 12px;
}
.roja_button:hover:after{
    width: 100%;
    background: #666666
}
button.roja_button:after{
    bottom: -6px;
}


