@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/* *{
    word-break: break-word;
} */
body {
    font-family: 'Poppins', sans-serif;
    color: #1c1e39;
    min-width: 320px;
    overflow-x: hidden;
}
.home-page {
    font-family: "Montserrat", sans-serif;
}
a {
    color: #73469B;
    text-decoration: none;
}

a:hover {
    color: #6ab0db;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}
.hidden-scroll {
    overflow-y: auto !important;
    -ms-overflow-style: none !important;  /* IE and Edge */
    scrollbar-width: none !important;  /* Firefox */
}
.hidden-scroll::-webkit-scrollbar {
    display: none !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}
::placeholder {
 opacity: 1;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #73469B;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #73469B;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #16b0e9;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

#topbar {
    background: #73469B;
    height: 200px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 80px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
    height: 80px;
    z-index: 9999;
}

#header .logo {
    width: 200px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #222222;
}

#header .logo a span {
    color: #73469B;
}

#header .logo img {
    max-width: 100%;
    min-width: 85px;
}

.scrolled-offset {
    margin-top: 80px;
    background: #EEE;
}

.container {
    position: relative;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 26px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #1c1e39;
    white-space: nowrap;
    transition: 0.5s;
    position: relative;
}
.btn-get-started.hire_writer_button, .btn-get-started.hire_writer_button:focus {
    padding: 10px 28px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}
.navbar .btn-s a:focus{
    color: #fff;
}

.navbar>ul>li>a:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #01ACEA;
    visibility: hidden;
    width: 0px;
    transition: all 0.5s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a:not(.btn-s a) {
    color: #16b0e9;
}

.navbar .dropdown {
    display: none;
}
.dropdown.ai-writing-tools {
    display: inline-block;
}
.dropdown.ai-writing-tools .dropdown-menu {
    width: unset;
}

.navbar .dropdown ul {
    display: block;
    width: 100%;
    position: absolute;
    left: 28px;
    top: calc(100% + 0px);
    margin: 0;
    padding:  0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.5s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

ul {
    list-style: none;
}

.navbar .dropdown ul li {
    padding: 0;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #707070;
}


.navbar .dropdown:hover>ul {

    opacity: 1;
    top: 100%;
    visibility: visible;
}

.drop-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    list-style: none;
    position: static;
    margin: 0;
    padding: 0;
}

/* .drop-items .drop{
    position: relative;
} */

.drop-link {
    position: relative;
    margin-right: 30px;
}

.dd {
    position: absolute;
    width: 100%;
    margin: auto;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    left: 50%;
    transform: translateX(-50%);
    top: 19.5%;
    opacity: 0;
    visibility: hidden;
    /* transition: all .3s ease; */
    transition: all;
}

.dd-inside {
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    padding: 1rem;
    box-shadow: 0px 3px 55px rgb(0 0 0 / 15%);
    background: white;
    position: absolute;
    top: -88px;
}

.dd ul {
    padding: 0;
}

.drop:hover .dd {
    opacity: 1;
    visibility: visible;
    top: 140px;
}

.blue-bar {
    background: #01ACEA;
    padding: 10px;
    height: 40px;
}

.blue-bar .bi-chevron-down {
    font-size: 10px;
    margin-left: 3px;
}

.blue-bar a {
    color: white;
}

.dd li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-width: 275px;
}

.dd li p {
    margin: 1rem .5rem 0 .5rem;
    font-size: 13.5px;
}

.dd .triangle1 {
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid #fff;
    position: absolute;
    top: -5%;
    left: 3%;
    box-shadow: 0px 3px 55px rgba(0, 0, 0, .15);
}

.dd .triangle2 {
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid #fff;
    position: absolute;
    top: -5%;
    left: 13%;
    box-shadow: 0px 3px 55px rgba(0, 0, 0, .15);
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 0px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

.btn-primary {
    background: #3ECCFF;
    border: 1px solid transparent;
    outline: none;
}

.btn-primary:hover {
    background: #3ECCFF;
    border: 1px solid transparent;
}

.navbar .btn-get-started,
.business .btn-get-started,
.projects .btn-get-started,
.btns-header .btn-get-started,
.btns-header .btn-get-started:focus {
    background: #1c1e39;
    color: #f7f4f5;
    padding: 10px 28px;
    border: 1px solid transparent;
    border-radius: 2rem;
    font-weight: 600;
    transition: all .5s;
}

.projects .btn-get-started {
    margin: 2rem 42%;
}

.navbar .btn-get-started::before {
    display: none;
}

.navbar .btn-get-started:hover {
    color: #1c1e39;
    padding: 10px 28px;
    background-color: #6ab0db;
}

.navbar_mobile_view_user a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    color: #707070;
    white-space: nowrap;
    transition: 0.5s;
    position: relative;
    padding-top: 14px;
}

.navbar_mobile_view_user a .image{
    height: 35px;
    width: 35px;
}

.navbar_mobile_view_user a .text h3{
    font-size: 11px;
    font-weight: 800;
}

.navbar_mobile_view_user a .text p{
    font-size: 10px;
}

.notification-bell {
    position: relative;
}


#topbar {
    background: #01ACEA;
    color: #fff;
    position: relative;
    z-index: 0;
}

#topbar .dropdown ul li {
    position: relative;
    list-style: none;
    color: white;
}

#topbar .dropdown ul li a {
    color: #fff;
}

.navbar .btn-primary {
    display: none;
}

#topbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.5s;
    margin-bottom: 0rem;
}

#topbar .contact-info ul {
    margin: 0rem;
    color: #fff;
}

#topbar .contact-info .dropdown ul li {
    min-width: 200px;
    list-style: none;
    color: #fff;
    z-index: 1000;
}

#topbar .dropdown ul a {
    padding: 10px 20px;
    font-weight: 400;
}

#topbar .dropdown ul a i {
    font-size: 12px;
}

#topbar .dropdown ul a:hover,
#topbar .dropdown ul .active:hover,
#topbar .dropdown ul li:hover>a {
    color: #73469B;
}

#topbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

#topbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

#topbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

/* .btn-s:hover a {
    color: white !important;
} */

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -100%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation
*/

.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
    .blue-bar {
        display: none !important;
    }
    .navbar .dropdown {
        display: block;
    }
    .navbar .btn-get-started {
        margin: 0 1rem;
        width: max-content;
    }
    .navbar .btn-primary {
        display: block;
        width: -webkit-fill-available;
        margin: 12px 1rem;
        /* margin: 0 1rem; */
    }
    #footer .medias, .footer-mobile .medias {
        margin: 1.75rem auto !important;
    }


}

/* .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.5s;
    z-index: 999;
} */



.hire {
    background: #F2F7F2;
    padding: 10px 0;
}

.hire .col-md-3 h3 {
    text-align: center;
}

.hire .row {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.hire .col-md-3 {
    border: 2px solid transparent;
    padding: 2rem 1rem;
    border-right: 1px solid #B0B5B7;
    height: 140px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.hire .col-md-3:nth-last-child(1) {
    border-right: 1px solid transparent;
}

.hire .hire-img {
    width: 70px;
    margin: .4rem 1rem;
}

.hire .hire-img img {
    width: 100%;
}


/* edit */
.log-out-img {
    width: 18px;
    margin-right: 5px;
}
.user {
    display: flex;
    align-items: center;
}
.user .image {
    height: 28px;
    width: 28px;
    margin-right: 12px;
}
.user .image img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.user .text {

}
.user .text h3 {
    font-size: 15px;
    color: #1c1e39;
    margin: 0;
}
.user .text p {
    font-size: 14px;
    margin: 0;
    color: #16b0e9;
}




#hero {
    width: 100%;
   /* background: url(https://ik.imagekit.io/ppw/img/SITE-HERO-IMAGE.png); */
    background-size: 100% auto !important;
    position: relative;
    background-position: top !important;
    background-repeat: no-repeat !important;
    padding: 175px 0;
}

#hero .btn-get-started:hover {
    background: #73469B !important;
    transition: all .5s;
}

