@import url('header.css');
@import url('icons.css');

@font-face{
    font-family: 'Kumbh Sans';
    src: url('../fonts/KumbhSans/KumbhSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

* {
    font-family: 'Kumbh Sans', sans-serif;
    box-sizing: border-box;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --global-opacity-color: rgba(0, 0, 0, 0.45);
    --global-text-shadow: 0px 1px 2px black;
    --global-header-color: #303F9F;
    --global-header-color2: #224B8B;
    --global-button-hover: #1e427b;
    --global-button-border: #193767;
    --global-font-color: #FFFFFF;
    --global-border-radius: 4px;

    --global-lighter-grey: #f2f2f2;
    --global-light-grey: #e6e6e6;
    --global-dark-grey: #8e8e8e;

    --global-test-grey: #8a8888;
}

html, body, main{
    height: 100%;
    scroll-behavior: smooth;
    position: relative;
}


/**** CSS RESETS ****/
body, ul, li, h1, h2, h3, h4 {
    padding: 0;
    margin: 0;
}
ul, li {
    list-style: none;
}
a {
    text-decoration: none;
}
/**** [END] CSS RESETS ****/

h1 {
    font-size: 2.25em;
}

.flex {display: flex;}
.hidden{display: none;}

.t-left{text-align: left;}
.t-center{text-align: center;}
.t-right{text-align: right;}

.m-t-5{margin-top: 5px;}
.m-t-10{margin-top: 10px;}
.m-t-15{margin-top: 15px;}
.m-t-20{margin-top: 20px;}
.m-t-25{margin-top: 25px;}

.m-r-5{margin-right: 5px;}
.m-r-10{margin-right: 10px;}
.m-r-15{margin-right: 15px;}
.m-r-20{margin-right: 20px;}
.m-r-25{margin-right: 25px;}

.m-b-5{margin-bottom: 5px;}
.m-b-10{margin-bottom: 10px;}
.m-b-15{margin-bottom: 15px;}
.m-b-20{margin-bottom: 20px;}
.m-b-25{margin-bottom: 25px;}

.m-l-5{margin-left: 5px;}
.m-l-10{margin-left: 10px;}
.m-l-15{margin-left: 15px;}
.m-l-20{margin-left: 20px;}
.m-l-25{margin-left: 25px;}

section{
    position: relative;
    min-height: 40%;
    padding: 4em 2em;
}

section > article {
    position: relative;
    width: 80%;
    margin: 0 auto;
}
section > article.breach {
    margin-top: 25px;
}
section > article.breach > h3 {
    margin: 20px 0;
}
section > article.breach > div.expertise {
    padding: 10px 20px;
    background-color: #e6e6e6;
}
section > article.breach > div.expertise > ul > li {
    list-style: inside;
    padding-left: 15px;
    margin: 15px 0;
}

section > article > h1{
    margin-bottom: 20px;
}

/**** LIST ****/
section ul.list {
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}
section ul.list > li{
    width: 200px;
    margin: 10px;
}
section ul.list > li > h3{
    margin-top: 15px;
}
section ul.list > li > span[class^="icon-"]{
    font-size: 8em;
}
section ul.list.card-list > li > .icon-wrapper > span[class^="icon-"] {
    font-size: 6em;
}
/**** [END] LIST ****/

/**** CARD LIST ****/
section ul.list.card-list > li .icon-wrapper{
    text-align: center;
    padding: 20px;
    background-color: #FFFFFF;
    border-top-left-radius: var(--global-border-radius);
    border-top-right-radius: var(--global-border-radius);
}
section ul.list.card-list > li > .content-wrapper{
    position: relative;
    height: 185px;
    padding: 20px;
    background: var(--global-header-color2);
    text-shadow: none;
    border-bottom-left-radius: var(--global-border-radius);
    border-bottom-right-radius: var(--global-border-radius);
}
section ul.list.card-list > li > .content-wrapper > h3{
    text-align: center;
    margin-bottom: 15px;
    color: white;
    height: 25px;
    font-size: 16px;
}
section ul.list.card-list > li > .content-wrapper > p {
    margin: 0;
    color: white;
    text-align: left;
    font-size: 14px;
}
/**** [END] CARD LIST ****/

/**** SECTIONS ****/
section.heading{
    position: relative;
    align-items: center;
}
section.heading > article > h1.section-heading{
    display: flex;
    align-items: center;
}
section.heading > article > h1.section-heading > a{
    flex-shrink: 0;
}
section.heading > article > h1.section-heading::after {
    content: '';
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid;
    vertical-align: middle;
    margin-left: 15px;
    height: 0px;
}
section.heading-one {
    color: var(--global-font-color);
    background: url(../images/assets/server-racks.jpg) center center no-repeat;
    background-color: var(--global-opacity-color);
    background-size: cover;
    background-blend-mode: multiply;
    background-attachment: fixed;
    text-shadow: var(--global-text-shadow);
}
section.heading-two, section.heading-four {
    background: var(--global-lighter-grey);
    color: var(--global-dark-grey);
}
section.heading-three {
    color: var(--global-dark-grey);
    background-color: var(--global-font-color);
}
section.heading-five{
    background-color: var(--global-header-color2);
    color:var(--global-font-color);
    padding-bottom: 2em;
}
/**** [END] SECTIONS ****/

/**** INPUTS / TEXTAREA / BUTTON ****/
input, textarea{
    padding: 8px 12px;
    border-radius: 4px;
    outline: none;
    border: 1px solid #b9b6b6;
}
button{
    padding: 10px 16px;
    outline: none;
    border: 1px solid var(--global-button-border);
    border-radius: 4px;
    color: var(--global-header-color2);
    background-color: var(--global-font-color);
    font-size: 16px;
    cursor: pointer;
    transition-property: background-color, color;
    transition-duration: 1s;
    transition-timing-function: ease;
}
button:hover{
    color: var(--global-font-color);
    background-color: var(--global-header-color2);
}
/**** [END] INPUTS / TEXTAREA / BUTTON ****/

.contact-container {
    justify-content: space-around;
    flex-wrap: wrap;
    border-radius: 4px;
    margin-top: 25px;
}
.contact-container form{
    position: relative;
    flex-grow: 4;
    padding: 25px;
    background-color: white;
    color: #8e8e8e;
}
.contact-container form > #form-status{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.65);
    color: var(--global-header-color2);
    display: flex;
    align-items: center;
    padding: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease;
}
.contact-container form > #form-status.view-feedback{
    opacity: 1;
    z-index: 1;
}
.contact-container .details{
    flex-grow: 1;
    padding: 25px;
    background-color: #1e427b;
    color: white;
}

