/* HEADER CSS */
/*----------------------------------------*/
/*  Main menu css
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-menu {
        margin-left: 50px;
    }
}

.main-menu > nav > ul > li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-right: 54px;
}

.main-menu > nav > ul > li > a {
    display: inline-block;
    font-size: 15px;
    color: #212529d6;
    /*padding: 17px 0;*/
    font-family: 'Poppins';
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 600;
}

.main-menu > nav > ul > li.has-dropdown > a {
    position: relative;
}

.main-menu > nav > ul > li .tp-submenu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 200px;
    background: #fff;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
    padding: 16px 5px;
}

.main-menu > nav > ul > li .tp-submenu li {
    display: block;
    width: 100%;
    margin: 0;
}

.main-menu > nav > ul > li .tp-submenu li.has-dropdown > a::after {
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}

.main-menu > nav > ul > li .tp-submenu li > a {
    padding: 4px 25px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    color: #3e3e47;
    display: block;
}

.main-menu > nav > ul > li .tp-submenu li > a::before {
    position: absolute;
    content: "";
    top: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #000;
    z-index: -1;
}

.main-menu > nav > ul > li .tp-submenu li .tp-submenu {
    left: 120%;
    top: 0;
    visibility: hidden;
    opacity: 0;
    font-size: 16px;
}

.main-menu > nav > ul > li .tp-submenu li:hover > a {
    color: #1ee84f;
}

.main-menu > nav > ul > li .tp-submenu li:hover > a::after {
    color: #fff;
}

.main-menu > nav > ul > li .tp-submenu li:hover > a::before {
    left: 0;
    right: auto;
    width: 100%;
}

.main-menu > nav > ul > li .tp-submenu li:hover > .tp-submenu {
    left: 100%;
    visibility: visible;
    opacity: 1;
}

.main-menu > nav > ul > li:hover > a {
    color: #17e948;
}

.main-menu > nav > ul > li:hover > .tp-submenu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.tp-main-menu-mobile .tp-submenu {
    display: none;
}

.tp-main-menu-mobile .header-icon {
    display: none;
}

.tp-main-menu-mobile ul {
    position: static;
    display: block;
    box-shadow: none;
}

.tp-main-menu-mobile ul li {
    list-style: none;
    position: relative;
    width: 100%;
    padding: 0;
}

.tp-main-menu-mobile ul li:not(:last-child) a {
    border-bottom: 1px solid rgba(6, 7, 40, 0.1);
}

