/* ==========================================================================
   Author's custom styles - UIP
========================================================================== */

/*=========================================  
1.  GLOBAL - UIP
=========================================*/


html {
    font-size: 16px;
}

/* Small Devices, Tablets (MD) */
@media only screen and (min-width : 768px) {
    html {
        font-size: 18px;
    }
}

body {
    font-family: 'Rubik', sans-serif;
    background: #fff;
    font-weight: 300;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 1rem;
    line-height: 1.333rem;
    overflow-x: hidden;
}

.uip header {
    z-index: 1;
}


.uip .logo {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.944rem;
    background: rgba(255, 255, 255, 0.5);
    border-bottom-right-radius: 30px;
}

.uip .logoForMobile {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.944rem;
    background: rgba(255, 255, 255, 0.5);
    border-bottom-right-radius: 30px;
}


/*

.uip .logo {
    z-index: 2;
    position: absolute;
    top: 1.944rem;
    left: 1.944rem;
}

.uip .logoForMobile {
    z-index: 2;
    position: absolute;
    top: 1.944rem;
    left: 1.944rem;

}

*/

.uip .hero {
    position: relative;
    min-height: 405px;
}

/* Small Devices, Tablets (MD) */
@media only screen and (min-width : 768px) {
    .uip .hero {
        position: relative;
        min-height: 705px;
    }
}

.uip .subHero {
    position: relative;
    min-height: 405px;
}

.uip .heroShade {
    width: 100%;
    height: 250px;
    background: rgb(2, 0, 36);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 0, 36, 1)), color-stop(0%, rgba(255, 255, 255, 0.8)), color-stop(72%, rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(180deg, rgba(2, 0, 36, 1) 0%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.7) 72%, rgba(255, 255, 255, 0) 100%);
}

.uip .heroShadeDesktop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    /*background: linear-gradient(180deg, rgba(255,255,255,0.9023984593837535) 0%, rgba(255,255,255,0.6110819327731092) 65%, rgba(255,255,255,0) 100%);*/
    background: linear-gradient( 138deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6110819327731092) 35%, rgba(255,255,255,0) 60%);
}

.uip .heroShadeDesktop2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 55%, rgba(255,255,255,0.8) 100%);
}

.uip a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s linear;
    -webkit-transition: color 0.3s linear;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .uip a:hover,
    .uip a:focus {
        color: inherit;
        text-decoration: underline;
    }


.uip h1,
.uip h2,
.uip h3,
.uip h4 {
    font-weight: 300;
    letter-spacing: 0.083rem;
    padding-bottom: 0.5rem;
}

.uip h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
}

.uip h2 {
    font-size: 2rem;
    line-height: 2rem;
}

.uip p {
    font-size: 1rem;
    line-height: 1.556rem;
}

    .uip p.lead-text, p.lead-text {
        font-size: 1.111rem;
        line-height: 1.667rem;
    }

    .uip p.small-text, p.small-text {
        font-size: 0.889rem;
        line-height: 1.333rem;
    }

    .uip p.xsmall-text, p.xsmall-text {
        font-size: 0.86rem;
        line-height: 1.3rem;
    }

.uip .section-padding {
    padding-top: 1.667rem;
    padding-bottom: 1.667rem;
}

@media only screen and (min-width : 768px) {
    .uip .section-padding {
        padding-top: 3.889rem;
        padding-bottom: 3.889rem;
    }
}

.uip .background-cover {
    background-size: cover;
}

