/********** Template CSS **********/
:root {
    --primary: #D64B5A;
    --secondary: #F6F6F6;
    --light: #FFFFFF;
    --dark: #293283;
}

* {
    font-family: 'Poppins';
}

/* new colors  */

button {
        padding: 8px 16px!important;
}
.bgblue {
    background-color: var(--dark)!important; 
}
.bgred {
    background-color: var(--primary)!important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: var(--dark)!important;
    font-family: 'Poppins'!important;
}

.text-primary {
    color: var(--primary)!important;
}
.textsecondary {
    color: var(--dark)!important;
}

/* ////  */

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.imgcarousel {
    height: 100vh;
    background-size: cover!important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    
}

#hero {
    width: 100%;
    overflow: hidden;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
} 

#hero .carousel-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 60px;
    top: 70px;
    left: 55px;
    right: 55px;
}

#hero .hero-title {
    font-size: 80px;
    color: white!important;
    text-transform: uppercase;
}
#hero .carousel-content {
    padding: 150px 20px;
    color: #fff;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    border: none!important;
    background:none!important;
}

#hero .carousel-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

#hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #9dd453;
}

#hero .btn-get-started:hover {
    background: #9dd453;
    color: #fff;
    text-decoration: none;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
    opacity: 1;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 36px;
    line-height: 1;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 30px;
    height: 3px;
    border-radius: 50px;
    opacity: .6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #db0707;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar img{
    max-height: 50px;
    width:100%
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    padding: 35px 15px!important;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none !important;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        padding: 15px!important;
    }

    .tracking-home {
        padding: 20px 9px!important;
    }

    .footer-logo {
        max-height: 80px;
    }

    #hero .hero-title {
        font-size: 62px;
        line-height: 56px!important;
    }

    .py-6 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .side-img {
        width: 100%!important;
    }

    .timeline-item {
        opacity: 1!important;
        padding-left: 10px;
    }

    .timeline-content {
        display: block;
    }
    .timeline {
        width: 100%;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 36, 64, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.group-info .form-control {
    height: 45px;
}

.contacts .form-control {
    border: 1px solid white;
    background-color: transparent;
    color: white;
}
.contacts .form-control:focus {
        color: #ffffff;
    background-color: #ffffff4d;
}

.contacts .form-control::placeholder{
    color: rgba(255, 255, 255, 0.716);
}
.contacts label {
    color: white;
}

.quotation label {
    font-weight: 500!important;
    color: var(--primary);
}

.group-info {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 40px;
    position: absolute;
    z-index: 995;
    margin-top: 22vh;
    width: 60%;
    border-radius: 25px;
}

.main-text {
color: #fff;
    font-weight: bold;
    text-align: left;
    font-size: 58px;
    line-height: 60px;
    text-shadow: 0 0 20px #000;
}

.second-text {
    color: white;
    font-size: 29px;
    text-align: left;
    margin-top: -15px;
    line-height: 45px;
    font-weight: lighter;
}

.service-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.service-item img{
    width: 50px;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    bottom: -50px;
    left: 0;
    background: var(--light);
    border-radius: 100% 100% 0 0;
    box-shadow: 0px -10px 5px #EEEEEE;
    transition: .5s;
}

.service-item:hover::after {
    bottom: -25px;
}

.service-item p {
    transition: .3s;
}

.service-item:hover p {
    margin-bottom: 25px !important;
}

.team-item img {
    transform: scale(1.15);
    margin-left: -30px;
    transition: .5s;
}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    transition: .5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
    left: 0;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 90px;
    height: 90px;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
    # Track & Trace
--------------------------------------------------------------*/
.grouptrack {
    margin-bottom: 0;
}
.grouptrack input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ffffff;
    background: none;
}
.grouptrack label {
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}
.grouptrack input:focus {
    outline: none;
}
.grouptrack input:focus~label,
.grouptrack input:valid~label {
    top: -14px;
    font-size: 14px;
    color: #ffffff;
}
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}
.bar {
    position: relative;
    display: block;
    width: 300px;
}

.track-trace{
    padding:50px 0px;
}
.track-trace p {
    color: #333333;
    
}
.track-group {
    background-color: #F3525A;
    padding: 15px 25px;
}
.btn-track {
    background-color: #F3525A !important;
    border-color: #F3525A !important;
    margin: 5% 0px 0px 15%;
    outline: none
}
.btn-track:focus {
    outline: none;
}
.btn-track:hover {
    background-color: #F3525A !important;
    border-color: #F3525A !important;
    border: none !important;
}
.form-group {
    margin-bottom: 0;
    border: none;
}
.media img {
    width: 5%;
}
.Media {
    display: flex;
    align-items: flex-start;
}
.Media-figure {
    margin-right: 1em;
}
.Media-body {
    flex: 1;
}

@media (min-width: 992px){
    .navbar-expand-lg .navbar-collapse {
        display: block !important;
        flex-basis: auto;
    }
    
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        float: right;
    }
}

/* story timeline */

.timeline {
    position: relative;
    width: 800px;
    margin: 20px auto;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #ccc;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(50px);
    transition: all .6s ease;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary)!important;
}

.timeline-content {
    display: flex;
}



/* testemonials carousel */

.tracking-home {
    margin-top: -100px !important;
    z-index: 10;
    padding: 30px 50px;
    position: relative;
    background: white;
    margin: 50px;
    border-radius: 2rem;
    box-shadow: 3px 3px 10px #00000030;
}

.services-slider::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0)!important;
	border-radius: 10px;
	background-color: #D9D9D9;
}

.services-slider::-webkit-scrollbar
{
	height: 5px!important;
	background-color: #ffffff;
}

.services-slider::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px var(--dark);
	background-color: var(--dark);
}


.form-control:disabled, .form-control:read-only {
        background-color: #ffffff!important;
}