﻿/*GENERAL*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;

}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    overflow-y: hidden;
}

body {
    line-height: 1;
    font-family: Calibri;
    display: flex;
    flex-direction: column;
    font-family: "Segoe UI", SegoeUI;
}


ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}



html {
    overflow-x: hidden;
    overflow-y: scroll;
}

* {
    box-sizing: border-box;
}

a {
    color: #007AC8;
    text-decoration: none;
}

/*HEADER*/

.header {
    background: #fff;
    position: fixed;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 3;
}

/*NAVBAR*/

/* Add a black background color to the top navigation */
.topnav {
    background-color:
        /*#007AC8*/
        #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.topnav.shrink {
    height: 50px;
    /* Shrunk size */
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    text-align: center;
    padding: 30px 17px;
    text-decoration: none;
    font-size: 20px;
}

.topnav.shrink a {
    padding: 20px 10px;
    font-size: 16px;
    background: #fff;
}


.topnav a:hover {
    background-color: #ddd;
    color: #3766B7;
}

/* Add an active class to highlight the current page */
.topnav a.active {
    background-color: #FFF;
    color: #3766B7;
    padding: 0;
}

.topnav a:not(:first-child) {
    float: right;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

.border {
    box-shadow: 0px 5px 5px #999;
}

#logo {
    width: 164px;
    padding: 10px 0 0px 10px;
    transition: width 0.3s ease;
}

.topnav.shrink #logo {
    width: 105px;
    padding: 5px 0 2px 3px;
}

#logo:hover {
    cursor: pointer;
}

.navBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0;
    width: 100%;
}

.btnContainer {
    float: right;
}

.buttons {
    color: #007AC8;
    font-size: 22px;
    margin: 0 35px 0 0;
    padding: 0;
    outline: none;
}

.buttons:hover {
    cursor: pointer;
    animation: borderOut .3s;
    border-left: solid #1e254e 2px;
    /*
        border-right: solid #1e254e 2px;*/
    padding: 0 10px 0px 10px;
    margin: 0 25px 0 -12px;
}

.buttons:hover a {
    color: #1e254e;
}

.fade {
    animation: fade 2s infinite;
}

@keyframes borderOut {
    0% {
        padding: 0;
        margin: 0 35px 0 -2px;
    }

    100% {
        padding: 0 10px 0px 10px;
        margin: 0 25px 0 -12px;
    }
}

/*HOME*/

#page-1 {
    background: #fff;
}

.main {
    display: flex;
    margin: 80px 0 0px 0;
    align-items: stretch;
    justify-content: flex-start;
}

.image1 {
    width: 44%;
    background: url(/img/background1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.background1 {
    background: linear-gradient(270deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    height: 100%;
}

.background3 {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    height: 100%;
}

.subtext {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 8vw 0 0 2vw;
    z-index: 0;
    height: 23.8vw;
    width: 70vw;
}

.text-item {
    font-size: clamp(30px, 3vw, 50px);
    color: #0B7DC6;
}

.text-item-2 {
    font-size: clamp(15px, 1.5vw, 25px);
    color: #3766B7;
    line-height: 2vw;
    width: 50vw;
    margin-bottom: auto;
}

.cloudContainer {
    display: flex;
    justify-content: flex-end;
    padding: 0px 7px 0 0;
    align-self: flex-end;
    padding: 0 0px;
}

.cloudContainer img {
    width: 22vw;
}

.cloudContainer2 {
    display: none;

}

.cloudContainer2 img {
    width: clamp(200px, 22vw, 1000px);
}

.lightBlueBar {
    display: flex;
    width: 100vw;
    height: 7.5vw;
    background: #e8f4ff;
    margin-bottom: 130px;
    color: #1e254e;
    font-size: clamp(13px, 2vw, 30px);
    align-items: center;
}

.typewriter {
    display: none;
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    white-space: nowrap;
    /* Keeps the content on a single line */
    margin: 0 auto;
    /* Gives that scrolling effect as the typing happens */
    animation: typing 1s;
    text-align: center;
    padding: 5px 0 5px 0;
}

/* The typing effect */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}


/*QUOTES*/


#page-2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    background: #fff;
}


.quoteContainer {
    width: 35vw;
}

.quote {
    font-size: 1.6vw;
    color: #fff;
    line-height: 2.5vw;
    background: #0B7DC6;
    box-shadow: 2vw 2vw 1.5px #3766B7;
    padding: 2.2vw;
    border-radius: 10px;
}



.quoteContainer img {
    margin-top: 3.2vw;
    margin-left: 4vw;
}

#qImg1 {
    width: 15vw;
}

