@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/helvetica-neue/HELVETICANEUE-LIGHT.OTF') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/helvetica-neue/HELVETICANEUE-MEDIUM.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/helvetica-neue/HELVETICANEUEBOLD.TTF') format('truetype');
    font-weight: 700;
    font-style: normal;
}

html {
    font-family: 'HelveticaNeue', sans-serif;
    font-weight: 400;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'HelveticaNeue', sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 14px;
    overflow-x: hidden;
    background-color: #f4f4f4;
}

a {
    -webkit-text-decoration-skip: objects;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:active,
a:hover,
a:focus {
    outline-width: 0;
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}

img {
    border-style: none;
    max-width: 100%;
}

/* Colors */
    body,
    a,
    a:active,
    a:hover,
    a:focus {
        color: #fff;
    }

    .body-wrap{
        background-color: #165875;
    }

    .theme-button{
        background-color: #27a0d5;
    }

    .buttons-section .bs-button-row:nth-child(even) .theme-button,
    .buttons-section .bs-br-social-buttons .theme-button{
        background-color: #1886B7;
    }

    @media (min-width: 992px) {
        .theme-button:hover,
        .buttons-section .bs-br-social-buttons .theme-button:hover,
        .buttons-section .bs-button-row:nth-child(even) .theme-button:hover{
            background-color: #2bb4ef;
        }
    }

    @media (max-width: 991px) {
        .theme-button:active,
        .buttons-section .bs-button-row:nth-child(even) .theme-button:active,
        .buttons-section .bs-br-social-buttons .theme-button:active{
            background-color: #2bb4ef;
        }
    }

    @media (max-width: 767px) {
        .bw-bc-1{
            background-color: #165875;
        }
    }
/* Colors */

/* Normalize */
    .h-p-ul-m-0 ul,
    .h-p-ul-m-0 p,
    .h-p-ul-m-0 h1,
    .h-p-ul-m-0 h2,
    .h-p-ul-m-0 h3,
    .h-p-ul-m-0 h4,
    .h-p-ul-m-0 h5,
    .h-p-ul-m-0 h6{
        margin: 0;
    }

    .page-loader {
        position: fixed;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: 99999999;
        background-color: #fff;
    }
    
    .page-loader.invisible {
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    .page-loader .pgl-spinner{
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .page-loader .pgl-spinner:after {
        content: '';
        display: block;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid #3e3e3e;
        border-color: #3e3e3e transparent #3e3e3e transparent;
        animation: pgl-dual-ring 1.2s linear infinite;
    }

    @-webkit-keyframes pgl-dual-ring {
        0% { -webkit-transform: rotate(0deg); }
        100% { -webkit-transform: rotate(360deg); }
    }
    @-moz-keyframes pgl-dual-ring {
        0% { -moz-transform: rotate(0deg); }
        100% { -moz-transform: rotate(360deg); }
    }
    @keyframes pgl-dual-ring {
        0% { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); transform: rotate(0deg); }
        100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); transform: rotate(360deg); }
    }

    .common-title{
        position: relative;
        display: table;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* .common-title:after{
        content: "";
        position: absolute;
        background-image: radial-gradient(#fff 16%, transparent 82%);
        width: 66%;
        height: 5px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -12px;
    } */

    .common-title:before,
    .common-title:after{
        content: "";
        position: absolute;
        width: 39%;
        height: 3px;
        bottom: -10px;
    }

    .common-title:before{
        background-image: linear-gradient(-90deg, #fff 16%, transparent 82%);
        left: 50%;
        transform: translateX(-99%);
    }
    
    .common-title:after{
        background-image: linear-gradient(90deg, #fff 16%, transparent 82%);
        right: 50%;
        transform: translateX(99%);
    }

    .theme-button {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 15px;
        border-radius: 5px;
        font-size: 17px;
        width: 100%;
    }

    .theme-button .tb-icon:not(:last-child) {
        margin-right: 7px;
    }

    .theme-button .tb-text {
        text-align: center;
        line-height: 1.1;
    }

    .theme-button .tb-icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .invisible{
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
/* Normalize */

.body-wrap{
    max-width: 768px;
    margin: auto;
    overflow: hidden;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.bw-banner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 470px;
    overflow: hidden;
    background-color: #fff;
}

.bw-banner:before,
.bw-banner:after {
    content: "";
    width: 100%;
    position: absolute;
}

.bw-banner:after {
    top: 0;
    height: 100%;
    left: 0;
    /* background-image: linear-gradient(#fff 10%, transparent); */
    background-image: linear-gradient(#fff 0%, transparent 60%);
}

.bw-banner:before {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    height: 20px;
    background-color: #165875;
    z-index: 1;
    border-radius: 50%;
}

.bw-bw-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* left: 0; */
    /* top: 30px; */
}

.bw-body-content{
    position: relative;
    z-index: 2;
}

.bw-bc-l-link{
    max-width: 50%;
    margin: -90px auto 0;
    display: table;
}

.bw-bc-logo {
    width: 100%;
    height: auto;
    padding: 5px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.25);
}


.bw-bc-1 {
    padding: 0 20px 20px;
    margin-top: 40px;
}

.bw-bc-page-title {
    text-align: center;
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 35px !important;
}

.bw-bc-site-info:not(:last-child) {
    margin-bottom: 25px;
}

.bw-bc-si-title {
    text-align: center;
    /* font-weight: 400; */
    font-size: 21px;
    margin-bottom: 10px !important;
}

.buttons-section .bs-button-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.buttons-section .bs-button-row:not(:last-child){
    margin-bottom: 10px;
}

.buttons-section .bs-br-half-buttons .theme-button{
    width: calc( 50% - ( 70px / 2 ) );
    margin-right: 10px;
}

.buttons-section .bs-br-social-buttons{
    margin-bottom: -10px;
}

.buttons-section .bs-br-social-buttons .theme-button{
    max-width: 24px;
    max-height: 24px;
    margin-right: 10px;
    font-size: 24px;
    align-items: center;
    margin-bottom: 10px;    
}

.buttons-section .bs-br-social-buttons .theme-button:last-child,
.buttons-section .bs-br-half-buttons .theme-button:last-child{
    margin-right: 0;
}

@media (min-width: 769px) {
    .body-wrap{
        max-width: 1920px;
        overflow: hidden;
        margin: auto;
    }
    
    .bw-body-content{
        max-width: 768px;
        margin: auto;
    }

    .bw-bw-img{
        object-position: top;
    }

    .bw-banner:after{
        background-image: linear-gradient(#fff 0%, transparent 70%);
    }
}

@media (min-width: 768px) {
    .bw-bc-1{
        max-width: 565px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    /* Normalize */
        .theme-button{
            font-size: 15px;
        }
    /* Normalize */

    .bw-banner{
        height: 265px;
        background-color: transparent;
    }

    .bw-bw-img{
        top: -13px;
    }

    .bw-banner:after{
        /* background-image: linear-gradient(#fff 10%, transparent 65%); */
        background-image: linear-gradient(#fff 1%, transparent 45%);
    }

    .bw-banner:before{
        bottom: 3px;
    }

    .bw-bc-1{
        margin-top: -8px;
        padding-top: 25px;
    }

    .bw-bc-l-link{
        margin-top: -70px;
    }

    .bw-bc-logo,
    .bw-bc-l-link{
        max-width: 190px;
    }

    .bw-bc-page-title{
        font-size: 25px;
        margin-bottom: 30px !important;
        font-weight: 400;
    }
    
    .bw-bc-si-title{
        font-size: 18px;
        margin-bottom: 8px !important;
        font-weight: 400;
    }

    .buttons-section .bs-br-social-buttons .theme-button{
        font-size: 22px;
        max-width: 22px;
        max-height: 22px;
    }

    .bw-banner:before{
        bottom: 5px;
    }
}