/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@import url('https://fonts.cdnfonts.com/css/avenir');

html {
    font-family: 'Avenir', sans-serif;
}

.primary-color {
    background-color: rgba(28, 56, 99, 1);
}

.second-color {
    background-color: rgba(104, 104, 104, 1);
}

.titleColor {
    color: rgba(28, 56, 99, 1);
}

.bgblur {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.transbg {
    background-color: rgba(28, 56, 99, 0.8)
}

.parallelogram1 {
    -webkit-transform: skew(-1turn, 5deg);
    -ms-transform: skew(-1turn, 5deg);
    transform: skew(-1turn, 5deg);
    background-color: rgba(200, 199, 199, 1);
}

.parallelogram2 {
    -webkit-transform: skew(-1turn, 175deg);
    -ms-transform: skew(-1turn, 175deg);
    transform: skew(-1turn, 175deg);
    background-color: rgba(28, 56, 99, 1);
}

.parallelogram3 {
    -webkit-transform: skew(-1turn, 5deg);
    -ms-transform: skew(-1turn, 5deg);
    transform: skew(-1turn, 5deg);
    background-color: rgba(28, 56, 99, 1);
}

.parallelogram1-text {
    -webkit-transform: skew(1turn, -5deg);
    -ms-transform: skew(1turn, -5deg);
    transform: skew(1turn, -5deg);
}

.parallelogram2-text {
    -webkit-transform: skew(1turn, -175deg);
    -ms-transform: skew(1turn, -175deg);
    transform: skew(1turn, -175deg);
}

/* bg image hero */
.bg-image1 {
    -webkit-clip-path: polygon(0 85%, 0 0, 100% 0, 100% 85%, 50% 100%);
    clip-path: polygon(0 85%, 0 0, 100% 0, 100% 85%, 50% 100%);
}

.bg-image2 {
    -webkit-clip-path: polygon(100% 85%, 50% 100%, 0 85%, 0 0, 50% 15%, 100% 0);
    clip-path: polygon(100% 85%, 50% 100%, 0 85%, 0 0, 50% 15%, 100% 0);
}


/* Animated Arrows */
.bouncy1 {
    -webkit-animation: bounce1 3s infinite;
    animation: bounce1 3s infinite;
}

@-webkit-keyframes bounce1 {

    0% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        opacity: 100%;

    }


    50% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }

    70% {
        -webkit-transform: translateY(25%);
        transform: translateY(25%);
        -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        opacity: 100%;
    }

    100% {
        -webkit-transform: translateY(90%);
        transform: translateY(90%);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 0%;

    }
}

@keyframes bounce1 {

    0% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        opacity: 100%;

    }


    50% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }

    70% {
        -webkit-transform: translateY(25%);
        transform: translateY(25%);
        -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        opacity: 100%;
    }

    100% {
        -webkit-transform: translateY(90%);
        transform: translateY(90%);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 0%;

    }
}

.bouncy2 {
    -webkit-animation: bounce2 3s infinite;
    animation: bounce2 3s infinite;
}

@-webkit-keyframes bounce2 {

    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);

    }


    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);

    }

    70% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        opacity: 100%;
    }

    100% {
        -webkit-transform: translateY(300%);
        transform: translateY(300%);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 0%;
    }
}

@keyframes bounce2 {

    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);

    }


    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);

    }

    70% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        opacity: 100%;
    }

    100% {
        -webkit-transform: translateY(300%);
        transform: translateY(300%);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 0%;
    }
}


/* Reviews */
.slider {
    background: transparent;
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider::before,
.slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    -webkit-animation: scroll 20s linear infinite;
    animation: scroll 20s linear infinite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 100px;
    width: 250px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}




/* Nav */

.top-nav {
    position: fixed;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transition: top 0.75s ease-in;
    -o-transition: top 0.75s ease-in;
    transition: top 0.75s ease-in;
}

.top-nav .menu {
    list-style: none;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    max-height: 0;
    -webkit-transition: max-height 0.2s ease-out;
    -o-transition: max-height 0.2s ease-out;
    transition: max-height 0.2s ease-out;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}


.top-nav .menu-icon {
    cursor: pointer;
    display: inline-block;
    padding: 28px 20px;
}

.top-nav .menu-icon .navicon {
    background: white;
    display: block;
    height: 2px;
    position: relative;
    width: 1.625rem;
}

.top-nav .menu-icon .navicon:before,
.top-nav .menu-icon .navicon:after {
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    width: 100%;
}

.top-nav .menu-icon .navicon:before {
    top: 7px;
}

.top-nav .menu-icon .navicon:after {
    top: -7px;
}

.top-nav .menu-btn {
    display: none;
}

.top-nav .menu-btn:checked~.menu {
    max-height: 100vh;
    height: 100vh;
}

.top-nav .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.top-nav .menu-btn:checked~.menu-icon .navicon:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.top-nav .menu-btn:checked~.menu-icon .navicon:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.top-nav .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.top-nav .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}