#qImg2 {
    width: 12vw;
}

/*SERVICES*/

.cloudBorder {
    height: 43px;
    background: url(/img/cloudBorder.jpg);
    background-repeat: repeat-x;
    background-size: 4vw;
    background-position-y: center;
    margin: -20px 0 3.5vw -30px;
    width: 100%;
}


#page-5 {
    background: url(/img/background3.jpg);
    background-repeat: no-repeat;
    background-size: 50%;
    z-index: 1;
}

.servicesContainer {
    box-shadow: 0px 6px 5px #bbb;
}

.background2 {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #666;
    background: linear-gradient(270deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    padding: 0px 50px 50px 970px;
}



.subtext-4 {
    font-size: clamp(25px, 3vw, 50px);
    color: #0B7DC6;
    line-height: clamp(30px, 5.0vw, 2000px);
    text-align: left;
    animation: slideIn 1s;
}

.subtext-5 {
    font-size: clamp(17px, 2.5vw, 35px);
    color: #3766B7;
    line-height: clamp(22px, 3vw, 5000px);
    text-align: left;
    margin-top: 20px;
    animation: popDown 0.5s;
}



.image2 {
    width: 44%;
    height: 28vw;
    background: url(/img/background3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}


.container_2 {
    display: flex;
    flex-direction: column;
    margin: 0vw 0 0 30px;
    width: 57vw;
}


.subtext-6 {
    font-size: clamp(17px, 1.7vw, 30px);
    color: #444;
    line-height: clamp(22px, 2.1vw, 35px);
    text-align: center;
    padding: 2.5vw 5vw;
    font-family: Calibri;
    border-top: 3px solid #3766B7;
    margin: 0px 0 0 0;
}

.subtext-7 {
    font-size: clamp(27px, 3.5vw, 40px);
    color: #0B7DC6;
    line-height: clamp(32px, 3.1vw, 45px);
    text-align: center;
    padding: 2.5vw 5vw;
    font-family: Calibri;
}



/*SPECIFIC USES OF SERVICES*/

.imgBackground {
    background: url(/img/office.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: clamp(800px, 70vw, 1200px);
    z-index: 0;
}

.serviceBackground {}

.serviceList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-left: 20px solid #1e254e;
}

.serviceListItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30vw;
    margin: 3vw 5vw;
}

.serviceListItem p {
    background: #eee;
    border-radius: 30px;
    padding: 30px;
}

.marginBottom {
    margin-bottom: 2.5vw;
}

.serviceList img {
    width: clamp(270px, 18vw, 250px);
    margin-bottom: 1vw;
}

.serviceList p {
    font-size: clamp(17px, 1.7vw, 30px);
    line-height: clamp(22px, 2.1vw, 40px);
}

/*ABOUT US*/
.aboutUsContainer {
    display: flex;
    margin-bottom: -50px;
}

.image3 {
    height: 100%;
    width: 90%;
    background: url(/img/team.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}


.container_3 {
    display: flex;
    flex-direction: column;
    margin: 0 0px 0 40px;
	height: 18vw;
    width: 54%;
}

.subtext-8 {
    font-size: clamp(22px, 3.0vw, 2000px);
    color: #0B7DC6;
    line-height: clamp(27px, 4.5vw, 2000px);
    text-align: left;
    animation: slideIn 1s;
}

.subtext-9 {
    font-size: clamp(13px, 2.0vw, 2000px);
    color: #3766B7;
    line-height: clamp(22px, 3.0vw, 2000px);
    text-align: left;
    margin-top: 20px;
    animation: popDown 0.5s;
}

/*BLOBS*/
.box1 {
    display: block;
}

.box2 {
    display: none;
}

#image3Container {
	border-top: 0.3vw solid #BFE1FF;  
                    height: 18vw; 
                    width: 50%;
                    display: flex;
                    justify-content: end;
					margin-top: 1px;
                    margin-left: -50px;
}
.container2 {
    height: 85px;
    background: #ddd;
    clip-path: polygon(0% 50%, 83% 50%, 85% 0%, 97% 0%, 99% 50%, 100% 50%, 100% 100%, 0% 100%);
}

.container3 {
    height: 85px;
    background: white;
    clip-path: polygon(0% 50%, 83% 50%, 85% 0%, 97% 0%, 99% 50%, 100% 50%, 100% 100%, 0% 100%);
    margin-top: -76px;
    display: flex;
    justify-content: flex-end;
    padding: 0.5% 2% 0 0;
}

.tabTitle {
    font-size: 2.2em;
    color: #0B7DC6;
    width: 15%;
    text-align: center;
}

.visionText {
    font-size: clamp(17px, 2.5vw, 30px);
    line-height: clamp(22px, 3vw, 45px);
}

.valuesImage {
    width: clamp(300px, 50%, 50%);
    padding: 20px;
    margin: 0vw 25vw;
}

.blobContainer {
    margin: 0 0 0 0vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-between;
    align-items: flex-start;
    background: #fff;
    padding-bottom: 10px;
}

.icon1 {
    width: 30px;
    margin: 0 20px;
}

.blob {
    display: flex;
    box-shadow: 0 0px 8px #bbb;
    border-radius: 10px;
    flex-direction: column;
    width: 27vw;
    margin: 3vw auto 0 auto;
    background: #FFF;
}

.blob-1 {
    display: flex;
    box-shadow: 0 0px 8px #bbb;
    border-radius: 10px;
    flex-direction: column;
}

.blobHeader {
    display: flex;
    justify-content: space-between;
    background: #064872;
    border-bottom: 5px solid #007AC8;
    border-radius: 0px 10px 0 0;
    padding: 20px;
    color: #fff;
    font-size: clamp(18px, 4vw, 35px);
}




.insideBlob-1 {
    margin: 3vw 0vw 0vw 2vw;
    color: #222;
    font-size: clamp(17px, 2.3vw, 25px);
    line-height: clamp(22px, 2.1vw, 33px);
    width: 60%;
    float: left;
}

/*
    .insideBlob-1 img {
        margin: 1vw 2.5vw 0 1vw;
        width: clamp(50px, 4vw, 80px);
    }
*/
.insideBlob-2 {
    font-size: 1.5vw;
    color: #0B7DC6;
    text-align: center;
    margin: 4vw 0 0 0.7vw;
}

.insideBlob-3 {}

.blob-2 {}

.blob-2 .insideBlob {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #444;
    padding: 30px 0 0 0;
}

/*
    .blob-2 .insideBlob-3 {
        margin: 30px 0 0 0;
    }

    .blob-2 .insideBlob img {
        width: 90%;
    }
*/

.blob-3 {}

.insideBlob3-1 {
    display: flex;
    font-size: 1.4vw;
    color: #0B7DC6;
    padding: 0px 0 0 0px;
    align-items: flex-start;
}

.insideBlob3-1 div {
    margin: 1vw 0 0 1vw;
}

.insideBlob3-1 img {
    width: 10vw;
    margin-top: 2vw;
}

.blob-3 .insideBlob-3 {
    font-size: 1.2vw;
    margin: 10px 0 0 0;
}

.blob-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-around;
    align-items: flex-start;
    background: #fff;
    padding: 0vw 5vw;
}

