// Header
header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translateY(-450px);
    transition: all 2s cubic-bezier(0.86, 0, 0.07, 1);

    .navbar {
        border: none;
        margin-bottom: 0;
        background: transparent;

        .nav-con {
            @include cfx();
            position: relative;
            padding: 20px 150px;

            @media (max-width: 1550px){
                padding: 20px 90px;
            }
            @media (max-width: 1430px){
                padding: 20px;
            }
            @media (max-width: 1375px){
                padding: 20px 10px;
            }
            @media (max-width: 1295px){
                padding: 20px 5px;
            }
            @include mqx(m){
                padding: 20px 5px;
            }
            &:after{
                content: '';
                position: absolute;
                left: -15px;
                top: -15px;
                background: url("../img/logo-bg.png") no-repeat;
                width: 500px;
                height: 450px;
                z-index: -1;
                background-size: 100%;

                @media (max-width: 1070px){
                    width: 400px;
                    height: 400px;
                }
                @include mqx(t){
                    width: 320px;
                }
            }
            .navbar-header {
                .navbar-brand {
                    height: 150px;
                    margin-left: 0;
                    padding: 0 15px;

                    img {
                        height: 150px;
                    }
                    @media (max-width: $tablet) {
                        height: 120px;

                        img {
                            height: 120px;
                            margin: 0 auto;
                        }
                    }
                }
                @media (min-width: 1024px) {
                    display: block;
                }

                .navbar-toggle{
                    margin: 24px 10px;
                    border: none;
                    height: 90px;
                    display: none;

                    @media (max-width: 1024px ) {
                        margin: 12px 7px 12px 10px;
                        display: block;
                    }
                    &:focus,
                    &:hover {
                        background: transparent;
                    }
                    &[aria-expanded=true] {
                        .icon-bar {
                            &:nth-of-type(2) {
                                transform: translateY(12px) rotate(45deg);
                            }
                            &:nth-of-type(3) {
                                opacity: 0;
                            }
                            &:nth-of-type(4) {
                                transform: translateY(-8px) rotate(-45deg);
                            }
                        }
                    }
                    .icon-bar {
                        background: #333;
                        width: 35px;
                        @include trans(.2s);

                        + .icon-bar {
                            margin-top: 8px;
                        }
                    }
                }

            }
            .navbar-collapse{
                @media (max-width: 1024px) {
                    margin-top: 20px;
                    background: #fff;
                }
            }
            .navbar-nav{
                height: 150px;
                display: flex;

                @media (max-width: 1024px) {
                    display: block;
                    height: auto;
                }
                li{
                    &.open > a,
                    &.open > a:hover{
                        background: transparent;
                    }
                    &:hover{
                        @include mqn(t){
                            ul.dropdown-menu{
                                display: block;
                                right: auto;
                                left: 35px;
                            }
                        }
                    }
                    a{
                        padding: 10px 40px;

                        @media (max-width: 1288px){
                            padding: 10px 20px;
                        }
                    }
                    ul.dropdown-menu{
                        li a{
                            padding: 10px 20px;
                        }
                    }
                    &:last-child{
                        a{
                            padding-right: 0;
                        }
                    }

                    &.language{
                        margin-right: 25px;

                        a{
                            &:after{
                                content: '';
                                position: absolute;
                                right: -11px;
                                top: -90px;
                                background: url("../img/lang.png") no-repeat;
                                width: 38px;
                                height: 139px;
                                z-index: -1;
                            }
                        }
                    }
                }
            }
        }
    }
}
// Hero IMG
.hero-img {
    height: 700px;
    width: 100%;
    position: relative;

    .hero-text {
        position: absolute;
        top: 40%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
        height: 86px;
        display: block;
        z-index: 2;
        text-align: center;
        color: #fff;

        h2 {
            font: 50px/1.4 $primaryFont;
            font-weight: 800;
            margin: 0;
            @media (max-width: $tablet) {
                font-size: 30px;
            }
        }
        .hero-btn {
            a {
                color: #fff;
                font: 15px/1.2 $primaryFont;
                border-bottom: 2px solid #fff;
                padding-bottom: 9px;
                font-weight: 700;
                @include trans(.2s);

                i {
                    @include trans(.2s);
                    position: relative;
                    top: 2px;
                }
                &:hover {
                    padding: 0 20px 9px 20px;
                    @include trans(.2s);

                    i {
                        @include trans(.2s);
                        padding-left: 15px;
                    }
                }
            }
        }
    }
}