.uip .background-center {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.uip .boxShadow {
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.uip strong {
    font-weight: 600;
}


/*=========================================  
2.  TEXT COLOR - UIP
=========================================*/

.uip .text-vibrant-lilac, .text-vibrant-lilac {
    color: #8935ff;
}

.uip .text-cobalt, .text-cobalt {
    color: #2124fe;
}

.uip .text-light-grey, .text-light-grey {
    color: #c8c8c8;
}

.uip .text-white, .text-white {
    color: #ffffff;
}

.uip .text-blue, .text-blue {
    color: #0646ff;
}


/*=========================================  
3.  Background COLOR - UIP
=========================================*/

.uip .bg-vibrant-lilac, .bg-vibrant-lilac {
    background-color: #8935ff;
}

.uip .bg-cobalt, .bg-cobalt {
    background-color: #2124fe;
}

.uip .bg-light-grey, .bg-light-grey {
    background-color: #c8c8c8;
}


/*=========================================  
3.1. BTN-
=========================================*/

.btn-select-location {
    border-radius: 4px;
    border: 1px solid #e9e9ea;
    background: #fff;
    padding: 10px 15px;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}

    .btn-select-location:hover {
        text-decoration: underline;
    }

a.btn-select-location-link {
    border-radius: 4px;
    border: 1px solid #e9e9ea;
    background: #fff;
    padding: 10px 15px;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
    font-weight: 400;
    display: block;
}

    a.btn-select-location-link:hover {
        text-decoration: underline;
    }


/*=========================================  
4.  HAMBURGER BUTTON - UIP
=========================================*/


.hamburger-button {
    position: absolute;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    width: 51px;
    height: 44px;
    display: block;
    top: 2rem;
    right: 2rem;
    z-index: 99999;
}

    .hamburger-button span {
        position: absolute;
        height: 10px;
        border-radius: 4px;
        width: 100%;
        background-color: #3D4146;
        background-color: #8935ff;
        top: 0;
        -webkit-transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
        transition: opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
        transition: transform .2s ease-in-out, opacity .2s ease-in-out;
        transition: transform .2s ease-in-out, opacity .2s ease-in-out, -webkit-transform .2s ease-in-out;
    }

        .hamburger-button span:nth-child(1) {
            top: 0px;
        }

        .hamburger-button span:nth-child(2),
        .hamburger-button span:nth-child(3) {
            top: 15px;
        }

        .hamburger-button span:nth-child(4) {
            top: 30px;
        }

    .hamburger-button.active span {
        background-color: #FFF;
    }

        .hamburger-button.active span:nth-child(1),
        .hamburger-button.active span:nth-child(4) {
            opacity: 0;
        }

        .hamburger-button.active span:nth-child(2) {
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .hamburger-button.active span:nth-child(3) {
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

.overlay {
    position: fixed;
    background: #8935ff;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 99997;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 1;
}

    nav ul li {
        margin: 1rem 0;
        /*
    opacity: 0;
    */
    }

.uip nav ul li a {
    text-decoration: none;
    color: #fff;
    opacity: 0.75;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    font-size: 26px;
    line-height: 32px;
}

    .uip nav ul li a:hover {
        color: #fff;
        opacity: 1;
        text-decoration: none;
    }


.uip .pagination-container nav ul li a {
    background: #969696;
    border-radius: 100px;
    font-size: 22px;
    line-height: 28px;
    width: 46px;
    height: 46px;
    margin: 0 2px;
}

.uip .pagination-container .page-link {
    border-radius: 100px;
}

.page-item.active .page-link {
    background-color: #2124fe;
    border-color: #2124fe;
}



@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.overlay.visible {
    height: 100%;
    opacity: .95;
    visibility: visible;
}

    .overlay.visible nav ul li {
        -webkit-animation: fadeInLeft 0.3s ease forwards;
        animation: fadeInLeft 0.3s ease forwards;
    }


        .overlay.visible nav ul li:nth-child(1) {
            -webkit-animation-delay: 0.23s;
            animation-delay: 0.23s;
        }

        .overlay.visible nav ul li:nth-child(2) {
            -webkit-animation-delay: 0.26s;
            animation-delay: 0.26s;
        }

        .overlay.visible nav ul li:nth-child(3) {
            -webkit-animation-delay: 0.29s;
            animation-delay: 0.29s;
        }

        .overlay.visible nav ul li:nth-child(4) {
            -webkit-animation-delay: 0.32s;
            animation-delay: 0.32s;
        }

        .overlay.visible nav ul li:nth-child(5) {
            -webkit-animation-delay: 0.35s;
            animation-delay: 0.35s;
        }


/*=========================================  
2.  BUTTON - UIP
=========================================*/

.uip .btn-download {
    color: #fff;
    border: 7px solid #fff;
    background: #8935ff;
    border-radius: 9999px;
    padding: 8px 30px;
    -webkit-box-shadow: 0px 0px 1px rgba(137, 53, 255, 1);
    box-shadow: 0px 0px 1px rgba(137, 53, 255, 1);
    -webkit-transition: 0.3s;
}

    .uip .btn-download:hover,
    .uip .btn-download:focus {
        color: #fff;
        border: 7px solid rgba(33, 36, 254, 0);
        background: #2124fe;
        text-decoration: none;
        -webkit-box-shadow: 0px 0px 1px rgba(33, 36, 254, 1);
        box-shadow: 0px 0px 1px rgba(33, 36, 254, 1);
    }



/*=========================================  
0.  ID - UIP
=========================================*/

.uip #video h2 {
    font-size: 1.556;
    line-height: 1.556;
}

.uip #video iframe {
    width: 380px;
    height: 214px;
}

@media only screen and (min-width : 768px) {
    .uip #video iframe {
        width: 640px;
        height: 360px;
    }
}


.uip #ipToolkit h2 {
    font-size: 2.111;
    line-height: 2.111;
}



