@font-face {
    font-family: 'Montserrat', sans-serif;
    src: url(../fonts/Acumin-Variable-Concept.ttf);
}

html,body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

a:hover {
    color: #1a1e2c;
}

h1,h2,h3,h4,h5 {
    font-family: 'Montserrat', sans-serif;
}

p {
    font-family: 'Montserrat', sans-serif;
    color: #404040;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.gradient {
    background-image: linear-gradient(120deg, #c630ac 0%, #0fbce6 100%) !important;
    color: #ffffff !important;
}
.testi-bg .theme-btn{background: #000}
.theme-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 10px 20px;
    background-color: #1b9898;
    color: #ffffff;
    text-transform: capitalize;
    position: relative;
    border-radius: 50px;
    border: none;
    transition: all .2s linear;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.theme-btn2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 10px 20px;
    background-color: #1b9898;
    color: #ffffff;
    text-transform: capitalize;
    position: relative;
    border-radius: 50px;
    border: none;
    transition: all .2s linear;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.theme-btn:hover {
    background: #ffffff;
    color: #232732;
}

.theme-btn2:hover {
    background: #1b9898;
    color: #ffffff;
}

.theme-btn_dark {
    background-color: #1b9898;
    color: #fff;
}

.theme-btn .fa-angle-right {
    background-color: #ffffff;
    padding: 7px 10px;
    border-radius: 50px;
    color: #1b9898;
    position: relative;
    right: -15px;
}

.theme-btn:hover .fa-angle-right {
    background-color: #1b9898;
    color: #ffffff;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 0px 20px;
    transition: 0.5s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: all 0.5s ease;
}

.navbar__menu {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-contact-details {
    color: #ffff;
    font-size: 16px;
    margin-right: 20px;
}

.navbar-contact-details span {
    font-size: 14px;
}

@media screen and (max-width: 1024px) {
    header {
        position: fixed;
        width: 100%;
        top: 0;
        right: 0;
        z-index: 1000;
        background-color: #ffffff;
        padding: unset;
    }

    .navbar__menu {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 280px;
        min-height: calc(100vh - 78px);
        background-color: #ffff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 2rem;
        padding: 2rem 1rem;
        transition: all 0.5s ease;
    }

    .navbar__menu.right-open {
        right: 0;
    }
}

.navbar__list {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
    gap: 25px;
}

@media screen and (max-width: 1024px) {
    .navbar__list {
        flex-direction: column;
        flex-grow: 0;
    }
}

.navbar__list li a {
    display: flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.5s ease;
    color: #ffff;
    text-transform: capitalize;
    font-size: 16px;
}

.navbar__list li a:hover {
    color: #ffff;
}

.navbar__list li .arrow {
    transition: 0.3s ease;
}

.navbar__list li .arrow.up {
    transform: rotate(180deg);
}

.navbar__list-drop {
    display: inline-block;
    position: relative;
}

.navbar__list li a img {
    padding-left: 15px;
}

.navbar__list-drop-menu {
    display: none;
    position: absolute;
    margin-top: 1rem;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--theme-light-color);
    border-radius: 1rem;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.122);
    z-index: 999;
}

@media screen and (max-width: 1024px) {
    .navbar__list-drop-menu {
        position: inherit;
        background-color: transparent;
        box-shadow: none;
        padding: 0.5rem 1rem;
    }

    .navbar {
        padding: 10px 10px 10px;
        transition: all 0.5s ease;
    }
}

.navbar__list-drop-menu.open {
    display: flex;
}

.navbar__list-drop-menu.features {
    right: 0;
}

.navbar__list-drop-menu.company {
    left: 0;
    width: max-content;
}

.navbar__buttons {
    align-items: center;
    gap: 1.5rem;
    margin-left: 50px;
}

@media screen and (max-width: 1024px) {
    .navbar__buttons {
        width: 100%;
        flex-direction: column;
    }
}

.navbar__buttons a {
    font-weight: 500;
    transition: 0.3s ease;
}

.navbar .menu {
    display: none;
    float: left;
    transition: all 275ms ease;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .navbar .menu {
        display: block;
    }
}

.navbar .menu span {
    display: block;
    width: 22px;
    height: 4px;
    background: #000;
    margin-bottom: 2px;
    border-radius: 1px;
    transition: all 275ms ease;
}

.navbar .menu.active {
    transform: rotate(-45deg);
}

.ser_Provide-image img {
    margin: auto;
    width: 100px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(358%) hue-rotate(131deg) brightness(97%) contrast(95%);
}

.ser_Provide-details img {
    margin: auto!important;
    padding-bottom: 16px;
}

.ser_Provide-details {
    height: auto;
}

.navbar .menu.active .bar1 {
    transform: rotate(0deg) translateY(6px);
}

.navbar .menu.active .bar2 {
    opacity: 0;
}

.navbar .menu.active .bar3 {
    transform: rotate(-90deg) translateX(5px);
}

.home_Banner {
    width: 100% !important;
    height: 790px !important;
    position: relative;
}

.home_Banner img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99
}

