/*your custom css goes here*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root{
    --blue-color: #0D93f2;
    --lightblue-color:#F3FAFF;
    --darkgray-color:#484848;
    --darkblue-color:#162A52;
    --yellow-color:#f6a937;
    --text-color:#0a0a0a;
}

.burger{
    display: none;
}
.header .nav-links.open{
    transform: translateX(0%);
}
@media(max-width:991px){
    .burger{
        display: block;
    }
    nav .nav-links{
        position: absolute;
        height: 100%;
        top: 0;
        background-color: #0b172eed;
        width: 350px;
        display: flex;
        right: -1px;
        flex-direction: column;
        opacity: 0.95;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow-y: auto;
        transition: transform 0.5s ease-in-out;
    transform: translateX(100%);
    }

    
}


@media(max-width:768px){
    .nav-links{
        width: 300px;
    }
}
nav{
    background-color: white;
    
    width: 100%;
 /*   position: fixed;*/
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
}
.header.sticky::before{
    transform: translateY(0%);
}
.header.sticky .burger{
    color: white;
}
/*.header::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--blue-color);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: -1;
    transition: transform 0.5s ease;
    transform: translateY(-100%);
}*/
.header.sticky .nav-links li a{
    color: white !important;
}
.header.sticky .nav-links .send-packet{
    border:2px solid white;
    color: white;
}
.header.sticky .nav-links .send-packet:hover{
    background-color: white;
    color: var(--blue-color)!important;
}

nav .container{
    display: flex!important;
    justify-content: space-between;
}
 nav .nav-links{
    display: flex;
    gap: 5px;
    list-style-type: none;
    align-items: center;
    margin-bottom: 0px;
}

nav .nav-links a{
    color: #0a0a0a;
    font-weight: 500;
    transition: 0.5s ease;
    font-size: 14px;
}

nav .nav-links a:hover{
    color: var(--blue-color) !important;
    text-decoration: none;

}
nav .nav-links li{
    padding: 10px 15px;
}

nav .send-packet{
    border: 2px solid;
    border-radius: 5px;
    padding: 5px;
}

nav .nav-links .send-packet:hover{
    background-color: var(--blue-color);
    color: white!important;
    border: 2px solid var(--blue-color);
}
.nav-links.open{
    height: 100vh;
    display: flex!important;
}