.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn {
    position: absolute;
    right: 0;
    top: 10px;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    font-size: 18px;
    color: #fff;
    font-family: "Font Awesome 5 Pro";
    transition: all 0.3s ease-in-out;
    z-index: 1;
    width: 30px;
    height: 30px;
    line-height: 22px;
    text-align: center;
    border: 1px solid rgba(6, 7, 40, 0.1);
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn i {
    transition: all 0.3s ease-in-out;
    color: rgba(79, 77, 77, 0.8705882353);
}

.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn.dropdown-opened i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover {
    background-color: #1ee84f;
    border-color: #1ee84f;
    color: #fff;
}

.tp-main-menu-mobile ul li.has-dropdown > a .dropdown-toggle-btn:hover i {
    color: #fff;
}

.tp-main-menu-mobile ul li.has-dropdown > a.expanded {
    color: #1ee84f;
}

.tp-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened {
    background-color: #1ee84f;
    border-color: #1ee84f;
    color: #fff;
}

.tp-main-menu-mobile ul li.has-dropdown > a.expanded .dropdown-toggle-btn.dropdown-opened i {
    color: #fff;
}

.tp-main-menu-mobile ul li.has-dropdown:hover > a::after {
    color: #1ee84f;
}

.tp-main-menu-mobile ul li:last-child a span {
    border-bottom: 0;
}

    .tp-main-menu-mobile ul li > a {
        display: block;
        font-size: 16px;
        color: #3e3e47;
        position: relative;
        padding: 10px 0;
        padding-right: 20px;
        text-decoration: none;
    }

.tp-main-menu-mobile ul li > a svg {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.tp-main-menu-mobile ul li > a > i {
    display: inline-block;
    width: 11%;
    margin-right: 13px;
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
    font-size: 21px;
    line-height: 1;
}

.tp-main-menu-mobile ul li > a .menu-text {
    font-size: 16px;
    line-height: 11px;
    border-bottom: 1px solid #EAEBED;
    width: 82%;
    display: inline-block;
    padding: 19px 0 17px;
}

.tp-main-menu-mobile ul li img {
    width: 100%;
}

.tp-main-menu-mobile ul li ul {
    padding: 0;
}

.tp-main-menu-mobile ul li ul li {
    padding: 0;
}

.tp-main-menu-mobile ul li ul li a {
    margin-left: auto;
    width: 93%;
    padding: 8px 5%;
    text-shadow: none !important;
    visibility: visible;
    padding-left: 0;
    padding-right: 20px;
}

.tp-main-menu-mobile ul li ul li li a {
    width: 88%;
    padding: 10px 7%;
    padding-left: 0;
    padding-right: 20px;
}

.tp-main-menu-mobile ul li ul li li li a {
    width: 83%;
    padding: 10px 9%;
    padding-left: 0;
    padding-right: 20px;
}

.tp-main-menu-mobile ul li ul li li li li a {
    width: 68%;
    padding: 10px 11%;
    padding-left: 0;
    padding-right: 20px;
}

.tp-main-menu-mobile ul li:hover > a {
    color: #1ee84f;
}

.tp-main-menu-mobile ul li:hover > a::after {
    color: #1ee84f;
}

.tp-main-menu-mobile ul li:hover > a .dropdown-toggle-btn i {
    color: #1ee84f;
}

.tp-main-menu-mobile ul li:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.tp-main-menu-mobile ul li .mega-menu, .tp-main-menu-mobile ul li .submenu {
    position: static;
    min-width: 100%;
    padding: 0;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    display: none;
}

.tp-main-menu-mobile ul li .mega-menu li, .tp-main-menu-mobile ul li .submenu li {
    float: none;
    display: block;
    width: 100%;
    padding: 0;
}

.tp-main-menu-mobile ul li .mega-menu li:hover a .dropdown-toggle-btn, .tp-main-menu-mobile ul li .submenu li:hover a .dropdown-toggle-btn {
    color: #1ee84f;
}

.tp-main-menu-mobile .tp-main-menu-content ul li:not(:last-child) .home-menu-title a {
    border-bottom: none;
}

.tp-main-menu-mobile * ul, .tp-main-menu-mobile * li {
    transition: none !important;
}

/*----------------------------------------*/
/* Offcanvas
/*----------------------------------------*/

.offcanvas__btn {
    margin-bottom: 55px;
}

.offcanvas__social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: transparent;
    color: #3e3e47;
    margin-right: 5px;
    border: 1px solid #acacb5;
}

.offcanvas__social a:hover {
    background: #ca1f26;
    color: #fff;
    border-color: #ca1f26;
}

.offcanvas__contact-call {
    font-size: 23px;
    color: #232331;
    font-weight: 700;
    margin-bottom: 5px;
}

.offcanvas__contact-call:hover {
    color: #ca1f26;
}

.offcanvas__contact-mail {
    font-size: 16px;
    font-weight: 500;
    color: #271D3A;
}

.tpoffcanvas {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    right: -100%;
    width: 480px;
    bottom: 0;
    box-shadow: 0 16px -32px 0 rgba(0, 0, 0, 0.8);
    background: #fff none repeat scroll 0 0;
    z-index: 999999;
    padding: 50px;
    scrollbar-width: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.45s ease-in-out;
    overflow-y: scroll;
}

.tpoffcanvas h4 a:hover {
    color: #ca1f26;
}

.tpoffcanvas .homemenu {
    margin-bottom: 30px;
}

.tpoffcanvas .tp-main-menu-mobile {
    margin-bottom: 50px;
}

.tpoffcanvas.opened {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .tpoffcanvas {
        width: calc(100% - 35px);
        padding: 40px 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tpoffcanvas {
        width: 400px;
        padding: 40px;
    }
}

.tpoffcanvas.opened {
    right: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.6s;
    opacity: 1;
    visibility: visible;
}

.tpoffcanvas__title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.49);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .tpoffcanvas__title p {
        font-size: 17px;
    }
}

.tpoffcanvas__contact-title h5 {
    font-size: 14px;
    color: #888888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: inline-block;
}

.tpoffcanvas__input-title h4 {
    font-size: 14px;
    color: #888888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: inline-block;
}

.tpoffcanvas__input {
    margin-bottom: 100px;
}

