/*--------------------------------------------*/
/* BASIC SETUP                                */
/*--------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    background-color: #fff;
    color: #000; 
    font-family: 'Lato', 'Arial', 'Sans-serif';
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix {zoom: 1;}
.clearfix::after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}


/*--------------------------------------------*/
/* REUSABLE COMPONENTS                        */
/*--------------------------------------------*/

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

/*--------------------------------------------*/
/* HEADINGS                                   */
/*--------------------------------------------*/
h1,
h2,
h3{    
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 240%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2 {
    font-size:180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h3 {
    font-size: 110%;
    margin-bottom: 15px;
}

h2::after {
    display: block;
    height: 2px;
    background-color: #27ae60;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;    
}


/*--------------------------------------------*/
/* PARAGRAPHS                                 */
/*--------------------------------------------*/
.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}

/* LINKS */
.box a:link,
.box a:visited {
    color: #27ae60;
    border-bottom:1px solid #27ae60;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 100%;
    line-height: 145%;
    text-decoration: none;
    transition: border-bottom 0.2s, color 0.2s;
}

.box a:hover,
.box a:active {
    color: #fff;
    border-bottom:1px solid transparent;
    padding-bottom: 2px;
    font-size: 100%;
    line-height: 145%;
    text-decoration: none;
}



/*--------------------------------------------*/
/* ICONS                                      */
/*--------------------------------------------*/
.icon-big {
    font-size: 350%;
    display: block;
    color: #27ae60;
    margin-bottom: 10px;
}




/*--------------------------------------------*/
/* BUTTONS                                    */
/*--------------------------------------------*/
.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    transition: background-color 0.25s, border 0.25s, color 0.25s ;
}


.btn-full:link,
.btn-full:visited, 
input[type=submit] {
    background-color: #27ae60;
    border: #27ae60;
    color: #fff;
    margin-right: 50px;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #27ae60;
    color: #27ae60;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #219251;
}


.btn-full:hover,
.btn-full:active {
    border: 1px #27ae60;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #27ae60;
    color: #fff;
}

/*--------------------------------------------*/
/* HEADER                                     */
/*--------------------------------------------*/


header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../css/img/systems.png");
    background-size: cover;
    background-position: center; 
    background-attachment: fixed;
    height: 100vh;
}

.bg-text-box {
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.logo {
    height: 100px;
    width: auto;
    float: left;
    margin-top: 20px;
}

.logo2 { display: block; }

.logo2 {
    height: 50px;
    width: auto;
    float: left;
    margin: 5px 0;
}

/* Main nav*/
.main-nav {
    float: right;
    list-style: none;
    margin-top: 55px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}
.main-nav li a:link,
.main-nav li a:visited{
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;

}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #27ae60;
}

/* Mobile Navigation*/
.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}
.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}

/* Sticky navigation */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f4f4f4;
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}

.sticky .main-nav { 
    margin-top: 18px;
    display: inline-block;    
}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited{
    padding: 16px 0;
    color: #555;
}

.sticky .logo { display: none;}
.sticky .logo2 { display: block; }




/* Secrets to align icons and text
.main-nav li {
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px
    margin-right: 10px;
}
*/

/*--------------------------------------------*/
/* SECTIONS                                   */
/*--------------------------------------------*/

/* FEATURES */
.section-features{
    background-color: #f4f4f4;
}

/* SECTION-ABOUTUS */
.section-aboutus {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../css/img/systems.png");
    background-size: cover;
    color: #f4f4f4;
    background-attachment: fixed;    
}

/* TESTIMONIALS */

.section-testimonials {
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("../css/img/testimonials.jpg");
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
}

.section-services {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../css/img/services.jpg");
    background-size: cover;
    color: #f4f4f4;
    background-attachment: fixed;
}

.section-services2 {
    color: #555;
    margin-bottom: 150px;
    padding-top: 0px;
    margin: 0 auto;

} 
.section-pentest {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../css/img/services.jpg");
    background-size: cover;
    color: #f4f4f4;
    background-attachment: fixed;
}

.section-details {
    line-height: 145%;
    margin-top: 40px;  
}

section-methodology {
    line-height: 145%;
    margin-top: 40px;        
}

.section-emailsec {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../css/img/pic1.jpg");
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
}

.section-systemssec {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../css/img/systems.png");
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
}

.section-contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../css/img/Emailsec.png");
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
}

.section-syshard {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../css/img/systems.png");
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
}




blockquote {
    padding: 2%;
    font-style: italic;
    line-height: 145%;
}

cite {
    font-size: 81%;
    margin-top: 20px;
    display: block;
    float: left;
  
}
cite img {
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}


/* CONTACT FORM */

.contact-form {
    width: 60%;
    margin: 0 auto;
}

input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;

}

textarea {
    height: 100px;
}

input[type=checkbox] {
    margin: 10px 5px 10px 0;
}

*:focus {outline: none;}

/* FOOTER */

footer {
    background-color: #333;
    padding: 50px;
    font-size: 90%;
}


.footer-nav {
    list-style: none;
    float: left;
/*    text-transform: capitalize; */
}
.social-links {
    list-style: none;
    float: right;
}

.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 20px;

}

.footer-nav li:last-child,
.social-links li:last-child{
    margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #888;
    transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #ddd;
}

/* FOOTER SOCIAL LINKS */
.social-links li a:link,
.social-links li a:visited {
    font-size: 170%;
}

.ion-social-facebook,
.ion-social-linkedin,
.ion-social-twiitter,
.ion-social-instagram {
    transition: color 0.2s ;
}
.ion-social-facebook:hover {
    color: #3b5998;
}

.ion-social-linkedin:hover {
    color: #007bb6;
}

.ion-social-twitter:hover {
    color: #00aced;
}

.ion-social-instagram:hover {
    color: #517fa4;
}

footer p {
    color: #888;
    text-align: center;
    margin-top: 20px;
}

/* ANIMATIONS */
.js--wp-1 {
    opacity: 0;
}

.js--wp-1.animated {
    opacity: 1;
}