@media(max-width:991px){
    nav .nav-links a{
        color: white;
    }
    .header .nav-links{
        padding: 2em ;
    }
    .burger {
        display: block;
        position: absolute;
        right: 5%;
    }
    .nav-links{
        display: none!important;
    }
    .burger.active{
        color: white;
    }
    .burger.active i::before{
        content: "\f00d";
    }
    nav .nav-links li{
        width:100%;
        border-bottom: 1px solid white;
    }
    .header .nav-links .send-packet{
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
}

@media(max-width:500px){
    nav .nav-links{
        width: 250px;
    }
    .header .nav-links{
        padding: 1em;
    }
    nav .nav-links li{
        padding: 10px 5px;
    }
}


/*Index-first section*/
.index-first{
    /*background-image: url('../img/indexbg.png');*/
    height: 30vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 165px;
    padding-bottom: 165px;
}

.cta-box-1{
      background-image: url('../img/cat_1.jpg'); 
      background-repeat: round;
}

/*@media(min-width:991px){
    .index-first .container{
        max-width: 1000px;
    }
}*/

.logo{
    max-width: 90px;
}

.logo img{
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.index-first .index-first-img img{
    width: 100%;
}

.index-first .index-first-content h1{
    font-weight: 600;
    color: var(--darkblue-color);
    margin-bottom: 0.5em;
}

.index-first .index-first-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index-first .index-first-content p{
    color: var(--darkgray-color);
    margin-bottom: 1.5em;
}
.index-first .index-first-content a{
    background-color: var(--blue-color);
    color: white;
    padding: 5px 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 3px;
    transition: 0.5s ease;
    width: fit-content;
}

.index-first .index-first-content a:hover{
    background-color: #0e1a32;
    text-decoration: none;
}

.index-first .track-order{
    width: 60%;
    margin: 0 auto;
    background-color: var(--darkblue-color);
    text-align: center;
    padding: 1em;
    border-radius: 5px;
}

.index-first .track-order h6{
    color: white;
    margin-bottom: 1em;
}

.index-first .track-order form{
    display: flex;
    justify-content: space-between;
}

.index-first .track-order form .form-group{
    width: 60%;
    margin-bottom: 0em;
}
.index-first .track-order form input{
    width: 100%;
    font-size: 14px;
    height: 100%;
    padding: 5px;
}

.index-first .track-order form button{
    padding: 5px 10px!important;
    background-color: var(--yellow-color);
    color: white;
    font-size: 14px;
    height: fit-content;
}

.index-first .row{
    margin-bottom: 5em;
}


section{
    padding: 5em 0em;
}

/*=========Index rate section==============*/
section.index-rate{
    background-color: var(--lightblue-color);
}

.section-title{
    font-weight: 600;
    color: var(--darkblue-color); 
    margin-bottom: 1em;
    font-size: 32px;
}

.index-rate .index-rate-left{
    background-color: var(--blue-color);
    border-radius: 8px;
    padding: 1.5em 2em;
    height: 100%;
}

.index-rate .index-weight-input{
    width: 150px!important;
    flex: unset!important;
    border-top-left-radius: 5px!important;
    border-bottom-left-radius: 5px!important;
}

.index-rate .index-rate-left label{
    color: white;
    display: block;
    width: 100%;
}

.index-rate .index-rate-left h4{
    color: white;
    text-align: center;
    margin-bottom: 1.6em;
}

.index-rate .index-rate-left .input-group-prepend div{
    border-radius: 5px;
    
}


.index-rate .index-map{
    background-color: white;
    padding: 5px;
}

.index-rate .index-rate-left form button{
    background-color: var(--darkblue-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.index-rate .index-rate-left form button:hover{
    background-color: #010102;
}
.index-rate form .form-control{
    font-size: 14px;
}

.check-ratebtn{
    color: white;
}

/*============INdex about us section========*/
.index-about{
    text-align: center;
}

.index-about .index-about-logo img{
    width: 120px;
}

.index-about .index-about-logo{
    margin-bottom: 2em;
}
.index-about .index-about-content{
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
}

.index-about-grid .index-about-card{
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
    height: 350px;
}


.index-about-grid .index-about-card .index-about-number{
        font-size: 32px;
    font-weight: 800;
    color: var(--blue-color);

}


.index-about-grid .index-about-card .index-about-title{
    color: gray;
    font-size: 24px;
}


/*============Index services===============*/
.index-services .index-service-content{
    background-color: var(--blue-color);
    color: white;
    border-radius: 5px;
    padding: 3em;
}

.index-services .index-service-content p{
    margin-bottom: 2em;
    line-height: 1.8;
}

/*=========footer============*/
footer{
    background-color: var(--darkblue-color);
    padding: 3em 0em;
    color: white;
}

footer .footer-logo img{
    width: 100px;
    margin-bottom: 5px;
}

footer .footer-caption{
    font-size: 14px;
}


footer .footer-links{
    list-style-type: none;
    line-height: 1.8;
}

footer .footer-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}


/*========Media Query============*/
@media(max-width:991px){
    .index-first .index-first-content h1{
        font-size: 24px;
    }

    .section-title{
        font-size: 24px;
    }

    .index-rate .index-rate-left form button{
        display: flex;
    }
    .index-first .track-order{
        width: 100%;
    }
    .index-first{
        padding: 6em 0em;
        height: auto;
    }
    .index-about-grid .index-about-card{
        height: 200px;
    }
    .index-about-grid .index-about-card .index-about-title{
        font-size: 18px;
    }
    .index-about-grid .index-about-card .index-about-number {
        font-size: 28px;
    }
    .index-about .index-about-content{
        font-size: 16px;
    }
    .logo{
        width: 50px;
    }
}

.index-rate .index-rate-left{
    margin-bottom: 1em;
}

.mainspan{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

input[type=number]::-webkit-outer-spin-button, 
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: inner-spin-button !important;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 33px !important;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 36px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 6px !important;
    right: 1px;
    width: 20px;
}

.mainspan input{
    height: 35px;
    padding-left: 10px;
}

.select2 {
    position: relative;
}

.absparent{
    position: absolute;
      top: 47.5%;
    left: 15px;
}

.productweight{
    margin-top: 27px;
}

.absparent2{
    position: absolute;
      top: 47.5%;
    left: 15px;
}

.productweightnew{
    margin-top: 27px;
}

.orderpackage .title{
    font-size: 20px;
    color: gray;
    margin-bottom: 22px;
}

.outvalley, .invalley{
    display: none;
    margin-top: 13px;
}

.outvalley h4, .invalley h4{
    font-size: 1rem;
    }

/*custom checkbox, radio*/
.aiz-checkbox-list {
    padding: 0 0;
}
.aiz-checkbox,
.aiz-radio {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.875rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
[dir="rtl"] .aiz-checkbox,
[dir="rtl"] .aiz-radio {
    padding-right: 28px;
    padding-left: 0;
}
.aiz-checkbox-list .aiz-checkbox,
.aiz-radio-list .aiz-radio {
    display: block;
}
.aiz-checkbox.aiz-checkbox-disabled,
.aiz-radio.aiz-radio-disabled {
    opacity: 0.8;
    cursor: not-allowed;
}
.aiz-checkbox-inline .aiz-checkbox,
.aiz-radio-inline .aiz-radio {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 5px;
}
.aiz-checkbox-inline .aiz-checkbox:last-child,
.aiz-radio-inline .aiz-radio:last-child {
    margin-right: 0;
}
.aiz-checkbox > input,
.aiz-radio > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.aiz-square-check,
.aiz-rounded-check {
    background: 0 0;
    position: relative;
    height: 16px;
    width: 16px;
    border: 1px solid #d1d7e2;
}

.aiz-checkbox .aiz-square-check,
.aiz-checkbox .aiz-rounded-check,
.aiz-radio .aiz-square-check,
.aiz-radio .aiz-rounded-check {
    position: absolute;
    top: 2px;
    left: 0;
}
[dir="rtl"] .aiz-checkbox .aiz-square-check,
[dir="rtl"] .aiz-checkbox .aiz-rounded-check,
[dir="rtl"] .aiz-radio .aiz-square-check,
[dir="rtl"] .aiz-radio .aiz-rounded-check{
    left: auto;
    right: 0
}
.aiz-square-check {
    border-radius: 3px;
}
.aiz-rounded-check {
    border-radius: 50%;
}
.aiz-square-check:after,
.aiz-rounded-check:after {
    content: "";
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.aiz-square-check:after {
    margin-left: -2px;
    margin-top: -6px;
    width: 5px;
    height: 10px;
    border-width: 0 2px 2px 0 !important;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: solid var(--primary);
}
.aiz-rounded-check:after {
    margin-left: -3px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.aiz-checkbox > input:checked ~ .aiz-square-check:after,
.aiz-radio > input:checked ~ .aiz-square-check:after,
.aiz-checkbox > input:checked ~ .aiz-rounded-check:after,
.aiz-radio > input:checked ~ .aiz-rounded-check:after {
    visibility: visible;
    opacity: 1;
}

/*aiz megabox*/
.aiz-megabox {
    position: relative;
    cursor: pointer;
}
.aiz-megabox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.aiz-megabox .aiz-megabox-elem {
 
    border-radius: 0.25rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
}
.aiz-megabox > input:checked ~ span .aiz-rounded-check:after,
.aiz-megabox > input:checked ~ span .aiz-square-check:after {
    visibility: visible;
    opacity: 1;
}

.aiz-megabox > input:checked ~ .aiz-megabox-elem,
.aiz-megabox > input:checked ~ .aiz-megabox-elem {
   /* background-color: var(--blue-color);*/
    color: unset;
    
}

.aiz-radio-inline label{
  margin-bottom: 0 !important;
}

.orderpackage button{
    background-color: var(--blue-color);
    border: none;
    margin-top: 50px;
}

.wheretitle{
    font-size: 14px !important;
}

.changecolor{
      background-color: var(--blue-color);
      color: white !important;
      border: none !important;
}

.outcheck, .incheck{
    border: 1px solid lightgray;
}

.frontmainspan .productweight, .frontmainspan .productweightnew{
    margin-top: initial;
}

.frontmainspan{
    margin-top: -20px;
}

.topfrontspan{
    margin-top: 30px;
}

.whats_order{
    padding: 3rem 0;
}

.whats_order img{
    width: 100%;
}

.send-packet{
    margin-right: 20px;
}  

.regs{
    padding: 0 !important;
}

.mainspan input{
    border: 1px solid lightgray;
    border-radius: 5px;
}

.loginbg{
        background-image: url(../img/bgsignup.png);
    background-position: 50%;
    background-size: 100% 60%;
    background-repeat: no-repeat;
    height: 100vh;
    padding-top: 140px !important;
}

.loginbg .card{
    padding: 10px 0;
    border-radius: 20px;
}

.btn-primary{
    background-color: var(--blue-color) !important;
    margin-top: 20px;
    border: none;
}

.usersidebg{
    background-color: var(--blue-color) !important; 
}

.aiz-side-nav-list li:not(:last-child){
    margin-bottom: 15px;
}

.trackhead h2{
    font-weight: 600;
    font-size: 35px;
}

.trackhead p{
    font-size: 15px;
}

.trackround{
      background: #fff;
    padding: 40px;
    border-radius: 20px !important;
    box-shadow: 0 2px 13px #e8eaec;
    z-index: 1;
    position: relative;
}



.trackround button{
    width: 100%;
}

.cantfind h3{
    font-size: 15px;
    font-weight: 600;
    margin-top: 20px;
}
.trackround input{
    background: #f8f8f8;
}

.cantfind a{
    color: var(--blue-color);
}

.orderamountdiv{
    margin-top: 18px;
}

.select2 {
    margin-top: 18px !important;
}

.orderpackage .form-group{
    margin-bottom: 0.6rem;
}

.caretool{
    position: absolute;
    right: -1%;
    top: 5%;
}

.caretool img{
    width: 30px;
}

.empty_state{
    text-align: center;
}

.empty_state p{
    margin-top: -30px;
    font-size: 15px;
}

.create_state p{
    background-color: rgba(219, 234, 254, 1);
    padding: 10px;
    border-radius: 5px;
    border: 2px solid rgba(147,197,253,1);
        color: var(--blue);
    font-weight: 500;
}



.empty_state img{
    width: 500px;
}

.create_state img{
        width: 100px;
    margin-bottom: 50px;
}

.empty_state .clickhere{
    color: var(--blue-color);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-style: wavy;
}

.slick-slide img {
    display: block;
    height:88vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.send-packet{
    border-radius: 999px !important;
    background-color: var(--blue) !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
}

/*2.5 Cta Css*/
.cta-box-1
{
    height: 170px;
    padding-right: 70px; 
    padding-left: 70px;

    border-radius: 10px;
}
.cta-box-1 h4
{
    font-size: 20px;
    font-weight: 600;
}
.cta-box-1 h4 span
{
    font-size: 18px;
    font-weight: 400;
}
.cta-box-1 p
{
    font-size: 14px;
}
@media (max-width: 767.98px)
{
    .cta-box-1
    {
        height: auto;
        padding: 30px;
    }
}

.cta-box-2
{
    height: 500px;
    padding-right: 130px;
    padding-left: 130px;

    border-radius: 30px;
}

.rt-gradient, .rt-site-footer .footer-top .footer-subscripbe-box .btn {
    position: relative;
    z-index: 1;
    color: #fff;
    border: none;
    background-color: var(--blue);
}

.rt-gradient, .rt-site-footer .footer-top .footer-subscripbe-box .btn:hover{
    background-color: var(--blue);
    transform: scale(1.06);
}

.rt-btn.rt-sm {
    font-size: 14px;
    padding: 14px 25px;
}

.rt-btn.rt-rounded {
    border-radius: 10px;
}

.rt-cta-area{
    margin-top: -150px;
    background-color: white;
}

.right-column{
    transition: 200ms ease-out;
}

.right-column:hover{
    transform: scale(1.05);
}

.prod_time, .prod_timenew{
    grid-column: span 2;
}

.testimonials-area
{
    position: relative;
    z-index: 1;
}
.testimonials-area .rt-shape-emenetns-1
{
    position: absolute;
    right: -200px;
    bottom: 100px;

    width: 522px;
    height: 558px;
}
@media (max-width: 1600px)
{
    .testimonials-area .rt-shape-emenetns-1
    {
        line-height: 400px; 

        width: 400px;
        height: 400px;
    }
}
@media (max-width: 991.98px)
{
    .testimonials-area .rt-shape-emenetns-1
    {
        line-height: 200px;

        right: -100px; 

        width: 200px;
        height: 200px;
    }
}
@media (max-width: 767.98px)
{
    .testimonials-area .rt-shape-emenetns-1
    {
        display: none;
    }
}

.rt-light-text .singleTbox-1 .autor-bio p
{
    color: #fff;
}

.rt-light-text .singleTbox-1 .autor-bio h5
{
    color: #fff;
}

.rt-light-text .singleTbox-1 .inner-content p
{
    color: #fff;
}

.testimoninal-active-1
{
    position: relative;

    height: 550px;
}
@media (max-width: 767.98px)
{
    .testimoninal-active-1
    {
        height: 485px;
    }
}

.singleTbox-1
{
    position: absolute;

    -webkit-transition: all 1s ease;
            transition: all 1s ease;
}
.singleTbox-1 .inner-content
{
    -webkit-transition: all .3s ease;
            transition: all .3s ease;
}
.singleTbox-1 .autor-bio
{
    -webkit-transition: all .3s ease;
            transition: all .3s ease;
}
.singleTbox-1.inactive .inner-content,
.singleTbox-1.inactive .autor-bio
{
    display: none;
    visibility: hidden; 

    opacity: 0;

    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
        filter: alpha(opacity=0);
}
.singleTbox-1:not(.active)
{
    z-index: 99;
}
.singleTbox-1:not(.active) .testi-thumb
{
    width: 120px;
    height: 120px;

    background-image: none;
}
.singleTbox-1:not(.active) .testi-thumb .inner-bg
{
    width: 120px;
    height: 120px;

    -webkit-box-shadow: 0 5px 10px 0 rgba(25, 80, 161, .2);
            box-shadow: 0 5px 10px 0 rgba(25, 80, 161, .2);
}
.singleTbox-1:not(.active) .testi-thumb .social-badge
{
    display: none;
}
.singleTbox-1.position-1
{
    -webkit-transform: scale(.65);
        -ms-transform: scale(.65);
            transform: scale(.65);
}
.singleTbox-1.position-2
{
    top: 0; 
    left: 0;
}
.singleTbox-1.position-2 .testi-thumb,
.singleTbox-1.position-2 .inner-bg
{
    width: 120px !important; 
    height: 120px !important;
}
@media (max-width: 1199.98px)
{
    .singleTbox-1.position-2 .testi-thumb,
    .singleTbox-1.position-2 .inner-bg
    {
        width: 90px !important; 
        height: 90px !important;
    }
}
@media (max-width: 991.98px)
{
    .singleTbox-1.position-2 .testi-thumb,
    .singleTbox-1.position-2 .inner-bg
    {
        width: 70px !important; 
        height: 70px !important;
    }
}
@media (max-width: 767.98px)
{
    .singleTbox-1.position-2 .testi-thumb,
    .singleTbox-1.position-2 .inner-bg
    {
        width: 40px !important; 
        height: 40px !important;
    }
}
.singleTbox-1.position-3
{
    top: 40px; 
    left: 160px;
}
.singleTbox-1.position-3 .testi-thumb,
.singleTbox-1.position-3 .inner-bg
{
    width: 140px !important; 
    height: 140px !important;
}
@media (max-width: 1199.98px)
{
    .singleTbox-1.position-3
    {
        left: 140px;
    }
    .singleTbox-1.position-3 .testi-thumb,
    .singleTbox-1.position-3 .inner-bg
    {
        width: 110px !important; 
        height: 110px !important;
    }
}
@media (max-width: 991.98px)
{
    .singleTbox-1.position-3
    {
        top: 0;
        left: 80px;
    }
    .singleTbox-1.position-3 .testi-thumb,
    .singleTbox-1.position-3 .inner-bg
    {
        width: 70px !important; 
        height: 70px !important;
    }
}
@media (max-width: 767.98px)
{
    .singleTbox-1.position-3
    {
        top: 20px;
        left: 60px;
    }
    .singleTbox-1.position-3 .testi-thumb,
    .singleTbox-1.position-3 .inner-bg
    {
        width: 40px !important; 
        height: 40px !important;
    }
}
.singleTbox-1.position-4
{
    top: 160px; 
    left: 20px;
}
@media (max-width: 1199.98px)
{
    .singleTbox-1.position-4 .testi-thumb,
    .singleTbox-1.position-4 .inner-bg
    {
        width: 110px !important; 
        height: 110px !important;
    }
}
@media (max-width: 991.98px)
{
    .singleTbox-1.position-4
    {
        top: 80px;
        left: 0;
    }
    .singleTbox-1.position-4 .testi-thumb,
    .singleTbox-1.position-4 .inner-bg
    {
        width: 70px !important; 
        height: 70px !important;
    }
}
@media (max-width: 767.98px)
{
    .singleTbox-1.position-4
    {
        top: 70px;
        left: 10px;
    }
    .singleTbox-1.position-4 .testi-thumb,
    .singleTbox-1.position-4 .inner-bg
    {
        width: 40px !important; 
        height: 40px !important;
    }
}
.singleTbox-1.position-5
{
    top: 258px; 
    left: 155px;
}
.singleTbox-1.position-5 .testi-thumb,
.singleTbox-1.position-5 .inner-bg
{
    width: 100px !important; 
    height: 100px !important;
}
@media (max-width: 1199.98px)
{
    .singleTbox-1.position-5
    {
        top: 215px;
        left: 180px;
    }
    .singleTbox-1.position-5 .testi-thumb,
    .singleTbox-1.position-5 .inner-bg
    {
        width: 90px !important; 
        height: 90px !important;
    }
}
@media (max-width: 991.98px)
{
    .singleTbox-1.position-5
    {
        top: 80px;
        left: 80px;
    }
    .singleTbox-1.position-5 .testi-thumb,
    .singleTbox-1.position-5 .inner-bg
    {
        width: 70px !important; 
        height: 70px !important;
    }
}
@media (max-width: 767.98px)
{
    .singleTbox-1.position-5
    {
        top: 100px;
        left: 60px;
    }
    .singleTbox-1.position-5 .testi-thumb,
    .singleTbox-1.position-5 .inner-bg
    {
        width: 40px !important; 
        height: 40px !important;
    }
}
.singleTbox-1.position-6
{
    top: 0;
    right: 200px;
}
.singleTbox-1.position-6 .testi-thumb,
.singleTbox-1.position-6 .inner-bg
{
    width: 140px !important; 
    height: 140px !important;
}
@media (max-width: 1199.98px)
{
    .singleTbox-1.position-6 .testi-thumb,
    .singleTbox-1.position-6 .inner-bg
    {
        width: 100px !important; 
        height: 100px !important;
    }
}
@media (max-width: 991.98px)
{
    .singleTbox-1.position-6
    {
        top: 0;
        right: 0;
    }
    .singleTbox-1.position-6 .testi-thumb,
    .singleTbox-1.position-6 .inner-bg
    {
        width: 70px !important; 
        height: 70px !important;
    }
}
@media (max-width: 767.98px)
{
    .singleTbox-1.position-6
    {
        top: 0;
        right: 0;
    }
    .singleTbox-1.position-6 .testi-thumb,
    .singleTbox-1.position-6 .inner-bg
    {
        width: 40px !important; 
        height: 40px !important;
    }
}
.singleTbox-1.position-7
{
    top: 40px;
    right: -40px;
}
.singleTbox-1.position-7 .testi-thumb,
.singleTbox-1.position-7 .inner-bg
{
    width: 140px !important; 
    height: 140px !important;
}
@media (max-width: 1199.98px)
{
    .singleTbox-1.position-7
    {
        right: 40px;
    }
    .singleTbox-1.position-7 .testi-thumb,
    .singleTbox-1.position-7 .inner-bg
    {
        width: 100px !important; 
        height: 100px !important;
    }
}
@media (max-width: 991.98px)
{
    .singleTbox-1.position-7
    {
        top: 0;
        right: 80px;
    }
    .singleTbox-1.position-7 .testi-thumb,
    .singleTbox-1.position-7 .inner-bg
    {
        width: 70px !important; 
        height: 70px !important;
    }
}
@media (max-width: 767.98px)
{
    .singleTbox-1.position-7
    {
        top: 0;
        right: 80px;
    }
    .singleTbox-1.position-7 .testi-thumb,
    .singleTbox-1.position-7 .inner-bg
    {
        width: 40px !important; 
        height: 40px !important;
    }
}
.singleTbox-1.position-8
{
    top: 200px;
    right: 170px;
}
.singleTbox-1.position-8 .testi-thumb,
.singleTbox-1.position-8 .inner-bg
{
    width: 110px !important; 
    height: 110px !important;
}
@media (max-width: 1199.98px)
{
    .singleTbox-1.position-8
    {
        top: 140px;
    }
    .singleTbox-1.position-8 .inner-bg
    {
        width: 90px !important; 
        height: 90px !important;
    }
}
@media (max-width: 991.98px)
{
    .singleTbox-1.position-8
    {
        top: 80px;
        right: 0;
    }
    .singleTbox-1.position-8 .testi-thumb,
    .singleTbox-1.position-8 .inner-bg
    {
        width: 70px !important; 
        height: 70px !important;
    }
}
@media (max-width: 991.98px)
{
    .singleTbox-1.position-8
    {
        top: 60px;
        right: 0;
    }
    .singleTbox-1.position-8 .testi-thumb,
    .singleTbox-1.position-8 .inner-bg
    {
        width: 40px !important; 
        height: 40px !important;
    }
}
.singleTbox-1.position-9
{
    top: 240px;
    right: -40px;
}
.singleTbox-1.position-9 .testi-thumb,
.singleTbox-1.position-9 .inner-bg
{
    width: 110px !important; 
    height: 110px !important;
}
@media (max-width: 1199.98px)
{
    .singleTbox-1.position-9
    {
        top: 188px; 
        right: 40px;
    }
    .singleTbox-1.position-9 .testi-thumb,
    .singleTbox-1.position-9 .inner-bg
    {
        width: 90px !important; 
        height: 90px !important;
    }
}
@media (max-width: 991.98px)
{
    .singleTbox-1.position-9
    {
        top: 80px;
        right: 80px;
    }
    .singleTbox-1.position-9 .testi-thumb,
    .singleTbox-1.position-9 .inner-bg
    {
        width: 70px !important; 
        height: 70px !important;
    }
}
@media (max-width: 767.98px)
{
    .singleTbox-1.position-9
    {
        top: 60px;
        right: 60px;
    }
    .singleTbox-1.position-9 .testi-thumb,
    .singleTbox-1.position-9 .inner-bg
    {
        width: 40px !important; 
        height: 40px !important;
    }
}
.singleTbox-1.position-10
{
    top: 350px;
    right: 80px;
}
.singleTbox-1.position-10 .testi-thumb,
.singleTbox-1.position-10 .inner-bg
{
    width: 100px !important; 
    height: 100px !important;
}
@media (max-width: 1199.98px)
{
    .singleTbox-1.position-10
    {
        top: 300px;
        right: 150px;
    }
    .singleTbox-1.position-10 .testi-thumb,
    .singleTbox-1.position-10 .inner-bg
    {
        width: 80px !important; 
        height: 80px !important;
    }
}
@media (max-width: 991.98px)
{
    .singleTbox-1.position-10
    {
        top: 160px;
        right: 40px;
    }
    .singleTbox-1.position-10 .testi-thumb,
    .singleTbox-1.position-10 .inner-bg
    {
        width: 70px !important; 
        height: 70px !important;
    }
}
@media (max-width: 767.98px)
{
    .singleTbox-1.position-10
    {
        top: 120px;
        right: 30px;
    }
    .singleTbox-1.position-10 .testi-thumb,
    .singleTbox-1.position-10 .inner-bg
    {
        width: 40px !important; 
        height: 40px !important;
    }
}
.singleTbox-1.active
{
    z-index: 10; 
    top: 0;
    left: 50%;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
@media (max-width: 991.98px)
{
    .singleTbox-1.active
    {
        width: 100%;
    }
}
.singleTbox-1.active .inner-content,
.singleTbox-1.active .autor-bio
{
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
}

/*2.9 brands.*/
.rt-border-brands
{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    margin: 0;
    padding: 0;

    list-style: none; 

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}
.rt-border-brands .single-border-brands
{
    max-width: 25%;
    padding-top: 40px;
    padding-right: 30px;
    padding-bottom: 40px; 
    padding-left: 30px;

    text-align: center;

    border-right: 1px solid rgba(3, 64, 131, .2);
    border-bottom: 1px solid rgba(3, 64, 131, .2);

    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
}

.rt-btn:hover{
    color: white;
}

@media(max-width:  768px){
    .slick-slide img {
    height: initial !important;
}
.cta-box-1 h4 {
    font-size: 14px;
    font-weight: 600;
}
.cta-box-1 h4 {
    font-size: 14px;
    font-weight: 600;
}
.cta-box-1 p {
    font-size: 12px;
}

.right-column{
    margin-top: 20px;
}
.rt-btn.rt-sm {
    font-size: 12px;
}

.rt-cta-area {
    margin-top:initial;
    padding: 3em 0 ;
}

.index-first{
    padding: 2em 0;
}

.mainspan {
    display: flex;
    flex-direction: column;
}
.select2 {
   margin-top: initial !important;
}
.index-map{
    margin-top: 30px;
}

.trackhead{
    margin-bottom: 50px;
}

}

.trackhead img{
    width: 100%;
}

.aiz-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--blue-color);
    box-shadow: 0 0 1px 1px rgb(20 23 28 / 10%), 0 3px 1px 0 rgb(20 23 28 / 10%);
    font-size: 15px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    border-radius: 50%;
    border: none;
    color: white;
}

.dropdown-toggle i{
    transition: 200ms ease-out;
}

.dropdown-toggle i:hover{
    transform: scale(1.05);
}

.index-map iframe{
    height: 482px;
}

.how_we_work img{
    width: 100%;
}

@media(max-width: 768px){
    .dnow{
        display: flex;
        flex-direction: column-reverse;
        margin: 30px 0;
    }
}

.historyclass p{
    display: none;
}

.how_we_work{
    margin-top: 50px;
}

.aiz-carousel .slick-dots .slick-active button {
    background: var(--blue);
}



.text-primary{
    color: var(--blue) !important;
}

/* responsive starts*/

@media(max-width: 600px){
    .mobilepaddingtop{
        padding-top: 0 !important;
    }

    .mobilepaddingtop .container{
        padding: 0;
    }

    .mobilecontainer{
        padding-left: 15px;
        padding-right: 15px;
    }

.aiz-carousel .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--blue-color);
    box-shadow: 0 0 1px 1px rgb(20 23 28 / 10%), 0 3px 1px 0 rgb(20 23 28 / 10%);
    font-size: 10px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    border-radius: 50%;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}




    .usersidebg {
    text-align: center;
    padding: 40px 0 !important;
}

.usersidebg h4{
    font-weight: 500 !important;
    text-align: center;
}

.historyclass tr{
    display: flex;
    flex-direction: column;
}

.historyclass td{
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.historyclass p{
    margin: 0;
    display: block;
}

.historyclass thead{
    display: none;
}

.historyclass .aiz-table .footable-toggle {
display: none;
}

.historyclass tr{
    margin-bottom: 40px;
    background-color: white;
    border-radius: 15px;
}

.mobilecontainer .card{
    background-color: initial;
    box-shadow: unset;
    border: none;
}

.mobilecontainer .card-body{
    padding: 0;
}

.trackhead h2 {
    font-size: 20px;
}

.modal-title {
   font-size: 20px;
}

.mobilecontainer .card-header{
    padding: 0;
}

.orderpackage .title {
    font-size: 15px;
    color: black;
    margin-bottom: 15px;
    text-align: center;
        margin-top: 10px;
}

.orderpackage .order-col{
    margin-bottom: 40px;
    background-color: white;
    border-radius: 15px;
    padding: 15px;
}

.wheretitle{
    margin-bottom: 30px !important;
}

.deliveryq{
    flex-direction: column;
}

.deliveryq .aiz-radio-inline label{
    width: 100%;
    margin-bottom: 10px !important;
}

.absparent, .absparent2 {
    position: absolute;
    top: 57.5%;
    left: 31px;
    display: none;
}

.orderamountdiv {
    margin-top: initial;
}

.productweight, .productweightnew {
    margin-top: initial;
}

.loginbg {
    background-image: url(../img/bgsignup.png);
    background-position: 50%;
    background-size: 100% 60%;
    background-repeat: no-repeat;
    height: 100%;
    padding-top: 80px !important;
}

.loginbg .logo{
    width: 100%;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}

.empty_state p {
    margin-top: 16px;
    font-size: 15px;
}

.logo {
    width: 70px;
}

}

.usersidebg{
         background-image: url('../img/cat_1.jpg'); 
}

.gotoback{
    position: absolute;
    top: 10%;
    left: 5%;
    border: 1px solid white;
    padding: 2px 4px;
    border-radius: 4px;
}

.gotoback img{
    width: 13px; 
    height: 12px;
}

.bg-primary{
    background-color: var(--blue) !important;
}


/*hamburgermenu*/


.toggle span {
  position: relative;
  height: 2px;
  width: 36px;
  background-color: #2556a4;
  display: block;
  margin-bottom: 8px;
  transition: 0.5s;
}

.toggle span:nth-child(1) {
  transform-origin: left;
  width: 20px;
}

.toggle span:nth-child(2) {
  transform-origin: center;
  width: 30px;
}

.toggle span:nth-child(3) {
  transform-origin: left;
  width: 20px;
}


.slide-bar {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -370px;
  width: 350px;
  padding: 55px 30px;
  height: 100%;
  display: block;
  background-color: white;
  z-index: 1020;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  z-index: 99999999999999999999999999;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slide-bar {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .slide-bar {
    width: 310px;
    padding: 55px 20px;
  }
}

.slide-bar.show {
  right: 0;
}

.body-overlay {
  backdrop-filter:  blur(10px);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999999;
  left: 0;
  opacity: 0;
  display: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.body-overlay.active {
  opacity: 1;
  display: block;
}

.hamburger-menu{
    display: none;
}

@media(max-width: 1200px){
    .hamburger-menu{
        display: block;
    }
    .navbar-right a{
        display: none !important;
    }

    .navbar-menus li{
        display: none;
    }

}

.slide-bar li{
    list-style: none;
}

.slide-bar .loggedout{
    padding: 0 !important;
}

.slide-bar a{
    color: rgba(0,0,0,0.6) !important;
        padding: .75rem 1rem !important;
         font-size: 18px;

}

@media(max-width:  992px){
     .navbar-menus li{
        display: none;
    }

    .navbar{
        padding: 10px 0;
    }
}

#mobile-menu-active{
    padding: 0;
}

.slide-bar li {
    margin-bottom: 20px;
    font-family: 'Brandon', sans-serif !important;
}

.slide-bar li a{
        font-family: 'Brandon3', sans-serif !important;
        color: white !important;
        font-size: 24px;
}

.slide-bar{
    background-color: #ea8024cc;
}

.hamburger-menu{
        position: absolute;
    top: 3%;
    right: 4%;
}

@media(max-width:  600px){
    .empty_state img{
        width: 100%;
    }

    .mainspan input {
    margin-bottom: 20px;
}

.select2 {
     margin-bottom: 20px !important;
}

}




/*=================About us CSS==========*/
.about-first{
    padding-top: 10em;
}
.about-first .section-title{
    text-align: center;
}

.about-first .about-mission img{
    width: 100%;
}

.about-first .about-title{
    font-size: 40px;
    text-align: center;
    margin-bottom: 1em;
    font-weight: 500;
}

.about-first .about-mission .about-mission-title{
    font-weight: 400;
    text-transform: uppercase;
}

.about-first .about-mission .about-mission-title::before{
    content: '';
    width: 50px;
    height: 5px;
    background-color: #f6a937;
    display: block;
    margin-bottom: 0.5em;
}

.about-first .about-mission .about-mission-content ul{
    margin-left: 20px;
}

.about-first .about-first-section{
    margin-bottom: 2em;
}

.about-mission .about-mission-content{
    padding-top: 2em;
}

.about-mission{
    margin-bottom: 2em;
}

@media(max-width:1200px){
    .about-first{
        padding-top: 7em;
    }
}

@media(max-width:991px){
    .about-first{
        padding-top: 4.5em;
    }
    .about-first .about-title{
        font-size: 32px;
    }
    .about-first .about-mission .about-mission-title{
        font-size: 24px;
    }
}


/*============Service Page===========*/
.service-page{
    padding-top: 10em;
}


.service-page .service-title{
    font-size: 40px;
    text-align: center;
    margin-bottom: 1em;
    font-weight: 500;
}
.service-page .service-page-content{
    margin-bottom: 2em;
}
.service-page .service-card{
    text-align: center;
    margin-bottom: 2em;
    padding: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}

.service-page .service-card .service-card-img img{
    width: 100%;
    height: 240px;
}

.service-page .service-card .service-card-img{
    margin-bottom: 10px;
}

.service-page .service-card .service-card-title{
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;

}

.service-page .service-card .service-card-link{
    background-color: orange;
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
}

@media(max-width:991px){
    .service-page .service-card .service-card-img img{
        height: 150px;
    }
    .service-page .service-card .service-card-title{
        font-size: 20px;
        height: 60px;
    }
    .service-page .service-title{
        font-size: 32px;
    }
    .service-page{
        padding-top: 5em;
    }
}


@media(max-width:768px){
    .service-page .service-card .service-card-title{
        font-size: 16px;
        height: 50px;
        white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis; 
    }
    .service-page .service-card .service-card-link{
        font-size: 14px;
        padding: 5px 15px;
    }
    .service-page .service-title{
        font-size: 24px;
        margin-bottom: 0.5em;
    }
}

@media(max-width:576px){
    .service-page .service-card .service-card-img img{
        height: 120px;
    }
    .service-page .service-card{
        padding: 3px;
        padding-bottom: 5px;
    }
    .service-page .service-card .service-card-title{
        font-size: 14px;
        
    }
}

@media(max-width:400px){
    .service-page .service-card .service-card-img img{
        height: 100px;
    }
}

/*========Service SIngle============*/

.service-banner{
    min-height: 60vh;
    background-image: url('../images/services/plane.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
    margin-bottom: 2em;
}

.service-banner::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.service-banner .service-banner-title{
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
    font-size: 24px;
    color: white;
}

.service-single-title{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 1em;
}

.service-single-title::after{
    content: '';
    width: 50px;
    height: 5px;
    background-color: var(--yellow-color);
    display: block
    ;
}
.service-single-content{
    min-height: 60vh;
}
.service-single-content ul{
    margin-left: 5px;
    list-style-type: none;
}
.service-single-content ul li{
    margin-left: 25px;
}
.service-single-content ul li::before{
    content: '\f058';
    font-family: 'Font Awesome 5 Pro';
    color: green;
    margin-left: -2em;
    width: 25px;
    display: inline-block;

}

@media(max-width:991px){
    .service-banner{
        min-height: 40vh;
    }
}

@media(max-width:768px){
 
    .service-single-title{
        font-size: 18px;
    }
    .service-single-content p{
        font-size: 14px;
    }
    .service-single-content ul li{
        font-size: 14px;
    }
    .service-single-content{
        min-height: unset;
        margin-bottom: 1em;
    }
}

@media(max-width:576px){
    .service-banner{
        min-height: 30vh;
    }
    .service-banner .service-banner-title{
        font-size: 20px;
    }
}


/*==========Contact Page========*/
.contact-page{
    padding-top: 10em;
    margin-bottom: 1em;
}


.contact-page .contact-heading{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5em;
    text-transform: capitalize;
}

.contact-page .contact-heading::before{
    content: '';
    width: 100px;
    height: 5px;
    background-color: #f6a937;
    display: block;
    margin-bottom: 5px;
}

.contact-page .contact-right .contact-office img{
    width: 100%;
}

.contact-page .contact-right .contact-office{
    margin-bottom: 1em;
}

.contact-page .contact-right{
    padding: 1em;
    background-color: #E6F3FE;

}

nav .nav-links a{
    color: #444444;
}

.contact-left{
    margin-bottom: 3em;
}

.contact-page .contact-right .contact-info ul{
    list-style-type: none;
}
.contact-page .contact-right .contact-info a{
    font-weight: 500;
    text-decoration: underline;
}
@media(max-width:991px){
    .contact-page{
        padding-top: 6em;
    }
}

@media(max-width:768px){
    .contact-page .contact-heading{
        font-size: 20px;
    }
    .contact-right h5{
        font-size: 18px;
    }
}

@media(max-width:576px){
    .contact-left{
        margin-bottom: 2em;
        border-bottom: 1px solid #ced4da;
        padding-bottom: 1em;
    }
    .contact-right{
        margin-bottom: 2em;
        border-bottom: 1px solid #ced4da;
        padding-bottom: 1em;
    }
  .contact-right .contact-map iframe{
      height: 350px;
  }
 
}


/*Privacy and terms page*/
.documents-page{
    padding-top: 10em;
    margin-bottom: 4em;
}

.document-page-heading{
    font-size: 24px;
    margin-bottom: 2em;
}

.document-page-heading::after{
    content: '';
    background-color: orange;
    width: 50px;
    height: 3px;
    display: block;
}

.document-content .document-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5em;
}
.document-content{
    margin-bottom: 1em;
}
.document-content p{
    font-size: 15px;
    line-height: 1.7;
}

@media(max-width:991px){
    .documents-page{
        padding-top: 6em;
    }
}

@media(max-width:768px){
    .document-page-heading{
        margin-bottom: 1em;
    }
}

.about-first{
    min-height:80vh;
    padding-bottom:5em
}

#adminedit_modal-content{
    padding:20px;
}

#adminedit_modal .form-group-div{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:20px;
}

#adminedit_modal .form-group-div .form-group{
        display: flex;
    flex-direction: column;
}
#adminedit_modal .form-group-div button{
    grid-column: span 2;
    width: fit-content;
    padding: 7px 8px;
    background-color: #0057d9;
    color: white;
    border-radius: 3px;
    outline: none;
    border: none;
    margin-right: 0;
    margin-left: auto;
    transition:.5s all ;
}

#adminedit_modal .form-group-div button:hover{
    background-color: #023a8e;
}

#adminedit_modal .form-group-div .form-group label{
    font-size: 13px;
    font-weight: 500;
    color: #444;
}


