@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #fff;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Roboto', sans-serif;
}
p {
    margin-bottom: 0px;
}
html {
    scroll-behavior: smooth;
}
.owl-theme .owl-dots {
    display: none;
}
.owl-theme .owl-nav {
    display: block !important;
}
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #666;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ccc;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.btn:focus {
    box-shadow: none !important;
    border: none !important;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.btn-close:focus {
    box-shadow: none;
}
.btn:hover {
    color: #fff !important;
}
.accordion-button:focus {
    box-shadow: none;
}
a {
    color: #000;
    text-decoration: none;
}
ul,
ol {
    padding-left: 0px;
    list-style-type: none;
}
a:hover {
    color: initial;
}
input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
}
.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
/*.full-width {
  width: 100% !important;
}*/
.web-view {
    display: block;
}
.mobile-view {
    display: none;
}
.vertical-space-2 {
    height: 10px;
}
.vertical-space-5 {
    display: inline-block;
    width: 100%;
    height: 5px;
}

.vertical-space-8 {
    display: inline-block;
    width: 100%;
    height: 8px;
}

.vertical-space-10 {
    display: inline-block;
    width: 100%;
    height: 10px;
}

.vertical-space-12 {
    display: inline-block;
    width: 100%;
    height: 12px;
}

.vertical-space-15 {
    display: inline-block;
    width: 100%;
    height: 15px;
}

.vertical-space-20 {
    display: inline-block;
    width: 100%;
    height: 20px;
}

.vertical-space-30 {
    display: inline-block;
    width: 100%;
    height: 30px;
}

.vertical-space-40 {
    display: inline-block;
    width: 100%;
    height: 40px;
}

.vertical-space-50 {
    display: inline-block;
    width: 100%;
    height: 50px;
}

.vertical-space-60 {
    display: inline-block;
    width: 100%;
    height: 60px;
}
.vertical-space-65 {
    display: inline-block;
    width: 100%;
    height: 65px;
}
.vertical-space-70 {
    display: inline-block;
    width: 100%;
    height: 70px;
}

.vertical-space-80 {
    display: inline-block;
    width: 100%;
    height: 80px;
}

.vertical-space-90 {
    display: inline-block;
    width: 100%;
    height: 90px;
}

