
@import url(https://fonts.googleapis.com/css?family=PT+Sans);

/* Init Styles */

html {
    font-family: "PT Sans";
    font-size: 16.3px;
    color: #707070;
    
    overflow-y: scroll;
    
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    min-height: 100%;
    margin: 0px;
}


/* Util */

.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}


/* TitleBar */

.titlebar-container {
    height: 80px;
}

.titlebar-container-inner {
    width: 1020px;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: auto;
}

.titlebar-logo {
    position: relative;
    top: 10px;
    margin-left: 10px;
    float: left;
    width: 60px;
    height: 60px;
    background-image: url("img/logo.png");
    background-size: cover;
    background-position: center;
    background-repeat: none;
}

.titlebar-title {
    float: left;
    margin-left: 30px;
    font-size: 36px;
    margin-top: 16px;
    font-weight: 600;
}

.titlebar-contact {
    float: right;
    height: 100%;
    min-width: 50px;
    margin-right: 10px;
}

.titlebar-phone {
    display: inline-block;
    font-weight: 500;
    vertical-align:top;
    font-size: 22px;
    margin-top: 25px;
}

.titlebar-phone-symbol {
    display: inline-block;
    width: 28px;
    height: 28px;
    vertical-align:top;
    margin-top: 25px;
    background-image: url('img/phone.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 1020px) {
    .titlebar-container {
        height: auto;
    }
    .titlebar-logo {
        display: none;
    }
    .titlebar-title {
        float: none;
        text-align: center;
        margin-left: 0px;
    }
    .titlebar-contact {
        float: none;
        text-align: center;
    }
    .titlebar-phone {
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .titlebar-phone-symbol {
        margin-top: 11px;
    }
}


/* NavBar */

.navbar-container {
    position: relative;
    background: #e7e7e7;
    padding: 1px;
    overflow: auto;
    min-height: 50px;
}

.navbar-container-inner {
    width: 1000px;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
}

.navbar-button {
    float: left;
    padding: 16px;
    padding-left: 31px;
    padding-right: 31px;
    border: 1px solid white;
    cursor: pointer;
    font-size: 16px;
}

.navbar-button:hover {
    color: white;
    background: #3960b9;
}

.navbar-selected {
    color: white;
    background: #3960b9;
}

a,
a:link,
a:visited,
a:hover,
a:active{
    text-decoration: none;color: #707070;
}
a:link .navbar-button:hover, a:link .navbar-selected { color: white; text-decoration: none; }
a:visited .navbar-button:hover, a:visited .navbar-selected { color: white; text-decoration: none; }
a:hover .navbar-button:hover, a:hover .navbar-selected { color: white; text-decoration: none; }
a:active .navbar-button:hover, a:active .navbar-selected { color: white; text-decoration: none; }


@media only screen and (min-width: 1020px) {
    .navbar-dropdown {
        display: none;
        height: 0px;
    }
}
@media only screen and (max-width: 1020px) {
    .navbar-button {
        display: none;
    }
    .navbar-burger-container {
        float: right;
        width: 40px;
        height: 40px;
        background: white;
        margin-top: 5px;
        margin-right: 7px;
        border-radius: 3px;
    }
    .navbar-burger-bar {
        width: 30px;
        height: 5px;
        background: #bbb;
        margin-top: 5px;
        margin-left: 5px;
    }
    .navbar-dropdown {
        display: none;
        background: #e7e7e7;
    }
    .navbar-dropdown-button {
        padding: 16px;
        border: 1px solid white;
        cursor: pointer;
        font-size: 16px;
    }
}


/* Home page */

.main-container {
    overflow: auto;
    padding: 5px;
    width: 465px;
    cursor: pointer;
    float: left;
    color: #707070;
}

.main-container:hover {
    background: #eee;
}

.main-image {
    float: left;
    width: 200px;
    height: 200px;
    background: white;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.main-text {
    float: right;
    width: calc(100% - 225px);
    height: 180px;
    padding: 10px;
}

.main-text-title {
    font-size: 24px;
}

.main-text-desc {
    margin-left: 10px;
}

.main-cont-marg {
    margin-left: 10px;
}

@media only screen and (max-width: 1020px) {
    .main-cont-marg {
        margin-left: 0px;
    }
    .main-container {
        float: none;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 540px) {
    
    .main-container {
        width: 100%;
        padding: 0px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .main-image {
        float: none;
        margin: 0 auto;
    }
    .main-text {
        float: none;
        margin: 0 auto;
        text-align: center;
        padding: 0px;
        width: 100%; 
        height: auto;
    }
    .main-text-title, .main-text-desc {
        text-decoration: none;
        margin: 0;
    }
}


/* Popup */

.popup-container {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0,0,0,0.6);
}

.popup-inner {
    position: relative;
    margin-top: 50px;
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 10vh;
    background: white;
    border-radius: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e7e7e7;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ccc;
}
.popup-close:hover {
    background: #ccc;
}
.popup-close-x {
    font-size: 26px;
    margin-top: -4px;
    margin-left: 8px;
}

.popup-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.popup-input {
    height: 24px;
    width: 40%;
    margin-left: 3.5%;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid #ccc;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.popup-input-email {
    height: 24px;
    width: 60%;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid #ccc;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.popup-submit {
    width: calc(40% + 20px);
    margin-left: 3.5%;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid #ccc;
    display: block;
    margin: 0 auto;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
}
.popup-submit:hover {
    background: #ddd;
}

.popup-hr {
    height: 1px; 
    border-width: 0; 
    color: #bbb; 
    background-color: #bbb; 
    width: 60%; 
    margin-bottom: 20px;
}

@media only screen and (max-width: 1020px) {
    .popup-input {
        display: block;
        margin: 0 auto;
        width: 80%;
    }
}


/* Features Page */

.features-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.features-half {
    float: left;
    width: 50%;
    text-align: justify;
}

.features-title {
    font-size: 34px;
}

.features-subtitle {
    font-size: 22px;
    margin-left: 2px;
    margin-bottom: 24px;
}

.features-manual {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 16px;
    color: white;
    background: #3960b9;
    padding: 12px;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
}

.features-manual:hover {
    background: #2F5099;
}

.features-image-container {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
.features-image {
    display: inline-block;
    width: 100%;
    padding-top: 56.25%;
    max-width: 500px;
    background: #fff;
    
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/FC102.jpg");
}

.features-featuretitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.features-feature {
    margin-left: 10px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.container {
    position: relative;
    width: 90%;
    height: 0;
    padding-bottom: 51%;
    margin-top: 10px;
}
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stock-container {
    
}

.stock-title {
    font-size: 18px;
    font-weight: 600;
}

.stock-date {
    margin-left: 5px;
    margin-bottom: 5px;
}

.stockitem-container {
    margin-bottom: 0px;
    padding: 5px;
    margin-left: 10px;
}

.stockitem-container:hover {
    background: #e7e7e7;
}

.stockitem-name {
    display: inline-block;
    width: 180px;
    margin-left: 5px;
    font-weight: 600;
}

.stockitem-desc {
    display: inline-block;
    margin-left: 20px;
}

.features-callus, .features-callus-container {
    display: none;
    color: white;
}


@media only screen and (max-width: 1020px) {
    .features-title {
        text-align: center;
    }
    .features-subtitle {
        text-align: center;
        margin-left: 0px; 
        margin-bottom: 10px;
    }
    .features-half {
        width: 100%;
        float: none;
        padding: 0px;
    }
    .features-image-container {
        margin: 0px;
    }
    .container {
        margin: 0 auto;
    }
    .features-manual-container {
        text-align: center;
    }
    .features-manual {
        position: relative;
        top: 0px;
        right: 0px;
        display: inline-block;
        font-size: 16px;
        color: white;
        background: #3960b9;
        padding: 12px;
        padding-left: 30px;
        padding-right: 30px;
        cursor: pointer;
        margin-top: 5px;
    }
    
    .features-callus {
        display: block;
        position: fixed;
        bottom: -20px;
        left: -20px;
        width: 80px;
        height: 80px;
        border: 1px solid white;
        border-radius: 50%;
        background: #3960b9;
        background-image: url('img/phone_white.png');
        background-size: 60%;
        background-position: 75% 25%;
        background-repeat: no-repeat;
    }
    
    .features-callus-container {
        position: fixed;
        display: none;
        bottom: 0px;
        left: 0px;
        width: 100vw;
        height: 50px;
        background: #3960b9;
    }
    .features-callus-number {
        text-align: center;
        font-size: 28px;
        margin-top: 8px;
        padding-left: 50px;
    }
    
    .stockitem-name {
        width: 100%;
    }
}


/* Contact Us */

.cu-full {
    overflow: auto;
    margin-top: 10px;
    font-size: 14px;
    width: calc(100% - 20px);
    margin-left: 10px;
}

.cu-half {
    width: 50%;
    float: left;
    overflow: auto;
}

.cu-title {
    font-size: 24px;
    font-weight: bold;
}

.contactnumbers-container {
    text-align: center;
}

.contactnumbers-item {
    display: inline-block;
    width: 250px;
    margin-bottom: 20px;
}

.contactnumbers-area {
    font-size: 22px;
    font-weight: bold;
}

@media only screen and (max-width: 1020px) {
    .cu-half {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
}


/* Footer */

.footer {
    font-size: 14px;
    padding: 20px;
    background: #e7e7e7;
    margin-top: 50px;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    overflow: auto;
}

.footer-linkcontainer {
    float: left;
    padding-right: 30px;
}

.footer-linkcontainer-map {
    float: right;
    width: 500px; 
    height: 300px; 
    margin-left: 20px;
}

.footer-hr {
    height: 1px; 
    border-width: 0; 
    color: #bbb; 
    background-color: #bbb; 
    width: 80%; 
    margin-right: 100%;
}

@media only screen and (max-width: 1020px) {
    .footer-linkcontainer {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
        padding-right: 0px;
    }
    .footer-linkcontainer-map {
        width: 90%;
        margin-left: 5%;
        float: left;
    }
    .footer-hr {
        margin-right: auto;
        width: 60%; 
    }
}

.footer-link {
    margin-left: 5px;
    margin-top: 4px;
    font-size: 15px;
    color: #707070;
}

.footer-link:hover {
    color: #333;
}

.footer-linkcontainer a {
    text-decoration: none;
}