#menu {
    position: fixed;
    z-index: 1000;
    list-style: none;
    top: 10px;
    left: 10px;
    display: block;

    li {
        display: inline-block;
        margin: 5px;
        padding: 5px;
        border-radius: 5px;

        &.active{
            a{
                background-color: #2e7d32;
            }
        }
    }
}

.intro-content{
    padding: 0 20px;

    h2{
        font: 700 55px/1 $primaryFont;
        color: #333;
        text-align: center;
    }
    p{
        font-size: 25px;
    }
    span{
        color: #7a7a7a;
    }
    @media (max-width: $tablet) {
        h2{
            font-size: 40px;
            line-height: 1.4;
        }
        p{
            font-size: 19px;
        }
    }
    @include mqx(m){
        h2{
            font-size: 24px;
            line-height: 1.4;
        }
        p{
            font-size: 14px;
        }
    }
    &.article-title{
        padding: 0;

        h2,p,span{
            text-align: left;
        }
    }
}
#holder{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
#slogans{
    height: auto;
    position: relative;
    min-height: 100px;

    p.slogan{
        position: absolute;
        left: 50%;
        top: 0;
        transform: translate(-50%, 0);

        strong{
            display:block;
            position:relative;
            opacity:0;
            font-weight: 500
        }
    }
}


.mouse {
    position: absolute;
    width: 30px;
    height: 50px;
    bottom: 50px;
    left: 50%;
    border-radius: 25px;
    border: 2px solid #fff;
    opacity: 1;
    transform: translate(-50%,-50%);
}
.scroll {
    display: block;
    width: 4px;
    height: 4px;
    margin: 5px auto;
    border-radius: 11px;
    background: #fff;
    -webkit-animation: finger 1s infinite;
    animation: finger 1s infinite;
}
@-webkit-keyframes finger {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}
@keyframes finger {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

.circle{
    width: 150vw;
    height: 150vw;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    left: -25vw;
    top: 0;
    transition: all 1.2s cubic-bezier(0.86, 0, 0.07, 1);

    @include mqx(m){
        width: 250vw;
        height: 250vw;
        left: -75vw;
    }
    &.circle-red{
        background: $secondaryColor;
        top: -155px;
    }
    &.ordchao-img{
        img{
            position: absolute;
            top: 30vw;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 80%;
        }
    }
    &.service{
        img{
            position: absolute;
            top: -5vw;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 35%;

        }
    }
    &.portal-img{
        overflow: hidden;

        img{
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, 0);

            @include mqx(m){
                top: -15%;
            }
        }
    }
    &.circle-white{
        background: #fff;
    }
    &.circle-white-1{
        background: #fff;
    }
    &.circle-blue{
        background: $primaryColor;
    }
}

.section {
    text-align: center;
    font-size: 20px;
    //background-color: #b39ddb;

    .section-img{
        svg{
            position: relative;
            z-index: 2;
            max-height: 500px;
        }
        &.img-bg{
            position: relative;

            img{
                position: absolute;
                left: -15px;
                top: 20%;
                z-index: 1;
                opacity: .4;
            }
            @include mqx(t){
                margin: 0 10px;

                img{
                    left: 0;
                }
            }
        }
    }
    .section-text{
        &.white{
            p{
                color: #cecece;
            }
        }
        h2{
            color: #fff;
            line-height: 1.3;
        }
        p{
            color: #333;
        }
        @include mqx(t){
            h2{
                font-size: 24px;
                text-align: center;
            }
            p{
                font-size: 14px;
                text-align: center;
            }
            button{
                margin: 30px auto;
            }
        }
    }
    .blue{
        .section-text{
            h2,p{
                color: $primaryColor;
            }
        }
    }
    .portal{
        .vcenter{
            height: 34vw;
            max-height: 500px;

            @include mqx(m){
                height: auto;
                max-height: initial;
            }
        }
    }
}

#fp-nav{
    right: 10px;
    
    @include mqx(m){
        display: none;
    }
}


