@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Regular.eot');
    src: url('../fonts/BebasNeue-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BebasNeue-Regular.woff2') format('woff2'),
        url('../fonts/BebasNeue-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

#navigation li.nav-item a {
    color: #fff;
}

.nav-menu span {
    background: #fff !important;
}

.open-menu .nav-menu span {
    background: #023575 !important;
}

.fp-viewing-4 .nav-menu span {
    background: #023575 !important;
}

.fp-viewing-1 header,
.fp-viewing-2 header,
.fp-viewing-3 header,
.fp-viewing-4 header,
.fp-viewing-5 header,
.fp-viewing-6 header,
.fp-viewing-7 header,
.fp-viewing-8 header,
.fp-viewing-9 header,
.fp-viewing-10 header,
.fp-viewing-11 header,
.fp-viewing-12 header,
.fp-viewing-13 header,
.fp-viewing-14 header,
.fp-viewing-15 header,
.fp-viewing-16 header,
.fp-viewing-17 header,
.fp-viewing-18 header,
.fp-viewing-19 header,
.fp-viewing-20 header,
.fp-viewing-21 header,
.fp-viewing-22 header,
.fp-viewing-23 header,
.fp-viewing-24 header,
.fp-viewing-25 header,
.fp-viewing-26 header,
.fp-viewing-27 header {
    box-shadow: 0 1px 6px 5px rgb(0 0 0 / 20%);
    background: #fff;
    z-index: 100;
}

#navigation li.nav-item {
    position: relative;
    overflow: hidden;
    z-index: 1;

}

#navigation li.nav-item .bg {
    /*margin-bottom: 15px;*/
}

#navigation li.nav-item .menubt {
    position: relative;
    z-index: 10;
}

#navigation li.nav-item .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    z-index: 1;
}

#navigation.navbar-nav {
    position: relative;
    top: 15px;
}

/* topBTn area  */
#navigation li.nav-item .pall .bg {
    background: linear-gradient(135deg, #00c7c5 0%, #0088d7 100%);
}

#navigation li.nav-item .pall:hover .bg {
    transform: translate3d(-50%, 0, 0);
}

#navigation li.nav-item .pmob .bg {
    background: linear-gradient(135deg, #b6eb77 0%, #359ab6 100%);
}

#navigation li.nav-item .webBtn .bg {
    background-image: linear-gradient(to right, #25aae1, #4481eb);
}

#navigation li.nav-item .webBtn:hover .bg {
    transform: translate3d(-50%, 0, 0);

}

#navigation li.nav-item .pmob:hover .bg {
    transform: translate3d(-50%, 0, 0);
}

#navigation li.nav-item .pdesk .bg {
    background: linear-gradient(135deg, #ecc344 0%, #e42d7f 100%);
}

#navigation li.nav-item .pdesk:hover .bg {
    transform: translate3d(-50%, 0, 0);
}

.fp-viewing-1 header .nav-menu span,
.fp-viewing-2 header .nav-menu span,
.fp-viewing-3 header .nav-menu span,
.fp-viewing-4 header .nav-menu span,
.fp-viewing-5 header .nav-menu span,
.fp-viewing-6 header .nav-menu span,
.fp-viewing-7 header .nav-menu span,
.fp-viewing-8 header .nav-menu span,
.fp-viewing-9 header .nav-menu span,
.fp-viewing-10 header .nav-menu span,
.fp-viewing-11 header .nav-menu span,
.fp-viewing-12,
.fp-viewing-13 header .nav-menu span,
.fp-viewing-14 header .nav-menu span,
.fp-viewing-15 header .nav-menu span,
.fp-viewing-16 header .nav-menu span,
.fp-viewing-17 header .nav-menu span,
.fp-viewing-18 header .nav-menu span {
    background: #023575 !important;
}


/* form starting stylings ------------------------------- */
.group {
    position: relative;
    margin-bottom: 35px;
}

