﻿.transparent-header {
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    width: 100%;
    z-index: 999;
    /*border-bottom: 3px solid #fff;*/
    color: #fff;
}

@media only screen and (max-width: 991px) {
    .transparent-header {
        padding: 15px 0;
    }
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo a img {
    width: 100px;
    padding: 10px;
}

@media only screen and (max-width: 1199px) {
    .header-logo a img {
        width: 130px;
    }
}

.header-menu .main-menu {
    display: flex;
    margin: 0;
    padding: 10px 0;
}

    .header-menu .main-menu li {
        position: relative;
        padding: 30px 25px;
        list-style: none;
    }

@media only screen and (max-width: 1199px) {
    .header-menu .main-menu li {
        padding: 30px 20px;
    }
}
p.p-dnew {
    font-size: 18px !important;
    font-weight: 700 !important;
}
p.pp-new {
    font-weight: 800 !important;
    font-size: 16px !important;
    font-family: math;
    margin: 0 !important;
}
.header-menu .main-menu li a {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
}

.header-menu .main-menu li.active-menu > a {
    color: #005de0;
}

.header-menu .main-menu li.active-menu > .menu-icon::after {
    color: #005de0;
}

.header-menu .main-menu li .menu-icon::after {
    content: '\f078';
    font-family: "fontawesome";
    font-size: 10px;
    color: #fff;
    margin-left: 5px;
    transition: all 0.3s linear;
}

.header-menu .main-menu li:hover > .menu-icon::after {
    color: #005de0;
}

.header-menu .main-menu li:hover > a {
    color: #fff;
}

.header-menu .main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.header-menu .main-menu li .sub-menu {
    position: absolute;
    left: 0;
    top: 110%;
    width: 270px;
    background: #ffffff;
    box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    border-radius: 5px;
    border-top: 3px solid #005de0;
    opacity: 0;
    z-index: 99;
    visibility: hidden;
    transition: all 0.3s linear;
}

    .header-menu .main-menu li .sub-menu li {
        padding: 0;
    }

        .header-menu .main-menu li .sub-menu li a {
            padding: 5px 25px;
            font-size: 15px;
            color: #005de0;
            font-weight: 600;
            text-transform: capitalize;
            display: block;
            position: relative;
            z-index: 1;
        }

            .header-menu .main-menu li .sub-menu li a::before {
                content: "";
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                background: #005de0;
                width: 10px;
                height: 2px;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s linear;
            }

        .header-menu .main-menu li .sub-menu li.active > a {
            color: #005de0;
            padding-left: 35px;
        }

            .header-menu .main-menu li .sub-menu li.active > a::before {
                opacity: 1;
                visibility: visible;
                left: 15px;
            }

        .header-menu .main-menu li .sub-menu li:hover > a {
            color: #005de0;
            padding-left: 35px;
        }

            .header-menu .main-menu li .sub-menu li:hover > a::before {
                opacity: 1;
                visibility: visible;
                left: 15px;
            }

.header-meta {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.header-info {
    align-items: end;
}

    .header-info .info-icon i {
        font-size: 50px;
        color: #fff;
    }
.header-logo {
    background: #fff;
    padding: 10px 20px 20px 20px;
    clip-path: polygon(0 0, 100% 0%, 100% 75%, 50% 100%, 0 75%);
}

    .header-info .info-text {
        margin-left: 10px;
    }
        .header-info .info-text span {
            display: block;
            font-size: 14px;
            line-height: 18px;
            font-weight: 700;
            color: #fff;
        }
        .header-info .info-text .number a {
            display: block;
            font-size: 22px;
            line-height: 32px;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
        }

.header-search {
    margin-left: 25px;
}

    .header-search .search-btn {
        width: 40px;
        height: 40px;
        line-height: 38px;
        font-size: 16px;
        border-radius: 50%;
        text-align: center;
        color: #333333;
        border: 1px solid #ddd;
        transition: all 0.3s linear;
    }

        .header-search .search-btn:hover {
            color: #005de0;
        }

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 121;
    background: rgba(0, 0, 0, 0.9);
}

    .search-wrap .search-inner {
        position: relative;
        width: 100%;
        height: 100%;
    }

        .search-wrap .search-inner .search-close {
            position: absolute;
            top: 50px;
            right: 50px;
            font-size: 22px;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s linear;
        }

            .search-wrap .search-inner .search-close:hover {
                transform: rotate(90deg);
                color: #005de0;
            }

        .search-wrap .search-inner .search-cell {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
        }

            .search-wrap .search-inner .search-cell .search-field-holder {
                width: 50%;
                margin: auto;
                position: relative;
            }

@media only screen and (max-width: 991px) {
    .search-wrap .search-inner .search-cell .search-field-holder {
        width: 60%;
    }
}

@media only screen and (max-width: 575px) {
    .search-wrap .search-inner .search-cell .search-field-holder {
        width: 80%;
    }
}

.search-wrap .search-inner .search-cell .search-field-holder .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: uppercase;
    background: transparent;
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
    border-bottom: 2px solid #898989;
    text-align: center;
    letter-spacing: 2px;
}