.tpoffcanvas__input input {
    background: rgba(118, 118, 130, 0.3);
    border: transparent;
    height: 60px;
    width: 100%;
    padding-left: 20px;
    padding-right: 80px;
    color: #fff;
}

.tpoffcanvas__input button {
    height: 60px;
    width: 60px;
    background-color:  #ffbf42;
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 0;
    right: 0;
}

.tpoffcanvas__contact-info {
    margin-bottom: 50px;
}

.tpoffcanvas__contact-info ul li {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    list-style-type: none;
    flex: 0 0 auto;
    margin-top: 7px;
}

@media (max-width: 767px) {
    .tpoffcanvas__contact-info ul li {
        font-size: 14px;
    }
}

.tpoffcanvas__contact-info ul li:last-child {
    margin-bottom: 0;
}

.tpoffcanvas__contact-info ul li a {
    margin-left: 10px;
    transition: 0.3s;
    flex: 0 0 auto;
}

.tpoffcanvas__contact-info ul li a:hover {
    color: #ca1f26;
}

.tpoffcanvas__logo {
    margin-bottom: 60px;
}

.tpoffcanvas__logo a img {
    width: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tpoffcanvas__logo {
        padding-top: 0;
    }
}

@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
    .tpoffcanvas__logo {
        padding-top: 0;
    }
}

.tpoffcanvas__close-btn button {
    position: absolute;
    right: 47px;
    top: 56px;
    transition: 1s;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.3s;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: 2px solid #F0F1F4;
}

@media (max-width: 767px) {
    .tpoffcanvas__close-btn button {
        right: 28px;
        top: 44px;
    }
}

.tpoffcanvas__close-btn button:hover {
    background-color: #ca1f26;
    border-color: #ca1f26;
    color: #fff;
}

    .tpoffcanvas__close-btn button:hover i {
        transform: rotate(360deg);
    }

.tpoffcanvas__close-btn button i {
    font-weight: 300;
    font-size: 20px;
    transition: 0.9s;
}

.tpoffcanvas__social {
    margin-top: 30px;
}

    .tpoffcanvas__social .social-icon a {
        height: 55px;
        width: 55px;
        line-height: 58px;
        text-align: center;
        font-size: 16px;
        background-color: rgba(251, 251, 253, 0.08);
        color: #fff;
        margin-right: 15px;
        transition: 0.3s;
        display: inline-block;
        border-radius: 50%;
    }

@media (max-width: 767px) {
    .tpoffcanvas__social .social-icon a {
        margin-right: 3px;
        height: 50px;
        width: 50px;
        line-height: 53px;
        font-size: 15px;
    }
}

#Logo{
    width: 200px;
}

.tpoffcanvas__social .social-icon a:hover {
    background-color:  #ffbf42;
    color: #fff;
}

.tpheader .header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    transition: 0.4s ease;
    z-index: 9;
    background: #fff;
}


@-moz-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-ms-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-webkit-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

*,
.main-menu > nav > ul > li .tp-submenu, .tpheader-3__main-menu .main-menu ul li .sub-menu, .tpheader__main-menu .main-menu ul li .sub-menu, .back-to-top-wrapper, a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.back-to-top-btn {
    -webkit-transition: transform 0.3s 0s ease-out;
    -moz-transition: transform 0.3s 0s ease-out;
    -ms-transition: transform 0.3s 0s ease-out;
    -o-transition: transform 0.3s 0s ease-out;
    transition: transform 0.3s 0s ease-out;
}


/*----------------------------------------*/
/*  Preloader
/*----------------------------------------*/
#loading {
    background: radial-gradient(circle, rgba(29,229,85,1) 0%, rgba(11,37,246,1) 100%);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 150;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 200px;
    width: 200px;
    margin-top: -100px;
    margin-left: -100px;
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#object_four {
    left: 45px;
    top: 45px;
    width: 110px;
    height: 110px;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

/*----------------------------------------*/
/* Back to top
/*----------------------------------------*/
.back-to-top-wrapper {
    position: fixed;
    right: 50px;
    bottom: 0;
    height: 44px;
    width: 44px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 767px) {
    .back-to-top-wrapper {
        right: 20px;
        bottom: 20px;
    }
}

.back-to-top-wrapper.back-to-top-btn-show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

.back-to-top-btn {
    display: inline-block;
    width: 44px;
    height: 44px;
    text-align: center;
    background: #0e23f6;
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    color: #fff;
    border-radius: 50%;
    border: none;
    font-weight: 900;
}

