/* Typography */
.dark {
    color: #212529;
}

.light {
    color: #fff;
}

@media only screen and (min-width: 600px) {
    .left {
        text-align: left;
        margin-left: 0 !important;
    }
}

.center {
    margin: 10px auto;
    text-align: center;
}

/* Hero Element */
.hero {
    background: #01CCCC;
    text-align: center;
    padding: 60px 0;
}

.logo {
    width: 60px;
    margin-bottom: 20px;
}

.heroTitle {
    color: #212529;

}

.subTitle {
    margin: 30px auto;
    max-width: 800px;
}

/* Download Buttons */
.downBtn {
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    background: #fff;
    border-radius: 35px;
    padding: 10px;
    max-width: 310px;
    margin: 0 auto;
    text-decoration: none;
    transition: .4s;
}

.downBtn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.downBtnAlt {
    border: 2px solid #212529;
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    background: #fff;
    border-radius: 35px;
    padding: 10px;
    max-width: 310px;
    margin: 0 auto;
    text-decoration: none;
    transition: .4s;
}

.downBtnAlt:hover {
    background: #30D2D2;
    border: 2px solid #30D2D2;
}



.btnLabel {
    font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 1px;
    color: #212529;
}

/* Intro */
.intro {
    padding: 60px 0;
}

@media only screen and (max-width: 600px) {
    .intro {
        padding: 60px 15px;
    }
}

.intro .row {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    .intro .row {
        display: inline-block;
    }

    .introImg {
        margin-bottom: 30px;
    }
}

/* Media */
.media {
    padding: 60px 0;
    background: #E5EFF9;
}

.mediaTitle {
    margin: 0 auto;
    text-align: center;
}

.title h4 {
    margin: 20px 0;
}

.line {
    margin: 10px auto;
    height: 1px;
    width: 160px;
    border-top: 1px solid #0166CC;
}

.mediaBox {
    background: #0166CC;
    border-radius: 10px;
    padding: 30px;
    margin: 10px auto;
    text-align: center;
}

.mediaLogo {
    width: 90%;
}

.quote {
    font-family: "Poppins", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 2.4rem;
    line-height: 1.4;
}

/* Video */
.video {
    padding: 60px 15px;
    margin: 0 auto;
    text-align: center;
}



.laptopWrapper {
    position: relative;
    padding-top: 25px;
    padding-bottom: 67.5%;
    height: 0;
    margin-top: -60px;
}

.laptopWrapper iframe {
    box-sizing: border-box;
    background: url("../images/laptop.svg") center center no-repeat;
    background-size: contain;
    padding: 11.9% 15.5% 14.8%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.laptopCopy {
    margin-top: -6%;
    margin-bottom: 30px;
}

/* Team */
.team {
    padding: 60px 0 30% 0;
    background-image: url("../images/RM-team-ok.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Footer */
.footer {
    padding: 60px 15px 20px 15px;
    background: #3C4252;
}

.menu {
    list-style: none;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
}

.menu li a:hover {
    border-bottom: 2px solid #30D2D2;
}

.copyright {
    font-size: 14px;
    color: #9d9fa6;
    width: fit-content;
    margin: 0 10px;
    text-align: center;
}

.copyLine {
    width: 40%;
    flex-grow: 1;
    background-color: #0cc;
    height: 3px;
}

.copyrightWrapper {
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    margin: 40px auto 0;
    padding-bottom: 40px;
}