@font-face {
    font-family: 'Arial';
    src: URL('../fonts/Arial.ttf') ;
}
@font-face {
    font-family: 'EurostileLTStd';
    src: URL('../fonts/EurostileLTStd.otf');
}

@font-face {
    font-family: 'EurostileLTCondensed';
    src: URL('../fonts/EurostileLTCondensed.ttf') ;
}





.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, .titleFont{
font-family: 'Source Sans Pro';

}


.titleFontArial{
font-family: 'Source Sans Pro';

}

body{
    background: #e6e6e6;
font-family: 'Source Sans Pro';
    line-height: 1.8em;
    /*font-family: Source Sans Pro;*/
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0em;
    text-transform: none;
    line-height: 1.7em;
    /*font-size: 1rem;*/
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}


h3 {
    color: #fff;
    font-size: 24px;
    text-align: center;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid transparent;
    margin-bottom: 30px;
    font-weight: 300;
}

.panel,
.panel-body {
  box-shadow: none;
}

.panel-group .panel-heading {
  padding: 0;
}

.panel-group .panel-heading a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  position: relative;
}

.panel-group .panel-heading a:after {
  content: '-';
  float: right;
}

.panel-group .panel-heading a.collapsed:after {
  content: '+';
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    min-width: 100%;
    overflow-x: hidden;
    font-size: 16px;
}

header .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;

    min-height: 12vh;
    min-width: 100%;
    z-index: 10;
    background: white;
}

header .navigation .logo{
    margin-left: 20px;
}

header .navigation .logo h1{
    /*color: #b1d4e0;*/
    font-size: 30px;
    line-height: 38px;
}

header .navigation .menu-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 45%;
    margin: auto 20px auto 0;
}

header .navigation .humbarger {
    margin-right: 20px;
    display: none;
}

header .navigation .humbarger .bar{
    width: 30px;
    height: 2px;
    margin: 7px;
    background: #b1d4e0;
}

header .navigation .menu-list li a {
    color: black;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 1s ease, border 1s ease;
    text-decoration: none;
}

/* ====================
  Intro Section
=======================*/
.intro-section {
    height: 100vh;
    position: relative;
    background: rgba(15, 20, 35, 0.9);
}

.intro-section .intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.intro-section .intro-content h1 {
    color: #b1d4e0;
    font-size: 5rem;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-top: 80px;
}

.intro-section .intro-content h6{
    margin-top: 5px;
    color: #b1d4e0;
    font-size: 2.5rem;
    font-weight: 300;
}

.intro-section .intro-content p {
    margin-top: 40px;
    color: #b1d4e0;
}

.intro-content .tagline {
    margin-top:80px;
}

.intro-section .intro-content .tagline .change-container{
    position: relative;
    display: inline-block;
    width: 560px;
    margin-bottom: 55px;
    margin-top: 30px;
}

.intro-section .intro-content .changing {
    position: absolute;
    overflow: hidden;
    width: 100%;
    left:0;
    bottom:0;
    height:0;
    opacity:0;
    color: #b1d4e0;
    text-transform: uppercase;
    word-spacing: 5px;
    text-align: center;
    font-size: 2.5rem;
}

.changing:nth-child(1) {
    animation: revealNextWord 6s cubic-bezier(0.57, 1.52, 0.9, 1.08) 1.5s infinite;
}

.changing:nth-child(2) {
    animation: revealNextWord 6s cubic-bezier(0.57, 1.52, 0.9, 1.08) 3s infinite;
}

.changing:nth-child(3) {
    animation: revealNextWord 6s cubic-bezier(0.57, 1.52, 0.9, 1.08) 4.5s infinite;
}

@keyframes revealNextWord {
    0% { 
        opacity: 0.3; 
        height: 0.0; 
    }
    10% { 
        opacity: 1; 
        height:1.2em; 
    }
    20% { 
        opacity: 1; 
        height:1.2em; 
    }
    28% { 
        opacity: 0; 
        height:2em; 
    }

}

.intro-section .intro-content .header-btn a{
    text-decoration: none;
    font-size: 1.5rem;
    color: #3498db;
    background-color: #b1d4e0;
    padding: 15px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.intro-section .intro-content .header-btn a:before{
    position: absolute;
    content: ""; 
    top: 0px;
    height: 100%;
    left: -25%;
    width: 0%;
    background-color: #3498db;
    transform: skew(50deg);
    transition-duration: 1s;
    z-index: 1;
}

.intro-section .intro-content .header-btn a:hover{
    color: #b1d4e0;
}

.intro-section .intro-content .header-btn a:hover:before{
    width: 170%;

}

.intro-section .intro-content .header-btn a span{
    position: relative;
    z-index: 9;
}
.navbar{
    margin-bottom: 0;
}
/* ====================
  Responsive Section
=======================*/

/* Tablet desktop :768px. */
@media only screen and (min-width: 991px) {
    header{
        margin-top:50px;
        margin-bottom:20px;

    }
       .navbar-brand{
            padding: 5px 85px;
            height: auto;
            position: inherit;
        }
    .navbar .navbar-nav {
        display: inline-block;
        float: none;
        top:10%;
        position: absolute     
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
       .navbar-brand{
            padding: 5px 85px;
            height: auto;
            position: inherit;
        }
    .navbar .navbar-nav {
        display: inline-block;
        float: none;
        top:10%;
        position: absolute     
    }
    header .navigation .menu-list {
        width: 60%;
    }

    header .navigation .menu-list li a{
        font-size: 1rem;
    }

}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {

    .mobile-padding{
        padding-top: 20px;
        text-align: center
    }
    header .navigation .menu-list {
        position: absolute;
        top: 12vh;
        min-width: 100%;
        background: rgba(15, 20, 35, 0.99);
        text-align: center;
        display: none;
    }

    header .navigation .menu-list li {
        display: block;
    }

    header .navigation .menu-list li a {
        display: block;
        padding: 20px;
        transition: color 1s ease, padding 1s ease, background-color 1s ease;

    }

    header .navigation .menu-list li a:hover{
        color: #b1d4e0;
        padding-left: 30px;
        background: rgba(177, 212, 224, 0.2);
    }


    header .navigation .humbarger{
        display: block;
    }

    .intro-section .intro-content h1 {
        font-size: 2.8rem;
    }

    .intro-section .intro-content h6 {
        font-size: 1.4rem;
    }

    .intro-section .intro-content .changing {
        font-size: 1.5rem;
    }

    .intro-section .intro-content .header-btn a{
        font-size: 1.25rem;
    }

}


/* small mobile :320px. */

@media only screen and (max-width: 479px) {
    .mobile-padding{
        padding-top: 20px;
        text-align: center
    }
    .intro-inner .intro-content h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .intro-inner .intro-content p {
        margin-top: 10px;
    }

}
.panel-default{
    border-color:transparent;
}
.panel{
    background-color: transparent;
}
.panel-default>.panel-heading{
        background-color: transparent;
    border-color: transparent;
}
.panel-default>.panel-heading+.panel-collapse>.panel-body{
   border-top-color:black; 
}