.mainSlide_bg {
    background-size: cover;
    width: 100%;
    height: 790px;
    background-position: 100% 40%;
    position: relative;
}

.mainSlide_img1 {
    background-image: url('../images/slide-img1.png');
}

.mainSlide_img2 {
    background-image: url('../images/slide-img2.png');
}

.mainSlide_img3 {
    background-image: url('../images/slide-img3.png');
}

.mainSlide_img4 {
    background-image: url('../images/slide-img4.jpg');
}

.slick-dots {
    position: absolute;
    bottom: unset;
    top: 400px !important;
    right: 5% !important;
    display: block;
    width: unset !important;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 1000;
}

.slick-dots li {
    position: relative;
    display: block !important;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slide-dot {
    width: 20px !important;
    height: 87px !important;
    right: 5% !important;
    top: 200px !important;
    left: unset !important;
}

.home_Banner .overlay {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999
}

.home_Banner-content {
    position: relative;
    padding-top: 280px;
    display: flex;
}

.innerBanner .home_Banner-content {
    /* padding-top: 200px !important; */
}

.logo-tag {
    position: absolute;
    width: 400px !important;
    height: 209px !important;
    top: 225px !important;
    left: 255px !important;
    display: none;
}

.home_Banner-content .content {
    position: relative;
    left: 0;
}

.home_Banner-content .content:before {
    content: "";
    position: absolute;
    border-left: 5px solid #1b9898;
    border-radius: 20px;
    height: 100px;
    left: -20px;
    top: 15px;
}

.active-logo {
    display: none;
}

.digiSer_content {
    padding: 30px 0;
}

.digiSer_content-p {
    text-align: center;
    font-size: 16px;
}

.digiSer_content h4 {
    font-weight: 600;
    color: #2e2e2e;
}

.digiSer_content h5 {
    color: #2e2e2e;
}

.footer-logo {
    padding-bottom: 10px;
}

.home_Banner-content h1 {
    font-size: 45px;
    font-weight: 900;
    color: #1b9898;
    margin-bottom: 10px;
}

.home_Banner-content span {
    font-weight: 500;
    color: #fff;
}

.home_Banner-content p {
    font-size: 16px;
    width: 80%;
    color: #ffffff;
}

.home_Banner-content .button {
    padding-top: 10px;
}

.innerBanner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.aboutBn-bg {
    background-image: url('../images/aboutBn-bg.png');
}

.chooseBn-bg {
    background-image: url('../images/chooseBn-bg.png');
}

.contactBn-bg {
    background-image: url('../images/contactBn-bg.png');
}

.itBn-bg {
    background-image: url('../images/itBn-bg.jpg');
}

.digiBn-bg {
    background-image: url('../images/2cb9e41b-6a99-5d52-8a11-b7aec805bb28.jpg');
}

.vrBn-bg {
    background-image: url('../images/vrBn-bg.jpg');
}

.innerBanner .scroll_Down {
    background-color: #1b9898;
    width: 70px;
    height: 70px;
    display: none;
}

.innerBanner .slide-dot {
    display: none !important;
}

.scroll_Down {
    background-color: #1b9898;
    display: flex;
    /* width: 70px;    height: 70px; */
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: absolute;
    bottom: 0px;
    left: 15%;
    box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    z-index: 999;
}

.scroll_Down img {
    width: 30px;
    height: 50px;
    position: relative;
}

@keyframes bounce {
    50% {
        transform: translateY(-15px);
    }
}

.social-media_Scr {
    position: absolute;
    background: #1b9898;
    width: 50px;
    height: 195px;
    left: 0;
    border-radius: 50px;
    display: none;
    justify-content: center;
    align-items: center;
/*    display: none;*/
}

.social-medialineicons li a {
    transition: 0.3s;
    margin: 10px 0;
    font-size: 20px;
    list-style: none;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 60%;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.social-medialineicons li a:hover {
    background: #fff;
    color: #1b9898;
}

.social-medialineicons li a {
    color: #ffffff;
}
.home-banner-slider .slick-next::before {
    content: "\f101" !important;
    font-family: FontAwesome;
    font-size: 25px;
    box-shadow: unset !important;
    border-radius: 50px;
    background-color: transparent !important;
    color: #fff;
    padding: 22px 22px 20px 23px;
    opacity: 1;
    justify-content: center;
    display: none !important;
}


.home-banner-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 90% !important;
    display: none !important;
    left: 15% !important;
    border-radius: 50px !important;
    padding: 0;
    background-color: #1b9898 !important;
    display: flex;
    width: 70px !important;
    height: 70px !important;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 999;
}

.modal-header {
    background-color: #1b9898;
}

.modal-title h5 {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
}

.modal-title h5 span {
    font-weight: 500;
}

.modal-header .btn-close {
    background-color: #ffffff;
    border: 3px solid #1a1e2a;
    opacity: 1;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
    -moz-box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
    -webkit-box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
    -o-box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
}

.modal-body .ser_Contact-form {
    padding: 20px !important;
    margin-bottom: 20px !important;
}

.modal-body .button {
    padding-top: 20px;
}

.modal-body .theme-btn {
    width: 100%;
    display: block;
    text-align: center;
}

.ser_Contact-form .theme-btn:hover {
    background-color: #232732;
    color: #ffffff;
}

.abHover:hover {
    background-color: #232732;
    color: #ffffff;
}

.sec_Content {
    padding: 50px 0 0;
}

.content-about_Com {
    position: relative;
}

.content-about_Com .image_ab {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0 ;
}

.content-about_Com .details {
    margin-top: 0px;
}

.content-about_Com .details h4 {
    margin-bottom: 30px !important;
}

.content-about_Com .details h2 {
    font-size: 40px;
    font-weight: 900;
    color: #2e2e2e;
    margin-bottom: 20px;
}

.compant-tag {
    position: relative;
    margin-bottom: 70px !important;
}

.compant-tag_Dark {
    position: relative;
    text-align: center;
    margin-bottom: 20px !important;
}

.compant-tag_Dark-p {
    padding-bottom: 50px;
    width: 60%;
    margin: auto;
}

.dlogo {
    position: relative;
    margin-top: -45px;
    width: 100px;
    display: none;
}

.compant-tag_Light {
    position: relative;
    text-align: center;
    margin-bottom: 20px !important;
}

.compant-tag_Light-p {
    padding-bottom: 25px;
}

.details_Light {
    margin-top: 0 !important;
}

.content-about_Com .details h2 span {
    font-weight: 500;
}

.content-about_Com .details h2 p {
    font-size: 16px;
    color: #656565;
}

.content-about_Com .button {
    padding: 20px 0;
}

.service-bg {
    background-image: url(../images/service-bg.png);
    background-repeat: no-repeat;
    width: 100%;
    padding: 70px 0;
    background-size: cover;
}

.sec_ContentDark h2 {
    color: #ffffff !important;
}

.sec_ContentDark p {
    color: #ffffff !important;
}

.ser_Provide-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 20px;
    width: 95%;
    margin: auto;
    height: 100%;
}

