   .btn {
            border-radius: 3px;
            }
            .social-icon.social li a {
            color: #000000;
            border-color: #000000;
            }

            .section-title .title.title-line:after {
            top: 36px !important;
            }

            .section-title .title.title-line:before {
            top: 40px !important;
            }
            .tagline .phone,  .email{color:#333333; font-size:14px }     


            .dark {
            background: #110f16;
            }


            .light {
            background: #f3f5f7;
            }

            a, a:hover {
            text-decoration: none;
            transition: color 0.3s ease-in-out;
            }

            #pageHeaderTitle {
            margin: 2rem 0;
            text-transform: uppercase;
            text-align: center;
            font-size: 2.5rem;
            }

            /* Cards */
            .postcard {
            flex-wrap: wrap;
            display: flex;

            box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
            border-radius: 10px;
            margin: 0 0 2rem 0;
            overflow: hidden;
            position: relative;
            color: #ffffff;

            &.dark {
            background-color: #18151f;
            }
            &.light {
            background-color: #e1e5ea;
            }

            .t-dark {
            color: #18151f;
            }

            a {
            color: inherit;
            }

            h1, .h1 {
            margin-bottom: 0.5rem;
            font-weight: 500;
            line-height: 1.2;
            font-size: 20px;
            }

            .small {
            font-size: 80%;
            }

            .postcard__title {
            font-size: 1.25rem;
            }


            .postcard__bar {
            width: 200px;
            height: 05px;
            margin: 10px 0;
            border-radius: 5px;
            background-color: #424242;
            transition: width 0.2s ease;
            }

            .postcard__text {
            padding: 1.5rem;
            position: relative;
            display: flex;
            flex-direction: column;
            }

            .postcard__preview-txt {
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: justify;
            height: 100%;
            }

            .postcard__tagbox {
            display: flex;
            flex-flow: row wrap;
            font-size: 14px;
            margin: 20px 0 0 0;
            padding: 0;
            justify-content: center;

            .tag__item {
            display: inline-block;
            background: rgba(83, 83, 83, 0.4);
            border-radius: 3px;
            padding: 2.5px 10px;
            margin: 0 5px 5px 0;
            cursor: default;
            user-select: none;
            transition: background-color 0.3s;

            &:hover {
            background: rgba(83, 83, 83, 0.8);
            }
            }
            }

            &:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;

            opacity: 1;
            border-radius: 10px;
            }

            &:hover .postcard__bar {
            width: 100px;
            }
            }

            @media screen and (min-width: 769px) {
            .postcard {
            flex-wrap: inherit;

            .postcard__title {
            font-size: 2rem;
            }

            .postcard__tagbox {
            justify-content: start;
            }

            .postcard__img {
            max-width: 300px;
            max-height: 100%;
            transition: transform 0.3s ease;
            }

            .postcard__text {
            padding: 3rem;
            width: 100%;
            }

            .media.postcard__text:before {
            content: "";
            position: absolute;
            display: block;
            background: #18151f;
            top: -20%;
            height: 130%;
            width: 55px;
            }

            &:hover .postcard__img {
            transform: scale(1.1);
            }

            &:nth-child(2n+1) {
            flex-direction: row;
            }

            &:nth-child(2n+0) {
            flex-direction: row-reverse;
            }

            &:nth-child(2n+1) .postcard__text::before {
            left: -12px !important;
            transform: rotate(4deg);
            }

            &:nth-child(2n+0) .postcard__text::before {
            right: -12px !important;
            transform: rotate(-4deg);
            }
            }
            }
            @media screen and (min-width: 1024px){
            .postcard__text {
            padding: 2rem 3.5rem;
            }

            .postcard__text:before {
            content: "";
            position: absolute;
            display: block;

            top: -20%;
            height: 130%;
            width: 55px;
            }

            .postcard.dark {
            .postcard__text:before {
            background: #18151f;
            }
            }
            .postcard.light {
            .postcard__text:before {
            background: #e1e5ea;
            }
            }
            }

            /* COLORS */
            .postcard .postcard__tagbox .green.play:hover {
            background: $main-green;
            color: black;
            }
            .green .postcard__title:hover {
            color: $main-green;
            }
            .green .postcard__bar {
            background-color: $main-green;
            }
            .green::before {
            background-image: linear-gradient(
            -30deg,
            $main-green-rgb-015,
            transparent 50%
            );
            }
            .green:nth-child(2n)::before {
            background-image: linear-gradient(30deg, $main-green-rgb-015, transparent 50%);
            }

            .postcard .postcard__tagbox .blue.play:hover {
            background: $main-blue;
            }
            .blue .postcard__title:hover {
            color: $main-blue;
            }
            .blue .postcard__bar {
            background-color: $main-blue;
            }
            .blue::before {
            background-image: linear-gradient(-30deg, $main-blue-rgb-015, transparent 50%);
            }
            .blue:nth-child(2n)::before {
            background-image: linear-gradient(30deg, $main-blue-rgb-015, transparent 50%);
            }

            .postcard .postcard__tagbox .red.play:hover {
            background: $main-red;
            }
            .red .postcard__title:hover {
            color: $main-red;
            }
            .red .postcard__bar {
            background-color: $main-red;
            }
            .red::before {
            background-image: linear-gradient(-30deg, $main-red-rgb-015, transparent 50%);
            }
            .red:nth-child(2n)::before {
            background-image: linear-gradient(30deg, $main-red-rgb-015, transparent 50%);
            }

            .postcard .postcard__tagbox .yellow.play:hover {
            background: $main-yellow;
            color: black;
            }
            .yellow .postcard__title:hover {
            color: $main-yellow;
            }
            .yellow .postcard__bar {
            background-color: $main-yellow;
            }
            .yellow::before {
            background-image: linear-gradient(
            -30deg,
            $main-yellow-rgb-015,
            transparent 50%
            );
            }
            .yellow:nth-child(2n)::before {
            background-image: linear-gradient(
            30deg,
            $main-yellow-rgb-015,
            transparent 50%
            );
            }

            @media screen and (min-width: 769px) {
            .green::before {
            background-image: linear-gradient(
            -80deg,
            $main-green-rgb-015,
            transparent 50%
            );
            }
            .green:nth-child(2n)::before {
            background-image: linear-gradient(
            80deg,
            $main-green-rgb-015,
            transparent 50%
            );
            }

            .blue::before {
            background-image: linear-gradient(
            -80deg,
            $main-blue-rgb-015,
            transparent 50%
            );
            }
            .blue:nth-child(2n)::before {
            background-image: linear-gradient(80deg, $main-blue-rgb-015, transparent 50%);
            }

            .red::before {
            background-image: linear-gradient(-80deg, $main-red-rgb-015, transparent 50%);
            }
            .red:nth-child(2n)::before {
            background-image: linear-gradient(80deg, $main-red-rgb-015, transparent 50%);
            }

            .yellow::before {
            background-image: linear-gradient(
            -80deg,
            $main-yellow-rgb-015,
            transparent 50%
            );
            }
            .yellow:nth-child(2n)::before {
            background-image: linear-gradient(
            80deg,
            $main-yellow-rgb-015,
            transparent 50%
            );
            }
            }

              .card-sl {
        border-radius: 8px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .card-image img {
        max-height: 100%;
        max-width: 100%;
        border-radius: 8px 8px 0px 0;
    }

    .card-action {
        position: relative;
        float: right;
        margin-top: -25px;
        margin-right: 20px;
        z-index: 2;
        color: #0174DF;
        background: #fff;
        border-radius: 100%;
        padding: 15px;
        font-size: 15px;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.19);
    }

    .card-action:hover {
        color: #fff;
        background: #E26D5C;
        -webkit-animation: pulse 1.5s infinite;
    }

    .card-heading {
        font-size: 18px;
        font-weight: bold;
        background: #fff;
        padding: 10px 15px;
    }

    .card-text {
        padding: 10px 15px;
        background: #fff;
        font-size: 14px;
        color: #636262;
    }

    .card-button {
        display: flex;
        justify-content: center;
        padding: 10px 0;
        width: 100%;
        background-color: #0174DF;
        color: #fff;
        border-radius: 0 0 8px 8px;
    }

    .card-button:hover {
        text-decoration: none;
        background-color: #1D3461;
        color: #fff;

    }


    @-webkit-keyframes pulse {
        0% {
            -moz-transform: scale(0.9);
            -ms-transform: scale(0.9);
            -webkit-transform: scale(0.9);
            transform: scale(0.9);
        }

        70% {
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -webkit-transform: scale(1);
            transform: scale(1);
            box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
        }

        100% {
            -moz-transform: scale(0.9);
            -ms-transform: scale(0.9);
            -webkit-transform: scale(0.9);
            transform: scale(0.9);
            box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
        }
    }