/*=========================================  
0.  IP Toolkit Components
=========================================*/


.uip #toolNav {
    background-image: url("");
    background-repeat: no-repeat;
}

@media only screen and (min-width : 992px) {
    .uip #toolNav {
        background-image: url("");
        background-repeat: no-repeat;
        background: #cc0000;
    }
}




.uip .toolNav {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .uip .toolNav:hover {
        text-decoration: none;
    }


.uip .toolNavOutline {
    width: 150px;
    height: 150px;
    border: 1px solid #8935ff;
    position: relative;
    border-radius: 9999px;
    margin: 0 auto;
    background: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .uip .toolNavOutline .photo {
        width: 130px;
        height: 130px;
        position: absolute;
        border-radius: 9999px;
        top: 10px;
        left: 10px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        background-size: 190px 190px;
        background-position: center;
    }


@media only screen and (min-width : 768px) {
    .uip .toolNavOutline {
        width: 210px;
        height: 210px;
    }

        .uip .toolNavOutline .photo {
            width: 190px;
            height: 190px;
        }
}




.uip .toolOutline {
    border-radius: 9999px;
    border: 1px solid #8935ff;
    padding: 30px;
    display: block;
    width: 100%;
    height: 100%;
}


.uip .toolMainPhoto {
    position: relative;
    margin-bottom: 30px;
}

    .uip .toolMainPhoto .titleBox {
        position: absolute;
        width: 280px;
        height: 150px;
        top: 60%;
        left: 50%;
        margin-left: -140px;
        text-align: center;
    }

    .uip .toolMainPhoto .title {
        font-size: 2.667rem;
        line-height: 2.667rem;
        font-weight: 600;
        color: #fff;
        text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    }

    .uip .toolMainPhoto .description {
        font-size: 1.389rem;
        line-height: 1.389rem;
        font-weight: 300;
        color: #fff;
        text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    }


.uip .hLine {
    background-image: url("");
    background-repeat: no-repeat;
}

@media only screen and (min-width : 992px) {
    .uip .hLine {
        background-image: url("");
        background-repeat: no-repeat;
    }
}



/*=========================================  
0.  Parallax
=========================================*/

.uip .parallax {
    background-size: cover;
    background-attachment: fixed;
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
}

.uip .parallaxHome {
    background-size: cover;
    background-attachment: fixed;
    min-height: 705px;
    background-position: center;
    background-repeat: no-repeat;
}

.uip .parallaxSub {
    background-size: cover;
    background-attachment: fixed;
    min-height: 405px;
    background-position: center;
    background-repeat: no-repeat;
}

/*=========================================  
0.  Modal
=========================================*/

.modal {
    z-index: 999999;
}


.uip .modal-header {
    border-bottom: 0;
    padding: 1rem 1rem 0.5rem 1rem;
}

.uip .modal-body {
    padding: 0 1.667rem 3.333rem 1.667rem;
}


/*=========================================  
0.  Form
=========================================*/


.uip .input-group {
    width: 100%;
    margin: 50px auto;
    position: relative;
}

.uip .uip-input {
    border: none;
    border-bottom: 1px solid #888;
    font-size: 20px;
    display: block;
    width: 100%;
}

    .uip .uip-input:focus {
        outline: none;
        border-bottom-width: 4px;
        border-color: #48f;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

.uip .textarea-group {
    width: 100%;
    margin: 50px auto;
    position: relative;
}

.uip .uip-textarea {
    border: none;
    border-bottom: 1px solid #888;
    font-size: 20px;
    display: block;
    width: 100%;
    padding: 0 0 15px 0;
    white-space: pre-wrap !important;
}


    .uip .uip-textarea:focus {
        outline: none;
        border-bottom-width: 4px;
        border-color: #48f;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

.uip .uip-label {
    position: absolute;
    color: #aaa;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.uip .label-top {
    top: -20px;
    opacity: 1;
    visibility: visible;
}


/*=========================================  
0.  Modal - Select Location
=========================================*/
.sl .modal-body {
    padding: 1rem;
    padding: 0;
}

.sl .select-body {
    padding: 1.5rem 1rem;
}

    .sl .select-body .regional-site {
        width: 200px;
    }

.sl .select-location {
    background: #f9f9f9;
    padding: 1.5rem 1rem;
}


/*=========================================  
0.  Page - Select Location
=========================================*/

.uip .select-location-icon {
    z-index: 3;
    top: 80px;
    right: 26px;
    position: absolute;
    background: none;
    border: 0;
    display: none;
}

/* Small Devices, Tablets (MD) */
@media only screen and (min-width : 768px) {
    .uip .select-location-icon {
        top: 27px;
        right: 95px;
    }
}

/*=========================================  
0.  Page - News Icon
=========================================*/

.uip .news-icon {
    z-index: 3;
    top: 140px;
    top: 90px;
    right: 32px;
    position: absolute;
    background: none;
    border: 0;
    display: none;
}

/* Small Devices, Tablets (MD) */
@media only screen and (min-width : 768px) {
    .uip .news-icon {
        top: 27px;
        right: 170px;
        right: 105px;
        display: none;
    }
}

/*=========================================  
0.  Back to top
=========================================*/
.uip .back-to-top {
    background: none;
    margin: 0;
    position: fixed;
    bottom: 0.833rem;
    right: 0.833rem;
    padding: 0.278rem;
    z-index: 100;
    display: none;
    text-decoration: none;
    color: #fc7700;
    background-color: transparent;
    background-color: #ccc;
    border-radius: 999px;
    -webkit-box-shadow: 0px 0px 1px rgba(137, 53, 255, 1);
    box-shadow: 0px 0px 1px rgba(137, 53, 255, 1);
    -webkit-transition: 0.3s;
    border: 7px solid #fff;
}

    .uip .back-to-top:hover {
        background-color: #2124fe;
        -webkit-box-shadow: 0px 0px 1px rgba(33, 36, 254, 1);
        box-shadow: 0px 0px 1px rgba(33, 36, 254, 1);
        border: 7px solid rgba(33, 36, 254, 0);
    }



/*=========================================  
0.  Footer
=========================================*/

.uip footer {
    padding-top: 3.889rem;
    padding-bottom: 3.889rem;
}

    .uip footer .slogan {
        font-size: 1.333rem;
        line-height: 1.778rem;
        font-weight: 600;
        color: #021032;
    }

    .uip footer ul {
        margin: 0;
        padding: 0;
    }

        .uip footer ul li {
            list-style: none;
            display: inline-block;
            padding: 0 0.833rem;
            border-right: 1px solid #ccc;
        }

            .uip footer ul li:last-child {
                padding: 0 0.833rem;
                border-right: 0px solid #ccc;
            }

    .uip footer a {
        font-size: 1rem;
        line-height: 1rem;
    }

        .uip footer a:hover {
            color: #8935ff;
            text-decoration: none;
        }


/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}

/* Small Devices, Tablets (MD) */
@media only screen and (min-width : 768px) {
}


/* Large Devices, Wide Screens */
@media only screen and (min-width : 992px) {
}


/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}

/* Extra-large Devices, Wide Screens */
@media only screen and (min-width : 1600px) {
}

@media print {

    body {
        color: #000 !important;
        margin: 0;
        padding: 0;
    }

    @page {
        size: auto;
        margin: 25mm 25mm 25mm 25mm;
    }
}