.ser_Provide {
    padding: 20px 0;
}

.ser_Provide-card .ser_Provide-details h2 {
    font-size: 25px;
    font-weight: 500;
    color: #2e2e2e !important;
    margin-top: 30px;
}

.ser_Provide-card .ser_Provide-details p {
    font-size: 16px;
    color: #212529 !important;
    height: 95px;
}

.read-more {
    color: #1b9898;
    font-weight: 500;
}

.read-more .fa-angle-right {
    background: #1b9898;
    color: #ffffff;
    border-radius: 50px;
    width: 20px;
    font-size: 16px;
    line-height: 20px;
    height: 20px;
}

.ser_ChooseUS {
    padding: 40px 0;
}

.ser_ChooseUS .image {
    display: flex;
    justify-content: center;
}

.ser_ChooseUS .image img {
    width: 120px;
    height: 120px;
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(358%) hue-rotate(131deg) brightness(97%) contrast(95%);
}

.ser_ChooseUS .details {
    text-align: center;
    padding: 20px 0;
    margin-top: 0 !important;
}

.ser_ChooseUS .details h4 {
    font-size: 25px;
    font-weight: 500;
    color: #2e2e2e;
    margin-bottom: 10px !important;
}

.ser_ChooseUS .details p {
    font-size: 16px;
    color: #2e2e2e;
    margin: 0;
}

.testi-bg {
    background: #1b9898;
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    padding-top: 90px;
}

.ser_testi-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    text-align: left;
    margin: 20px;
    position: relative;
}

.ser_testi-card::before {
    content: "";
    left: -52px;
    position: absolute;
    border-radius: 5px;
    bottom: -40px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    z-index: 0;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 40px solid #fff;
    margin: 2rem;
}

.ser_testi-card .ser_testi-details h4 {
    font-size: 20px;
    font-weight: 500;
    color: #2e2e2e !important;
    margin: 20px 0;
}

.ser_testi-card .ser_testi-details p {
    font-size: 16px;
    color: #212529 !important;
}

