@font-face {
    font-family: "Lato";
    src: url("../../fonts/Lato-Regular.woff2") format("woff2"), url("../fonts/Lato-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../../fonts/Lato-Bold.woff2") format("woff2"), url("../fonts/Lato-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../../fonts/Lato-Light.woff2") format("woff2"), url("../fonts/Lato-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../../fonts/Lato-Black.woff2") format("woff2"), url("../fonts/Lato-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../../fonts/Lato-Italic.woff2") format("woff2"), url("../fonts/Lato-Italic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Droid Sans";
    src: url("../../fonts/DroidSans.woff2") format("woff2");
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "Droid Sans";
    src: url("../../fonts/DroidSans-Bold.woff2") format("woff2");
    font-weight: bold;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 p {
    margin: 0 0 15px 0;
}

.home {
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: black;
    line-height: 1.4;
    font-family: "Droid Sans";
    height: 100vh;
    /*--- Header CSS Start ---*/
    /* Menu btn CSS Start */
    /* Menu btn CSS End */
    /*--- Header CSS End ---*/
}

    .home .main {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

@media (min-width: 1024px) {
    .home .main {
        gap: 64px;
    }
}

.home .main a:not(.soliris-button) {
    transition: 0.3s all ease;
    color: #FF5124;
}

.home header {
    position: relative;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.2);
    background: url(/-/media/Soliris_net/PNH/Header-bar.svg) no-repeat;
    background-size: cover;
    background-position-y: 20%;
    font-family: Lato;
}

    .home header .container-wrapper {
        height: 120px;
        display: flex;
        align-items: end;
    }

@media (min-width: 480px) {
    .home header .container-wrapper {
        height: 155px;
    }
}

@media (min-width: 700px) {
    .home header .container-wrapper {
        height: 190px;
    }
}

@media (min-width: 1024px) {
    .home header .container-wrapper {
        height: 220px;
    }
}

.home header a {
    text-decoration: none;
    transition: 0.3s all ease;
}

.home header ul {
    padding: 0;
}

.home .header_row {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (min-width: 1024px) {
    .home .header_row {
        padding: 13px 0;
        padding-bottom: 21px;
    }
}

.home .header_row .logo {
    margin-right: 15px;
}

    .home .header_row .logo img {
        width: 110px;
    }

@media (min-width: 480px) {
    .home .header_row .logo img {
        width: 148px;
    }
}

.home .nav {
    display: none;
    position: absolute;
    top: 23px;
    left: 15px;
    right: 15px;
    background-color: white;
    padding: 25px 20px;
    z-index: 1;
    box-sizing: border-box;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.5019607843);
}

@media (min-width: 1024px) {
    .home .nav {
        display: block;
        background-color: unset;
        position: unset;
        padding: 0;
        height: unset;
        width: 100%;
        box-shadow: none;
    }
}

.home .nav ul {
    display: flex;
}

.home .nav li:last-child {
    margin-right: 0;
}

.home .nav a {
    font-size: 16px;
    color: #064B85;
}

    .home .nav a:hover {
        color: #FA7E1C;
    }

.home .nav .navBar {
    list-style-type: none;
    margin-left: 0;
    margin-right: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

@media (min-width: 1024px) {
    .home .nav .navBar {
        flex-direction: row;
        gap: 15px;
    }
}

@media (min-width: 1150px) {
    .home .nav .navBar {
        gap: 20px;
    }
}

.home .menu_btn {
    display: block;
    width: 26px;
    height: 22px;
    position: relative;
    margin: 0px;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .home .menu_btn {
        display: none;
    }
}

.home .menu_btn.open {
    z-index: 1;
    position: absolute;
    top: 43px;
    right: 35px;
}

.home .menu_btn span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    background-color: #003C71;
}

    .home .menu_btn span:nth-child(1) {
        top: 0px;
    }

    .home .menu_btn span:nth-child(2) {
        top: 8px;
    }

    .home .menu_btn span:nth-child(3) {
        top: 16px;
    }

.home .menu_btn.open span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
}

.home .menu_btn.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.home .menu_btn.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
}