#hero::before {
    background: #01ACEA;
}

#hero .container {
    position: relative;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 3rem;
}

#hero h1 span {
    color: #73469B;
}

#hero h2 {
    color: #555555;
    margin: 5px 0 30px 0;
    font-size: 24px;
    font-weight: 400;
}

#hero .btn-get-started, #mobile-hero .btn-get-started,
.hiring .btn-get-started {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 2rem;
    transition: 0.5s;
    color: #fff;
    background: #73469B;
    transition: all .5s;
}

#hero .btn-get-started {
    background: #01ACEA;
}

.hiring .btn-get-started {
    border: none;
    box-shadow: 0px 3px 55px rgba(0, 0, 0, .15);
}

#hero .btn-get-started:hover {
    background: #247cf0;
}

#hero .btn-get-started2 {
    background: #f7f4f5;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 2rem;
    transition: 0.5s;
    color: #01acea;
    background: #f7f4f7;
    transition: all .5s;
    margin-left: 10px;
}

#hero .btn-get-started2:hover {
    background: #f7f4f5;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 2rem;
    transition: 0.5s;
    color: #f7f4f5;
    background: #73469B;
    transition: all .5s;
}

#hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: #222222;
    font-weight: 600;
    display: flex;
    align-items: center;
}

#hero .btn-watch-video i {
    color: #73469B;
    font-size: 32px;
    transition: 0.5s;
    line-height: 0;
    margin-right: 8px;
}

#hero .btn-watch-video:hover {
    color: #73469B;
}

#hero .btn-watch-video:hover i {
    color: #3b8af2;
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
        text-align:center;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    #hero .btn-get-started,
    #hero .btn-watch-video {
        font-size: 13px;
        padding: 10px 13px;


    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    /* overflow: hidden; */
}

.section-bg {
    background-color: #f6f9fe;
}

.section-title,
.section-header {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: #e7f1fd;
    color: #73469B;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.section-title h3 {
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
}

.section-title h3 span {
    color: #73469B;
}

.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
    /* .business .btn-get-started {
        font-size: 10px;
    } */
}


.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f6fe;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/* pagination */
.pagination {
    padding: 60px 0 60px;
    width: 100%;
}
.pagination ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0;
    flex-wrap: wrap;
}
.pagination ul li a,.pagination ul li span {
    font-size: 20px;
    height: 65px;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f7f4f5;
    border: 1px solid #1c1e39;
    color: #1c1e39;
    transition: 0.3s;
}
.pagination ul li a:hover,
.pagination ul li a.active {
    background: #6ab0db ;
    color: #fff;
    border-color: transparent;
}
.pagination ul li a.big {
    font-size: 40px;
}
@media (max-width: 1600px) {
    .pagination {
        padding: 40px 0 80px;
    }
    .pagination ul li a,.pagination ul li span {
        font-size: 15px;
        height: 45px;
        width: 45px;
    }
    .pagination ul li a.big {
        font-size: 25px;
    }
}
@media (max-width: 767px) {
    .pagination ul {
        gap: 8px;
    }
    .pagination ul li a,.pagination ul li span {
        font-size: 12px;
        height: 35px;
        width: 35px;
        border-radius: 4px;
    }
    .pagination {
        padding: 30px 0 50px;
    }
}




.works .col-md-3 ,.works .col-lg-3 {
    text-align: center;
    /* min-width: 250px; */
}

.works .section-header,
.projects .section-header {
    text-align: center;
}

.works .section-header h2,
.projects .section-header h2,
.business .section-header h2 {
    color: #1c1e39;
    font-size: 2rem;
}

.business .section-header h2 {
    color: white;
    font-size: 2rem;
}

.works .col-md-3 .box, .works .col-lg-3 .box {
    background: #fff;
    padding: 1rem;
    width: 150px;
    height: 150px;
    color: #fff;
    border-radius: 1rem;
    transform: rotate(45deg);
    box-shadow: 3px 0px 5px rgba(0, 0, 0, .25);
    margin: 3rem auto;
}

.works .col-md-3 .box .purple ,.works .col-lg-3 .box .purple {
    background: linear-gradient(60deg, #1c1e39, #73469b);
    width: 120px;
    height: 120px;
    border-radius: .5rem;
    box-shadow: 3px 0px 5px rgb(0 0 0 / 84%);
    position: relative;
}

.works .title {
    margin: 0;
}

.works .col-md-3 .box .purple img , .works .col-lg-3 .box .purple img {
    width: 95px;
    height: 95px;
    left: 38%;
    position: absolute;
    transform: rotate( -45deg) translate(0%, -50%);
    top: 35%;
    padding: 1rem;
}

.works .col-md-3 .box .purple img::after , .works .col-lg-3 .box .purple img::after {
    transform: rotate(-50deg);
}

.business {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 60px auto !important;
    overflow: hidden;
    position: relative;
}

.business .section-header {
    color: #fff;
    text-align: center;
}

.business .col-md-3 {
    text-align: center;
    /* width: 275px; */
    /* height: 350px; */
    border-radius: 4px;
    margin: .25rem auto;
    position: relative;
    overflow: hidden;
    transition: 500ms;
    background: transparent;
    padding: 0 20px;
    margin-bottom: 25px;
}

.price {
    color: #73469B;
    font-weight: bold;
}

.explore .btn-get-started {
    margin: auto !important;
}

.wt-categorycontent {
    float: left;
    max-width: 300px;
    width: 100%;
    height: 350px;
    padding: 2rem 1rem;
    margin: .25rem auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 700ms;
    background: #fff;
}

.wt-categorycontent figure {
    top: 10%;
    width: 100%;
    height: 120px;
    margin: 1rem auto;
    position: absolute;
    transition: .5s;
}

.wt-categorycontent figure img {
    width: 25%;
    margin: auto;
}

.wt-categorycontent:hover figure {
    top: -125px;
}

.drop .dd .col-md-2 .title {
    margin-top: 25%;
    margin-bottom: 0rem;
    border-bottom: 1px solid;
    padding-bottom: .75rem;
    /* width: 63%; */
}

.wt-categorycontent hr {
    margin: 1rem auto;
    color: inherit;
    background-color: currentColor;
    border: 1px solid;
    opacity: .5;
    width: 90%;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, #1c1e39 0%, #551E85 100%) 0% 0% no-repeat padding-box;
}

.wt-categorycontent:hover hr {
    opacity: 0;
}

.wt-categoryslidup {
    left: 0;
    opacity: 0;
    width: 100%;
    display: block;
    font-size: 14px;
    padding: 0 20px;
    font-weight: 400;
    line-height: 16px;
    visibility: hidden;
    border-radius: 50%;
    position: absolute;
    text-align: center;
    transition: .5s;
}

.wt-cattitle {
    left: 0px;
    top: 190px;
    float: left;
    width: 100%;
    padding: 0 5px;
    position: absolute;
    transition: .5s;
    padding: 0px 15px;
}

.wt-cattitle h5 {
    padding-bottom: .5rem;
}

.wt-cattitle a {
    color: #1c1e39;
}
.wt-categorycontent:hover .wt-cattitle a, .wt-categorycontent:hover .wt-cattitle p {
    color: #fff;
}

.wt-categorycontent {
    position: relative;
    width: 100%;
}

.wt-categorycontent:hover {
    background: #01ACEA;
    color: #fff;
    border-radius: 0.5rem;
}

.wt-categorycontent:hover .wt-cattitle {
    top: 30%;
    color: #fff;

}

.wt-categorycontent .wt-cattitle h5 {
    margin: 0rem;
}



.wt-categorycontent:hover .wt-categoryslidup {
    opacity: 1;
    bottom: 0;
    bottom: 10%;
    visibility: visible;
    color: #fff;
}

.wt-categorycontent:hover .wt-categoryslidup a {
    color: #fff;
    margin-top: 4rem;
}
.wt-categorycontent:hover .wt-categoryslidup a:hover {
    color: #1c1e39;
}
.business .col-md-3 .two {
    position: absolute;
    top: 102%;
    width: 100%;
    height: 100%;
    background: #01ACEA;
    left: 0;
    border-radius: .5rem;
    color: #fff;
    padding: 2rem 1rem;
    line-height: 100px;
    transition: .5s;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
}

.business .col-md-3 .two a {
    color: #fff;
}

.business .col-md-3 .two .desc {
    position: absolute;
    align-items: center;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem;
}

.business .col-md-3:hover .two {
    top: 0%;
    z-index: 0;
    transition: .5s;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
}

.explore {
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.15);
}