#adminedit_modal .form-group-div .form-group input{
        padding: 5px 5px;
    padding-bottom: 3px;
}
@media (min-width:576px){
    #adminedit_modal .modal-dialog{
        max-width:700px;
        margin-right: 90px;
    margin-top: 5em;
    }
    
}

#assignboy-modal-content{
    padding:30px;
}

#assignboy-modal-content .form-control{
    margin-bottom:1em;
}

#assignboy-modal-content button{
    display:block;
       width: fit-content;
    padding: 7px 8px;
    background-color: #0057d9;
    color: white;
    border-radius: 3px;
    outline: none;
    border: none;
    margin-right: 0;
    margin-left: auto;
    transition:.5s all ;
}

#assignboy-modal-content button:hover{
     background-color: #023a8e;
}


footer .footer-links li a{
    color:white;
    transition:.3s all;
}

footer .footer-links li a:hover{
    color:#bbbbbb;
}


#cancel-request .btn-primary{
    margin-top:0px;
}

@media(max-width:1400px){
    .aiz-table.footable-details{
        background:#f9f9f9;
    }
}
@media(max-width:1200px){
    .nav-links{
        display:none!important;
    }
    .slide-bar nav{
        background:transparent;
    }
    .slide-bar{
        background:#092a4e;
    }
    .slide-bar li a{
        font-size: 16px;
    font-weight: 500;
    
    }
    
    .slide-bar li{
            border-bottom: 1px solid #c1c1c152;
    padding-bottom: 5px;
    }
    
    .slide-bar .list-inline-item:not(:last-child){
        border-right:none!important;
    }
    .slide-bar .send-packet{
        background-color:transparent!important;
    }
    .slide-bar .send-packet i{
        margin-left:10px;
    }
    .slide-bar .list-inline-item:last-child{
        width:100%;
    }
    .close-mobile-menu{
            color: white;
    position: absolute;
    right: 20px;
    font-size: 24px;
    top: 10px;
    }
}