.testi_User {
    display: flex;
    position: relative;
    margin-left: 20px;
}

.user_Image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    width: 60px;
}

.user_Details {
    margin-left: 20px;
}

.user_Details h5 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff !important;
    margin-top: 20px;
    padding-left: 3px;
    border-left: 2px solid #1b9898;
}

.user_Details p {
    font-size: 14px;
    color: #ffffff !important;
}

.stesti_Rating i {
    color: #ffba00;
}

.ser_Contact-detals-bg {
    position: relative;
    display: flex;
    justify-content: center;
}

.circle {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
    -moz-box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
    -webkit-box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
    -o-box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
    border-radius: 50%;
    position: absolute;
    bottom: 210px;
    left: 0;
    right: 509px;
    overflow: hidden;
    margin: auto;
    /* animation: circle 6s linear infinite; */
}

.circle2 {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
    -moz-box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
    -webkit-box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
    -o-box-shadow: 0 0 10px rgba(66, 66, 66, 0.6);
    border-radius: 50%;
    position: absolute;
    bottom: 10px;
    right: -60px;
    left: -20px;
    overflow: hidden;
    margin: auto;
    animation: circle2 6s linear infinite;
}

@keyframes circle {
    0% {
        transform: rotate(0deg) rotate(0deg);
    }

    50% {
        transform: rotate(40deg) translate(-300px) rotate(0deg);
    }
}

@keyframes circle2 {
     0% {
        transform: rotate(0deg) translate(0px) rotate(0deg);
    }
 100% {
        transform: rotate(-40deg) translate(300px) rotate(0deg);
    }

    
}

.ser_Contact-detals-ab {
    position: absolute;
    top: 250px;
    margin-left: 5px;
}

.ser_Contact-detals {
    background-color: #1b9898;
    border-radius: 100%;
    width: 450px;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Contact-detals {
    text-align: center;
    width: 70%;
    margin: auto;
}

.Contact-detals img {
    width: 150px;
    filter: brightness(0) invert(1);
}

.Contact-detals h3 {
    font-size: 25px;
    font-weight: bold;
    color: #ffffff !important;
    margin-top: 30px;
}

.Contact-detals h3 span {
    font-weight: 500;
}

.Contact-detals-p {
    font-size: 14px;
    color: #ffffff;
}

.Contact-detals p {
    font-family: 16px;
    color: #ffffff;
}

.Contact-detals p a {
    color: #ffffff;
}

.Contact-detals p .fa-icon {
    margin-right: 10px;
}

.ser_Contact {
    /* padding: 50px; */
}

.ser_Contact-form {
    padding: 50px;
    margin-bottom: 50px;
}

.input-field {
    display: flex;
    flex-direction: column;
    margin: 4px 0;
}

.input-field label {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    font-family: 'Montserrat', sans-serif;
}

.input-field input,select {
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #747474;
    border-radius: 25px;
    border: 1px solid #212121;
    padding: 0 15px;
    height: 42px;
    margin: 8px 0;
}

.input-field input :focus,.input-field select:focus {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.13);
}

.choose-bg {
    background-image: url(../images/choose-bg.png);
    background-size: cover;
}

.timeLine_centerImg {
    display: flex;
    justify-content: center;
    padding-top: 300px;
}

.timeLine_centerImg img {
    width: 250px;
}

.timeLineF {
    width: 100%;
    display: flex;
    justify-content: center;
}

.timeLine {
    position: relative;
}

.timeLine .image {
    background-color: #ffff;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 5px solid #3a3d47;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    position: relative;
    left: 50%;
    transform: translate(-50%, -0);
}

.timeLine .image img {
    width: 40px;
    height: 40px;
}

.timeLine .content {
    text-align: center;
}

.timeLine .content h4 {
    font-size: 25px;
    font-weight: 900;
    color: #ffffff;
}

.timeLine .content p {
    font-size: 14px;
}

.time-ab {
    position: relative;
}

.time-ab::after {
    content: url(../images/time-ab2.png);
    position: absolute;
    top: 30px;
    left: -160px;
}

.time-ab::before {
    content: url(../images/time-ab3.png);
    position: absolute;
    top: 15px;
    right: -200px;
}

.bus_formContent {
    text-align: center;
    margin: 100px 0;
}

.innerPage {
    margin-top: 0 !important;
}

.bus_formContent h2 {
    font-size: 40px;
    font-weight: 900;
    color: #2e2e2e;
}

.bus_formContent h2 span {
    font-weight: 500;
}

.bus_form {
    position: relative;
}

.search-box {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1b9898;
    height: 60px;
    border-radius: 40px;
    padding: 10px 18px;
}