@media only screen and (max-width: 1199px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input {
        padding: 0 35px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input {
        font-size: 16px;
        padding: 0 15px;
    }
}

.search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
    opacity: 0.95;
    font-size: 25px;
    color: #ffffff;
    font-weight: 400;
}

@media only screen and (max-width: 1199px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-webkit-input-placeholder {
        font-size: 14px;
    }
}

.search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
    opacity: 0.95;
    font-size: 25px;
    color: #ffffff;
    font-weight: 400;
}

@media only screen and (max-width: 1199px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-moz-placeholder {
        font-size: 14px;
    }
}

.search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
    opacity: 0.95;
    font-size: 25px;
    color: #ffffff;
    font-weight: 400;
}

@media only screen and (max-width: 1199px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input::-moz-placeholder {
        font-size: 14px;
    }
}

.search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
    opacity: 0.95;
    font-size: 25px;
    color: #ffffff;
    font-weight: 400;
}

@media only screen and (max-width: 1199px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .search-wrap .search-inner .search-cell .search-field-holder .main-search-input:-ms-input-placeholder {
        font-size: 14px;
    }
}

.header-cart {
    margin-left: 10px;
}

    .header-cart .cart-btn {
        width: 40px;
        height: 40px;
        line-height: 38px;
        font-size: 16px;
        border-radius: 50%;
        text-align: center;
        background: none;
        color: #333333;
        border: 1px solid #ddd;
        position: relative;
        transition: all 0.3s linear;
    }

        .header-cart .cart-btn:hover {
            color: #005de0;
        }

        .header-cart .cart-btn .count {
            width: 20px;
            height: 20px;
            line-height: 20px;
            text-align: center;
            background: #005de0;
            border-radius: 50%;
            font-size: 10px;
            font-weight: 400;
            display: inline-block;
            color: #ffffff;
            position: absolute;
            top: -5px;
            right: -10px;
        }

.dropdown-cart {
    max-width: 370px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 11px 10px 38px 0 rgba(46, 63, 99, 0.15);
    border: 0;
    transform: translateX(-50%) !important;
    left: 50% !important;
    top: 63px !important;
}

@media only screen and (max-width: 1399px) {
    .dropdown-cart {
        left: 0 !important;
        transform: translateX(-85%) !important;
    }
}

@media only screen and (max-width: 991px) {
    .dropdown-cart {
        top: 56px !important;
    }
}

@media only screen and (max-width: 449px) {
    .dropdown-cart {
        left: 0 !important;
        transform: translateX(-72%) !important;
    }
}

.dropdown-cart .cart-items {
    height: 280px;
    overflow-y: auto;
}

    .dropdown-cart .cart-items .single-cart-item {
        display: flex;
        align-items: center;
        position: relative;
    }

        .dropdown-cart .cart-items .single-cart-item + .single-cart-item {
            margin-top: 30px;
        }

        .dropdown-cart .cart-items .single-cart-item .item-image img {
            border-radius: 50%;
        }

        .dropdown-cart .cart-items .single-cart-item .item-content {
            flex: 1;
            padding-right: 25px;
            padding-left: 20px;
        }

            .dropdown-cart .cart-items .single-cart-item .item-content .title {
                font-size: 16px;
                font-weight: 700;
                color: #000000;
                line-height: 1.3;
            }

            .dropdown-cart .cart-items .single-cart-item .item-content .quantity {
                font-size: 14px;
                color: #005de0;
                line-height: 1.75;
                display: block;
            }

        .dropdown-cart .cart-items .single-cart-item .btn-close {
            position: absolute;
            width: 5px;
            height: 5px;
            top: 0;
            right: 5px;
        }