.contact-container .details > .details-container{
    position: relative;
    top: 50%;
    transform: translateY(-85%);
}
.contact-container .details > .details-container > div{
    align-items: center;
    color: white;
}
.contact-container .details > .details-container > div > span[class^="icon-"],
.contact-container .details > .details-container > a > span[class^="icon-"]{
    margin-right: 15px;
    color: white;
    font-size: 2em;
}
form .form-container > .form-group > .form-inputs{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    margin-bottom: 10px;
}
form .form-container > .form-group > .form-inputs > label{
    font-size: 14px;
}
form .form-container > .form-group > .form-inputs > input,
form .form-container > .form-group > .form-inputs > textarea{
    flex-grow: 2;
}
form .form-container > .form-group > .error-message{
    position: relative;
    margin-bottom: 10px;
    margin-top: -5px;
    color: red;
    font-size: 14px;
}

.contact-container .details > .details-container > div > a {
    font-weight: bold;
    color: white;
}


address{
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    line-height: 20px;
    color: white;
}

.partners > p{
    font-size: 14px;
    margin-bottom: 5px;
}
.partners > img {
    width: 135px;
}

/**** COPYRIGHT ****/
.copyright > p {
    flex-wrap: nowrap;
    align-items: center;
}
.copyright > p > span {
    flex-shrink: 0;
    font-size: 12px;
}
.copyright > p::before {
    content: '';
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid;
    vertical-align: middle;
    margin-right: 10px;
}
.copyright > p::after{
    content: '';
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid;
    vertical-align: middle;
    margin-left: 10px;
}
/**** [END] COPYRIGHT ****/

/**** BLOCKQUOTE ****/
blockquote{
    text-align: center;
    padding: 15px 10px;
    background-color: #e6e6e6;
    margin: 0;
}
blockquote::before, blockquote::after{
    position: relative;
    font-family: 'icomoon';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
blockquote::before{
    content: "\e977";
    right: 8px;
    bottom: 5px;
}
blockquote::after{
    content: "\e978";
    left: 8px;
    top: 5px;
}
/**** [END] BLOCKQUOTE ****/

/**** MEDIA QUERIES ****/
@media only screen and (max-width: 1388px) {
    section ul.list {
        justify-content: space-around;
    }
}
@media only screen and (max-width: 800px) {
    section >  article {
        width: 100%;
    }
}
@media only screen and (max-width: 620px) {
    header {
        display: block;
    }
    header > nav.menu {
        height: 0px;
        opacity: 0;
        text-align: center;
        flex-direction: column;
        margin-top: 10px;
    }
    header > nav.menu > a {
        margin: 0 5px 10px;
    }

    header > .header-container {
        width: 100%;
        justify-content: space-around;
    }
    header > .header-container > .mobile-menu{
        display: block;
    }
    button {
        width: 100%;
    }
}
@media only screen and (max-width: 512px) {
    h1 {
        font-size: 1.2em;
    }
    section {
        padding: 2em;
    }
	section ul.list > li {
		width: 135px;
	}
	section ul.list.card-list > li > .content-wrapper {
		height: 290px;
	}
}
/**** [END] MEDIA QUERIES ****/