// Footer
#footer{
    .fp-tableCell{
        vertical-align: bottom;
    }
}
.footer {
    .section-title{
        color: $grayColor;

        h2{
            @include mqx(t){
                font-size: 24px;
            }
        }
    }
}
.footer-b{
    background-color: #ededed;
    background-image: url("../img/footer.png");
    background-repeat: no-repeat;
    background-size: cover;

    .footer-info{
        //@include mqx(m){
        //    margin-bottom: 20px;
        //    @include cfx;
        //    max-width: 300px;
        //    margin: 0 auto;
        //}
        //img{
        //    float: left;
        //}
        //.footer-content{
        //    float: right;
        //    width: 67%;
        //}
        h3{
            margin: 0 0 20px;
            font-size: 24px;
            text-align: left;

            @include mqx(m){
                font-size: 20px;
            }
        }
        p{
            font-size: 17px;
            text-align: left;

            @include mqx(m){
                font-size: 14px;
            }
        }
        ul{
            text-align: left;

            li{
                margin: 5px 0;

                a{
                    color: #777;
                    font-size: 18px;

                    @include mqx(m){
                        font-size: 14px;
                    }
                    &:hover,
                    &:focus{
                        color: #333;
                    }
                }
            }
        }
        .address{
            text-align: left;


            p{
                line-height: 2;
            }
        }
    }
    .social-links{
        a{
            margin: 0 15px;
            font-size: 18px;
            color: #777;

            &:hover,
            &:focus{
                color: #333;
            }
        }
    }
}
.client-img{
    padding: 10px;

    img{
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        opacity: 0.5;
        transition: all 0.4s;

        &:hover{
            filter: none;
            opacity: 1;
        }
    }
}
.intro{
    padding: 43vh 0 0;
}
.filter{
    text-align: center;

    a{
        font-size: 18px;
        color: $grayColor;
        @include trans(.2s);
        margin: 0 20px;

        @include mqx(t){
            margin: 15px;
            display: block;
        }
        &:hover,
        &:focus,
        &.active{
            color: $secondaryColor;
        }
    }
}
.project{
    margin-bottom: 30px;

    .project-img{
        height: 500px;
        position: relative;
        overflow: hidden;

        @include mqx(d){
            height: 400px;
        }
        @include mqx(l){
            height: 270px;
        }
        &:after{
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            opacity: 0;
            background-color: #e2a9e5;
            background: -moz-linear-gradient(-45deg, $primaryColor 15%, $secondaryColor 100%);
            background: -webkit-linear-gradient(-45deg, $primaryColor 15%,$secondaryColor 100%);
            background: linear-gradient(135deg, $primaryColor 15%,$secondaryColor 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$primaryColor', endColorstr='$secondaryColor',GradientType=1 );
            @include trans(.4s);
            will-change: opacity;
        }
    }
    .project-content{
        padding: 40px;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: translateY(500px);
        z-index: 1;
        @include trans(.4s);
        will-change: transform;

        @include mqx(t){
            padding: 20px;
            transform: translateY(270px);
        }
        h3{
            font-size: 30px;
            color: #fff;
        }
        p{
            color: #fff;
        }
        a{
            color: #fff;
            font-weight: 600;

            &:hover,
            &:focus{
                font-weight: 800;
            }
        }
    }

    &:hover{
        .project-img{
            &:after{
                @include trans(.4s);
                opacity: .3;
            }
        }
        .project-content{
            transform: translateY(0);
            @include trans(.4s);
        }
    }
}
.bg-image{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%) blur(2px) opacity(.2);
    @include trans(.4s);
    opacity: 0;
    will-change: opacity, background-image;

    &.added{
        opacity: 1;
        @include trans(.4s);
    }
}
.project-slider{
    margin: 0 30px;

    &.article-slider{
        margin: 0;
    }
    .project-slide{
        height: 500px;
    }
}
.p-content{
    margin: 15px 30px 0;

    &.p-article{
        margin: 15px 0 0;
    }
}
.slick-next,
.slick-prev{
    &:before{
        font-size: 0;
    }
    i{
        font-size: 25px;
        color: #7a7a7a;
    }
}
.slick-next {
    right: -35px;
}
.slick-prev {
    left: -35px;
}
.article-slider{
    .slick-next {
        right: -24px;
    }
    .slick-prev {
        left: -20px;
    }
}
.post-item {
    .post-thumb {
        position: relative;

        a {
            display: block;

            .post-image {
                height: 280px;
            }
        }
        span.no {
            position: absolute;
            width: 30px;
            height: 30px;
            text-align: center;
            top: 28%;
            left: -10px;
            line-height: 2em;
            font-size: 13px;
            color: #fff;
            border: 3px solid #fff;
            border-radius: 50%;
            background-color: $secondaryColor;
            font-weight: bold;
        }
    }
    .post-content {
        .meta-data {
            margin-top: 6px;

            .date{
                a{
                    color: #777;

                    &:hover,
                    &:focus{
                        color: #333;
                    }
                }
            }
        }
        .post-title {
            font-size: 22px;
            font-weight: bold;
            @include multiLineEllipsis(1.4em,2);

            a {
                color: #333;

                &:hover,
                &:focus{
                    color: $secondaryColor;
                }
            }
        }
        .post-desc {
            color: #666666;
            font-size: 14px;
            @include multiLineEllipsis(1.6em,3);
        }
    }
    .more-btn{
        @extend .btn;
        padding: 13px 25px;
        margin-top: 12px;
        display: inline-block;

        &:hover,
        &:focus{
            background: $secondaryColor;
            border-color: $secondaryColor;
        }
    }
    .author, .date {
        font-size: 12px;
    }
    &.item-small {
        padding-bottom: 0;
        border-bottom: none;
        min-height: 93px;

        .img-item,
        .video-item{
            &:before{
                right: 9px;
                top: 3px;
                font-size: 15px;
            }
        }
        .post-thumb {
            a {
                .post-image {
                    height: 75px;
                }
            }
        }
        .post-content {
            .meta-data {
                @include mqx(t) {
                    margin-top: 0;
                }
            }
            .post-title {
                font-size: 13px;
                line-height: 1.6em;
                //@include multiLineEllipsis(1.6em,2);
            }
        }
    }
}
.author, .date {
    color: #777;
}
.category{
    .category-title{

    }
}
.post-tags{
    a{
        font-size: 13px;
        padding: 0 5px;
        line-height: 15px;
        background: $secondaryColor;
        color: #fff;
    }
}