.explore:hover {
    background: #fff;
    color: #000;
}

.explore .btn-get-started {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%);
    transition: .3s;
}

.explore .btn-get-started:hover {
    background: #3caf7e;
    color: #f7f4f5;
}

.hiring .img img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hiring .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hiring .desc {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.hiring .desc .tag {
    background: #3caf7e;
    border-radius: 2rem;
    padding: 6px 16px;
    margin: .75rem 3px 0rem 0rem;
    font-size: 10px;
}
.hiring .desc1 .tag {
    padding: 6px 16px;
}

.hiring .desc2 .tag {
    padding: 6px 10px;
}

.hiring .column {
    background: linear-gradient(135deg, #1c1e39, #73469b);
    width: 46%;
    color: #fff;
    border-radius: .5rem;
    padding: 1rem;
    margin: 1rem;
    box-shadow: 8px 8px 19px 1px rgb(0 0 0 / 18%);
}

.hiring .column .row {
    display: flex;
    align-items: normal;
    justify-content: space-between;
    height: 100%;
}

.hiring h2 {
    font-size: 1.5rem;
}

.hiring .column .row .col-md-6 .img img {
    width: 100%;
}

.login {
    text-align: center;
    background: transparent;
}

.login h2 {
    font-weight: bold;
    color: #f7f4f5;
}

.login .google {
    background: #4484F2;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 300px;
    margin: 1rem auto;
    padding: .45rem;
    border-radius: 2rem;
}

.login .google img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-left: 15%;
    margin-right: 0rem;
}

.login .or {
    display: flex;
    align-items: center;
    width: 300px;
    margin: 1rem auto;
    justify-content: space-between;
}

.login .line {
    width: 125px;
    background: #D4D6D6;
    border: 1px solid #D4D6D6;
}

.login input {
    width: 300px;
    margin: 1rem;
    padding: .5rem 1rem;
    border-radius: 4px;
    border: 1px solid #D4D6D6;
}

.login .btn-get-started {
    width: 300px;
    padding: .5rem 1rem;
    background: #1c1e39;
    color: #fff;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all .5s;
}

.login .btn-get-started:hover {
    width: 300px;
    padding: .5rem 1rem;
    background: #f7f4f5;
    color: #1c1e39;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all .5s;
    font-weight: 600;
}
.login p {
    margin: 0;
}

.login .google p {
    margin-bottom: 0;
    width: 100%;
    color: #fff;
    text-align: left;
    margin-left: .5rem;
}

.business .row  {
    margin: 0 -17px;
}

.works .title,
.business .title,
.hiring .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.works .title,
.business .title {
    margin: 10px;
    font-size: 22px;
}

.works .title a {
    color: #111;
}

.works .description,
.business .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.business .btn-get-started,
.hiring .btn-get-started {
    background: #01ACEA;
    box-shadow: 0px 3px 55px rgba(0, 0, 0, 0.12);
    width: auto;
    margin: 2rem auto;
}

.business .btn-get-started {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    margin: auto;
}

.whiteline {
    width: 200px;
}

.hiring .btn-get-started {
    margin: 0;
    font-weight: 600;
}

.hiring .btn-get-started:hover {
    background: #73469B;
}

.works .description {
    line-height: 24px;
}

.projects {
    background: #f7f4f5;
}

.projects .col-md-12 {
    box-shadow: 8px 8px 19px 1px rgb(0 0 0 / 13%) !important;
    padding: 1rem;
    border-radius: 8px;
    background: white;
    border: 20px solid transparent;
    transition: all .3s ease-in-out;
    margin: 9px 0;
    transform: scale(.95);
    z-index: 0;
    position: relative;
}
@media (hover: hover) and (pointer: fine) {
.projects .col-md-12:hover {
    padding: 1rem;
    transform: scale(1);
    border: 20px solid #F9FAFC;
    z-index: 0;
}
}

.projects .col-md-12 .proj-btn {
    transition: .3s;
    border: 1px solid transparent;
    background: #01ACEA;
    color: #fff;
    font-weight: 600;
    min-width: 130px;
    margin-right: 0;
}
.projects .col-md-12 .desc.project_time p{
    margin-bottom: 0;
    padding-right: 1rem;
}

.projects .col-md-12:hover .proj-btn {
    background: #73469B;
    color: #fff;
    border: 1px solid transparent;
}

.projects .col-md-12 .proj-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    word-break: break-word;
}

.projects .col-md-12 ul {
    /* display: flex; */
    align-items: center;
    list-style: none;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}

.projects .col-md-12 .left .proj {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
}

.projects .col-md-12 .left .desc,
.projects .col-md-12 .right .desc {
    padding: 1rem;
    min-width: 250px;
}

.projects .col-md-12 .left .desc p,
.projects .col-md-12 .right .desc p {
    padding: 0;
    margin: 0;
}

.projects .col-md-12 .tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3px;
}

.projects .col-md-12 .icon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    min-width: 100px;
}

.projects .col-md-12 .icon img {
    width: 100%;
}

.projects .col-md-12 ul li {
    background: rgba(0, 0, 0, 0.1);
    margin: .5rem;
    margin-left: 0;
    padding: 9px 25px;
    border-radius: 2rem;
    font-size: 12px;
    cursor: pointer;
    display: inline-block;
}

.projects .col-md-12 ul .heart {
    background: transparent !important;
    font-size: 1rem;
    padding:0px 10px;
}
.projects .col-md-12 ul .heart a{
    font-size: 25px;
}


.projects .col-md-12 .right {
    text-align: right;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer,
.footer-mobile {
    background: #01ACEA;
    color: #fff;
    font-size: 14px;
}

#footer ul,
.footer-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#footer .footer-img,
.footer-mobile .footer-img {
    width: 60%;
    margin: 1.25rem 0;
    margin-top: 0;
}

#footer .footer-desc,
.footer-mobile .footer-desc {
    margin: 1.25rem 0;
    line-height: 25px;
}

#footer .medias,
.footer-mobile .medias {
    margin: 1.75rem 0;
    width: 70%;
}

#footer ul,
.footer-mobile ul {
    margin-top: 1rem;
    width: 100%;
}

#footer ul li,
.footer-mobile ul li {
    padding: 0rem 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#footer ul li p, #footer ul li a,
.footer-mobile ul li p {
    margin: .5rem 0;
    margin-top: 10px;
    font-size: 14px;
}

#footer .col-md-4,
.footer-mobile .col-md-4 {
    border-right: 1px solid white;
    padding-right: 2rem;
}

#footer .col-md-8 {
    padding-left: 1.25rem;
}

#footer .col-md-8 .col-md-4 {
    border: none;
    margin-right: 0;
    padding-right: 1rem;
}

.footer .col-md-4 p {
    margin: 1rem !important;
    margin-bottom: 0rem !important;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #1c1e39;
}

#footer .footer-top .footer-contact h3 {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: #73469B;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 2px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

#footer .footer-top h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    position: relative;
    padding-bottom: 1.2rem;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #73469B;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .col-md-8 {
    padding-left: 2.25rem;
}