.search-box .icon {
    color: #000000;
    float: right;
    width: 40px;
    font-size: 1rem;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.search-box input {
    border: none;
    outline: none;
    padding: 0 10px;
    width: 500px;
    background: none;
    font-size: 1.1rem;
    transition: 0.5s ease;
    line-height: 40px;
    color: #fff;
}

.search-box input::placeholder {
    color: #ffffff;
    opacity: 1;
}

.footer_form .search-box input::placeholder {
    color: #2e2e2e;
    opacity: 1;
}

.footer_form {
    position: relative;
}

.footer_form .search-box {
    position: absolute;
    top: 50px;
    left: 0;
    transform: unset;
    background-color: #ffffff;
    height: 50px;
    border-radius: 40px;
    padding: 10px 18px;
}

.footer_form .search-box .icon {
    color: #ffffff;
    float: right;
    margin-top: -35px;
    margin-right: -10px;
    width: 40px;
    font-size: 1rem;
    height: 40px;
    border-radius: 50%;
    background-color: #1b9898;
    display: flex;
    border: none;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    cursor: pointer;
    text-decoration: none;
}

.footer_form .search-box input {
    border: none;
    outline: none;
    padding: 0 10px;
    width: 100%;
    background: none;
    font-size: 1.1rem;
    transition: 0.5s ease;
    line-height: 30px;
    color: #2e2e2e;
}

.timeLine-mb {
    display: none;
}

footer {
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding-top: 30px;
    border-bottom: 1px solid rgb(149, 149, 149);
}

.footer-content {
    padding: 50px 0;
}

.footer-content p {
    color: #ffffff;
    font-size: 16px;
    width: 90%;
}

.footer-contact-details {
    padding: 20px 0;
}

.footer-contact-details a {
    color: #ffffff;
    font-size: 18px;
    display: block;
    padding: 10px 0;
}

.footer-contact-details a span i {
    font-size: 22px;
    margin-right: 10px;
}

.before {
    position: relative;
}

.footer-links .before::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    bottom: -10px;
    left: 0;
    background: linear-gradient(to right, #1b9898 50%, white 50%);
}

.footer-links h2 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
}

.footer-links ul {
    padding: 15px 0;
}

.footer-links ul li {
    padding: 5px 0;
}

.footer-links ul li a {
    color: #ffffff;
    font-size: 16px;
}

.footer-links .fa-angle-right {
    margin-right: 10px;
    color: #ffffff;
}

section.bottombar {
    background: #1a1e2c;
    padding-top: 20px;
}

.bottombar p {
    color: #fff;
}

/* .copy-write {    background-image: linear-gradient(10deg, #dd00b5 0%, #e49b31 100%) !important;    padding: 20px 0;} */
@media screen and (min-width: 1600px) {
    .content-about_Com .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667% !important;
    }

    .resp_Content .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333% !important;
    }
}