.back-to-top-btn svg {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.back-to-top-btn:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}


.kinetic {
    position: relative;
    height: 80px;
    width: 80px;
}

    .kinetic::after, .kinetic::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 0;
        width: 0;
        border: 50px solid transparent;
        border-bottom-color: #fff;
        animation: rotateA 2s linear infinite 0.5s;
    }

    .kinetic::before {
        transform: rotate(90deg);
        animation: rotateB 2s linear infinite;
    }

@keyframes rotateA {
    0%,25% {
        transform: rotate(0deg);
    }

    50%,75% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateB {
    0%,25% {
        transform: rotate(90deg);
    }

    50%,75% {
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(450deg);
    }
}

.margn-bottom-zero{
    margin-bottom: 0px !important;
}
/*slider*/


    .slick-slide img {
        width: 100%;
    }

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.padding-zero{
    padding: 0px !important;
}

.active a{
    color: #1de555 !important;
}

.bg-track {
    background: #47464b;
    padding: 10px 20px 25px 20px;
}

.track-text {
    color: #e7d4a2;
    font-family: "Poppins", serif;
    font-weight: 800;
    font-size: 30px;
    text-align: center;
}
.cont-det {
    display: flex;
    align-items: baseline;
}

.track-icon i {
    font-size: 45px;
    color: #fff;
}

.text-dec h1 {
    font-size: 27px;
    padding-left: 15px;
    color: #fff;
    font-weight: 700;
    font-family: "Poppins";
}

.numer-con  {
    font-size: 20px;
}

.numer-con a {
    color: #e7d4a2;
    font-family: "Poppins";
}

.numer-con a:hover {
    text-decoration: none;
    color: #1de555;
}

.track-input {
    width: 100%;
    height: 40px;
    border: none;
    padding: 0px 20px;
    font-size: 17px;
    color: #000;
    font-weight: 600;
    font-family: "Poppins";
}

.track-btn {
    padding: 5px 30px;
    font-size: 21px;
    text-transform: uppercase;
    border: none;
    background: #21e652;
    color: #fff;
    font-weight: 600;
}

.tracking-text h1 {
    font-size: 23px;
    padding-left: 15px;
    color: #fff;
    font-weight: 700;
    font-family: "Poppins";
    margin-bottom: 18px;
}

.margin-top-20 {
    margin-top: 20px;
}

.abouts-section {
    padding: 40px;
}

.green-hr {
    width: 63%;
    height: 3px !important;
    border-width: 0;
    color: #21e652;
    background-color: #21e652;
    margin: auto;
}
.blue-hr {
    width: 63%;
    height: 3px !important;
    border-width: 0;
    color: #0b25f6;
    background-color: #0b25f6;
    margin: auto;
}

.text-center {
    text-align: center !important;
}

.about-head h1{
    font-size: 40px;
    font-weight: 600;
}

.about-description {
    font-size: 18px;
    margin: 20px 0px;
    text-align: justify;
    font-weight: 500;
    color: black;
    font-family: "poppins";
}

.cards {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: flex-start;
    /* flex-wrap: wrap; */
    /* justify-content: center; */
    gap: 1.5rem;
    width: 100%;
    /* max-width: 1000px; */
    /* margin: 10vh auto;*/
}

.card {
    border-radius: 16px;
    box-shadow: 0 30px 30px -25px rgba(65, 51, 183, .25);
    max-width: 300px;
}

.information {
    background-color: #fff;
    padding: 1.5rem;
}

.information .tag {
    display: inline-block;
    background-color: #c7f9d3;
    color: #0e23f6;
    font-weight: 600 !important;
    font-size: 15px;
    padding: 0.5em 0.75em;
    line-height: 1;
    border-radius: 6px;
    
}

.information .tag + * {
    margin-top: 1rem;
}

.information .title {
    font-size: 1.5rem;
    color: #141b22;
    line-height: 1.25;
}

.information .title + * {
    margin-top: 1rem;
}

.information .info {
    color: #000000;
    font-family: "poppins";
}

.information .info + * {
    margin-top: 1.25rem;
}

.button {
    font: inherit;
    line-height: 1;
    background-color: #fff;
    border: 2px solid #6558d3;
    color: #6558d3;
    padding: 0.5em 1em;
    border-radius: 6px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    font-size: 15px;
    text-transform: uppercase;
}

.button:hover, .button:focus {
    background-color: #1de555;
    color: #fff;
    border: 2px solid #1de555;
}

.information .details {
    display: flex;
    gap: 1rem;
}

.information .details div {
    padding: 0.75em 1em;
    background-color: #f1eeff;
    border-radius: 8px;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.125em;
    flex-basis: 50%;
}

.information .details dt {
    font-size: 0.875rem;
    color: #a69fd6;
}

.information .details dd {
    color: #6558d3;
    font-weight: 600;
    font-size: 1.25rem;
}

.btn-color {
    background-color: #0e23f6 ;
    border: 2px solid #0e23f6;
    color: #ffffff;
}

.btn-green {
    background-color: #1de555;
    color: #fff;
    border: 2px solid #1de555;
}
.btn-green:hover {
    background-color: #0e23f6;
    color: #fff;
    border: 2px solid #0e23f6;
}

.service-section {
    background-image: url(../images/slide-4.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0px;
}

.service-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right, #000000bf, #000000d1);
    opacity: 0.9;
}

.card-outer {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    margin: 40px 0px;
    cursor: pointer;
}

.card-icon i {
    font-size: 30px;
    color: #0e23f6;
}

.service-head h1{
    font-size: 25px;
    font-weight: 500;
    color: #21e754;
    font-family: "Roboto";
}

.card-outer p{
    font-size: 16px;
    font-family: 'Roboto';
}

.green-color {
    color: #1de555;
}

.blue-color {
    color: #0b25f6;
}

.card-outer:hover  h1{
    /*background: #0e23f6;*/
    color: #fff;
}
.card-outer:hover  p{
    color: #fff;
}
.card-outer:hover  i{
    color: #fff;
}
.card-outer:hover{
    background: #0e23f6;
}

.contact-area{
    padding: 40px;
}

.contact-area h1{
    font-size: 30px;
    font-weight: 600;
    font-family: 'Poppins';
}
.contact-area p {
    font-size: 18px;
    font-family: "Roboto";
    margin: 20px 0px;
}

.contact-area a {
    font-size: 20px;
    color: #0e23f6 !important;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.vertical-align-div-middle {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}

.res-map {
    overflow: hidden;
    padding-bottom: 21%;
    position: relative;
    height: 0;
}

.res-map iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}


footer {
    /*Remove "fixed, left, and bottom" if you want it to scroll naturally to the bottom*/
    position: relative;
    left: 0;
    bottom: 0;
    /*-------*/
    width: 100%;
    background-color: #272727;
    cursor: default;
}

.inside__footer {
    padding: 20px 0px 0px 20px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    color: #ffffff;
    font-size: 18px;
    order: 1;
    margin-bottom: 0;
    font-family: "Poppins";
}

.social {
    order: 2;
    margin-bottom: 0;
}

.icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-left: 20px;
    fill: darkgray;
    transition: fill 0.15s, filter 0.15s;
}

    .icon:first-child {
        margin-right: 0;
    }

