
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family: 'web-api-font';
    src: url('fonts/web-api-font.eot?66572644');
    src: url('fonts/web-api-font.eot?66572644#iefix') format('embedded-opentype'),
         url('fonts/web-api-font.woff2?66572644') format('woff2'),
         url('fonts/web-api-font.woff?66572644') format('woff'),
         url('fonts/web-api-font.ttf?66572644') format('truetype'),
         url('fonts/web-api-font.svg?66572644#web-api-font') format('svg');
    font-weight: normal;
    font-style: normal;
  }

[class^="af-"]:before, [class*=" af-"]:before {
    font-family: "web-api-font";
    font-style: normal;
    font-weight: normal;
    speak: never;  
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    /* font-size: 120%; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.af-search:before { content: '\21'; } /* '!' */
.af-attention-circled:before { content: '\22'; } /* '"' */
.af-attention:before { content: '\23'; } /* '#' */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: white;    
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: .4em 4em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;    
    background-color:#f3f3f3;
    opacity: 80%;    
}

.logo {
    font-size: 2em;
    color: #543281;
    pointer-events: none;
}

.navigation a {
    text-decoration: none;
    color: #552b83;
    padding: .4em 1.2em;
    border-radius: 2em;
    margin: 0 .6em;
    font-weight: 400;
}

.navigation a:hover,
.navigation a:active {
    color: white;
    background-color: #552b83;
}

#appApi {
    position: relative;
    transition: transform 0.6s ease-in-out;
}

.parallax-wrapper {
    position: relative;
    padding: 0;  
    overflow: hidden;
}

.parallax-items {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;    
    height: 100%;
    width: 100%;
}

#hero-text {
    font-size: 3em;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 0 .2em rgba(0,0,0,.4);
}

.svg-image {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	pointer-events: none;
}

.info {
    position: relative;
    padding: 2em 10em;
    text-align: center;
    height: 100vh;
}
.info h2 {
    font-size: 3em;
    padding: 2em;
}

.search-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 5em;
    background-color: #fff;
    color: #543281;
    border-radius: 1em;
    padding: 0;
    box-shadow: 0 .3em 2em rgba(0,0,0,.3);
}
.search-panel form {
    display: inherit;
    width: 100%;
    width: 100%;   
    height: 100%;  
}
.search-ctl {
    width: 100%;   
    height: 100%;  
    padding: 1em; 
}
.search-panel input {
    width: 100%;   
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 2em;
    color: #543281;
}
.search-panel button {
    background-color: transparent;
    color: #543281;
    border: none;
    height: 100%;
    border-radius: 1em;
    padding: 1em;
    pointer-events:all;
    cursor: pointer;
}
.search-panel button::before {
  font-size: 2.5em;  
}
.search-panel button:hover {
    background-color: #543281;
    color: #fff;
}
.search-panel input::placeholder {
    color: #888;    
}


.register-dph {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #543281;
    color: #fff;
    height: 100vh;
}
.register-dph .row {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: .2em;
}
.register-dph .row div {
    text-align: start;    
    font-size: 1.2em;
}
.register-dph .row .prop-title {
    flex-grow: 0;
    flex-shrink: 0;
    font-weight: 500;
    flex-basis: 10em;
    padding: 0 1em 0 0;
}
.register-dph .row .prop-value {
    flex-grow: 0;
}

.register-dph .no-search {

}

.register-dph .form-wrapper, 
.register-dph .message-box,
.register-dph .result-box {
    display: none;
}

.register-dph .btn-panel {
    padding: 3em 0;
}
.register-dph .btn-panel a {
    background-color: #d6c7ec;
    text-decoration: none;
    color: #552b83;
    padding: .4em 1.2em;
    border-radius: 2em;
    margin: 0 .6em;
    font-size: 1.2em;
    font-weight: 400;
}

.register-dph .btn-panel a:hover,
.register-dph .btn-panel a:active {
    color: #d6c7ec;
    background-color: transparent;
    border: .1em solid #d6c7ec;
}