@media screen and (min-width: 1400px) {
    .content-about_Com .col-md-8 {
        flex: 0 0 auto;
        width: 50%;
    }

    .resp_Content .col-md-4 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media screen and (min-width: 1200px) {
    .content-about_Com .col-md-8 {
        flex: 0 0 auto;
        width: 50%;
    }

    .resp_Content .col-md-4 {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media screen and (max-width: 1199px){
    .navbar__list li a{font-size: 13px}
    .ser_Provide-card .ser_Provide-details p{
        height: 105px;
    }
}
@media only screen and (min-width: 1030px) and (max-width: 1366px) {
    .content-about_Com .image_ab {
        top: 0px !important;
    }

    .content-about_Com .image_ab img {
        width: 500px;
    }

    .innerBanner .scroll_Down img {
        width: 30px;
        height: 30px;
        position: relative;
    }

    .innerBanner .scroll_Down {
        background-color: #1b9898;
        display: flex;
        width: 50px;
        height: 50px;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        position: absolute;
        bottom: 9px;
        box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
        cursor: pointer;
        z-index: 999;
        display: none;
    }

    .content-about_Com .details {
        margin-top: 100px;
    }

    .scroll_Down img {
        width: 30px;
        height: 30px;
        position: relative;
    }

    .home-banner-slider .slick-next {
        font-size: 0;
        line-height: 0;
        position: absolute;
        top: 95% !important;
        display: block;
        left: 15% !important;
        border-radius: 50px !important;
        padding: 0;
        background-color: #1b9898 !important;
/*        display: flex;*/
        width: 50px !important;
        height: 50px !important;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        cursor: pointer;
        color: transparent;
        border: none;
        outline: none;
        background: transparent;
        background-color: transparent;
        z-index: 1000;
        display: none !important;
    }

    .home_Banner {
        height: 700px !important;
    }

    .home_Banner-content {
        padding-top: 230px;
    }

    .logo-tag {
        position: absolute;
        width: 350px !important;
        height: 190px !important;
        top: 175px !important;
        left: 220px !important;
    }

    .mainSlide_bg {
        height: 700px !important;
        background-position: 100% 30%;
    }

    .home_Banner-content h1 {
        font-size: 38px;
    }

    .content-about_Com .details h2 {
        font-size: 38px;
    }

    .testi-bg {
        padding-top: 80px;
    }
}

@media screen and (max-width: 769px) {
    
    li.has-dropdown:hover ul.submenu{position:relative;}
    p {
        font-size: 14px;
    }

    .navbar__list li a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 500;
        transition: all 0.5s ease;
        color: #0f0f0f !important;
        text-transform: uppercase;
        font-family: 'AlongSanss2';
    }

    .content-about_Com .image_ab {
        display: none;
    }

    .content-about_Com .details h2 {
        font-size: 20px;
    }

    .ser_ChooseUS .details h4 {
        font-size: 20px;
    }

    .content-about_Com {
        position: relative;
        padding: 0px 0;
    }

    .ser_Provide-card .ser_Provide-details h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    .home_Banner-content h1 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .social-media_Scr {
        display: none;
    }

    .home_Banner-content {
        padding-top: 130px;
    }

    .home_Banner {
        height: 600px;
    }

    .service-bg {
        background-image: unset;
        background-color: #191d29;
        padding-top: 0 !important;
        padding: 30px 0;
    }

    .testi-bg {
        background-image: unset;
        background-color: #191d29;
        width: 100%;
        padding: 20px 0;
        background-size: cover;
    }

    .ser_Contact {
        padding: 0;
    }

    .ser_Contact-detals {
        background-color: #1a1e2a;
        border-radius: 0;
        width: 450px;
        height: 450px;
        position: relative;
        z-index: unset;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ser_Contact-detals-ab {
        position: absolute;
        top: 310px;
        width: 320px;
    }

    .ser_Contact-form {
        padding: 30px 10px;
        margin-bottom: 0;
    }

    footer {
        background-image: unset;
        background-color: #191d29;
        padding-top: 0px;
    }

    .timeLine_centerImg {
        display: none;
    }

    .time-ab {
        display: none;
    }

    .timeLine-mb {
        display: block;
    }

    .innerBanner {
        height: 600px !important;
    }

    .innerBanner .scroll_Down {
        width: 50px;
        height: 50px;
        bottom: 10px;
        left: 10%;
        animation: unset;
    }

    .scroll_Down {
        width: 50px;
        height: 50px;
        bottom: -8px;
        left: 10%;
        animation: unset;
    }

    .scroll_Down img {
        width: 20px;
        height: 30px;
        position: relative;
    }

    .bus_formContent {
        text-align: center;
        margin: 50px 0;
    }

    .bus_formContent h2 {
        font-size: 20px;
    }

    .search-box {
        position: unset;
        padding-top: 30px;
        left: unset;
        transform: unset;
        background-color: #1b9898;
        height: 50px;
        width: 90%;
        margin: auto;
        border-radius: 40px;
        padding: 6px 18px;
    }

    .search-box input {
        width: 80%;
    }

    .footer_form .search-box {
        position: unset;
        transform: unset;
        background-color: #ffffff;
        height: 50px;
        border-radius: 40px;
        padding: 10px 18px;
        margin-top: 50px;
    }

    .content-about_Com .details {
        margin-top: 50px;
    }
}
















.ser-client-logowrp{padding: 70px 0}
.ser-client-logowrp .mainlogowrp ul {
    margin: 0;
    display: block;
    text-align: center
}

.ser-client-logowrp .mainlogowrp ul li {
    display: inline-block;
    margin: 0 53px 10px
}

.ser-client-logowrp .mainlogowrp ul li img {
    filter: invert(1);
    height: 73px
}

.ser-client-logowrp .maincountr {
    display: block;
    text-align: center;
    padding: 60px 0 0
}

.ser-client-logowrp .maincountr ul {
    margin: 0;
    font-size: 0
}

.ser-client-logowrp .maincountr ul li {
    border: 1px solid #e0e0e0;
    padding: 72px 10px;
    display: inline-block;
    text-align: center;
    width: 24%;
    background: #fff
}

.bottmform form .labelwrp input,.bottmform form .labelwrp select,.bottmform form .labelwrp textarea {
    width: 100%;
    font-family: Cairo,sans-serif!important;
    background: #ffffff26;
    color: #777
}

.ser-client-logowrp .maincountr ul li h4 {
    color: #22204f;
    font-size: 42px
}

.ser-client-logowrp .maincountr ul li p {
    color: #3c3863;
    font-size: 13px;
    padding: 0
}

.ser-client-logowrp .maincountr ul li.border-right {
    border-radius: 20px 0 0 20px;
    border-right: unset!important
}

.ser-client-logowrp .maincountr ul li.border-left {
    border-radius: 0 20px 20px 0;
    border-left: unset!important
}

.ser-client-logowrp h2 {
    font-size: 36px
}






















.expertise-text p{text-align: center;}

.feature-box.custom-feature-box {
    margin-bottom: 19.2px;
    margin-bottom: 1.2rem;
}

.feature-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.feature-box.custom-feature-box .feature-box-icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    background: 0 0;
    width: 100px;
    position: relative;
    height: 100px;
    border: 6px solid #fff;
    border-radius: 100%;
    padding: 5px;
    margin-top: 0;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: ease box-shadow .3s;
    transition: ease box-shadow .3s;
}

.feature-box.feature-box-style-2 .feature-box-icon {
    background: 0 0;
    top: -3px;
}

.feature-box .feature-box-icon {
    background-color: #4dbb6d;
}

.feature-box .feature-box-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    background: rgba(0, 0, 0, .06);
    border-radius: 100%;
    color: #fff;
    font-size: 16px;
    font-size: 1rem;
    position: relative;
    top: 7px;
    text-align: center;
    padding: .8em;
    height: 1px;
    width: 2.7em;
    height: 2.7em;
}

.feature-box.custom-feature-box .feature-box-icon img {
    position: absolute;
    width: 113%;
    top: 50%;
    left: 50%;
    z-index: 0;
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
    transform: translate3d(-50%, -50%, 0) scale(1);
    -webkit-transition: ease transform .3s;
    transition: ease transform .3s;
}

.feature-box .feature-box-info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-left: 15px;
}

