﻿
html {
  font-size: 11pt;
}

@media (min-width: 768px) {
  html {
    font-size: 11pt;
  }
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    font-family: "Segoe UI", Helvetica, sans-serif;
    background-color: #ffffff;
    font-weight: 400!important;
    font-size: 14px;
}

.transition-load {
    animation: .3s ease-in 0s 1 slideInFromLeft;
}

.transition-load-1s {
    animation: .1s ease-in 0s 1 slideInFromLeft;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: scale(0.95); /* Equal to scaleX(0.7) scaleY(0.7) */
    }

    100% {
        opacity: 1;
        transform: scale(1); /* Equal to scaleX(0.7) scaleY(0.7) */
    }
}

/*webkit*/
::-webkit-scrollbar {
    width: 12px !important;
    height: 12px !important;
    background-color: transparent;
    border-radius:5px;
}
::-webkit-scrollbar-track {
    width: 12px !important;
    height: 12px !important;
    background-color: transparent;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb {
    width: 10px !important;
    background-color: #ccc !important;
    border: 4px solid rgb(255, 255, 255) !important;
    transition: .3s;
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #6280B0 !important;
        border: 2px solid rgb(255, 255, 255) !important;
    }

/**************/
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: all .3s;
    perspective: 900px;
    transform-style: preserve-3d;
}

    .slider .previous, .slider .next {
        font-size: 20px;
        position: absolute;
        top: 50%;
        color: white;
        padding: 20px;
        text-decoration: none;
        left: -100px;
        margin-top: -34px;
        transition: all .3s;
        opacity: 0;
        z-index: 10000;
    }

    .slider .next {
        right: -100px;
        content: "\f054";
        left: auto;
    }

    .slider:hover .previous, .slider:hover .next {
        opacity: 1;
    }

    .slider:hover .previous {
        left: 0;
    }

    .slider:hover .next {
        right: 0;
    }

    .slider .slides {
        height: 100%;
    }

.slide {
    text-align: center;
    position: absolute;
    transform: scale(0.5,0.5);
    opacity: 0;
    transition: all .3s;
}

    .slide.blue {
        background: #1E73BE;
        color: white;
    }

    .slide.white {
        background: #ccc;
        color: #444444;
    }

    .slide.red {
        background: #BF525A;
        color: white;
    }

    .slide.active {
        z-index: 10;
        left: 0;
        opacity: 1;
        transform: scale(1,1);
    }

    .slide.inactiveLeft {
        left: -100vw;
        z-index: 11;
    }

    .slide.inactiveRight {
        left: 100vw;
        z-index: 11;
    }

    .slide:after {
        content: attr(data-icon);
        font-size: 15vw;
        position: absolute;
        bottom: -8vw;
        left: 0;
        opacity: 0.3;
    }

    .slide a {
        color: inherit;
        border: 2px solid;
        padding: 10px;
        font-size: 1.3vw;
        margin-top: 20px;
        display: inline-block;
        transition: all .3s;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }

        .slide a:hover {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid transparent;
            text-decoration: none;
            letter-spacing: 2px;
            padding-right: 30px;
        }

        .slide a:after {
            content: " \f105";
            position: absolute;
            margin-left: -10px;
            transition: all .3s;
            opacity: 0;
        }

        .slide a:hover:after {
            margin-left: 10px;
            opacity: 1;
        }

.slider .bullets {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

    .slider .bullets .bullet {
        position: relative;
        display: inline-block;
        background: rgba(255,255,255,.8);
        width: 8px;
        height: 8px;
        z-index: 14;
        margin: 0 5px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all .3s;
    }

        .slider .bullets .bullet.active {
            background: rgba(255,255,255,.4);
        }

        .slider .bullets .bullet:hover {
            border: 2px solid rgba(255,255,255,.8);
            background: transparent;
        }