.vertical-space-100 {
    display: inline-block;
    width: 100%;
    height: 100px;
}
.vertical-space-120 {
    display: inline-block;
    width: 100%;
    height: 120px;
}
.vertical-space-150 {
    display: inline-block;
    width: 100%;
    height: 150px;
}
.fixed{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1200;
    transition: 0.5s all;
    animation: swip_down .5s linear 1;
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}
@keyframes swip_down {
    from {
        transform: translate(0px, -50px);
        opacity: 0
    }

    to {
        transform: translate(0,0);
        opacity: 1
    }
}
.top-header{
    background: linear-gradient(#0081B6 , #1C4078);
    padding: 10px 0px;
}
.top-header .top-header-left ul{
    display: flex;
    margin-bottom: 0px;
}
.top-header .top-header-left ul li{
    margin-right: 20px;
}
.top-header .top-header-left ul li a{
    font-size: 16px;
    color: #fff;
}
.top-header .top-header-left ul li a i{
    margin-right: 10px;
    font-size: 13px;
}
.top-header .top-header-right ul{
    display: flex;
    margin-bottom: 0px;
    justify-content: flex-end;
}
.top-header .top-header-right ul li a{
    font-size: 16px;
    color: #fff;
}
.main-header .navbar{
    background: #fff;
    padding: 15px 0px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    position: relative;
}
.main-header .navbar .navbar-brand img{
    width: 200px;
}
.main-header .navbar .nav-item{
    position: relative;
    display: block;
    transition-duration: 0.5s;
}
.main-header .navbar .nav-item:not(:last-child):after{
    content: "";
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: -20px;
    width: 1px;
    height: 15px;
    background: #637879;
    opacity: 0.7;
}
.main-header .navbar .nav-link{
    font-size: 15px;
    color: #637879;
    padding: 0px;
    padding-left: 35px;
}
.main-header .navbar .nav-link.active , .main-header .navbar .nav-link:hover{
    color: #0086F7;
}
.main-header .navbar .nav-link.dropdown-toggle::after{
    border: none;
    margin-left: 0px;
}
.main-header .dropdown .dropdown-menu{
    top: 100%;
    transition: all 0.5s ease;
    left: 0;
    border-radius: 0px;
    padding: 0px;
    background: #F2F2F2;    
    box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.03);
    -webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.03);
    border: none;
    clear: both;
}
.main-header .dropdown .dropdown-menu .dropdown-item{
    color: #5f5f5f;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 25px;
    clear: both;
  width: 100%;
}
.main-header .dropdown .dropdown-menu .dropdown-item:hover , .main-header .dropdown .dropdown-submen li:hover{
    background: #ddd;
    color:#5f5f5f;
}
.main-header .dropdown .dropdown-menu .dropdown-item.active ~ .nav-link{
    color:#0086F7 ;
}
.main-header li:hover > ul.dropdown-menu{
    display: block;
}
.main-header .dropdown-submenu {
    position:relative;
}
.main-header .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    background: #F2F2F2;    
    box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.03);
    -webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.03);
    border: none;
}
.main-header .dropdown-submenu > li:hover > .dropdown-menu{
    display: block;
} 
.main-header .dropdown .dropdown-menu li{
    border-bottom:1px solid rgba(0,0,0,0.05);
}
.main-header .dropdown .dropdown-menu li:last-child{
    border-bottom: none;
}
.pay-btn{
    background: linear-gradient(to right , #0081B6 , #1C4078);
    border: none;
    padding: 11px 20px !important;
    font-size: 15px;
    color: #fff !important;
    border-radius: 6px;
    transition: 0.7s all;
    display: inline-block !important;
    position: relative !important;
}
.pay-btn:hover{
    background: linear-gradient(to left , #0081B6 , #1C4078);
}
.common-btn{
    background: linear-gradient(to right , #0081B6 , #1C4078);
    border: none;
    padding: 10px 30px;
    font-size: 15px;
    color: #fff !important;
    border-radius: 4px;
    transition: 0.7s all;
    position: relative !important;
}
.common-btn:hover{
    background: linear-gradient(to left , #0081B6 , #1C4078);
}
.banner{
    padding: 10px 0px;
}
.banner .banner-subtitle img{
    width: 200px;
    -webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: swip_up ;
-webkit-animation-delay: .3s;
animation-delay: .3s;
}
.banner .banner-small-img{
    margin: 20px 0px;
    -webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: swip_up ;
-webkit-animation-delay: .4s;
animation-delay: .4s;
}
.banner .banner-small-img img{
    width: 255px;
}
.banner .banner-title{
    font-size: 40px;
    font-weight: 700;
    background: #0081B6;
    background: linear-gradient(to right, #0081B6 0%, #1C4078 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: swip_up ;
-webkit-animation-delay: .5s;
animation-delay: .5s;
}
@keyframes swip_up {
    from {
        transform: translate(0px, 50px);
        opacity: 0
    }
 
    to {
        transform: translate(0,0);
        opacity: 1
    }
 }
 .banner .common-btn{
    -webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: swip_up ;
-webkit-animation-delay: .6s;
animation-delay: .6s;
 }
 @keyframes swip_top {
    from {
        transform: translate(0px, 20px);
        opacity: 0
    }
 
    to {
        transform: translate(0,0);
        opacity: 1
    }
 }
.banner .banner-img img{
    width: 100%;
    -webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-name: swip_top;
-webkit-animation-delay: .6s;
animation-delay: .6s;
}
.package-design{
    padding: 30px 0px;
}
.package-design .package-box{
    border: 1px solid #efefef;
    padding:30px 25px;
}
.package-design .package-box .package-subtitle{
    font-size: 15px;
    color: #0081B6;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}
.package-design .package-box .package-title{
    font-size: 40px;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
}
.package-design .package-box .package-text{
    font-size: 18px;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
}
.package-design .package-box .package-img{
   width: 100%;
   height: 100px;
   margin: 0 auto;
   text-align: center;
}
.package-design .package-box .package-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.workspace-service{
    padding: 30px 0px;
}
.workspace-service .service-title{
    font-size: 48px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}
.workspace-service .card{
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 0px;
    padding:0px 10px;
}
.workspace-service .img-box{
    width: 100%;
    height: 150px;
}
.workspace-service .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.workspace-service .card .card-body .card-title{
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
}
.workspace-service .card .card-body .card-text{
    font-size: 15px;
    color: #637879;
    line-height: 28px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.business-benifit{
    padding: 30px 0px;
}
.business-benifit .business-subtitle{
    font-size: 15px;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}
.business-benifit .business-title{
    font-size: 35px;
    background: #0081B6;
    background: linear-gradient(to right, #0081B6 0%, #1C4078 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
}
.business-benifit .business-card{
    border: 1px solid #efefef;
    border-radius: 0px;
    padding: 20px;
}
.business-benifit .business-card:hover{
    background: #0081B6;
    background: linear-gradient(to right, #0081B6 0%, #1C4078 100%);
    border-color: #0081B6;
}
.business-benifit .business-card:hover .icon{
    background: #fff;
}
.business-benifit .business-card:hover .icon i{
    background: #0081B6;
    background: linear-gradient(to right, #0081B6 0%, #1C4078 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.business-benifit .business-card:hover .card-title , .business-benifit .business-card:hover .card-text{
    color: #fff;
}
.business-benifit .business-card .icon{
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto;
    background: #0081B6;
    background: linear-gradient(to right, #0081B6 0%, #1C4078 100%);
    text-align: center;
    margin-bottom: 15px;
}
.business-benifit .business-card .card-title{
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
}
.business-benifit .business-card .card-text{
    font-size: 16px;
    color: #637879;
    line-height: 28px;
    text-align: center;
}
.workspace-plan .workspace-bg{
    background: linear-gradient(to right, #0081B6 0%, #1C4078 100%);
    height: 350px;
    padding: 40px 0px;     
}
.workspace-plan .workspace-bg .workspace-plan-title{
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
}
.workspace-plan .workspace-bg .workspace-plan-text{
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: capitalize;
}
.workspace-plan .workspace-detail{
    margin-top: -180px;
}
.workspace-plan .workspace-detail .container{
    max-width: 95%;
}
.workspace-plan .workspace-detail .work-space-card{
    background: #fff;
    padding:50px 20px 25px;  
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.29);
}
.workspace-plan .workspace-detail .work-space-card .work-card-title{
    font-size: 26px;
    color: #000;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 25px;
}
.workspace-plan .workspace-detail .work-space-card .work-card-text{
    font-size: 15px;
    color: #637879;
    line-height: 25px;
    margin-bottom: 15px;
}
.work-card-list li{
    font-size: 14px;
    color: #637879;
    position: relative;
    margin-bottom: 5px;
}
.work-card-list li::before{
    content: "\f00c";
    margin-right: 7px;
    color: #0081B6;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.workspace-plan .workspace-detail .work-space-card .work-card-smallnumber{
    font-size: 18px;
    font-weight: 700;
    text-decoration: line-through;
    color: rgba(255, 0, 0, 0.808);
}
.workspace-plan .workspace-detail .work-space-card .work-card-number{
    font-size: 38px;
    font-weight: 700;
    color: #0081B6;
    margin-bottom: 25px;
}
.workspace-plan .workspace-detail .work-space-card .work-card-number span{
    font-size: 14px;
    color: #637879;  
}
.work-btn{
    background: linear-gradient(to right , #0081B6 , #1C4078);
    border: none;
    width: 100%;
    padding: 10px 30px;
    font-size: 15px;
    color: #fff !important;
    border-radius: 30px;
    transition: 0.7s all;
    position: relative !important;
}
.work-btn:hover{
    background: linear-gradient(to left , #0081B6 , #1C4078);
}
.footer{
    background: #222;
    padding: 50px 0px 15px;
    margin-top: 50px;
}
.footer .footer-title{
    font-size: 35px;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;
}
.footer .footer-subtitle{
     font-size: 30px;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration:underline;
}
.footer .footer-text{
    font-size: 28px;
    color: #0081B6;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
}
.footer .footer-subtext{
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
}
.footer .footer-text a{
   color: #0081B6;
}
.footer .footer-bottom{
    border-top: 1px solid #efefef1c;
    padding-top: 15px;
    margin-top: 15px;
}
.footer .copyright-text{
    font-size: 16px;
    color: #efefefbf;
    text-align: center;
}
.content-section{
    padding: 60px 0px;
}
.content-section .content-title{
    font-size: 48px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}
.content-section .content-subtitle{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.content-section .content-text{
    font-size: 16px;
    color: #637879;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 10px;
}






.social ul li {
    list-style-type: none;
    padding-left: 0px;
}
.social ul {
    display: flex;
    padding-left: 0px;
    justify-content: flex-start;
    padding-bottom: 20px;
    padding-top: 20px;
}
.social i {
    color: #000;
    text-align: center;
    font-size: 20px;
    margin:0px 20px 0px 0px;
}
.social a {
    cursor: pointer;
}
.social i:hover{
    color: #000;
}
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    width: 45px;
    text-align: center;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
}

#myBtn:hover {
    background-color: #011FA1;
}







@media (min-width:2000px) {
   
}



@media (min-width: 992px) and (max-width: 1199.98px) {
    .web-view {
        display: none;
    }
    .mobile-view {
        display: block;
    }
    .mobile-header {
        height: 70px;
        line-height: 70px;
        -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        position: sticky;
        top: 0px;
        z-index: 1200;
        background: #fff;
    }
    .mobile-header .logo img {
        width: 200px;
    }
    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }
    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #6378791c;
        opacity: 0.7;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
    color: #637879;
        position: relative;
        line-height: 25px;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link i{
        float: right;
    }
    .mobile-header .mobile-header-list  .sub-link{
        padding: 10px;
        font-size: 15px;
    color: #637879;
        position: relative;
        line-height: 25px;
    }
    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }
    .mobile-header .offcanvas {
        width: 360px;
    }
    
    .toggler {
    color: #1C4078;
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }
    .toggler:focus , .toggler:hover {
        color: #1C4078;
        background: transparent;
    }
    .mobile-header .social ul {
        justify-content: flex-start;
    }
    .mobile-header .offcanvas-body {
        line-height: initial;
    }
    .banner .banner-title{
        font-size: 26px;
    }
    .workspace-service .service-title , .workspace-plan .workspace-bg .workspace-plan-title , .package-design .package-box .package-title{
        font-size: 30px;
    }
    .business-benifit .business-title , .footer .footer-title{
        font-size: 24px;
        line-height: 35px;
    }
    .footer .footer-text{
        font-size: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .web-view {
        display: none;
    }
    .mobile-view {
        display: block;
    }
    .mobile-header {
        height: 70px;
        line-height: 70px;
        -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        position: sticky;
        top: 0px;
        z-index: 1200;
        background: #fff;
    }
    .mobile-header .logo img {
        width: 200px;
    }
    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }
    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #6378791c;
        opacity: 0.7;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
    color: #637879;
        position: relative;
        line-height: 25px;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link i{
        float: right;
    }
    .mobile-header .mobile-header-list  .sub-link{
        padding: 10px;
        font-size: 15px;
    color: #637879;
        position: relative;
        line-height: 25px;
    }
    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }
    .mobile-header .offcanvas {
        width: 360px;
    }
    
    .toggler {
    color: #1C4078;
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }
    .toggler:focus , .toggler:hover {
        color: #1C4078;
        background: transparent;
    }
    .mobile-header .social ul {
        justify-content: flex-start;
    }
    .mobile-header .offcanvas-body {
        line-height: initial;
    }
    .banner .banner-title{
        font-size: 26px;
    }
    .workspace-service .service-title , .workspace-plan .workspace-bg .workspace-plan-title , .package-design .package-box .package-title{
        font-size: 30px;
    }
    .business-benifit .business-title , .footer .footer-title{
        font-size: 24px;
        line-height: 35px;
    }
    .footer .footer-text{
        font-size: 20px;
    }
    
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
    .web-view {
        display: none;
    }
    .mobile-view {
        display: block;
    }
    .mobile-header {
        height: 70px;
        line-height: 70px;
        -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        position: sticky;
        top: 0px;
        z-index: 1200;
        background: #fff;
    }
    .mobile-header .logo img {
        width: 200px;
    }
    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }
    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #6378791c;
        opacity: 0.7;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
    color: #637879;
        position: relative;
        line-height: 25px;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link i{
        float: right;
    }
    .mobile-header .mobile-header-list  .sub-link{
        padding: 10px;
        font-size: 15px;
    color: #637879;
        position: relative;
        line-height: 25px;
    }
    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }
    .mobile-header .offcanvas {
        width: 360px;
    }
    
    .toggler {
    color: #1C4078;
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }
    .toggler:focus , .toggler:hover {
        color: #1C4078;
        background: transparent;
    }
    .mobile-header .social ul {
        justify-content: flex-start;
    }
    .mobile-header .offcanvas-body {
        line-height: initial;
    }
    .banner .banner-title{
        font-size: 26px;
    }
    .workspace-service .service-title , .workspace-plan .workspace-bg .workspace-plan-title , .package-design .package-box .package-title{
        font-size: 30px;
    }
    .business-benifit .business-title , .footer .footer-title{
        font-size: 24px;
        line-height: 35px;
    }
    .footer .footer-text{
        font-size: 20px;
    }
}

@media only screen and (max-width: 575.98px) {
    .web-view {
        display: none;
    }
    .mobile-view {
        display: block;
    }
    .mobile-header {
        height: 70px;
        line-height: 70px;
        -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
        position: sticky;
        top: 0px;
        z-index: 1200;
        background: #fff;
    }
    .mobile-header .logo img {
        width: 200px;
    }
    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }
    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #6378791c;
        opacity: 0.7;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
    color: #637879;
        position: relative;
        line-height: 25px;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link i{
        float: right;
    }
    .mobile-header .mobile-header-list  .sub-link{
        padding: 10px;
        font-size: 15px;
    color: #637879;
        position: relative;
        line-height: 25px;
    }
    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }
    .mobile-header .offcanvas {
        width: 360px;
    }
    
    .toggler {
    color: #1C4078;
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }
    .toggler:focus , .toggler:hover {
        color: #1C4078;
        background: transparent;
    }
    .mobile-header .social ul {
        justify-content: flex-start;
    }
    .mobile-header .offcanvas-body {
        line-height: initial;
    }
    .banner .banner-title{
        font-size: 26px;
    }
    .workspace-service .service-title , .workspace-plan .workspace-bg .workspace-plan-title , .package-design .package-box .package-title{
        font-size: 30px;
    }
    .business-benifit .business-title , .footer .footer-title{
        font-size: 24px;
        line-height: 35px;
    }
    .footer .footer-text{
        font-size: 20px;
    }
    .main-header .navbar .nav-item{
        padding: 10px;
    }
    .main-header .navbar .nav-link{
        padding-left: 0px;
    }
    .top-header .top-header-left ul li a{
        font-size: 14px;
    }
}