.feature-box.feature-box-style-2 h4 {
    color: #212529;
    margin-bottom: 10px;
}

.font-weight-bold,
b,
strong {
    font-weight: 700 !important;
    text-align: center;
}

.text-5 {
    font-size: 1.5em !important;
}

.text-2 {
    font-size: 12px !important;
    margin-bottom: 25px;
}

.feature-box.custom-feature-box.custom-feature-box-active .feature-box-icon img,
.feature-box.custom-feature-box:hover .feature-box-icon img {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.1);
    transform: translate3d(-50%, -50%, 0) scale(1.1);
}








.imgwrp img{width: 100%;border-radius: 10px;}

.digitalwrp{
    padding: 70px 0;
}
.digitalwrp .txtwrp{}
.digitalwrp .txtwrp h2{
    font-size: 40px;
}
.digitalwrp .txtwrp p{
    color: #000;
    font-size: 16px;
}
.digitalwrp .imgwrp{}
.digitalwrp .imgwrp img{
    width: 100%;
}





.process-sec {
    padding: 55px 0 80px;
}

.process-hd h2 {
    text-align: center;
    margin-bottom: 60px;
}

.process-wrapper {
    display: flex;
    align-items: flex-start;
    height: 100%;
    padding-bottom: 30px;
}

.process-content p {
    font-size: 18px;
    color: #999;
    line-height: 24px;
    flex: 0 0 157px;
}

.process-no {
    border-right: 1px solid #eff0f1;
    padding-right: 0;
    margin-right: 15px;
    flex: 0 0 18%;
}

.process-no h5 {
    font-size: 14px;
    color: #666;
}

.process-no h2 {
    font-size: 42px;
    margin-bottom: 0;
    line-height: 42px;
}

