*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
	scroll-behavior:smooth;
}
body {
    background-color: #000011;
}
.header {
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 5rem;
}
.logo svg {
    height: 50px;
    width: 310px;
}
.fill-white {
    fill: #ffffff;
}
.banner-info-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
}
.banner-info-sec-heading, .banner-info-sec-text {
    color: #ffffff;
}
.banner-info-section .banner-info-section-content {
    max-width: 900px;
    text-align: center;
    padding: 0 1rem;
}
.banner-info-section-content {
    margin-top: 6rem;
}
.banner-info-sec-heading {
    font-size: 88px;
    line-height: 1.09;
}
.banner-info-sec-text {
    font-size: 1.4rem;
    padding: 0 1rem;
}
.back-text-deco {
    position: absolute;
    top: 10rem;
    left: 0;
    text-align: center;
    right: 0;
    font-size: 40vmin;
    color: rgba(39, 41, 60, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
    z-index: -1;
}
.line-text-main {
    margin-top: 10px;
    padding: 0 6rem;
}
.line-text-section-content {
    display: flex;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-weight: 500;
    font-stretch: expanded;
    font-size: 11px;
    line-height: 1.27em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00ffa4;
}
.line-text-section-prefix {
    display: flex;
    align-items: center;
    max-width: 100px;
    width: 70%;
    height: 1px;
    min-width: 10px;
    margin: 10px;
}
.line-text-section-prefix > i{
    display: inline-block;
    width: 100%;
    height: 100%;
    background: currentColor;
    color: #00ffa4;
}
.feature-contact-section {
    margin: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-section-info {
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
}
.contact-section-card {
    background: #000011;
    padding: 0 1.25rem;
    margin: 0 0.625rem;
    width: calc(33% - 20px);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.contact-section-card-icon {
    font-size: 1.75rem;
    width: 60px;
    height: 60px;
    background: #00ffa4;
    text-align: center;
    line-height: 60px !important;
    border-radius: 50%;
    transition: 0.3s linear;
    color: #000011;
}
.contact-section-card:hover .contact-section-card-icon {
    background: none;
    color: #00ffa4;
    transform: scale(1.6);
}
.contact-section-card p {
    margin-top: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    max-height: 0;
}
.form-section {
    margin: 5rem 0;
}
.form-section-text {
    text-align: center;
    padding: 0 1rem;
}
.form-section-heading {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
}
.form-section-parah {
    color: #ffffff;
    font-size: 1.2rem;
}
.container {
    background-color: #000011;
    width: 700px;
    margin: 0 auto;
    margin-top: 30px;
}
@media only screen and (max-width: 600px) {
    .container {
      width: 100%;
    }
}
.form-target {
    padding: 40px;
}
input {
    outline: none;
    border: none;
    background: none;
}
.bs-form_field_label {
    width: 100%;
    font-size: 1.3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 4px;
}
.bs-form_field_input {
    width: 100%;
    padding: 9px 10px;
    color: #ffffff;
    height: 40px;
}
.bs-form-field-row {
    display: flex;
    flex-grow: 1;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
}
.bs-form-full-name-row {
    margin-bottom: 18px;
}
.bs-form-full-name {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #00ffa4;
    margin-bottom: 13px;
}
.bs-form-email-row {
    margin-bottom: 18px;
}
.bs-form-email {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #00ffa4;
    margin-bottom: 13px;
}
.bs-form-message-row {
    margin-bottom: 18px;
}
.bs-form-message {
    width: 100%;
    position: relative;
    margin-bottom: 13px;
}
textarea {
    outline: none;
    border: none;
    background: none;
}
.bs-form_msg_field_input {
    width: 100%;
    padding: 9px 10px;
    color: #ffffff;
    background: rgba(39, 41, 60, 1);
    height: 100px;
}
.error_message {
    position: absolute;
    color: #cc1e4a;
    font-size: 1rem;
    font-weight: 400;
}
.bs-form-button {
    text-decoration: none;
    color: #001a30;
    padding: 7px 30px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 5px;
    border: 2px solid #00ffa4;
    background-color: #00ffa4;
    transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
    box-shadow: 0 2px 25px rgba(0, 255, 164, 0.5);
}
.bs-form-submit {
    margin-top: 2rem;
    text-align: center;
}
.fill-blue {
    /* fill: rgba(39, 41, 60, 0.1); */
    fill:#ffffff;
}
.footer-logo-parken svg {
    height: 100px;
    width: 400px;
    float: right;
    margin-right: 3rem;
}
/* .letter_swoosh_footer polygon {
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    outline: none;
    animation: swoosh 5s linear infinite;
}
.letter_swoosh_footer path {
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    outline: none;
    animation: swoosh 5s linear infinite;
}
.letter_p_footer path{
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    outline: none;
    animation: swoosh 5s linear infinite;
}
.letter_a_footer path{
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    outline: none;
    animation: swoosh 5s linear infinite;
}
.letter_r_footer path{
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    outline: none;
    animation: swoosh 5s linear infinite;
}
.letter_k_footer path{
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    outline: none;
    animation: swoosh 5s linear infinite;
}
.letter_e_footer path{
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    outline: none;
    animation: swoosh 5s linear infinite;
}
.letter_n_footer path{
    -webkit-box-reflect: below 1px linear-gradient(transparent,#0004);
    outline: none;
    animation: swoosh 5s linear infinite;
}
@-webkit-keyframes swoosh {
    0%,18%,20%,50.1%,60%,65.1%,80%,90.1%,92% {
        fill: rgba(39, 41, 60);
        filter: drop-shadow(none);
    }
    18.1%,20.1%,30%,50%,60.1%,65%,80.1%,90%,92.1%,100% {
        fill: #ffffff;
        filter: drop-shadow(0 0 10px #27293c) drop-shadow(0 0 20px #27293c) drop-shadow(0 0 40px #27293c) drop-shadow(0 0 80px #27293c) drop-shadow(0 0 160px #27293c);
    }
}
@keyframes swoosh {
    0%,18%,20%,50.1%,60%,65.1%,80%,90.1%,92% {
        fill: rgba(39, 41, 60);
        filter: drop-shadow(none);
    }
    18.1%,20.1%,30%,50%,60.1%,65%,80.1%,90%,92.1%,100% {
        fill: #ffffff;
        filter: drop-shadow(0 0 10px #27293c) drop-shadow(0 0 20px #27293c) drop-shadow(0 0 40px #27293c) drop-shadow(0 0 80px #27293c) drop-shadow(0 0 160px #27293c);
    }
} */
.footer-sec {
    display: flex;
    padding: 2rem 1.25rem 0 3rem;
}
.footer-sec li{
    padding: 0 0.625rem;
    list-style: none;
}
.footer-sec a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 300;
}
.footer-sec a:hover {
    color: #00ffa4;
    text-decoration: underline;
}
.bottom-footer {
    margin: 0 14rem;
    text-align: center;
    color: #ffffff;
    font-weight: 300;
}
@media (max-width:978px) {
    html {
        font-size: 50%;
    }
    .logo svg {
        width: 200px;
    }
    .banner-info-section {
        min-height: 60vh;
    }
    .banner-info-sec-heading {
        font-size: 50px;
        line-height: 1.09;
    }
    .banner-info-sec-text {
        font-size: 1.4rem;
    }
    .back-text-deco {
        font-size: 20vmin;
        top: 15rem;
    }
    .contact-section-card p {
        font-size: 1.4rem;
    }
    .footer-logo-parken svg {
        width: 150px;
    }
    .footer-sec {
        flex-direction: column;
    }
    .footer-sec li {
        padding-top: 0.625rem;
    }
}
@media (max-width:1024px) {
    .back-text-deco {
        top: 15rem;
    }
}
@media (max-width:375px) {
    .back-text-deco {
        top: 20rem;
    }
    .line-text-main {
        padding: 0 2rem;
    }
    .bottom-footer {
        margin: 0 8rem;
    }
}
@media (max-width:450px) {
    .footer-logo-parken svg {
        width: 100px;
    }
    .footer-sec a {
        font-size: 1.4rem;
    }
    .form-section-parah {
        font-size: 1.4rem;
    }
    .bs-form_field_label {
        font-size: 1.4rem;
    }
    .bs-form-button {
        font-size: 1.3rem;
    }
    .bs-form_field_input {
        font-size: 1.3rem;
    }
    .bs-form_msg_field_input {
        font-size: 1.3rem;
    }
    .fill-blue {
        fill: #ffffff;
    }
}
@media screen and (max-width:425px) {
    .contact-section-info {
        flex-direction: column;
    }
    .contact-section-card {
        width: 100%;
        max-width: 300px;
        margin: 5px 0;
    }
}