#footer .col-md-8 .col-md-4 ul li {
    cursor: pointer;
}

#footer .col-md-8 .col-md-4 ul li img {
    width: 12px;
    margin-right: .5rem;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.5s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top h4 {
    padding: 0rem;
}

#footer .footer-top .col-md-8 .row {
    margin-bottom: 1rem;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #73469B;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #73469B;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.5s;
}

#footer .footer-top .social-links a:hover {
    background: #3b8af2;
    color: #fff;
    text-decoration: none;
}

#footer .section-header {
    text-align: left;
    padding-bottom: 0rem;
}

.footer-copyright:not(.footer-mobile .footer-copyright){
	font-size: 14px;
    position: absolute;
    bottom: 17px;
	/* margin-top: 110px; */
}

@media (max-width: 1400px) {
    .footer-copyright {
        /* margin-top: 92px; */
    }

    .wt-cattitle p {
        font-size: 14px;
    }

    .hiring .desc1 .tag {
        padding: 6px 9px;
    }
    .hiring .desc2 .tag {
        padding: 6px 4px;
        margin: .75rem 0 0 0;
    }
}
@media (max-width: 1199px) {
    .footer-copyright {
        margin-top: 86px;
    }
    .hiring .desc1 .tag, .hiring .desc2 .tag {
        padding: 6px 15px;
        width: 100%;
        text-align: center;
    }
    /* .wt-categorycontent {
        height: 290px;
    } */
    .wt-categorycontent figure {
        height: auto;
        margin: 0 auto;
    }
    .wt-cattitle {
        top:155px;
    }
    .wt-categorycontent hr {
        margin-top: 0;
        margin-bottom: 60px;
    }
    .business .col-md-3 {
        padding: 0 15px;
    }
}

.medias ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 250px;
}

.medias i {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
}

.medias i::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}

@media screen and (max-width: 1024px) {
    .projects .row {
        margin: 0.3rem;
    }
}

@media screen and (max-width: 1000px) {
    .business .col-md-3 {
        text-align: center;
        box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
        padding: 2rem 1rem;
        margin: .5rem auto;
        width: 300px;
        border-radius: .5rem;
        background: #fff;
    }
    .business .btn-get-started,
    .hiring .btn-get-started {
        background: #01ACEA;
        box-shadow: 0px 3px 55px rgb(0 0 0 / 12%);
        width: auto;
        margin: 1rem 3rem;
    }

    .projects .col-md-12 {
        flex-direction: column;
        padding: 1rem;
    }
    .projects .col-md-12 .left .proj {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .projects .col-md-12 .proj-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
    }
    .projects .col-md-12 .tags {
        flex-wrap: wrap;
    }
    .projects .col-md-12 ul li {
        background: rgba(0, 0, 0, 0.1);
        margin: .25rem;
        padding: 4px 12px;
        border-radius: 2rem;
        font-size: 7px;
        cursor: pointer;
        max-width: 100px;
    }
    .projects .col-md-12 .right {
        text-align: left;
        width: 100%;
    }
    .projects .col-md-12 .right .desc {
        width: 100%;
        /* text-align: center; */
        padding: 1rem 0rem;
    }
    /* .hiring {
        padding-top: 0px;
    } */
    .hiring .column {
        width: 360px;
        margin: .5rem auto;
    }
    .hiring .row {
        flex-direction: column-reverse;
    }
    .hiring .column .row .col-md-6 {
        margin-bottom: 1.2rem;
    }
    .hiring .column .row .col-md-6 .img {
        width: auto;
    }
    .login h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    .login .google,
    .login .or {
        width: 280px;
        font-size: 14px;
    }
    .login .line {
        width: 150px;
        font-size: 14px;
    }
    .login input {
        width: 280px;
        font-size: 14px;
        margin: auto;
        padding: .5rem 1rem;
        border-radius: 4px;
        border: 1px solid #D4D6D6;
    }
    .login .btn-get-started {
        width: 280px;
        margin: 1rem auto;
        padding: .5rem 1rem;
        background: #73469B;
        font-size: 14px;
        color: #fff;
        border-radius: 10px;
        border: 1px solid transparent;
    }
    .login .google img {
        margin-left: 15%;
    }
    .footer .col-md-3 .footer-img {
        width: 100%;
        margin-bottom: 1rem;
    }
    .footer .footer-top .col-md-4 {
        margin: 1rem 0;
    }
    #footer .footer-top .col-md-8 .row .col-md-4 {
        margin: 1rem 0;
    }
    section {
        padding: 30px 0;
    }
    .hire .col-md-3 {
        border: 1px solid transparent;
    }
    .hire .col-md-3:nth-child(1) {
        height: 50px;
        text-align: center;
        width: 100%;
    }
    .hire .col-md-3 h3 {
        text-align: center;
        width: 100%;
    }
    .business {
        height: auto;
    }
    .business .col-md-3 {
        padding: 0rem;
    }
    .wt-categorycontent {
        margin: auto;
    }
    .projects .btn-get-started {
        margin: auto !important;
        width: 50%;
        transform: translate(50%, 10px);
    }
    .hiring .column .row {
        flex-wrap: nowrap;
        flex-direction: row;
    }
    .hiring .btn-get-started {
        margin: auto !important;
        transform: translate(40%, 10px);
    }
    .hiring .desc {
        justify-content: center;
    }
    .hiring .tag {
        background: #C2B4CE;
        border-radius: 2rem;
        padding: 4px 7px;
        margin: 10px auto;
        margin-bottom: auto;
        font-size: 7px;
    }
    .hiring .btn-get-started {
        transform: none;
        position: absolute;
        bottom: 0;
    }
    .hiring .column {
        width: 100%;
        margin: .5rem auto;
    }
    .hiring .desc2 .tag {
        padding: 6px 20px;
        margin: .75rem 8px 0 0;
        width: auto;
    }
    .hiring .desc1 .tag {
        padding: 6px 25px;
        width: auto;
        margin: .75rem 10px 0rem 0px;
    }
    .hiring .column .col-md-6 h2 {
        font-size: .8rem;
        line-height: 20px;
    }
    .hiring .column .col-md-6 p {
        font-size: .6rem;
        margin-bottom: .5rem;
    }
    footer .col-md-8 .container {
        padding: 0rem !important;
        margin: 0rem;
    }
}
@media (max-width: 768px) {
    .hidden-from-sm{
        display: none;
    }
}

.btns-header {
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: space-between;
    padding: 0rem;
}

/* .btns-header .btn-get-started {
    padding: 7px 15px;
} */

.btns-header .nav-link {
    padding-left: 9px;
    padding-right: 0;
}

.btns-header li {
    font-size: .75rem;
    font-weight: bold;
}

@media (max-width: 1199px) {
    #hero {
        padding-top: 150px;
    }
}


@media screen and (min-width: 991px) {
    .btns-header {
        display: none;
    }
    #footer {
        display: block;
    }
    .footer-mobile {
        display: none !important;
    }
}

/* @media screen and (max-width: 480px) {
    #hero {
        padding: 4rem 0;
    }
} */

#footer .footer-mobile {
    display: none;
}
/* -----------------------
Modified Bootstrap Container
-------------------------- */


.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x,.75rem);
    padding-left: var(--bs-gutter-x,.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}
.footer_list a, .footer-copyright a {
    color: white;
  }

  @media only screen and (min-width: 1024px) {
    .post_specialities_mobile_view{
      display: none;
    }
    .tags{
      display: block;
    }


  }
  @media only screen and (max-width: 1024px) {
    .post_specialities_mobile_view{
      display: inline-flex;
    }
    .tags{
      display: none!important;
    }
    .projects .col-md-12 .proj-item .proj-btn{
        display: none;
    }
  }

  .drop{
    text-align: center;
    padding: 20px 0px 1px 37px;
    height: 4rem;
}