input {
    font-size: 18px;
    padding: 5px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
}

input:focus {
    outline: none;
}

/* LABEL ======================================= */
label {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/* active state */
input:focus~label,
input:valid~label {
    top: -20px;
    font-size: 14px;
    color: #fff;
}

/* BOTTOM BARS ================================= */
.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #fff;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

/* active state */
input:focus~.bar:before,
input:focus~.bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
input:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #fff;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #fff;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #fff;
    }

    to {
        width: 0;
        background: transparent;
    }
}


#panel {
    border: 1px solid rgb(200, 200, 200);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
    background: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    background: red;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
    /* Standard syntax (must be last) */
    padding: 3rem;

    border-radius: 4px;

    position: relative;
}

#panel .close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
}

#panel .close:hover {
    color: #fff;
}


/* enquiry popup */

.modal-header {
    border-bottom: unset;
}

.popupdesign {
    padding: 0 30px;
}

.popupdesign h5 {
    padding: 10px 0px;
    color: #023575;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.5px;
    font-family: poppins, sans-serif;

}

.formArea .para {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
}

.formArea .form-control:focus {
    box-shadow: unset;
    outline: unset;
    border-color: #4950576e;
}

@media (max-width:1500px) and (max-width:1400px) {

    .formArea .circle-btn::before,
    .formArea .circle-btn::after {
        top: 11px !important;
    }
}

.formArea .form-control {
    border-top: unset;
    border-right: unset;
    border-left: unset;
    border-radius: unset;
}

.formArea .btnst8 {
    background-image: unset;
    margin: unset !important;
    width: fit-content !important;
    font-size: 15px !important;
}

.formArea .form-control input {
    font-size: 14px;
    text-align: center;
}

.enquiry_head {
    border-top: 6px solid #023575 !important;
    overflow: hidden;
}

.formArea select {
    background: url('../images/arrowdown.png') white no-repeat 98.5% !important;
    background: url('../images/arrowdown.png') white no-repeat calc(100% - 10px) !important;
}


