
 /* ------------------------------------------------------------- */
.splashPart {
    background-color: white;
    padding:3em;
    font-family: sans-serif;
    background-image: url("Images/technology.png");
    background-repeat: no-repeat;
    background-size:cover;
}
.splash_wrap {
    width:80%;
    max-width:26em;
    margin:0 auto;
}
.circular_panel {
    height:0px;
    width:100%;
    padding-top:100%;
    overflow:hidden;
    position:relative;
    border-radius:50%;
    opacity: 0.95;
    background-color: white;
}
.arhackbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.in_circle_box {
    text-align: center;
    width:70%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-weight:bold;
    color:grey;
}
.in_circle_box h2 {
    font-weight:normal;
    font-size: 2.2em;
    color:var(--sitePurple);
    margin: 0px;
}

button {
    border-radius:999px;
    background-color:var(--sitePurple);
    border:0px;
    color:white;
    padding:0.2em;
    font-size:1.3em;
    padding-left:2em;
    padding-right:2em;
}

@media screen and (max-width:850px) {
    .splashPart {
        padding:7%;
    }
    .in_circle_box h2 {
        font-weight:normal;
        font-size: 2.0em;
    }

    button {
        padding:0.2em;
        font-size:1.3em;
        padding-left:1.5em;
        padding-right:1.5em;
    }
}
@media screen and (max-width:480px) {
    .in_circle_box {
        width:74%;
        margin: 0 auto;
    }
    .in_circle_box h2 {
        font-weight:normal;
        font-size: 1.6em;
    }
    button {
        font-size:1.0em;
        padding-left:1.2em;
        padding-right:1.2em;
    }
}

@media screen and (max-width:395px) {
    .in_circle_box h2 {
        font-weight:normal;
        font-size: 1.4em;
    }
    button {
        font-size:0.9em;
        padding-left:1.0em;
        padding-right:1.0em;
    }
}


 /* ------------------------------------------------------------- */
.textyPart {}
 /* ------------------------------------------------------------- */
 /* line with text in the middle, tricky method */
.hrdiv {
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap; 
    text-align: center;
    font-family:sans-serif;
    font-weight: lighter;
    font-size:2em;
}

.hrdiv > span {
    position: relative;
    display: inline-block;
}

.hrdiv > span:before,
.hrdiv > span:after {
    content: "";
    position: absolute;
    top: 45%;
    width: 9999px;
    height: 2px;
    background: var(--sitePurple);
}

.hrdiv > span:before {
    right: 100%;
    margin-right: 15px;
}

.hrdiv > span:after {
    left: 100%;
    margin-left: 15px;
}

 /* ------------------------------------------------------------- */


.contactPart {
    background-color: var(--veryLightGrey); 
    padding:1.5em;
}

.contactForm {
    margin:0 auto;
    width:600px;
    text-align: center;
    font-family: sans-serif;
    font-weight: lighter;
    font-size: 1.2em;
    margin-top:1.5em;
}
.formtext { font-size:1.5em; }
.contactForm input[type=text] {
    width:100%;
    height:2em;
    margin-top:1em;
    margin-bottom:1em;
    border:1px solid lightgray;
    border-radius: 4px;
    padding:6px;
}
.contactForm input[type=email] {
    width:100%;
    height:2em;
    margin-top:1em;
    margin-bottom:1em;
    border:1px solid lightgray;
    border-radius: 4px;
    padding:6px;
}
.contactForm textarea {
    width:100%;
    height:6em;
    margin-top:1em;
    margin-bottom:1em;
    border:1px solid lightgray;
    border-radius: 4px;
    padding:6px;
    font-family: sans-serif;
}