select {
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    background: transparent!important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>")!important;
    background-repeat: no-repeat!important;
    background-position-x: 98%!important;
    background-position-y: 9px!important;
    margin-right: 2rem!important;
    padding-right: 2rem!important;
  }

  .blue-bar .bi-chevron-down {
    font-size: 13px;
    margin-left: 5px;
  }
  .bi-chevron-up {
    font-size: 13px;
    margin-left: 5px;

  }
  .bi-chevron-up{

     display: none;
  }
  .drop:hover .bi-chevron-down{

    display: none;
  }
  .drop:hover .bi-chevron-up{

    display: block;
    margin-top: 2px;
    margin-left: 5px;
  }
  .drop_effect_now{
    display: flex;
  }
  .filter-opener{

    margin-left: -5px;
      border: 0;
      outline: none;
      font-size: 16px!important;
      font-weight: 600;
      font-family: "Poppins";
      color: #FFF!important;
      padding: 9px 24px 9px 24px;
      border-radius: 42px;
      background: transparent linear-gradient(
  90deg, #01ACEA 0%, #551E85 100%) 0% 0% no-repeat padding-box;
      box-shadow: 0px 0px 2px rgb(0 0 0 / 16%);
      margin-bottom: 15px;

  }


.index_button_editing{

    margin-top:12px;
    height: 2.5rem;;
}
.index_dropdown_edit{

    text-align: left;
}

@media screen and (min-width: 992px) and ( max-width:1500px){
    #hero h1 {
      font-size: 2rem;
      line-height: 3rem;
      margin-top: 1rem;
      margin-bottom: 2.5rem;
  }
  }
  @media (max-width: 991px) {
    .navbar-mobile ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .user .image {
        height: 50px;
        width: 50px;
    }

    .project-details-section .part1 .left .data {
        font-size: 14px;
    }
    .project-details-section .part1 .left .data {
        padding-left: 20px;
        margin-left: 25px;
        gap: 9px;
        border-width: 1px;
    }

    .project-share-button {
        font-size: 18px;
        height: 55px;
        max-width: 350px
    }
    .project-share-button i {
        font-size: 21px;
        margin-right: 8px;
    }

    .hero-search-box input[type="text"] {
        padding-left: 323px;
    }
    .hero-search-box .search-help-text {
        padding-right: 125px;
    }
}


@media (max-width: 991px) {
    .left-sidebar-top i,.left-sidebar-top-mobile-view i {
        display: inline-block;
    }
    .dashboard-toggle-manu {
        display: inline-block;
    }
    .dashboard-left-sidebar,.dashboard-left-sidebar-mobile-view {
        background: #FFF 0% 0% no-repeat padding-box;
        box-shadow: 0px 5px 30px #000;
        border-radius: 13px;
        overflow: hidden;
        font-family: "Poppins";
        font-weight: 500;
        font-size: 19px;
        position: fixed;
        width: 92%;
        z-index: 999;
        display: none;
        height: 85%;
        overflow: scroll;
    }

    .navbar-mobile {
        position: fixed;
        overflow: hidden;
        top: 80px;
        right: 0;
        left: 0;
        bottom: 0;
        background: #fff;
        z-index: 999;
        width: 100%;
        border-top: 1px solid lightgray;
        display: none;
    }

    .nav-bar-icons-dynamic {
        display: inline-block;
        cursor: pointer;
    }

    .nav-bar-icons-dynamic .bar1, .nav-bar-icons-dynamic .bar2, .nav-bar-icons-dynamic .bar3 {
        width: 30px;
        height: 5px;
        background-color: #01acea;
        margin: 4px 0;
        transition: 0.4s;
    }

    .nav-bar-icons-dynamic.change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-5px, 5px);
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .nav-bar-icons-dynamic.change .bar2 {opacity: 0;}

    .nav-bar-icons-dynamic.change .bar3 {
        -webkit-transform: rotate(45deg) translate(-6px, -7px);
        transform: rotate(45deg) translate(-6px, -7px);
    }

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .nav-logged-in .user {
        padding: 0 !important;
        display: none;
    }

    .navbar-mobile .notification-bell {
        display: none;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.5s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #222222;
    }

    .navbar-mobile>ul>li {
        padding: 0;
    }

    .navbar-mobile a:hover:before,
    .navbar-mobile li:hover>a:before,
    .navbar-mobile .active:before {
        visibility: hidden;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover>a {
        color: #73469B;
    }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        margin: 10px auto;
        padding: 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        display: none;
    }

    .navbar .dropdown:hover > ul {
        display: block;
    }

    .navbar-mobile .dropdown ul li {
        min-width: 200px;
    }

    .navbar-mobile .dropdown ul a {
        padding: 10px 20px;
    }

    .navbar-mobile .dropdown ul a i {
        font-size: 12px;
    }

    .navbar-mobile .dropdown ul a:hover,
    .navbar-mobile .dropdown ul .active:hover,
    .navbar-mobile .dropdown ul li:hover>a {
        color: #73469B;
    }

    .navbar-mobile .dropdown>.dropdown-active {
        display: block;
    }
}
::-webkit-scrollbar {
    width: 3px;
}

.post_save_home_page{
    font-size: 21px;
    padding: 0px;
    margin-left: 10px;
  }
.post_specialities_button {
    transition: .3s;
    /* border: 1px solid transparent; */
    background: #01ACEA;
    color: #fff;
    font-weight: 600;
    /* margin: 0.25rem; */
    padding: 4px 12px;
    border-radius: 2rem;
    text-align: center;
    max-width: max-content;
    /* vertical-align: sub; */
}

.notification-container {
    position: absolute;
    right: 20px;
    width: 400px;
    top: 72px;
    height: auto;
    max-height: 80vh;
    overflow-x: hidden;
    background: #E9E9E9 0% 0% no-repeat padding-box;
    border-radius: 2px;
    overflow-y: scroll;
    /* scrollbar-width: thin; */
    scrollbar-color: #01ACEA #C6C6C6;
    border-top: 1px solid #e1e1e1;
    display: none;
}

.notification-container:hover {
    display: block;
}

.notification-container::-webkit-scrollbar {
    width: 2px;
}

.notification-container::-webkit-scrollbar-track {
    background: #C6C6C6;
}

.notification-container::-webkit-scrollbar-thumb {
    background: #C6C6C6;
    border-radius: 20px;
    border: 3px solid #01ACEA;
}

.notification-image img {
    object-fit: cover;
}
.notification-image img{
    width: 100%;
    height: 100%;
}
.bell-icon span, .notification-bell span {
    position: absolute;
    background: #fff;
    background: #01ACEA 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    padding: 4px 6px;
    border-radius: 50%;
    font-size: 10px;
    color: #fff;
    left: 31px;
    top: 17px;
    height: 25px;
    width: 26px;
}
.navbar .nav-logged-in.notification-bell i, .notification-bell i {
    font-size: 20px;
    margin: 2px 0 0 10px;
    padding: 0 10px 0 0;
    cursor: pointer;
}
.navbar .nav-logged-in {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: #1c1e39;
    font-weight: 500;
    display: inline-block;
}

/* .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #707070;
    white-space: nowrap;
    transition: 0.5s;
    position: relative;
} */
.notification-bell span {
    top: -9px;
    left: 26px;
}
.notification-blocks.unread {
    border-left: 5px solid #73469B;
}

.notification-info {
    padding-top: 0px;
    word-break: break-word;
}

.notification-info {
    font-size: 12px;
    color: #707070;
    padding-top: 10px;
    width: 100%;
}

