@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700&display=swap');

@font-face {
    font-family: 'ALISEO';
    src: url('fonts/ALISEORegular.eot');
    src: url('fonts/ALISEORegular.eot?#iefix') format('embedded-opentype'),
        url('fonts/ALISEORegular.woff2') format('woff2'),
        url('fonts/ALISEORegular.woff') format('woff'),
        url('fonts/ALISEORegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    background-image: url(img/web_bg.svg);
    background-size: auto;
}

.content {
    background-color: rgba(255, 255, 255, .8);
}

.navbar {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
}

.navbar .nav-link {
    color: rgb(2, 56, 89);
    margin-left: 15px;
    transition: all ease-in-out .3s;
}

/*.navbar .nav-link.active {
    color: rgb(0, 0, 0);
}*/

.navbar-brand img {
    width: 90px;
}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler:focus {
    outline: none;
}


.toggler {
    width: 35px;
    height: auto;
}

.canvas-holder {
    /*background-color: #54ade4;*/
    background: -webkit-linear-gradient(360deg, #38aecc 10%, #347fb9 360%);
    /* Chrome 10+, Saf5.1+ */
    background: -moz-linear-gradient(360deg, #38aecc 10%, #347fb9 360%);
    /* FF3.6+ */
    background: linear-gradient(360deg, #38aecc 10%, #347fb9 360%);
    /* W3C */

}

canvas {
    display: block;
    vertical-align: bottom;
}

#anim {
    width: 100%;
    height: 100vh;

}

.banner-logo {
    background-color: rgba(255, 255, 255, .9);
    padding: 15px;
    border-radius: 3px;
    width: 350px;
    max-width: 90%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-animation: fadein 3s;
    -moz-animation: fadein 3s;
    -ms-animation: fadein 3s;
    -o-animation: fadein 3s;
    animation: fadein 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.understanding {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 25%);
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    text-shadow: 0px 0px 2px rgb(56, 55, 55);
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.heading {
    color: #fff;
    font-weight: 800;
    font-size: 40px;
    text-shadow: 0px 0px 2px rgb(56, 55, 55);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    border-top: 1px solid #fff;
    padding-top: 5px;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.box {
    position: absolute;
    left: 50%;
    top: 90%;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}

.box span {
    width: 20px;
    height: 20px;
    display: block;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.box span:nth-child(2) {
    animation-delay: -0.2s;
}

.box span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        transform: rotate(45deg) translate(10px, 10px);
    }

    100% {
        opacity: 0;
    }
}

.main {
    font-weight: 700;
    color: rgb(2, 56, 89);
    border-bottom: 1px solid #38aecc;
}

.details {
    color: rgb(2, 56, 89);
    font-size: 18px;
    background-color: rgba(255, 255, 255, .6);
}


.gradient-line {
    height: 5px;
    background-color: rgb(2, 56, 89);
}


.strong {
    background-color: rgba(56, 174, 204, .2);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    padding: 15px;
    font-weight: 800;
    text-align: center;
    font-size: 22px;
}

#functions .main {
    border-bottom: 0;
    margin-bottom: 0;
}

#functions .text-holder {
    border-bottom: 1px solid #38aecc;
}

#functions .col-9 {
    background-color: #4181af;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    padding: 15px;
    text-align: left;
    font-size: 22px;
    border-right: 5px solid rgb(2, 56, 89);

}

.nav-pills .nav-link {
    border-radius: 0;
    color: rgb(2, 56, 89);
    font-weight: 700;
}

.nav-pills .nav-link.active {
    background-color: rgb(2, 56, 89);
    color: #fff;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .4s linear;
    -moz-transition: opacity .4s linear;
    -ms-transition: opacity .4s linear;
    -o-transition: opacity .4s linear;
    transition: opacity .4s linear;
}

.fade.show {
    opacity: 1;
}


.tab-content h5 {
    color: #fff;
    font-weight: 800;
}

.tab-content h1 {
    position: absolute;
    bottom: -30px;
    right: 0;
    font-size: 75px;
    color: rgba(255, 255, 255, .3);
    text-align: right;
}

/*#whom {
    margin-bottom: 200px;
}*/

.whom-column {
    background-color: rgba(255, 255, 255, .6);
}

#whom h3,
#whom ul li h5 {
    color: rgb(2, 56, 89);
}

.white-paper {
    background-color: #4181af;
    color: #fff;
    border-radius: 3px;
    transition: all ease-in-out .2s;
}

.white-paper:hover {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -ms-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

#whom a:hover {
    text-decoration: none;
}

.pdf {
    width: 50px;
}

.download {
    width: 35px;
    position: relative;
    top: 7px;
    opacity: 0;
    transition: all ease-in-out .2s;
}

.white-paper:hover .download {
    opacity: 1;
    top: 9px;
}

#contact {
    background-color: rgb(2, 56, 89);
    color: #fff;
    border-top: 5px solid #38aecc;
    margin-top: 50px;
}


#contact ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

#contact h6 {
    font-weight: 300;
}

#contact h6 a {
    color: #fff;
    transition: all ease-in-out .3s;
}

#contact h6 a:hover {
    text-decoration: none;
    text-shadow: 0px 0px 5px #38aecc;
}

#contact .email-icon {
    width: 35px;
}

.footer-logo {
    background-color: rgba(255, 255, 255, .9);
    padding: 15px;
    width: 150px;
    border-radius: 3px;
}

@media(min-width:768px) {
    #contact h5 {
        display: none;
    }

}

@media(max-width:576px) {
    .banner-logo {
        top: 40%;
    }

    .understanding {
        top: 40%;
    }

    .heading {
        top: 37%;
        font-size: 33px;
    }

    .box {
        top: 85%;
    }

    #need h1 {
        text-align: center !important;
    }

    .nav-pills .nav-link {
        padding-left: 2px;
        font-size: 14px;
    }

    .tab-content h1 {
        font-size: 27px;
        bottom: -15px;
    }

    #whom {
        margin-bottom: 0;
    }

    #contact {
        margin-top: 0;
    }
}


.desc {
    font-size: 1.375rem;
    color: #5e5f5f
}

.numbered {
    font-weight: 700
}