@media(max-width:1199px){
    .aiz-user-sidenav-wrap{
        display:block!important;
            width: 100%;
                max-width: 100%;
    height: auto;
    }
    .user-panel-flex{
        display:flex;
            flex-direction: column;
    }
    .aiz-user-sidenav{
        position:relative;
    }
    .aiz-user-panel{
        width:100%;
    }
}



@media(max-width:991px){
    nav{
        padding:5px 0px;
    }
    .logo img{
            height: 69px;
            width: auto;
            object-fit: inherit;
    }
    .logo{
            width: auto;
            max-width: fit-content;
            height: auto;
    }
}

.regbg{
        padding-top: 50px !important;
    height: initial;
}


.footer-bottom{
        display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-top: 5em;
}

.footer-bottom p{
    margin:0px;
}


footer{
    padding-bottom:1em;
}




.bottom-after{
    border-top:.5px solid #ececec24;
    padding-top:8px;
    margin-top:3em;
}

.footer-bottom{
    margin-top:0px;
}





footer .footer-title{
    font-size:20px;
}

footer .footer-links li{
    margin-bottom:8px;
}



footer .container{
    margin-bottom:7em;
}


.footer-bottom .power a{
    color:cadetblue;
    font-weight:600;
}
@media(max-width:1200px){
    footer{
        padding-bottom:6em;
    }
}