.share-article {
    @include cfx;
    border-top: 1px solid rgba(0, 0, 0, .1);

    .share-title {
        font-size: 18px;
        color: $textColor;
        float: left;
        margin: 7px 20px 0 0;

        span {
            font-size: 14px;
            font-weight: bold;
            position: relative;
            top: -2px;
        }
    }
    .share {
        float: left;

        li {
            font-size: 14px;
            color: $textColor;
            margin-right: 5px;
            display: inline-block;

            &.social-item {
                a {
                    display: block;
                    width: 35px;
                    height: 35px;
                    background: #ccc;
                    text-align: center;

                    i {
                        line-height: 36px;
                        color: #fff;
                    }

                    &.facebook {
                        background: #3b5998;

                        &:hover {
                            background: darken(#3b5998, 10%);
                        }
                    }
                    &.twitter {
                        background: #55acee;

                        &:hover {
                            background: darken(#55acee, 10%);
                        }
                    }
                    &.linkedin {
                        background: #0077b5;

                        &:hover {
                            background: darken(#0077b5, 10%);
                        }
                    }
                }
            }
        }
    }
}
.contact{
    max-width: 920px;
    margin: 50px auto 0;

    &.apply{
        margin: 0 auto;

        @include mqx(t){
            margin-top: 30px;
        }
    }
    select, textarea {
        font: 16px/1.6 $primaryFont;
        width: 100%;
        padding: 13px 25px;
        border-radius: 25px;
        border: 1px solid #d0d0d0;
        background: #fff;
    }
    input[type='text']:focus, [type='email']:focus, textarea:focus {
        outline: none;
    }
    select {
        background: url('https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-down-16.png') no-repeat;
        outline: none;
        background-position: 95%;
        -moz-appearance: none;
        -webkit-appearance: none;
    }
    select::-ms-expand {
        display: none;
    }
    textarea {
        line-height: 150%;
        height: 150px;
        resize: none;
        width: 100%;
    }
    ::-webkit-input-placeholder {
        color: #474544;
    }
    :-moz-placeholder {
        color: #474544;
        opacity: 1;
    }
    ::-moz-placeholder {
        color: #474544;
        opacity: 1;
    }
    :-ms-input-placeholder {
        color: #474544;
    }
    @media screen and (max-width: 420px) {
        input[type='text'], [type='email'], select, textarea {
            font-size: 0.875em;
        }
    }
}
#map{
    height: 500px;
}
.address-info{
    margin-bottom: 40px;

    .office{
        padding: 30px;
        background: #f1f1f1;
        display: none;
    }
}

[title='Cairo'] img{
    animation: pulse .5s infinite alternate;
    -webkit-animation: pulse .5s infinite alternate;
    transform-origin: center;
    -webkit-transform-origin: center;
}
/* Animaitons */
@keyframes pulse{
    to {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
    }
}

@-webkit-keyframes pulse{
    to {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
    }
}

@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes flicker {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flicker {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}
.panel-title {
    a {
        background: #e8e8e8;
        color: #474747;
        padding: 15px 25px;
        display: block;
        border-radius: 25px;
        font-size: 18px;
        border: 1px solid #e8e8e8;

        i {
            @include trans(.2s);
        }
        &[aria-expanded="true"] {
            background: $primaryColor;
            color: #fff;
            border: 1px solid $primaryColor;

            i {
                transform: rotate(180deg);
            }
        }

    }
}
.panel-body {
    padding: 0;

    ul {
        padding: 15px;

        li {
            border-top: 1px solid $borderColor;

            &:first-child {
                border-top: 0;
            }
            a {
                display: block;
                padding: 15px 0;
                font-size: 16px;
                color: #000;

                &:hover {
                    color: $secondaryColor;
                    font-weight: 700;
                }
            }

            &.active {
                a {
                    color: $secondaryColor;
                    font-weight: 700;
                }
            }
        }
    }
}

.input-file-container {
    position: relative;
    width: 100%;
}
.file-return {
    margin: 0;

    &:not(:empty) {
        margin: 1em 0;
    }
}
.js {
    .input-file-trigger {
        display: block;
        background: $primaryColor;
        color: #fff;
        font-size: 14px;
        transition: all .4s;
        text-align: center;
        margin: 0 auto;
        outline: 0;
        border-radius: 25px;

        img{
            display: block;
            margin: 0 auto;
            width: 35px;
        }
    }
    .input-file {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        padding: 14px 0;
        cursor: pointer;
    }
    .input-file:hover + .input-file-trigger,
    .input-file:focus + .input-file-trigger,
    .input-file-trigger:hover,
    .input-file-trigger:focus {
        background: lighten($primaryColor, 15%);
    }
    .file-return {
        font-style: italic;
        font-size: .9em;
        font-weight: bold;
        text-align: center;

        &:not(:empty):before {
            content: "Selected file: ";
            font-style: normal;
            font-weight: normal;
        }
    }
    .file-btn{
        width: 200px;
        height: 45px;
        padding: 13px 25px;
        border-radius: 5px;
        line-height: 1.4;
        color:#fff !important;
    }
}
.vision_mission{
    .block-v{
        padding: 24px;
        margin-top: 18px;
        text-align: center;
        border: 1px solid #e5e5e5;
        background-color: white;
        position: relative;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);

        .icon {
            margin-bottom: 18px;

            img{
                height: 90px;
            }
        }
    }
}

.checkbox-custom {
    .form-radio {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        display: inline-block;
        position: relative;
        background-color: transparent;
        color: #666;
        top: 10px;
        height: 30px;
        width: 30px;
        cursor: pointer;
        margin-right: 10px;
        outline: none;
        border-radius: 3px;
        border: 2.5px solid #f1f1f1;

        &:focus {
            outline: none;
        }
        &:checked::before {
            position: absolute;
            font: 700 18px/1 $primaryFont;
            left: 7px;
            top: 1px;
            content: '\02143';
            transform: rotate(40deg);
            color: #fff;
        }
        &:hover,
        &:checked {
            background-color: $secondaryColor;
            border: 2.5px solid $secondaryColor;
        }
    }
    label {
        font: 500 18px/1.7 $primaryFont;
        color: #000;

        cursor: pointer;
    }
}
.team-member{
    .team-img{
        height: 280px;
    }
    .team-content{
        small{
            color: #A2A2A2;
            font-size: 14px;

        }
        a{
            color: #A2A2A2;

            &:hover,
            &:focus {
                color: #000;
            }
        }
    }
}
.section-text{
    h2{
        min-height: auto;
        overflow: hidden;
    }
}
#lottie{
    width:100%;
    height:100%;
    display:block;
    overflow: hidden;
    transform: translate3d(0,0,0);
    text-align: center;
    opacity: 1;
}