.industry {
    padding: 50px;
    text-align: center;

}

.industry hover {
    padding: 50px;
    text-align: center;
    background-color: #ccc;
} 
.industry i {
    font-size: 50px;
     color: #206194;
}

.our-services .single-services{border:1px solid #dafcef;padding:44px 0;-webkit-transition:.4s;-moz-transition:.4s;-o-transition:.4s;transition:.4s}
.our-services .single-services .services-ion span{font-size:60px;margin-bottom:13px;color:#014b85;-webkit-transition:.3s;-moz-transition:.3s;-o-transition:.3s;transition:.3s}
.our-services .single-services .services-cap h5 a{font-weight:600;font-size:18px;color:#001f38;line-height:1.4;-webkit-transition:.3s;-moz-transition:.3s;-o-transition:.3s;transition:.3s}
.our-services .single-services .services-cap span{color:#fb246a;font-size:18px}.our-services .single-services:hover{box-shadow:0px 10px 30px 0px rgba(133,66,189,0.1)}
.our-services .single-services:hover .services-ion span{color:#fb246a}.our-services .single-services:hover .services-cap h5 a{color:#fb246a}

.border-btn2{border:1px solid #8b92dd;color:#8b92dd;font:"Muli",sans-serif;background:none;-moz-user-select:none;padding:19px 69px;margin:0px;text-transform:uppercase;cursor:pointer;display:inline-block;font-size:14px;font-weight:500;letter-spacing:1px;margin-bottom:0;border-radius:5px;position:relative;transition:color 0.4s linear;position:relative;overflow:hidden;margin:0}
.mb-30 {margin-bottom: 30px}
.mt-50 {margin-top: 50px};

.footer -menu li a:hover{text-decoration:none}a,button{color:#fff;outline:medium none}button:focus,input:focus,input:focus,textarea,textarea:focus{outline:0}
.footer-padding{padding-top:80px;padding-bottom:20px}@media only screen and (min-width: 1200px) and (max-width: 1600px)
{.footer-padding{padding-top:80px;padding-bottom:20px}}@media only screen and (min-width: 992px) and (max-width: 1199px)
{.footer-padding{padding-top:80px;padding-bottom:20px}}@media only screen and (min-width: 768px) and (max-width: 991px)
{.footer-padding{padding-top:100px;padding-bottom:20px}}@media only screen and (min-width: 576px) and (max-width: 767px)
{.footer-padding{padding-top:80px;padding-bottom:0px}}@media (max-width: 767px)
{.footer-padding{padding-top:80px;padding-bottom:0px}}

 .footer-area .footer-social2 a:hover{background:#fb246a;color:#7f7f7f;border:1px solid transparent}
 .footer-area .footer-pera p{color:#868c98;padding-right:52px;font-size:16px;margin-bottom:50px;line-height:1.8}
 @media only screen and (min-width: 768px) and (max-width: 991px){.footer-area .footer-pera p{padding-right:0px}}
 .footer-area .footer-pera.footer-pera2 p{padding:0}.footer-area .footer-tittle h4{color:#ffffff;font-size:20px;margin-bottom:29px;font-weight:400;text-transform:uppercase}
 .footer-area .footer-tittle ul li{color:#868c98;margin-bottom:9px}.footer-area .footer-tittle ul li a{color:#868c98;font-weight:300}
 .footer-area .footer-tittle ul li a:hover{color:#fb246a;padding-left:5px}
 .footer-area .footer-tittle-bottom span{display:inline-block;color:#fff;font-weight:600;font-size:24px;margin-right:11px}@media (max-width: 767px)
 {.footer-area .footer-tittle-bottom span{font-size:20px}}.footer-area .footer-tittle-bottom p{display:inline-block;color:#fff}
 .footer-area .footer-form{margin-top:40px}.footer-area .footer-form form{position:relative}
 .footer-area .footer-form form input{width:100%;height:43px;padding:10px 20px;border:1px solid #fff;border-radius:5px}
 .footer-area .footer-form form .form-icon button{position:absolute;top:0;right:0;background:none;border:0;cursor:pointer;padding:13px 22px;background:#fb246a;line-height:1;border-radius:0 3px 3px 0}
 .footer-area .info.error{color:#fb246a}.footer-bg{background:#010b1d}.footer-bottom-area .footer-border{border-top:1px solid #2d3544;padding:33px 0px 20px}
 .footer-bottom-area .footer-copy-right p{color:#888888;font-weight:300;font-size:16px;line-height:2;margin-bottom:12px}@media (max-width: 767px)
 {.footer-bottom-area .footer-copy-right p{margin-bottom:20px}}@media only screen and (min-width: 768px) and (max-width: 991px)
 {.footer-bottom-area .footer-copy-right p{margin-bottom:20px}}.footer-bottom-area .footer-copy-right p i{color:#fb246a}
 .footer-bottom-area .footer-copy-right p a{color:#fb246a}.footer-bottom-area .footer-copy-right p a:hover{color:#fff}@media (max-width: 767px)
 {.footer-bottom-area .footer-social{float:left}}@media only screen and (min-width: 768px) and (max-width: 991px)
 {.footer-bottom-area .footer-social{float:left}}
 .footer-bottom-area .footer-social a i{color:#888888;margin-left:13px;font-size:14px;-webkit-transition:.4s;-moz-transition:.4s;-o-transition:.4s;transition:.4s}
 .footer-bottom-area .footer-social a i:hover{color:#fb246a}.footer-wejed{padding-top:120px;padding-bottom:40px}@media only screen and (min-width: 992px) and (max-width: 1199px)
 {.footer-wejed{padding-top:50px;padding-bottom:40px}}@media only screen and (min-width: 768px) and (max-width: 991px)
 {.footer-wejed{padding-top:50px;padding-bottom:40px}}@media only screen and (min-width: 576px) and (max-width: 767px)
 {.footer-wejed{padding-top:50px;padding-bottom:40px}}@media (max-width: 767px){.footer-wejed{padding-top:20px;padding-bottom:40px}}