@media(max-width:991px){
    footer{
        padding-bottom:5em;
    }
}

@media(max-width:576px){
    .footer-bottom{
        flex-direction: column;
        justify-content: center;
        margin-bottom: 1em;
    }
    .footer-bottom p{
        text-align:center;
    }
}

.header.sticky .nav-links li a{
    color:#444444!important;
}

.header{
    border-bottom:1px solid #ecececf7;
}

.header.sticky{
    position:sticky;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header.sticky .hamburger-menu{
    top:26%;
}

.close-mobile-menu img{
    height:20px;
    opacity:.8;
}
 
 .goback .usersidebg{
         gap: 10px;
    display: flex;
    flex-direction: row;
    align-items: baseline;
 }
 
 
  .goback .usersidebg .gotoback{
      position:relative;
      top:unset;
      left:unset;
  }
  
  @media(max-width:768px){
      .goback .usersidebg{
        padding: 15px!Important;
        margin-top: 1em
      }
      .trackround{
          padding:20px;
      }
      .tracksection{
          padding-top:1.5em!Important;
      }
      .usersidebg h4{
          font-size:14px!important;
      }
  }
  
  @media(max-width:600px){
      .mobilepaddingtop{
          padding-top:1em!important;
      }
  }
  
  .box.orderpackage{
      margin-top:1em;
  }
  
  
  
  
  
  
  .contact-page{
      padding-top:5em;
  }
  .contact-page .contact-right{
      padding:2em;
  }
  .contact-page .contact-right .contact-info ul{
      font-size:16px;
  }
  
  @media(max-width:991px){
      .contact-page .contact-right{
          padding:1em;
      }
  }
  
  @media(max-width:768px){
      .contact-content .row{
          flex-direction:column-reverse;
      }
      .contact-page .contact-right{
          margin-bottom:1em;
      }
      .contact-page .contact-heading{
          text-align:center;
      }
      .contact-info{
          text-align:center;
      }
      .contact-page .contact-heading::before{
          display:none;
      }
      .contact-page .contact-right{
          margin-bottom:3em;
      }
  }
  
  #scrollTop{
      position:fixed;
      bottom:20px;
      right:30px;
      z-index:99;
      border:none;
      border-radius:50%;
      background:#e0485e;
      color:white;
      padding:8px 15px;
      font-size:18px;
      cursor:pointer;
      transition:.5s all ease;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  
  #scrollTop:hover{
      background:#535353;
  }
  
  
  html, html:focus-within{
      scroll-behavior: smooth !important;
  }
  
  
  
  
  
  
  