.facebook:hover {
    fill: #3b5998;
}

.instagram:hover {
    fill: #dd2a7b;
}

.twitter:hover {
    fill: #1da1f2;
}

.icon:active {
    filter: brightness(70%);
}

#breadcrumb-area {
    background: url(../images/banner.jpg) no-repeat scroll center center / cover;
}

#tracking-breadcrumb-area {
    background: url(../images/banner-1.jpg) no-repeat scroll center center / cover;
}
#service-breadcrumb-area {
    background: url(../images/banner-3.jpg) no-repeat scroll center center / cover;
}
#network-breadcrumb-area {
    background: url(../images/banner-4.png) no-repeat scroll center center / cover;
}
#privacy-breadcrumb-area {
    background: url(../images/banner-6.jpg) no-repeat scroll center center / cover;
}
#terms-breadcrumb-area {
    background: url(../images/banner-7.jpg) no-repeat scroll center center / cover;
}

#document-breadcrumb-area {
    background: url(../images/banner-8.jpg) no-repeat scroll center center / cover;
}
#contact-breadcrumb-area {
    background: url(../images/banner-9.jpg) no-repeat scroll center center / cover;
}



    .overlay {
        background: rgba(0,0,0,0.5);
        padding-bottom: 100px;
        padding-top: 100px;
    }

.breadcrumb-title {
    float: left;
}

    .breadcrumb-title h1 {
        color: #ffffff;
        font-family: "Roboto",sans-serif;
        font-size: 36px;
        font-weight: 700;
        margin: 0px;
        text-transform: uppercase;
    }

