/*-----------------------------------------------------------------------------------
    
    CSS INDEX
    ===================
  
    1 - Global
    2 - Banner
         
-----------------------------------------------------------------------------------*/


/*---------------------------------------- 
==========================================

  1.  Global

==========================================
/*----------------------------------------*/
* {
    outline: 0 !important;
    font-weight: normal;
}
body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;    
}
a,
button {
    outline: 0 !important;
    transition: all .3s ease-in-out;
}
a:hover,
a:focus {
    text-decoration: none;
}
.form-control:focus {
    border: 0 1px 0 0;
    border-color: #fff;
    box-shadow: none;
}
.d-flex {
    display: flex !important;
    display: -ms-flexbox !important;
    display: -webkit-flex;
}
.d-inline-block {
    display: inline-block;
}
.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}
.fade-in {
    opacity: 0;
}
.btn-border {
    border: 2px solid #e72f33;
    padding: 6px 66px;
    background-color: white;
    border-radius: 0;
    color: #e72f33;
    font-size: 28px;
    text-transform: uppercase;
    transition: all .2s
}
.btn-border:hover {
    background-color: #e72f33;
    color: white;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.padd_lr0 {
    padding: 0;
}
.padd_r0 {
    padding-right: 0;
}
.padd_l0 {
    padding-left: 0;
}
.upper {
    text-transform: uppercase;
}
.button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #e72f33;
    line-height: 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.4s ease;
}
.button:hover {
    box-shadow: 4px 3px 24px rgba(231, 47, 50, 0.5);
    color: #fff;
}
.button:focus {
    color: #fff;
}

/*---------------------------------------- 
==========================================

  2. Banner

==========================================
/*----------------------------------------*/
.banner {
    position: relative;
    overflow: hidden;
}
.banner-inner {
    position: relative;
    background: url('../img/banner.png') no-repeat center center;
    background-size: contain;
    padding-top: 120px;
    padding-bottom: 120px;
    width: 100%;
    text-align: center;
    z-index: 1;
}
.banner-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    z-index: -1;
}
.logo {
    margin-bottom: 20px;
}
.title {
    font-size: 62px;
    line-height: 80px;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Raleway';
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}
.subtitle {
    font-size: 16px;
    line-height: 28px;
    font-family: 'Montserrat';
    font-weight: 400;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}
.banner-image {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 130px);
}

/*---------------------------------------- 
==========================================

  3. Section

==========================================
/*----------------------------------------*/
.section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.section-subject {
    text-align: center;
    margin-bottom: 50px;
}
.section-category {
    color: #e72f33;
    font-family: 'Raleway';
    font-weight: 900;
}
.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Montserrat';
    font-weight: 900;
}
.section-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

/*---------------------------------------- 
==========================================

  4. Demo

==========================================
/*----------------------------------------*/
.demo {
    text-align: center;
    margin-bottom: 50px;
}
.demo-item {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 12px 0 rgba(25,31,33,.1);
}
.demo-item:hover {
    z-index: 1;
}
.demo-inner {
    height: 255px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    transition: all .5s ease-in-out;
    overflow: hidden;
    border-radius: 8px;
}
.demo-inner.page-1 {
    background-image: url('../img/home-01.jpg');
}
.demo-inner.page-2 {
    background-image: url('../img/home-02.jpg');
}
.demo-inner.page-3 {
    background-image: url('../img/home-03.jpg');
}
.demo-inner:hover {
    transform: scale(1.1);
}
.demo-title {
    font-size: 22px;
    line-height: normal;
    font-family: 'Montserrat';
    margin-bottom: 20px;
    color: #252525;
}
.demo-title:hover {
    color: #252525;
    text-decoration: underline;
}

/*---------------------------------------- 
==========================================

  5. Copyright

==========================================
/*----------------------------------------*/
.copyright {
    text-align: center;
    background-color: #252525;
    padding: 15px;
}
.copyright-text {
    margin-bottom: 0;
    color: #fff;
    font-family: 'Montserrat';
}