.blob-4 {
    display: flex;
    margin: 5vw 4.2vw;
}

.insideBlob4 {
    display: flex;
    flex-direction: column;
    font-size: 1.5vw;
    line-height: clamp(22px, 2.2vw, 35px);
    color: #222;
    margin: 2px 0 0 -3px;
    max-width: 70%;
}

.image-container {
    position: relative;
    width: 200px;
    height: 120px;
    max-width: 40%;
}

.background-image {
    position: absolute;
    top: 9.5%;
    left: 5%;
    width: 90%;
    height: auto;
    z-index: 1;
}

.foreground-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 2;
}

.blob-text {
    font-size: clamp(17px, 2.3vw, 25px);
    color: #0068a9;
    padding: 10px;
}



/*PARTNERS*/

#page-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 300px 0 0 0;
}

.subtext-3 {
    font-size: 50px;
    color: #007AC8;
    margin: auto;
}




.partnersContainer {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #666;
    margin: 80px 0 0 0;
    padding: 100px 0 0 0;
    align-items: center;
}

.container_4 {
    text-align: center;
    font-size: clamp(30px, 2vw, 50px);
    color: #0B7DC6;
    line-height: clamp(40px, 4vw, 70px);
    padding: 0 10vw 0 10vw;
}

.imgContainer {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.imgNot2 {
    width: clamp(130px, 18vw, 300px);
}

.img2 {
    margin: 5vw 5vw 0 0;
    width: clamp(80px, 11vw, 200px);
}

/*BANNER SAYING WE ARE REPONSIVE*/

#page-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}

.background {
    background: url(/img/deviceBackground.jpg);
    background-size: 100vw;
    display: flex;
    width: 100vw;
    height: calc(100vw / 4.1);
    margin: 200px 0 0 0;
}

.transparent {
    display: flex;
    align-items: center;
    text-align: center;
    animation: fade2 1.2s;
    width: 100%;
    background: rgba(0, 132, 198, 0.96);
    padding: 0 7vw 0 7vw;
    line-height: 4vw;
}


.subtext-2 {
    text-align: center;
    color: #fff;
    font-size: 3vw;
}


/*COMMUNITY*/
.mainContainerCommunity {
    display: flex;
    flex-direction: column;
    margin: 80px 0 0 0;
    border-top: 1px solid #666;
    color: #333;
    font-size: 1.5vw;
    padding: 5vw;
    line-height: 2.5vw;
}

.mainContainerCommunity * {
    margin-bottom: 60px;
}

.communitySection1 {}

.communitySection2 {
    display: flex;
    align-items: center;
    font-size: 1.2vw;
    line-height: 2vw;
}

.communitySection2 img {
    margin-right: 5vw;
    width: 20vw;
}

.communitySection3 {
    display: flex;
    align-items: flex-start;
}

.communitySection3 img {
    width: 60vw;
    margin-left: 5vw;
}


/*FOOTER*/

#footer5 {
    margin: 1008.59px 0 0px 0;
}

.footerContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 100px 0 0 0;
    justify-content: center;
}

.footerSubContainer {
    display: flex;
    align-items: baseline;
    justify-content: center;
    height: 200px;
}

.footerSubContainer p {
    font-size: clamp(20px, 2vw, 35px);
    color: #007AC8;
    margin-right: 1vw;
}

.footerSubContainer a {
    font-size: clamp(20px, 2vw, 35px);
    color: #3766B7;
    text-decoration: underline;
}

footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 20px solid #1e254e;
    width: 100%;
    padding: 30px 10px 7px 10px;
    height: 150px;
    background: #fff;
}

footer p {
    line-height: 25px;
    font-size: 11px;
}

footer img {
    width: 200px;
}