/* .enquiry_head
{
    border:none;
   background: #a881de;
    background: -webkit-linear-gradient(to right, #a881de, #d85eef);
    background: linear-gradient(to right, #a881de, #d85eef);
        height: 110px;
}
.enquiry_head .modal-title
{
    color:#fff;
    font-size: 24px;
    text-transform: uppercase;
}
.enquiry_head .close
{
    color:#fff;
    opacity: 1;
}
#enquiry .modal-body
{
     position: relative;
    top: -34px;
    background: #fff;
    width: 90%;
    margin: 0 auto;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding-top: 15px;
}
#enquiry .modal-dialog
{
    min-height: 300px;
} */
.app_btn1 {
    background: #3e99ec;
    background: -webkit-linear-gradient(to right, #3e99ec, #50b5cb);
    background: linear-gradient(to right, #3e99ec, #50b5cb);
    box-shadow: 0 4px 15px 0 rgb(75 76 78 / 75%);
}

.app_btn2 {
    background: #1b3373;
    background: -webkit-linear-gradient(to right, #1b3373, #44c0e6);
    background: linear-gradient(to right, #1b3373, #44c0e6);
    box-shadow: 0 4px 15px 0 rgb(75 76 78 / 75%);
}

.app_btn3 {
    background: #fd093c;
    background: -webkit-linear-gradient(to right, #22272e, #fd093c);
    background: linear-gradient(to right, #22272e, #fd093c);
    box-shadow: 0 4px 15px 0 rgb(75 76 78 / 75%);
}

.app_btn4 {
    background: #ee508b;
    background: -webkit-linear-gradient(to right, #3e99ec, #50b5cb);
    background: linear-gradient(to right, #3e99ec, #50b5cb);
    box-shadow: 0 4px 15px 0 rgb(75 76 78 / 75%);
}

.app_btn5 {
    background: #ee508b;
    background: -webkit-linear-gradient(to right, #3e99ec, #50b5cb);
    background: linear-gradient(to right, #3e99ec, #50b5cb);
    box-shadow: 0 4px 15px 0 rgb(75 76 78 / 75%);
}

.doctor_bg {
    background: url(../images/portfolio/medical_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hr_bg {
    background: url(../images/portfolio/hr-payroll_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.realestate_bg {
    background: url(../images/portfolio/real-estate-sales-bg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.sportsapp_bg {
    background: url(../images/portfolio/sports_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.fitness_bg {
    background: url(../images/portfolio/fitness_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.resturant_bg {
    background: url(../images/portfolio/resturant-bg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.web_dev_bg {
    background: url(../images/portfolio/web-development_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.event_bg {
    background: url(../images/portfolio/sports_event_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ticket_booking_bg {
    background: url(../images/portfolio/ticket_booking_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.food_delevery {
    background: url(../images/portfolio/food_delivery.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.financial {
    background: url(../images/portfolio/financial.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}



.medi_bg {
    background: url(../images/portfolio/medi_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.task_bg {
    background: url(../images/portfolio/task_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.doctor_bg h2 {
    color: #087cb5 !important;
}

.doctor_bg h2 span {
    color: #1c2f50;
}

.realestate_bg h2 {
    color: #1b3373;
}

.realestate_bg h2 span {
    color: #44c0e6;
}

.realestate_bg p {
    color: #000;
}

.fitness_bg h2 {
    color: #fff;
}

.sportsapp_bg h2 {
    color: #08a9d8;
}

.sportsapp_bg h2 span {
    color: #004788;
}

.sportsapp_bg p {
    color: #000;
}

.fitness_bg h2 {
    color: #f3093a;
}

.fitness_bg h2 span {
    color: #fff;
}

.resturant_bg h2 {
    color: #e77021;
}

.resturant_bg h2 span {
    color: #333;
}

.resturant_bg p {
    color: #000;
}

.ticket_booking_bg h2 {
    color: #e81956;
}

.ticket_booking_bg h2 span {
    color: #332564
}

.food_delevery h2 {
    color: #fdc913;

}

.food_delevery h2 span {
    color: #333;

}

.sections figure img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.task_bg {
    /*
    position: relative;
    top:-2rem;
*/
}

.task_bg h2 {
    color: #ff6e99;
}

.task_bg h2 span {
    color: #333;
}

.fp-slidesNav ul li:last-child {
    content: '';
    display: none !important;
}

@media screen and (max-width: 767px) {
    .mobile-portfolio h2 {
        font-size: 22px;
    }
}

@media screen and (max-width: 991px) {
    .blnk-header .logo {
        position: absolute;
        top: -3px;
        left: -18px;
    }

    .blnk-header .logo img {
        width: 30%;
    }

    .sections {
        position: relative;
        top: -2rem;
    }

    .new_topsec {
        z-index: 1;
    }

    .menu-title {
        letter-spacing: 0 !important;
    }

    .open-menu .logo {
        position: absolute;
        top: 10px !important;
        left: auto !important;
    }

    .copyright_txt {
        bottom: 5px !important;
        color: #333 !important;
        position: absolute !important;
    }

    .left-sidebar {
        margin-right: 85px;
    }

    .mobile-portfolio .btn {
        /* padding: 12px 8px !important; */
        /* width: 90% !important; */
        /* margin: 0 auto !important; */
        /* display: block !important; */
        margin-bottom: 15px !important;
    }

    .new_topsec .banner_cont .btn {
        background: #56CBB9;
        color: #fff;
        border: none;
    }

    .open-menu .logo img,
    .open-menu .logo {
        filter: brightness(0) invert(1) !important;
        position: relative;
        top: 10px;
    }
}

@media screen and (min-width: 991px) {

    .open-menu .logo img,
    .open-menu .logo {
        filter: brightness(0) invert(1) !important;
        position: relative;
        top: 10px;
    }

    .open-menu .nav-menu.open {
        position: relative;
        top: 15px;
    }
}

.copyright_txt {
    position: fixed;
    width: 100%;
    bottom: 15px;
    left: 0;
    display: block;
    text-align: center;
    font-size: 12px;
    z-index: 10;
    color: #fff;

}

.open-menu .navbar-inverse {
    padding: 0 !important;
}

.loader_back {
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    /* left; */
    background: linear-gradient(135deg, #00c7c5 0%, #0088d7 100%);
    z-index: 10000;
}

.loader_back .loader {
    width: 170px;
    height: 80px;
    padding-top: 40vh;
    margin: auto;
    display: flex;
    padding-left: 18px;
}

.loader_back .circle {
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    animation: jump 1s linear infinite;
    margin: 0 15px;
}

.loader_back .caption {
    margin: auto;
    font-family: arial;
    font-size: 20px;
    color: white;
}

#b {
    animation-delay: 0.2s;
}

#c {
    animation-delay: 0.4s;
}

@keyframes jump {
    0% {
        margin-top: 0;
    }

    35% {
        margin-top: -75px;
    }

    70% {
        margin-top: 0px;
    }
}

#modal-subscribe {
    overflow: hidden;
}

#modal-subscribe .form-control {
    height: 48px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding-left: 30px;

}

#modal-subscribe .btn {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-right: 20px;
    background: #007b5e;
    border-color: #007b5e;
    position: relative;
    margin: 0;
    height: 48px;
    line-height: 10px;
}

#modal-subscribe .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #007b5e;
    outline: 0;
    box-shadow: none;
}

#modal-subscribe .top-strip {
    height: 155px;
    background: #007b5e;
    transform: rotate(141deg);
    margin-top: -94px;
    margin-right: 190px;
    margin-left: -130px;
    border-bottom: 65px solid #4CAF50;
    border-top: 10px solid #4caf50;
}

#modal-subscribe .bottom-strip {
    height: 155px;
    background: #007b5e;
    transform: rotate(112deg);
    margin-top: -110px;
    margin-right: -215px;
    margin-left: 300px;
    border-bottom: 65px solid #4CAF50;
    border-top: 10px solid #4caf50;
}

/**************************/
/****** modal-lg stips *********/
/**************************/
#modal-subscribe .modal-lg .top-strip {
    height: 155px;
    background: #007b5e;
    transform: rotate(141deg);
    margin-top: -106px;
    margin-right: 457px;
    margin-left: -130px;
    border-bottom: 65px solid #4CAF50;
    border-top: 10px solid #4caf50;
}

#modal-subscribe .modal-lg .bottom-strip {
    height: 155px;
    background: #007b5e;
    transform: rotate(135deg);
    margin-top: -115px;
    margin-right: -339px;
    margin-left: 421px;
    border-bottom: 65px solid #4CAF50;
    border-top: 10px solid #4caf50;
}

#modal-subscribe .modal-content {
    overflow: hidden;
}

#modal-subscribe .h2 {
    font-size: 28px;
    letter-spacing: 0;
}





.enq_popup .modal-content {
    border-radius: 16px;
}

.enq_popup .pop-up-head a {
    text-decoration: none;
}

.enq_popup ul {
    list-style: none;
}

.enq_popup .pop-up-head {
    width: 100%;
    height: 100%;


}

.enq_popup .pop-box {
    width: 100%;
    max-width: 600px;
    background: #fe3263;
    border-radius: 8px;
    margin: 0 auto;
    height: 545px;
    border: 8px solid rgba(0, 0, 0, 0.18);
    /*    background-image: url(ba.png);*/
}

.enq_popup .pop-box1 {
    padding: 12px 0 0px 0px;
    background: rgba(0, 0, 0, 0.12);

    position: relative;
}

.enq_popup .white-box {
    background: #fff;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    height: 180px;
    position: relative;
    box-shadow: 0px 4px 2px rgba(212, 212, 212, 0.8313725490196079);

}

.enq_popup .white-box1 {
    float: right;
    padding-right: 40px;
    padding-top: 18px;
}

.enq_popup .white-box1 li {
    padding: 10px 0px;
    position: relative;
    font-weight: 600;
    color: #555;
}

.enq_popup .white-box1 li:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    background: #6ee81e;
    top: 18px;
    left: -17px;
    border-radius: 50%;
}

.enq_popup .off-box {
    position: absolute;
    top: -30px;
    left: 11px;
    border: 8px solid rgba(0, 0, 0, 0.18);
    background: #fe3263;
    border-radius: 10px;
}

.enq_popup .off-box1 {
    background: rgba(0, 0, 0, 0.12);
    padding: 15px 30px 16px 30px;
    border-radius: 4px;
}

.enq_popup .off-box1 h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 0px;
}

.enq_popup .off-box1 span {
    font-size: 48px;
    line-height: 48px;
}

.enq_popup .off-box1 p {
    font-size: 16px;
    color: #fff;
    line-height: 0px;
    padding-top: 10px;
}

.enq_popup .off-box1 sup {
    position: absolute;
    top: 38px;
    right: 80px;
}

.enq_popup .form-gro {
    padding: 8px;
}

.enq_popup .form-gro input {
    height: 48px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius: 32px;
    border: 1px solid #ffffff;
    color: #fff;
}

.enq_popup .form-gro input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */
}

.enq_popup .form-gro input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.enq_popup .form-gro input ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
}

.enq_popup .form-inputgroup {
    margin: 0 auto;
    display: block;
    width: 80%;
    padding-bottom: 26px;
}

.enq_popup .form-inputgroup h3 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 3px;
    margin-top: 22px;
}

.enq_popup .form-gro a {
    width: 100%;
    display: block;
    text-align: center;
    padding: 8px 10px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.6px;
    -moz-border-radius: 32px;
    -webkit-border-radius: 32px;
    border-radius: 32px;
    border: 4px solid #FEF733;
    background: #FEDA03;
    text-transform: uppercase;
}

.enq_popup .close {
    position: absolute;
    top: 10px;
    border-top: 3px solid #df2c57;
    border-left: 25px solid #df2c57;
    border-bottom: 27px solid #df2c57;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 134px;
    border-bottom-right-radius: 1px;
    right: -1px;
    background-color: #df2c57;
}

.enq_popup .close p {
    line-height: 0;
    margin: 0 5px 0 0PX;
}

.enq_popup .close img {
    width: 24px;
    height: 15px;
    position: relative;
    padding-right: 10px;
    top: 10px;
}

@media screen and (max-width:480px) {
    .enq_popup .pop-box {
        width: 94%;
    }

    .enq_popup .form-inputgroup {
        padding-bottom: 8px;
    }

    .enq_popup .off-box {
        left: 40px;
    }

    .enq_popup .white-box1 {
        float: none;
        padding-right: 0px;
        padding-top: 0px;
        position: absolute;
        top: 136px;
        left: 29px;
    }

    .enq_popup .white-box {
        height: 300px;
    }

    .enq_popup .pop-box {
        height: 636px
    }
}

@media screen and (max-width:568px) {
    .enq_popup .pop-box {
        width: 96%;
    }
}

@media screen and (max-width:375px) {
    .enq_popup .off-box {
        left: 15px;
    }

    .enq_popup .close img {
        padding-right: 0px;
    }
}

@media screen and (max-width:320px) {
    .enq_popup .off-box {
        left: 4px;
    }

    .enq_popup .close {
        top: -20px;
        right: 20px;
    }

    .enq_popup modal-content {
        background-color: transparent;
    }

    #enquiry .modal-content {
        overflow: hidden;
        border-radius: 12px !important;
    }
}