@media (max-width: 450px) {
    .notification-blocks {
        padding: 20px 15px;
    }
    .notification-container {
        right: 0;
        width: 360px;
    }
}
.notification-image {
    float: left;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid #73469B;
    overflow: hidden;
    background: #FFF;
    margin-right: 20px;
    min-width: 60px;
}
.notification_read_url {
    display: flex;
    align-items: center;
}
.notification-blocks {
    padding: 10px 20px;
    background: #F5F5F5 0% 0% no-repeat padding-box;
    border-radius: 1px;
    margin-bottom: 5px;
}

.notification-blocks strong {
    font-weight: 500;
}

.notification-blocks b {
    font-weight: 600;
}
.load-more button {
    display: block;
    margin: 0px auto 10px auto;
    background: #FFF 0% 0% no-repeat padding-box;
    border-radius: 0 0px 10px 10px;
    border: 0;
    outline: none;
    padding: 10px 25px;
    position: relative;
    font-size: 14px;
    bottom: 5px;
    color: #707070;
}
.notification-container {
    z-index: 9999999999;
}
.total_notification {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1199px) {
    #hero {
        padding-top: 150px;
    }
}

@media screen and (max-width: 991px) {

    header .container {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    #header .logo {
        width: 85px;
        margin: auto auto auto 10px;
    }
    #header .bi-list {
        margin-right: 1.5rem;
    }
    #hero {
        display: none !important;
    }
    /* #hero {
        background-size: cover;
        background-position: center;
        background: unset !important;
        height: auto;
        margin: 5rem 0;
        margin-bottom: 0rem;
        padding: 1rem 0;
    }
    .hero-img-btns{
        justify-content: center;
    }
    #hero h1 {
        color: #01acea;
        font-size: 45px;
        line-height: 65px;
        /* font-size: 1rem;
        line-height: 1.65rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    #hero .btn-get-started {
        display: none;
    } */

    .section-header h2 {
        font-size: 1.9rem !important;
    }
    .section-header img {
        display: none;
    }
    .works .col-md-3 .box ,.works .col-lg-3 .box {
        width: 140px;
        height: 140px;
    }
    .works .col-md-3 .box .purple ,.works .col-lg-3 .box .purple {
        width: 110px;
        height: 110px;
    }
    .works .title {
        font-size: 16px;
    }
    .works .description {
        width: 80%;
        margin: auto;
        font-size: 16px !important;
        line-height: 24px !important;
    }
    .works .title br {
        display: none;
    }
    .business .row {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow: scroll;
    }
    .business .row .col-md-3 {
        margin: 1rem;
        flex-shrink: 0;
    }
    #footer .col-md-8 {
        display: none;
    }
    #navbar .btn-s{
        display: none;
    }
    #footer {
        display: none;
    }
    .footer-mobile {
        display: block !important;
        overflow: hidden;
    }
    #footer .dropdown {
        width: 100% !important;
    }
    #footer .dropdown button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #fff;
        outline: none;
        border: none;
        padding: auto 0;
        margin: auto 0;
        font-size: 20px;
        line-height: 40px;
    }
    #footer .dropdown .dropdown-menu {
        width: 100%;
    }
    #footer .dropdown:hover .dropdown-menu {
        /* display: block; */
    }
    .footer-copyright {
        margin: 1rem auto;
        font-size: 14px;
        text-align: center;
    }
    #navbar i {
        color: #01ACEA;
        font-weight: bold;
    }
    .projects .col-md-12 {
        transform: inherit;
        margin: 1rem auto;
        padding: 0;
    }
    #footer .col-md-4,
    .footer-mobile .col-md-4 {
        padding-right: 0rem;
        border: none;
    }
    .projects .col-md-12:hover .proj-btn {
        background: #01ACEA;

    }
}

/* @media screen and (min-width: 991px) {
    .btns-header {
        display: none;
    }
    #footer {
        display: block;
    }
    .footer-mobile {
        display: none !important;
    }
} */

@media screen and (max-width: 480px) {
    /* #hero {
        padding: 4rem 0;
    } */
}

#footer .footer-mobile {
    display: none;
}
.post_specialities a {
    color: #1c1e39!important;
    font-size: 15px;
}
.post_specialities {
    background: rgba(0, 0, 0, 0.1);
    margin: 0.25rem;
    padding: 4px 12px;
    border-radius: 2rem;
    cursor: pointer;
    text-align: center;
    max-width: max-content;
}

@media (max-width: 991px) {
    .navbar-mobile ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .left-sidebar-top i,.left-sidebar-top-mobile-view i {
        display: inline-block;
    }
    .dashboard-toggle-manu {
        display: inline-block;
    }
    .dashboard-left-sidebar,.dashboard-left-sidebar-mobile-view {
        background: #FFF 0% 0% no-repeat padding-box;
        box-shadow: 0px 5px 30px #000;
        border-radius: 13px;
        overflow: hidden;
        font-family: "Poppins";
        font-weight: 500;
        font-size: 19px;
        position: fixed;
        width: 92%;
        z-index: 999;
        display: none;
        height: 85%;
        overflow: scroll;
    }

    .navbar-mobile {
        position: fixed;
        overflow: hidden;
        top: 80px;
        right: 0;
        left: 0;
        bottom: 0;
        background: #fff;
        z-index: 999;
        width: 100%;
        border-top: 1px solid lightgray;
        display: none;
    }

    .nav-bar-icons-dynamic {
        display: inline-block;
        cursor: pointer;
    }

    .nav-bar-icons-dynamic .bar1, .nav-bar-icons-dynamic .bar2, .nav-bar-icons-dynamic .bar3 {
        width: 26px;
        height: 4px;
        background-color: #01acea;
        margin: 4px 0;
        transition: 0.4s;
    }

    .nav-bar-icons-dynamic.change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-5px, 5px);
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .nav-bar-icons-dynamic.change .bar2 {opacity: 0;}

    .nav-bar-icons-dynamic.change .bar3 {
        -webkit-transform: rotate(45deg) translate(-6px, -7px);
        transform: rotate(45deg) translate(-6px, -7px);
    }

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .nav-logged-in .user {
        padding: 0 !important;
        display: none;
    }

    .navbar-mobile .notification-bell {
        display: none;
    }



    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #222222;
    }

    .navbar-mobile>ul>li {
        padding: 0;
    }

    .navbar-mobile a:hover:before,
    .navbar-mobile li:hover>a:before,
    .navbar-mobile .active:before {
        visibility: hidden;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover>a {
        color: #73469B;
    }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        margin: 10px auto;
        padding: 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        display: none;
    }

    .navbar .dropdown:hover > ul {
        display: block;
    }

    .navbar-mobile .dropdown ul li {
        min-width: 200px;
    }

    .navbar-mobile .dropdown ul a {
        padding: 10px 20px;
    }

    .navbar-mobile .dropdown ul a i {
        font-size: 12px;
    }

    .navbar-mobile .dropdown ul a:hover,
    .navbar-mobile .dropdown ul .active:hover,
    .navbar-mobile .dropdown ul li:hover>a {
        color: #73469B;
    }

    .navbar-mobile .dropdown>.dropdown-active {
        display: block;
    }

    .user {
        order: -1;
        /* align-self: center; */
        padding-bottom: 20px !important;
    }
    .notification-container {
        top: 61px;
    }
}
@media(max-width:767px){
    .hero-section .hero-search-box{
        display:none;
    }
}


h6.recent-project-post-by{
    color: #01acea;
}
@media(max-width:767px){

    #hero h1 {
        /* font-size: 28px;
        line-height: 50px !important; */
        font-size: 55px;
        line-height: 70px !important;
        margin: 90px 0px;
    }
    #hero .btn-get-started, #hero .btn-watch-video, #hero .btn-get-started2 {
        font-size: 20px;
        padding: 18px 20px;
        margin-bottom: 30px;
        font-weight: 700;
    }
}
@media(max-width:443px){
    #hero h1 {
        font-size: 35px;
        line-height: 70px !important;
        margin: 10px 0px;
    }
    #hero .btn-get-started, #hero .btn-watch-video, #hero .btn-get-started2{
        font-size: 16px;
        padding: 12px 25px;
        margin-bottom: 30px;
        font-weight: 700;
        margin-top: 35px;
    }


}