.dropdown-cart .cart-total {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

    .dropdown-cart .cart-total .label {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.75;
        display: block;
        color: #000000;
    }

    .dropdown-cart .cart-total .value {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.75;
        display: block;
        color: #005de0;
    }

.dropdown-cart .cart-btns {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

    .dropdown-cart .cart-btns .btn {
        height: 50px;
        line-height: 46px;
        font-size: 16px;
        padding: 0 35px;
        width: 48%;
    }

        .dropdown-cart .cart-btns .btn.btn-2 {
            background: #000c29;
            border: 2px solid transparent;
            transition: all 0.3s linear;
        }

            .dropdown-cart .cart-btns .btn.btn-2:hover {
                color: #000c29;
            }


.tech-hero-section {
    height: 750px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
    z-index: 1;
}

    .tech-hero-section .shape-1 {
        width: 417px;
        height: 417px;
        background: linear-gradient(150deg, #035cdd 0%, #4ecdea 100%);
        opacity: 0.9;
        border-radius: 50%;
        position: absolute;
        top: 115px;
        left: 50px;
        z-index: -1;
    }

    .tech-hero-section .hero-content {
        padding-top: 28%;
        /*padding-left: 13%;*/
        /*max-width: 630px;*/
    }

        .tech-hero-section .hero-content .sub-title {
            font-size: 16px;
            line-height: 30px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ffffff;
        }

        .tech-hero-section .hero-content .title {
            font-size: 72px;
            line-height: 92px;
            font-weight: 700;
            color: #ffffff;
            margin-top: 10px;
        }

        .tech-hero-section .hero-content p {
            font-size: 18px;
            line-height: 30px;
            font-weight: 600;
            color: #ffffff;
            margin-top: 0px;
        }

.btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #005de0;
    border-color: transparent;
    color: #ffffff;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    height: 60px;
    line-height: 56px;
    padding: 0px 55px;
    border-style: solid;
    box-shadow: none;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
}

.section.tech-hero-section {
    /*background-image: url('../img/hero-1.jpg');*/
    /*   background-image: url('../img/mp4.gif');*/
    background-image: url('https://media.licdn.com/dms/image/D4D12AQEMbNdxIWsUVA/article-cover_image-shrink_600_2000/0/1681182854261?e=2147483647&v=beta&t=NImXM3c9IhREhZk8PpD02jJv7V0h0nEWVbfBhtAC-rc');
}
    .section.tech-hero-section:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(358deg, #53aad2a8, #137bacb8);
    }
    .section.tech-hero-section:after {
        content: '';
        position: absolute;
        top: 17%;
        right: 0;
        background-image: url('../img/shappp.png');
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: bottom;
        z-index: 9;
    }
@media (max-width: 1350px) {
    .section.tech-hero-section:after {
        content: '';
        position: absolute;
        top: 4%;
        right: 0;
        background-image: url(../img/shappp.png);
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: bottom;
        z-index: 9;
    }
}
    .section.tech-hero-section .container {
        position: relative;
        z-index: 99;
    }
/*1*/
.service-section .service-wrap {
    margin-bottom: 0px;
    position: relative;
    z-index: 5;
}

    .service-section .service-wrap .service-item:hover {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    .service-section .service-wrap .service-item {
        background: #ffffff;
        overflow: hidden;
        z-index: 1;
        height: 100%;
        position: relative;
        margin-bottom: 30px;
        padding: 3em 2em;
        border-radius: 4px;
        transition-property: all;
        transition-duration: 300ms;
        transition-timing-function: ease-in-out;
        transition-delay: 0s;
        box-shadow: 0 2px 25px 0 rgba(106, 99, 119, 0.1);
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

        .service-section .service-wrap .service-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            background: linear-gradient(148deg, #54d6eb 0%, #055fdd 100%);
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0;
            transition: all 0.3s linear;
            visibility: hidden;
        }

        .service-section .service-wrap .service-item:hover::before {
            opacity: 1;
            visibility: visible;
        }

        .service-section .service-wrap .service-item .shape-1 {
            width: 235px;
            height: 235px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            position: absolute;
            top: -80px;
            right: -80px;
            opacity: 0;
            transition: all 0.3s linear;
            visibility: hidden;
            z-index: -1;
        }

        .service-section .service-wrap .service-item:hover .shape-1 {
            opacity: 1;
            visibility: visible;
        }

        .service-section .service-wrap .service-item .shape-2 {
            position: absolute;
            right: -135px;
            bottom: 55px;
            opacity: 0;
            transition: all 0.3s linear;
            visibility: hidden;
            z-index: -1;
        }

        .service-section .service-wrap .service-item:hover .shape-2 {
            opacity: 1;
            visibility: visible;
        }
        .service-section .service-wrap .service-item:hover .title a {
            color: #fff !important;
        }
        .service-section .service-wrap .service-item:hover p {
            color: #fff !important;
        }
        .service-section .service-wrap .service-item .service-content .title {
            font-size: 24px;
            line-height: 30px;
            font-weight: 700;
            margin-top: 12px;
            transition: all 0.3s linear;
        }

            .service-section .service-wrap .service-item .service-content .title a {
                color: #231e32;
                text-decoration: none;
            }

        .service-section .service-wrap .service-item .service-content p {
            font-size: 14px;
            line-height: 26px;
            font-weight: 600;
            color: #4c4d56;
            margin-top: 20px;
            transition: all 0.3s linear;
        }

.space {
    padding: 0px 0px 50px;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1420px;
    }
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff !important;
    z-index: 99;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    animation: slideDown 0.8s ease-out;
}

    .sticky button.btn.search_btn {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.sticky ul.dropdown-menu.show {
    top: 79px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.sticky .header-menu .main-menu li a {
    color: #137BAC;
}
.sticky .header-menu .main-menu li {
    padding: 22px 25px;
}
.sticky .header-menu .main-menu li .menu-icon::after {
    color: #137BAC;
}
.sticky .header-info .info-icon i {
    color: #137BAC;
}
.sticky .header-info .info-text span {
    color: #137BAC;
}
.sticky .header-info .info-text .number a {
    color: #137BAC;
}
.sticky .header-logo {
    background: transparent;
    padding: 0;
    clip-path: none;
}
#app {
    background-image: linear-gradient( -225deg, #3cace3 0%, #606060 29%, #606060 67%, #fff800 100% );
    background-clip: border-box;
    text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    font-size: 65px;
    line-height: 75px;
    font-weight: 700;
    padding-bottom: 21px;
    text-shadow: 3px 1px #fff;
}
@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.shape-1 {
    animation: animName 2s linear infinite;
    width: 50px;
    height: 50px;
    background: #0091EA;
    margin: 20px;
}

@keyframes animName {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* Button CSS */
.custom-btn {
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
}
/* 12 */
.btn-12 {
    position: relative;
    left: -77px;
    bottom: 0;
    border: none;
    box-shadow: none;
    line-height: 42px;
    -webkit-perspective: 230px;
    perspective: 230px;
}

    .btn-12 span {
        background: rgb(0,172,238);
        background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
        display: block;
        position: absolute;
        width: 130px;
        height: 40px;
        box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
        border-radius: 5px;
        margin: 0;
        text-align: center;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

        .btn-12 span:nth-child(1) {
            box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001;
            -webkit-transform: rotateX(90deg);
            -moz-transform: rotateX(90deg);
            transform: rotateX(90deg);
            -webkit-transform-origin: 50% 50% -20px;
            -moz-transform-origin: 50% 50% -20px;
            transform-origin: 50% 50% -20px;
        }

        .btn-12 span:nth-child(2) {
            -webkit-transform: rotateX(0deg);
            -moz-transform: rotateX(0deg);
            transform: rotateX(0deg);
            -webkit-transform-origin: 50% 50% -20px;
            -moz-transform-origin: 50% 50% -20px;
            transform-origin: 50% 50% -20px;
        }

    .btn-12:hover span:nth-child(1) {
        box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
        -webkit-transform: rotateX(0deg);
        -moz-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }

    .btn-12:hover span:nth-child(2) {
        box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
        color: transparent;
        -webkit-transform: rotateX(-90deg);
        -moz-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
    }
/*footer*/
.tp-cta-grey-bg {
    height: 170px;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
}
.tp-cta-bg {
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 40px;
    padding: 70px 40px;
    color:#fff;
}
.tp-section-title {
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2;
}
.white-bg {
    background: #ffff;
}

.tp-btn-inner {
    display: inline-block;
    background: #fff;
    color: #137bac;
    border-radius: 30px;
    padding: 7px 9px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    text-decoration: none;
}
.pt-40 {
    padding-top: 40px!important;
}
.grey-bg-2 {
    background: #eeeef5;
}
/*Footer*/

footer.footer_sec {
    background: #ececf3;
    position: relative;
    border-bottom: 1px solid #DFDFEA;
    padding-bottom: 45px;
}
.tp-footer__shape-1 {
    position: absolute;
    left: 2%;
    top: -2%;
    animation: tpupdown 0.8s infinite alternate;
}
@keyframes tpupdown {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
.tp-footer__shape-2 {
    position: absolute;
    right: 16%;
    bottom: -9%;
}
.f-4 {
    padding-bottom: 60px;
}
section.bottom_footer {
    position: relative;
    padding: 15px;
    text-align: center;
}