.home .hero {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(0, #00467F 62.37%, rgba(0, 84, 159, 0) 85.78%);
    color: white;
    overflow: hidden;
    align-items: center;
    flex-direction: column;
    min-height: 390px;
    font-family: Droid Sans;
}

@media (min-width: 480px) {
    .home .hero {
        background: linear-gradient(0, #00467F 46.37%, rgba(0, 84, 159, 0) 85.78%);
    }
}

@media (min-width: 1024px) {
    .home .hero {
        background: linear-gradient(270deg, #00467F 46.37%, rgba(0, 84, 159, 0) 67.82%);
        flex-direction: row;
        max-height: 420px;
        min-width: none;
    }
}

.home .hero img {
    width: 100%;
    z-index: -1;
    max-height: 390px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .home .hero img {
        width: 55%;
        max-height: none;
    }
}

.home .hero .hero-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    margin-top: -65px;
}

@media (min-width: 1024px) {
    .home .hero .hero-content {
        margin-left: 52%;
        justify-content: center;
        position: absolute;
        margin-top: 0;
        max-width: 528px;
        padding: 2rem;
    }
}

.home .hero .hero-content p {
    font-family: Droid Sans;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}

@media (min-width: 1024px) {
    .home .hero .hero-content p {
        margin-bottom: 40px;
    }
}

.home .hero .hero-content h1 {
    font-size: 30px;
    line-height: 117%;
}

@media (min-width: 1024px) {
    .home .hero .hero-content h1 {
        font-size: 38px;
        line-height: 45.6px;
    }
}

.home .hero .hero-content .soliris-button {
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (min-width: 1024px) {
    .home .hero .hero-content .soliris-button {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.home .soliris-button {
    background-color: #FF5124;
    padding: 20px;
    line-height: 24px;
    font-size: 20px;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s all ease;
    opacity: 1;
    border-radius: 2.4px;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
}

@media (min-width: 1024px) {
    .home .soliris-button {
        text-align: left;
        padding: 20px 40px;
        width: -moz-fit-content;
        width: fit-content;
    }
}

.home .container-wrapper {
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.home .two-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

    .home .two-col > * {
        width: 100%;
    }

@media (min-width: 1024px) {
    .home .two-col {
        flex-direction: row;
    }
}

.home .two-col h2 {
    margin-bottom: 24px;
}

.home .two-col p {
    line-height: 28px;
    margin: 0;
}

.home .two-col .soliris-button {
    margin-top: 24px;
}

.home .two-col .image-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .home .two-col .image-wrapper {
        justify-content: center;
        margin-bottom: 0;
        margin-bottom: 34px;
    }
}

.home .two-col .image-wrapper img {
    width: 298px;
}

@media (min-width: 1024px) {
    .home .two-col .image-wrapper img {
        width: unset;
    }
}

.home h2 {
    font-family: Droid Sans;
    font-weight: bold;
    font-size: 30px;
    color: #00467F;
    line-height: normal;
}

.home .mobile-break {
    display: inline;
}

@media (min-width: 1024px) {
    .home .mobile-break {
        display: none;
    }
}

.home .contact-info {
    color: black;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
    margin-top: 10px;
}

@media (min-width: 1024px) {
    .home .contact-info {
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .home .footer_row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home .footer_links {
        width: 100%;
        text-align: center;
    }
}

/*--- Footer CSS Start ---*/
footer {
    padding: 38px 0;
}

@media (min-width: 1024px) {
    footer {
        padding: 45px 0;
    }
}

footer a {
    text-decoration: none;
    transition: 0.3s all ease;
}

.footer_row {
    display: flex;
    justify-content: space-between;
}

.footer_left {
    max-width: 430px;
    margin-bottom: 25px;
}

@media (min-width: 1024px) {
    .footer_left {
        margin-bottom: 0;
    }
}

footer sup {
    top: 3px;
}

footer p {
    font-size: 12px;
    color: #707070;
    line-height: 1.5;
    margin-bottom: 5px;
    font-family: Lato;
}

@media (min-width: 1024px) {
    footer p {
        margin-bottom: 0px;
    }
}

.logo_footer {
    margin-bottom: 20px;
}

.footer_links p {
    font-size: 14px;
    color: #575757;
}

.footer_links a {
    color: #05A0F2;
    margin: 0 2px;
    text-wrap-mode: nowrap;
}

/*--- Footer CSS End ---*/
footer .privacy-choices-link::before {
    content: "";
    background: url(/-/media/images/footer/privacy-choices-icon.svg);
    background-repeat: no-repeat;
    height: 13px;
    margin-right: 0px;
    flex: 1 0 auto;
    width: 30px;
    display: inline-block;
    position: relative;
    top: 1.5px;
}
/*# sourceMappingURL=main.css.map */