#hero .btn-join-now{
    display: none;
}

@media(max-width:991px){
    #hero .btn-join-now{
        display: block;
    }
}
.dashboard-toggle-btn{
    margin-left: -5px;
    border-radius: 15px;
    border: 0;
    outline: none;
    font-size: 16px;
    width: 200px;
    font-weight: 600;
    font-family: "Poppins";
    color: #FFF;
    padding: 10px;
    border-radius: 42px;
    background: transparent linear-gradient(90deg, #01ACEA 0%, #551E85 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 2px rgb(0 0 0 / 16%);
    margin-bottom: 15px;
    display: none;
}



@media (max-width: 991px){
    .dashboard-toggle-btn {
        display: inline-block;
    }
    .left-sidebar-top i, .left-sidebar-top-mobile-view i {
        display: inline-block !important;
    }
}

.dashboard-left-sidebar-mobile-view {
    top: 85px;
    left: 10px;
}
.left-sidebar-top-mobile-view {
    height: 155px;
    background: #73469B 0% 0% no-repeat padding-box;
    text-align: right;
}
.left-sidebar-bottom img {
    object-fit: cover;
}
.left-sidebar-bottom img {
    height: 115px;
    width: 115px;
    margin: 0 auto;
    display: block;
    position: relative;
    top: -58px;
    border: 5px solid #E5E5E5;
    border-radius: 50%;
    background: #E5E5E5;
}
.left-sidebar-top i, .left-sidebar-top-mobile-view i {
    display: none;
    color: #fff;
    font-size: 40px;
    border: 2px solid #fff;
    margin: 20px;
    border-radius: 50%;
    padding: 10px 15px;
    cursor: pointer;
}
.left-sidebar-bottom button {
    display: block;
    margin: 0 auto;
    width: 150px;
    border: 0;
    outline: none;
    font-size: 13px;
    font-weight: 600;
    font-family: "Poppins";
    color: #FFF;
    padding: 10px;
    border-radius: 42px;
    background: transparent linear-gradient(90deg, #01ACEA 0%, #551E85 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 2px rgb(0 0 0 / 16%);
    position: relative;
    top: -30px;
}
.left-sidebar-menu ul {
    padding-left: 0;
    margin: 0;
}
.left-sidebar-menu ul li {
    padding-left: 0;
    position: relative;
}
.left-sidebar-menu ul li a {
    padding: 15px 20px;
    border-bottom: 1px solid #B0B5B7;
    display: block;
    color: #707070;
}
.left-sidebar-menu ul li a:hover {
    color: #16b0e9;
}

.left-sidebar-menu ul.menu-dropdown {
    height: 0px;
    overflow: hidden;
    padding: 0;
}
.left-sidebar-menu ul li.has-dropdown::after {
    font-family: FontAwesome;
    position: absolute;
    right: 13px;
    content: "\f054";
    font-size: 18px;
    padding: 3px 0 0 0;
    top: 14px;
    color: #707070;
    font-weight: 400;
    transition: 0.6s;
}
.left-sidebar-menu ul li.active {
    background-color: #f9f9f9;
}
.has-dropdown.active ul.menu-dropdown {
    height: auto;
    padding-bottom: 20px;
}
.left-sidebar-menu ul li.has-dropdown ul.menu-dropdown li a {
    border: none;
    border-left: 2px solid #16b0e9;
    margin-left: 60px;
    font-size: 16px;
    padding: 10px 0 10px 25px;
    position: relative;
}
.left-sidebar-menu ul li.has-dropdown ul.menu-dropdown li a::before {
    font-family: FontAwesome;
    vertical-align: middle;
    position: absolute;
    left: 0px;
    content: "\f068";
    font-size: 12px;
    padding: 3px 0 0 0;
    color: #16b0e9;
}
.left-sidebar-menu ul li.has-dropdown.active::after {
    content: "\f078";
}
.left-sidebar-menu ul li.has-dropdown.active a {
    border: none;
}


@media (max-width: 991px){
    /* .proj-item .left{
        margin-left: 37px;
    } */

    .projects .col-md-12 .left .desc, .projects .col-md-12 .right .desc {
        min-width: unset;
    }
}
@media (max-width: 991px){
    .dashboard-left-sidebar, .dashboard-left-sidebar-mobile-view {
        background: #FFF 0% 0% no-repeat padding-box;
        box-shadow: 0px 5px 30px #000;
        border-radius: 13px;
        overflow: hidden;
        font-family: "Poppins";
        font-weight: 500;
        font-size: 19px;
        position: fixed;
        width: 92%;
        z-index: 999;
        display: none;
        height: 85%;
        overflow: scroll;
    }
}

::-webkit-scrollbar-thumb {
    background: #01ACEA;
}
@media (max-width: 575px) {
    .hiring .column{
        width: 86%;
    }

    .post_specialities_button, .post_save_home_page{
        margin-top: 10px;

    }

}
.row-eq-hight::-webkit-scrollbar {
    width: 100%;
    height: 3px;
}

.categories-explore{
    background: #01ACEA;
    color: #fff;
    border-radius: 0.5rem;
  }
  .categories-explore:hover {
    background: #01ACEA;
    color: #fff;
    border-radius: 0.5rem;
  }
  .categories-explore .btn-get-started {
    background: #f7f4f5;
    color: #3caf7e;
    font-size: inherit;
  }

  .projects .col-md-12 .left .desc h4 ,.projects .col-md-12 .right .desc h4{
    word-break: break-word;
    padding-right: 0px;
  }



  @media (max-width: 767px){
    .wt-categorycontent {
        height: 290px;
    }

    /* .projects .proj-item .proj .desc h4{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 156px;
    } */

  }
  .categories-explore .btn-get-started{
    padding: 7px 15px;
    margin-top: 15px !important;
  }

  #footer .medias ul li a{
      margin-bottom: 0px;
      color: #fff;
      transition: all 0.3s;
  }
  #footer .medias ul li a:hover i {
    color: #6ab0db;
    border-color: #6ab0db;
    transition: all 0.3s;
}

.navbar_mobile_view_user a .text p {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
}
@media (min-width: 991px){
    .dashboard-left-sidebar-mobile-view{
        display: none !important;
    }
}
@media (max-width: 767px){
    .wt-categorycontent hr{
        margin-bottom: 10px;
    }

}
@media (max-width: 990px){
    .notification-bell span {
        top: -2px;
        left: 31px;
    }
}

#videoModal.modal.fade.show {
    z-index: 999999999;
    /* display: flex !important;
    justify-content: center;
    align-items: center; */
    margin-top: 75px;

}
#videoModal .modal-body {
    padding: 0 !important;
}
.post_specialities_button:hover{
    color: #fff;
}

.dashboard-toggle-manu-user .text {
    max-width: 130px;
    word-break: break-all;
    white-space: normal;
}
.industry-specialities-menu .index_dropdown_edit li a p {
    color: #1c1e39;
    position: relative;
}

.industry-specialities-menu .index_dropdown_edit li a p:hover {
    color: #73469B;
}
.industry-specialities-menu .index_dropdown_edit li a p:before, .footer_list a:before, .footer-copyright a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -6px;
    left: 0;
    background-color: #6ab0db;
    visibility: hidden;
    width: 0px;
    transition: all 0.5s ease-in-out 0s;
}

.industry-specialities-menu .index_dropdown_edit li a p:hover:before, .footer_list a:hover:before, .footer-copyright a:hover:before {
    width: 100%;
    visibility: visible;
    transition: all 0.5s ease-in-out 0s;
}
.footer_list a, .footer-copyright a {
    position: relative;
    transition: all 0.5s ease-in-out 0s;
    display: inline-block;
}