.page-breadcrumb {
    float: right;
}

.page-breadcrumb i {
    color: #ffffff;
    font-size: 12px;
}

.page-breadcrumb i {
    color: #ffffff;
    font-size: 12px;
}

.page-breadcrumb span {
    color: #ffffff;
    font-family: "Roboto";
    font-size: 12px;
    font-weight: 600;
    padding-left: 3px;
    text-transform: uppercase;
}

.page-breadcrumb a {
    color: #ffffff;
    font-family: "Roboto";
    font-size: 12px;
    font-weight: 600;
    padding-right: 3px;
    text-transform: uppercase;
    text-decoration: none;
}

.page-breadcrumb a:hover {
    color: #01a3d2;
}


.about-section {
    position: relative;
    padding: 120px 0px;
}

.about-section .content-column {
    position: relative;
    margin-bottom: 40px;
}

.about-section .content-column .text {
    position: relative;
    color: #070708;
    font-size: 18px;
    /* line-height: 2em; */
    margin-bottom: 40px;
    font-family: "Poppins";
}

.about-section .content-column .email {
    position: relative;
    color: #252525;
    font-weight: 700;
    margin-bottom: 50px;
}

.about-section .image-column {
    position: relative;
    margin-bottom: 50px;
}

.about-section .image-column .inner-column {
    position: relative;
    padding: 40px 40px 0px 0px;
    margin-left: 50px;
}

    .about-section .image-column .inner-column:after {
        position: absolute;
        content: '';
        right: 0px;
        top: 0px;
        left: 40px;
        bottom: 100px;
        z-index: -1;
        border: 2px solid #0b25f6;
    }

.about-section .image-column .inner-column .image {
    position: relative;
}

.about-section .image-column .inner-column .image:before {
    position: absolute;
    content: '';
    left: -50px;
    bottom: -50px;
    width: 299px;
    height: 299px;
    background: url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img {
    position: relative;
    width: 100%;
    display: block;
}

.about-section .image-column .inner-column .image .overlay-box {
    position: absolute;
    left: 40px;
    bottom: 48px;
}

    .about-section .image-column .inner-column .image .overlay-box .year-box {
        position: relative;
        color: #0e23f6;
        font-size: 24px;
        font-weight: 700;
        line-height: 1.4em;
        padding-left: 125px;
        font-family: "Poppins"
    }

        .about-section .image-column .inner-column .image .overlay-box .year-box .number {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 110px;
            height: 110px;
            color: #0e23f6;
            font-size: 68px;
            font-weight: 700;
            line-height: 105px;
            text-align: center;
            background-color: #ffffff;
            border: 1px solid #000000;
        }

.sec-title2 {
    color: #fff;
}

.sec-title {
    position: relative;
    padding-bottom: 40px;
}

    .sec-title h2 {
        color: #20e653;
        font-family: "Roboto";
        font-size: 35px;
        font-weight: 700;
    }

    .sec-title .title {
        position: relative;
        color: #0b25f6;
        font-size: 18px;
        font-weight: 700;
        padding-right: 50px;
        margin-bottom: 15px;
        display: inline-block;
        text-transform: capitalize;
        font-family: "Roboto";
    }

.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbbbbb;
}

.list-ic a {
    margin-left: 10px;
    position: absolute;
    padding-top: 25px;
    font-size: 18px;
    text-align: justify;
    font-weight: 500;
    color: black;
    font-family: "poppins";
}

.list-ic li {
    position: relative;
}

    .list-ic li span {
        display: inline-block;
        font-weight: 800;
        width: 2em;
        height: 2em;
        text-align: center;
        line-height: 2em;
        border-radius: 1em;
        background: #1de555;
        color: white;
        position: relative;
    }

    .list-ic li::before {
        content: '';
        position: absolute;
        background: #18bc9c;
        z-index: -1;
    }
.list-ic.vertical {
    padding: 0;
    margin: 0;
}

    .list-ic.vertical li {
        list-style-type: none;
        text-align: left;
    }

        .list-ic.vertical li span {
            margin: 1.4em 0;
        }

        .list-ic.vertical li::before {
            top: -35px;
            left: 13px;
            width: 0.2em;
            height: 4em;
        }

.list-ic li:first-child::before {
    display: none;
}

.list-ic .active {
    background: dodgerblue;
}

    .list-ic .active ~ li {
        background: lightblue;
    }

        .list-ic .active ~ li::before {
            background: lightblue;
        }

