html, body {
    margin: 0 auto;
}



* {
    font-family: 'Montserrat';
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

.mt-1 { margin-top: 10px;}
.mt-2 { margin-top: 20px;}
.mt-3 { margin-top: 30px;}
.mt-4 { margin-top: 40px;}
.mt-5 { margin-top: 50px;}
.mt-6 { margin-top: 60px;}
.mt-7 { margin-top: 70px;}
.mt-10 { margin-top: 100px;}
.mt-20 { margin-top: 200px;}

.container {
    max-width: 970px;
    margin: 0 auto;
    padding: 0 40px;
}

.flex {
    display: flex; align-items: center;
    flex-wrap: wrap;
}

.space-between {
    justify-content: space-between;
}

.flex-center {
    justify-content: center;
}

header {
    min-height: 70px;
    width: 100%;
    position: fixed;
    top: 0;
    line-height: 70px;
    z-index: 9000;
    background-color: rgba(255, 255, 255, .98);   
}

header div.container {
    position: relative;
}

header img.brand {
    height: 35px;
}

header nav ul {
    list-style-type: none;
}

header nav ul li {    
    display: inline-block;
}

header nav ul li a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    margin-left: 20px;
}

header nav ul li a.active {
    color: #44bd32;
    border-bottom: 1.5px solid #44bd32;
}

section {
    padding: 40px;
    box-sizing: border-box;
}

section.landing {
    height: 120vh;
    width: 100%;
    background-color: #eee;
    background-image: url(assets/landing_bg.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding-top: 150px;
}

body {position: relative;}
section.video {
    margin-top: -120px;
    height: 150vh;
    width: 100%;
    background-image: url(assets/video_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding-top: 200px;
}

h1 {
    font-size: 7vw;
    font-weight: 500;
}

.secondary {
    color: #7d7d7d;
    font-weight: 500;
}

.gray {
    color: #b7b7b7;
}

.dark {
    color: #787878;
}

.accent {
    color: #44bd32;
}

.call-to-action {
    margin-top: 50px;
}

.call-to-action-btn {
    margin-top: 30px;
}

.call-to-action-btn a{
    margin: 10px;
}

.btn {
    min-width: 200px;
    height: 40px;
    line-height: 40px;
    background-color: #eee;
    display:inline-block;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    color: white;
}

.btn-rounded {
    border-radius: 20px;
}

.btn-accent {
    background-color: #44bd32;
}

.btn-primary {
    background-color: #1865a0;
}

.btn-light {
    background-color: #fff;
    color: #1da6d2;
}



section.video .secondary {
    color: #b7b7b7;
}

section.video .highlight{
    color: #e9e9e9;
    font-size: 7vw;
    font-weight: 400;
}

section.video h1 {
    font-weight: 400;
    font-size: 5vw;
}

section.video h2 {
    font-weight: 400;
}

section.video {
    position: relative;
}

.separator {
    width: 200px;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    display: block;
    border-bottom: 2px solid #fffffe;
}

section.video a.play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}


.video-container {
    display: none;
}


section.video .next-arrow {
    left: 50%;
    bottom: 200px;
    position: absolute;
    transform: translateX(-50%);
}

section.team {
    text-align: center;
    padding: 0;
}

.info {
    color: #0f5f9b;
}

section.team .team-members {
    margin-top: 100px;
}

section.team .team-member {
    margin: 20px;
}

section.team .team-member img {
    height: 150px;
}
section.team .team-member .name {
    font-weight: 500;
    font-size: 24px;
}
section.team .team-member .role {
    font-weight: 500;
}

section.team .team-member .job {
    max-width: 200px;
    text-transform: uppercase;
}

section#contact-us {

    height: 150vh;
    width: 100%;
    background-color: #eee;
    background-image: url(assets/contact_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding-top: 400px;
}

section#contact-us > div {
    height: 195px;
    width: 270px;
}


#contact-form {
    color: #fff;
    background-color: #1da6d2;
    padding: 40px;
    text-align: center;
}

#contact-form .btn {
    text-align: center;
}

#contact-form .form-group {
    margin: 10px 0;
}

#contact-form label {
    width: 100px;
    display: inline-block;
    text-align: left;
    
}

#contact-form input {
    background: none;
    outline: none;
    border: none;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
}

#contact-form input:focus {
    border-bottom: 2px solid #2a71a7;
}

#contact-form h2 {
    text-align: center;
}

#contact-us h2:after {
    content : "";
    margin-top: 5px;
    border-bottom:1px solid #d4d4d4;
    display: block;
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
  }

#contact-us h2 {
    font-weight: 400;
}

#social-medias {
    color: #1da6d2;
    background-color: #fff;
    padding: 40px;
    text-align: center;
}
#social-medias div {
    height: 100px;
}

#social-medias img {
    height: 40px;
}

#social-medias a {
    margin: 5px;
}

#social-medias a.btn {
    margin-top: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
    }
     
    .video-container iframe,
    .video-container object,
    .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }

    ::placeholder {
        color: #eee;
    }

#collapseMenu {
    display: none;
}

footer {
    width: 100%;
    min-height: 200px;
    background-color: #2c3e50;
    color: white;
    text-align: left;
    font-weight: 400;
    padding: 20px;
    box-sizing: border-box;
}

footer > div.container {
    align-items: flex-start;
}

footer > div.container div:first-child {
    margin-bottom: 30px;
}

footer > div > div {
    max-width: 400px;
}

footer > div > div p {
    text-align: left;
}

footer a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    margin-right: 10px;
}

footer h3 {
    margin: 10px 0;
}

footer a img {
    height: 25px;
}

footer .copyright {
    text-align: center;
    margin-top: 50px;
}

footer .author {
    font-size: 12px;
}


@media only screen and (max-width: 720px) {
    header nav {
        display: none;
    }

    header > div {
        position: relative;
        padding-bottom: 60px;
    }
    #collapseMenu {

        display: block;
        position: absolute;
        top: 20px;
        
        right: 30px;
        z-index: 10000;
    }

    .container {
        padding: 0 20px;
    }

    #contact-us label {
        display: none;
    }

    header > div {
        display: block !important;
    }

    header img.brand {
        
    margin-top: 30px;
    }

    header nav ul {
        padding-left: 0;
    }

    header nav ul li {
        display: block;
        text-align: center;
        line-height: normal;
        padding: 20px;
    }

    header nav ul li a {
        margin-left: 0;
    }
}