.process-wrapper h3 {
/*    font-family: "PT Sans",sans-serif;*/
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 8px;
}
.StepNo{
    font-size: 42px;
    margin-bottom: 0;
    line-height: 42px;
/*    font-family: 'Helium-Medium' !important;*/
    font-weight: 800;
    text-transform: capitalize;
    background-color: #1b9898;
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.Heading_new{
/*    font-family: 'Helium-Medium' !important;*/
    font-size: 24px !important;
    color: #333 !important;
    line-height: 1.2 !important;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 8px;
}
.ip-process-title-h4 {
    /* font-family: "Antic Slab",serif; */
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    font-size: 36px;
    /*background-image: -moz-linear-gradient(90deg,rgba(21,72,144,.99608) 0,#1d6bda 100%);
    background-image: -webkit-linear-gradient(90deg,rgba(21,72,144,.99608) 0,#1d6bda 100%);
    background-image: -ms-linear-gradient(90deg,rgba(21,72,144,.99608) 0,#1d6bda 100%);*/
    background-color: #1b9898;
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 60px;
}











li.has-dropdown{position: relative;}
li.has-dropdown ul.submenu {
    width: 280px;
    position: absolute;
    background: #fff;
    left: 0;
    top: 25px;
    text-align: right;
    padding: 0;
    display: none;
}
li.has-dropdown ul.submenu li {
    margin: 0;
    border-bottom: 1px solid;
    display: block;
    padding: 10px 15px;
    text-align: left;
}
li.has-dropdown ul.submenu li a {
    color: #000;
    font-size: 14px;
    padding: 0;
}
li.has-dropdown:hover ul.submenu {
    display: block;
    border: 1px solid;
}










.main-testimonials-sec{padding: 60px 0 60px 0;background-repeat: no-repeat;background-size: cover;background: #fff;position: relative;z-index: 1;}
.testi_box {padding: 30px 30px 0 30px;transition: all 700ms;margin: 40px 20px 45px 20px;background: #fff;border-radius: 20px;height: 380px;box-shadow: 10px 0px 11px 5px #1b989824}
.testi_box:hover{background-color: #fff;border-radius: 5px;-webkit-box-shadow: 0px 11px 15px #16232136;-ms-box-shadow: 0px 11px 15px #16232136;-o-box-shadow: 0px 11px 15px #16232136;box-shadow: 0px 11px 15px #16232136;transition: all 700ms;}
.testi-heading{text-align:center;}
.testi_box ul{margin-bottom: 30px;}
.testi_box ul li{display: inline-block;font-size: 16px; color: #ecc70e; margin: 0px 2px 0 2px; }
.testi_box>p{font-size: 18px;font-weight: 500;line-height: 1.5;padding: 0 0 30px 0;height: 215px;}
.main-img{font-size: 0;border-bottom: 2px solid #1b9898;padding-bottom: 30px;transition: all 700ms;display: flex;align-items: center;}
.testi_box:hover .main-img{border-bottom: transparent;transition: all 700ms;}
.testi-img{display: inline-block;width: 45px;vertical-align: top;height: 45px;background: #1b9898;border-radius: 50%;}
.testi-img span{font-size: 16px;color: #fff;text-align: center;width: 100%;display: inline-block;padding-top: 11px;font-weight: 600;}
.testi-img img{border-radius: 50%;}
.testi-cont{display: inline-block;width: 78%;vertical-align: top;padding-left: 20px;}
.testi-cont p{font-size: 16px;padding: 0px;color: #1b9898;font-weight: 500;margin: 0;}
.testi-cont p span{display: none;font-size: 14px;}
.slick-next:before {content: "\f105";font-family: FontAwesome;font-size: 50px;color: #c32118;}
.slick-prev:before {content: "\f104";font-family: FontAwesome;font-size: 50px;color: #c32118;}
.pckgslidersec .slick-prev, .pckgslidersec .slick-next {top: 50% !important;}
.main-testimonials-sec .tsti-lgos img{height: 55px;}
.main-testimonials-sec:after{content: "";background-image: url(../images/circle-shade.png);position: absolute;width: 100%;height: 100%;background-repeat: no-repeat;background-size: 40%;top: -300px;right: -1360px;z-index: -1;}
.main-testimonials-sec h4 {
    margin-bottom: 30px !important;
}







.portfoliowrp {
  padding: 70px 0;
  background: #7777770d;
}
.portfoliowrp .txtwrp {
  display: block;
  text-align: center;
}
.portfoliowrp .navwrp {
  display: block;
  text-align: center;
  padding: 0 0 50px;
}
.portfoliowrp .navwrp ul {
  margin: 0;
  display: block;
  text-align: center;
}
.portfoliowrp .navwrp ul li {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
  color: #1b9898;
  font-size: 15px;
  border-radius: 7px;
  font-weight: 500;
  border: 1px solid;
  cursor: pointer;
  transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
}
.portfoliowrp .navwrp ul li.current {
  background: #1b9898;
  color: #fff;
}
.portfoliowrp .port-box {
}
.portfoliowrp .port-box ul {
  margin: 0;
  display: block;
  text-align: center;
}
.portfoliowrp .port-box ul li {
  display: inline-block;
  width: 19%;
  transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important; /* box-shadow: -1px -2px 15px -3px rgb(0 0 0 / 16%); */
  border-radius: 20px;
  margin: 0 4px 5px;
}
.portfoliowrp .port-box ul li:hover {
  transform: scale(1.1);
}
.portfoliowrp .port-box ul li img {
  width: 100%; /* height: 350px; */
  object-fit: cover;
  border-radius: 15px;
}
.portfoliowrp .btnwrp {
  display: block;
  text-align: center;
  padding: 50px 0 0;
}
.tabs {
  display: none;
}
.tabs.current {
  display: block;
}
.portff-slider .slick-slide{margin:0 10px}