.align-pincode {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

@media only screen and (max-width: 600px) {
    .align-pincode {
        display: grid;
        justify-content: center;
        align-items: center;

    }
    .card {
        padding: 30px;
    }
    .track-icon i {
        font-size: 24px;
    }
    .text-dec h1 {
        font-size: 20px;
    }
        .cards {
        display:grid;
    }

    .inside__footer {
        /*use flex-direction, because if you change it to Block it'll never allow Order to work*/
        flex-direction: column;
    }

    .copyright {
        font-size: 14px;
        text-align: center;
        order: 2;
        margin-bottom: 4px;
    }

    .social {
        order: 1;
        margin-bottom: 4px;
    }

    .icon {
        width: 24px;
        height: 24px;
        transition: fill 0s, filter 0s;
    }

    .res-map {
        padding-bottom: 100%;
    }

    .track-section-abso {
        position: static !important;
        top: 42%;
        left: 10%;
        background: #1ee54e8f;
    }
}

@media only screen and (min-width: 1440px) {
    .pr-160 {
        padding-right: 0px;
    }
    .pl-160 {
        padding-left: 80px;
    }
}
.font-size-22{
    font-size: 22px !important;
}

.font-size-16 {
    font-size: 16px !important;
    line-height: 2em !important;
}
.padding-left-20 {
    padding-left: 20px;
}

.termscontions {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-family: 'Poppins';
    margin: 10px;
    padding-top: 20px;
}

.sectionClass {
    padding: 20px 0px 50px 0px;
    position: relative;
    display: block;
}

.fullWidth {
    width: 100% !important;
    display: table;
    float: none;
    padding: 0;
    min-height: 1px;
    height: 100%;
    position: relative;
}


.sectiontitle {
    background-position: center;
    margin: 30px 0 0px;
    text-align: center;
    min-height: 20px;
}

    .sectiontitle h2 {
        font-size: 30px;
        color: #222;
        margin-bottom: 0px;
        padding-right: 10px;
        padding-left: 10px;
    }


.headerLine {
    width: 160px;
    height: 2px;
    display: inline-block;
    background: #101F2E;
}


.projectFactsWrap {
    margin-top: 30px;
}


#projectFacts .fullWidth {
    padding: 0;
}

.projectFactsWrap .item {
    height: 100%;
    padding: 50px 0px;
    text-align: center;
    border-radius: 16px;
}

    .projectFactsWrap .item:nth-child(1) {
        background: #1de555;
    }

    .projectFactsWrap .item p.number {
        font-size: 40px;
        padding: 0;
        font-weight: bold;
    }

    .projectFactsWrap .item p {
        color: #0b25f6;
        font-size: 18px;
        margin: 0;
        padding: 10px;
        /* font-family: 'Open Sans'; */
        font-family: 'Roboto';
    }


    .projectFactsWrap .item span {
        width: 60px;
        background: #0e23f6;
        height: 2px;
        display: block;
        margin: 0 auto;
    }


    .projectFactsWrap .item i {
        vertical-align: middle;
        font-size: 50px;
        color: #0e23f6;
    }

    .projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p {
        color: white;
    }

    .projectFactsWrap .item:hover span {
        background: white;
    }

@media (max-width: 786px) {
    .projectFactsWrap .item {
        flex: 0 0 50%;
    }

    .track-section-abso {
        position: static !important;
       
        background: #1ee54e8f;
        height: 182px;
    }
}
@media (max-width: 1024px) {
    .track-section-abso {
        position: absolute;
        bottom: 38% !important;
        left: 0%;
        background: #1ee54e8f;
        padding: 30px 20px;
    }
}


@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .pr-160 {
        padding-right: 20px
    }

    .pl-160 {
         padding-left: 20px; 
    }

    .mr-130 {
        margin-right: 0px;
    }

    .track-section-abso {
        position: absolute;
        bottom: 23%;
        left: 5%;
        background: #1ee54e8f;
        padding: 30px 20px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
    .track-section-abso {
        position: absolute;
        bottom: 23% !important;
        left: 5%;
        background: #1ee54e8f;
        padding: 30px 20px;
    }
}

.track-section-abso {
    position: absolute;
    bottom: 15%;
    left: 5%;
    background: #1ee54e8f;
    padding: 30px 20px;
}

.html-marquee {
    width: 39%;
    margin: 0 auto;
    display: block;
}