.footer_list a:hover, .footer-copyright a:hover {
    color: #6ab0db;
    transition: all 0.5s ease-in-out 0s;
}

.home-signup {
    background-color: #01ACEA;
    box-shadow: 8px 8px 19px 1px rgb(0 0 0 / 18%);
}
.section-header img  path {
    fill: #1c1e39;
}
.wt-cattitle p {
    color: #1c1e39;
}
.projects .btn-get-started:hover {
    background: #6ab0db;
    color: #1c1e39;
    transition: all 0.5s;
}

.hiring .btn-get-started:hover {
    background: #f7f4f5;
    color: #1c1e39;
    transition: all 0.5s;
    font-weight: 600;
}

section.login {
    padding-top: 0;
}
#videoModal .modal-content {
    background-color: transparent;
    border: none;
}
#videoModal .modal-header {
    background: transparent;
    border: none;
}
#videoModal .modal-content button span {
    font-size: 40px;
    color: #fff;
}


.owl-prev:hover, .owl-next:hover {
    color: #1c1e39 !important;
}







/*  New mobile Menu css */

@media (min-width: 991px){
    .desktop-new-menu{
        display: block;
    }
    .mobile-new-menu{
        display: none;
    }
}
@media (max-width: 991px){

    .section-title, .section-header{
        padding-bottom: 0px;
    }
    .desktop-new-menu{
        display: none;
    }
    .mobile-new-menu{
        display: block;
    }

}



#header .desktop-new-menu,
#header .desktop-new-menu .container,
#header .mobile-new-menu,
#header .mobile-new-menu .container
{
height: 100%;
}


#header .mobile-new-menu .navbar-mobile{
    background: #1c1e39;
}
#header .mobile-new-menu .navbar-mobile ul{
    background: #1c1e39;
}
#header .mobile-new-menu .navbar-mobile ul li{
    width: 100%;
    border-bottom: 1px solid #ffffff3d;
}
#header .mobile-new-menu .navbar-mobile ul li a{
    color: #f7f4f5;
}

/* #header .mobile-new-menu .dropdown-toggle::after{
    display: none;
} */
#header .mobile-new-menu .nav-item.dropdown .open-mobile-menu-btn{
    /* font-family: FontAwesome; */
    position: absolute;
    right: 13px;
    top: 14px;
    color: #707070;
    font-weight: 400;
    transition: 0.6s;
    padding:0px;
    height: 30px;
    width: 30px;
    background: #01ACEA;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#header .mobile-new-menu .nav-item.dropdown .open-mobile-menu-btn i{
    font-size: 18px;
    color: #f7f4f5;
    margin-right: 3.5px;
}

#header .mobile-new-menu .nav-item.dropdown hr{
    background: #f7f4f56b;

}
#header .mobile-new-menu .navbar-mobile a,#header .mobile-new-menu .navbar-mobile a:focus{
    padding: 20px 10px;
}
#header .mobile-new-menu .nav-item.dropdown .sub-menu-wrap .sub-menu-main .submenu-title{
color: #f7f4f5;
padding: 0px 10px;
}
#header .mobile-new-menu .nav-item.dropdown .sub-menu-wrap .sub-menu-main .submenu-title .col-6 a{
    word-break: break-all;
    }

#header .mobile-new-menu .navbar-mobile .sub-menu-wrap .sub-menu-main .sub-menu-container a{
    padding: 5px 20px;
    font-size: 14px;
}
.sub-menu-wrap{
    display: none;
}
#header .mobile-new-menu .navbar-mobile .sub-menu-wrap .sub-menu-main .sub-menu-container{
   /* display: flex;
   flex-wrap: wrap; */
   display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
#header .mobile-new-menu .navbar-mobile .sub-menu-wrap .sub-menu-main .sub-menu-container .sub-menu-item{
    /* flex:2; */
    display: flex;
    flex-direction: column;
    flex-basis: 50% !important;
    flex: 1;
}
#header .mobile-new-menu .navbar-mobile .industry-mobile-menu .sub-menu-main .sub-menu-container .sub-menu-item, #header .mobile-new-menu .navbar-mobile .speciality-mobile-menu .sub-menu-main .sub-menu-container .sub-menu-item{
    flex-basis: 100% !important;
}
.sub-menu-container {
    padding-bottom: 15px;
}
/* End new mobile Menu css */
@media (max-width: 1000px){
    section.hiring{
        padding-top: 10px;
    }
}

.hiring .btn-get-started {
    /* padding: 4px 9px; */
    /* transform: none; */
    /* font-size: 10px; */
    position: absolute;
    bottom: 0;
}
#footer .footer-top .container{
height: 100%;
}


/* nicepage changes */
#carousel_ac1a {
    padding: 0 !important;
}

@media screen and (max-width: 768px) {
    [data-u-slide-to="2"] {
        display: none !important;
    }
    .u-shape-rectangle.u-layout-cell-2 {
        margin-top: 15px;
    }
    .u-btn {
        white-space: normal;
    }
    .u-clearfix.u-white.u-section-22 .u-layout-cell-3 .u-container-layout-3 img{
        margin-top: 20px;;
    }
    .u-bottom-right-radius-10.u-container-style.u-layout-cell.u-palette-5-base.u-shape-round.u-size-36.u-top-right-radius-10.u-layout-cell-2,
    .u-align-left.u-bottom-left-radius-10.u-container-style.u-layout-cell.u-palette-5-base.u-shape-round.u-size-36.u-top-left-radius-10.u-layout-cell-3 {
        margin-top: 15px;
    }

}

.fr-dib.fr-fic {
    margin-left: auto !important;
    margin-right: auto !important;
}
.u-accordion-link-text {
    margin-right: 10px;
}

.projects .proj-item .proj h6.recent-project-post-by a{
    color: #01acea;
}
.projects .proj-item .proj h4 a{
    color: #1c1e39;
}

.projects .col-md-12 .tags .desc.project_time{
    min-width: 160px;
}
@media (min-width: 992px) {
    #mobile-hero {
        display: none !important;
    }
}
#mobile-hero {
    height: auto;
    margin: 5rem 0;
    margin-bottom: 0rem;
    padding: 1rem 0;
    color: #fff;
}
#mobile-hero h1 {
    color: #01ACEA;
    font-size: 24px;
    margin-top: 30px;
}
#mobile-hero p {
    margin-top: 20px;
}
#mobile-hero .hero-img-btns {
    margin-bottom: 80px;
    margin-top: 30px;
}
#mobile-hero .btn-get-started{
    font-size: 12px;
    padding: 7px 16px;
    background-color: #01ACEA;
}
#mobile-hero .btn-get-started2 {
    background-color: #fff;
    color: #01ACEA;
}
#header .mobile-new-menu .navbar-mobile .user .text h3, #header .mobile-new-menu .navbar-mobile .user .text p {
    color: #f7f4f5;
}
.writer-loc-min-width
{
    min-width: 140px;
}
@media only screen and (max-width: 1199px) and (min-width: 991px)  {
    #footer .medias, .footer-mobile .medias{
        width: 100%;
    }

}

.footer-links a {
    color: #fff;
}
.footer-links h4 {
    margin-top: 30px;;
}

.navbar-mobile .dropdown-item:hover, .navbar-mobile  .dropdown-item:focus{
    color: #f7f4f5 !important;
}
.navbar .dropdown ul a i {font-size: 21px;}
.navbar .dropdown .menu-item-button {
    line-height: 0;
}
.footer-mobile .dropdown-item {
    margin-top: 15px;
}
@media (max-width: 1200px){
    #footer .medias {
        width: 100%;
    }

}

#footer a { 
    text-decoration: none;  
}   
.elementor-pagination { 
    margin-top: 20px;   
}   
@media (max-width:  1200px) {   
    #footer .medias {   
        width: 100%;    
    }   
}
