/*-----------------
   common style
------------------*/
.common-title{
    position: relative;
    z-index: 1;
    font-size: 35px;
    line-height: 41px;
    color: #313131;
}
a.page-btn{
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
    padding: 15px 24px;
    display: inline-block;
    border-radius: 3px;
    transition: all 1s ease;
}
a.page-btn:hover{
    text-decoration: none;
    color: #fff;
    background-color: #232323;
}
a.page-btn:focus, .pricing-footer a:focus{
    color: #fff;
}
/*-------------------
background color 
--------------------*/
.bg-red{
    background-color: #bf0a30; 
    color: #fff;
}
.bg-white{
    background-color: #fff !important;  
    color: #000 !important;
}
.bg-dark-blue{
    background-color: #0b3f74;
    color: #fff;
}
.bg-light-blue {
    background: #e6effe;
}
.text-sky-blue {
    color: #0070d7;
}
.choose-payment-method .card-payment {
    display: none;
}
.choose-payment-method.pay-using-card .card-payment {
    display: block;
}
.choose-payment-method.pay-using-card .payment-option {
    display: none;
}

/*-------------
     HEADER 
--------------*/
.common-header-logo {
    display: inline-block;
    padding: 15px 0;
}
.common-header-logo img {
    height: 55px;
}
.common-login-logo img {
    height: 80px;
}
.common-footer-logo {
    display: inline-block;
}
.common-footer-logo img {
    height: 55px;
}
.relotech-header {
    background: #fff;
}
.relotech-header .container {
    position: relative;
}

.relotech-header .navbar-toggle {    
    background: url('../images/icons/dark-blue/menu-three-horizontal-lines-symbol.svg') no-repeat center;
    background-size: 60%;
    width: 50px;
    height: 50px;    
    cursor: pointer;
    border-radius: 3px;
    display: none;
    z-index: 9;
    margin: 6px 0 0 0;
}

.relotech-header .logo {
    display: inline-block;
    padding-top: 20px;
    padding-bottom: 20px;
}
.relotech-header .logo img {
    height: 50px;
}
.relotech-header .navbar {
    float: right;
    list-style: none;
    margin: 0;
    padding: 0;
}

.relotech-header .navbar > li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    padding: 35px 18px;
}

.relotech-header .navbar > li > a {
    font-weight: 600;
    color: #4e4e4e;
    display: inline;
    /* padding: 35px 18px; */
    text-decoration: none;
}

.relotech-header .navbar > li.active > a, 
.relotech-header .navbar > li > a:hover {
    color: #002868;
}
.relotech-header .navbar > li > a.header-login-btn {
    background: #002868;
    color: #fff;
    padding: 8px 24px;
    border-radius: 3px;
    margin-top: 25px;
}
.login-btn {
    background: #e00000;
    border-radius: 50px;
    padding: 8px 20px;
    color: #fff !important;
}
/*---------------
    HEADER END 
---------------*/

/*---------
   BANNER 
----------*/
.banner{
    background-image: url(../images/banner.jpg);
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

}
.banner .banner-content{
    padding: 15% 0 8% 0;
    position: relative;
    z-index: 2;
}
.banner .container div[class*='col-']:after{
    content: ' ';
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100 */
    background: #000000; /* Old browsers */
    background: -moz-linear-gradient(left, #000000 0%, rgba(0, 0, 0, 0.0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #000000 0%,rgba(0, 0, 0, 0.0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #000000 0%,rgba(0, 0, 0, 0.0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='rgba(0, 0, 0, 0.06) 100%)',GradientType=1 ); /* IE6-9 */
    position: absolute;
    top: 0;
    right: 0;
    width: 200%;
    height: 100%;
    z-index: 1;
}
.banner-content-overlay{

}
.banner .banner-content h1{
    font-size: 50px;
    line-height: 56px;
    font-weight: 600;
    color: #fff;
}
.banner .banner-content p{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
.join-btn{
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    padding: 12px 75px;
    display: inline-block;
    border-radius: 3px;
    transition: all 1s ease;
    margin: 15px auto;
}
.join-btn:hover{
    background-color: #0b3f74;
    color: #fff;
}
.apps img {
    height: 41px;
}
/*---------------
    BANNER END
-----------------*/
/*-----------------
   home-section1
------------------*/
.home-section1-grid{
    padding: 20px;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    min-height: 285px;
    transition-duration: 0.3s;
}
.home-section1-grid:hover{
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.home-section1-grid h5{
    font-weight: 600;
}
.home-section1-grid p{
    color: #3b3b3b;
    font-size: 15px;
    line-height: 22px;
}
.home-section1-grid p span, .movers-sec2-grid p span{
    text-transform: uppercase;
    color: #145da2;
    font-weight: 700;
}

/*-----------------
   home-section1-end
------------------*/

/*-----------------
   home-section2-start
------------------*/
.how-relodriver-works {
    display: flex;
    -webkit-flex: 1; /* Safari 6.1+ */
    -ms-flex: 1; /* IE 10 */ 
}
.how-relodriver-works .item {
    align-self: end;
}
.home-section2-picture {
    margin: 0 30px;
}
.home-section2{
    background-image: url(../images/relo-driver-works.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    background-attachment: fixed;   
}
.home-section2-overlay{
    background-color: rgba(15, 53, 114, 0.85);
    padding-top: 60px;
}
.circle-shape {
    width: 60px;
    height: 60px;
    text-align: center;
    padding: 14px 0;
    border-radius: 50px;
}
.home-section2-content .media .media-body h5{
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
}
.home-section2-content .media .media-body p{
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}
/*-----------------
   home-section2-end
------------------*/
/*---------------------
   home-section3-start
----------------------*/
.circle {
    width: 120px;
    height: 120px;
    text-align: center;
    border-radius: 100%;
    padding: 20px 0;
    margin: 0 auto;
}
.malibu-border{
    border: 8px solid #4fc3f7;
}
.deep-lilac-border{
    border: 8px solid #ab47bc;
}
.dark-cyan-border{
    border: 8px solid #009688;
}
.sunset-orange-border{
    border: 8px solid #ef5350;   
}
.home-section3-grid h2{
    color: #333333;
    font-weight: 400;
}
.home-section3-grid p{
    font-size: 20px;
    line-height: 26px;
    color: #333333;
    font-weight: 400;
}
/*---------------------
   home-section3-end
----------------------*/
/*-------------------
Subscription Plans wrap
--------------------*/
.subscription-wrap{
    background-image: url(../images/us-flag.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 840px;

}
.subscription-overlay{
    background-color: rgba(255, 255, 255, 0.83);
    position: relative;
}
.subscription-overlay:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fafafa+0,f9f6f30f+100 */
    background: #fafafa; /* Old browsers */
    background: -moz-linear-gradient(top, #fafafa 0%, #f9f6f30f 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #fafafa 0%,#f9f6f30f 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #fafafa 0%,#f9f6f30f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#f9f6f30f',GradientType=0 ); /* IE6-9 */
}
/* ---------------
pricing background start
------------------*/

.bg-gradient-blue{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3485f1+0,0b4ca2+100 */
    background: #3485f1; /* Old browsers */
    background: -moz-linear-gradient(left, #3485f1 0%, #0b4ca2 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #3485f1 0%,#0b4ca2 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #3485f1 0%,#0b4ca2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3485f1', endColorstr='#0b4ca2',GradientType=1 ); /* IE6-9 */
}
.bg-gradient-green{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#73c51b+1,578d0a+100 */
    background: #73c51b; /* Old browsers */
    background: -moz-linear-gradient(left, #73c51b 1%, #578d0a 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #73c51b 1%,#578d0a 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #73c51b 1%,#578d0a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#73c51b', endColorstr='#578d0a',GradientType=1 ); /* IE6-9 */
}
.bg-gradient-pink{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ef496c+2,c20d33+100 */
    background: #ef496c; /* Old browsers */
    background: -moz-linear-gradient(left, #ef496c 2%, #c20d33 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #ef496c 2%,#c20d33 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #ef496c 2%,#c20d33 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef496c', endColorstr='#c20d33',GradientType=1 ); /* IE6-9 */
}
.bg-gradient-orange{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fcbb48+2,e28204+100 */
    background: #fcbb48; /* Old browsers */
    background: -moz-linear-gradient(left, #fcbb48 2%, #e28204 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #fcbb48 2%,#e28204 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #fcbb48 2%,#e28204 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcbb48', endColorstr='#e28204',GradientType=1 ); /* IE6-9 */
}
.pricing-footer-bg-blue{
    background-color: #3384ef;
}
.pricing-footer-bg-green{
    background-color: #73c51b;
}
.pricing-footer-bg-pink{
    background-color: #f64a6e;
}
.pricing-footer-bg-orange{
    background-color: #eb951b;
}
.text-blue{color: #3384ef;}
.text-green{color: #73c51b;}
.text-pink{color: #f64a6e;}
.text-orange{color: #eb951b;}

/*--------------------
pricing background end
---------------------*/
/*--------------------------
       Contact Us Page
----------------------------*/
.contact-form-wrap {
    background: #fff;
}
.contact-banner{
    background: url(../images/contact-banner.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}
.contact-banner .banner-content{
    padding: 50px 0;
}
.contact-banner .banner-content h1{
    color: #145da2;
    line-height: 56px;
    font-weight: 700;
    text-transform: capitalize;
}
.contact-form-wrap label{
    color: #151515;
    font-size: 16px;
    font-weight: 600;
}
.contact-form-wrap .form-control {
    border: none;
    border-bottom: 1px solid #bfcbc5;
    box-shadow: none;
    font-size: 16px;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
}
.contact-form-wrap textarea.form-control{
    height: 150px;
    resize: none;
}
.contact-form-wrap .btn.focus, .contact-form-wrap .btn:focus, .contact-form-wrap .btn:hover{
    color: #fff;
    outline: none;
}

/*---------
   price
----------*/
.pricing{
    transition-duration: 0.3s;
    box-shadow: 0 0 11px 1px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}
.provider-grid-container:hover, .pricing:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.pricing-header{
    border-radius: 15px 15px 0 0;
    height: 90px;
    position: relative;
}
.offer {
    position: absolute;
    left: 14px;
    top: 0;
    background-image: url(../images/offer-bg.png);
    background-repeat: no-repeat;
    width: 70px;
    height: 80px;
    text-align: center;
    padding: 6px 0px;
}
.offer span{
    color: #bf0a30;
    font-size: 21px;
    font-weight: 500;
    margin: 0;
    display: block;
}
.offer b{
    color: #bf0a30;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.pricing-header p{
    color: #73c51b;
    font-size: 13px;
    line-height: 17px;
    font-weight: 700;
    background-color: #fff;
    border-radius: 50px;
    text-transform: uppercase;
    width: 80px;
    margin: 10px auto;
    display: inline-block;
}
.pricing-header h6.pricing-title{
    text-transform: uppercase;
    color: #fff;
    font-size: 19px;
    line-height: 23px;
    font-weight: 400;
    padding: 35px 0;
}
.pricing-header h5.pricing-title{
    text-transform: uppercase;
    color: #fff;
    font-size: 19px;
    line-height: 23px;
    font-weight: 400;
}
.pricing-price{
    font-size: 44px;
    line-height: 48px;
    font-weight: 700;
    text-transform: uppercase;
}
.pricing-price span.pricing-currency{
    vertical-align: 25px;
}
.pricing-price span{
    text-transform: lowercase;
    font-size: 17px;
    line-height: 21px;
    font-weight: 400;
}
.pricing-price p{
    color: #313131;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    padding-top: 20px;
    margin: 0;
}
.pricing-price i {
    border-bottom: 1px solid #d9d9d9;
    display: block;
    padding-bottom: 10px;
}
.pricing-body{
    background-color: #fff;
    padding: 0 15px;
}
.pricing-body ul.pricing-list{
    padding: 0;
    margin-bottom: 0px;
}
.pricing-body ul.pricing-list li{
    list-style: none;
    color: #313131;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    padding: 20px 0px;
    border-bottom: 1px solid #d9d9d9;
}
.pricing-footer{
    background: #fff;
    border-radius: 0 0 15px 15px;
}
.pricing-footer a{
    text-transform: uppercase;
    font-size: 15px;
    line-height: 19px;
    color: #fff;
    padding: 12px 40px;
    display: inline-block;
    border-radius: 3px;
}
.pricing-footer a:hover{
    text-decoration: none;
    color: #fff;
    background-color: #232323 !important;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out; 
}

/*-----------------------
       For movers
------------------------*/
.common-banner-title {
    font-size: 35px;
    line-height: 41px;
    padding-bottom: 7px;
    font-weight: 500;
    color: #002868;
}
.common-banner-title-pera {
    font-size: 17px;
    line-height: 23px;
    color: #000;
}
.movers-banner{
    background: url(../images/for-movers-banner.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}
.movers-banner .container div[class*='col-'] {
    min-height: 400px;
    position: relative;
}
.movers-banner .container div[class*='col-']:after {
    content: ' ';
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 0;
    right: 0;
    width: 200%;
    height: 100%;
    z-index: 1;
}
.movers-banner .container div[class*='col-'] .movers-banner-content {
    position: relative;
    z-index: 2;
    padding-top: 20%;
}

/*-----------------------
       For movers sec1
------------------------*/
.movers-sec1 .movers-sec1-grid{
    position: relative;    
}
.movers-sec1 .movers-sec1-grid:after{
    content: "";
    position: absolute;
    right: 4px;
    top: 0;
    height: 154px;
    border-right: 1px solid #da6f85;
}
.movers-sec1 .row .col-md-4:last-child .movers-sec1-grid::after{
    display: none;
}
.movers-sec1-grid .media-body h5{
    font-size: 17px;
    line-height: 23px;
    font-weight: 600;
    text-transform: uppercase;
}
.movers-sec1-grid .media-body p{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
/*-----------------------
       For movers sec2
------------------------*/
.movers-sec2-grid-wrap{
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 10px;
}
.movers-sec2-grid{
    padding: 20px;
}
.movers-sec2-grid h5{
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}
/*-----------------------
       For movers sec3
------------------------*/
.movers-sec3{
    background-image: url(../images/network-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 620px;
}
.number{
    border: 20px solid #f9de16;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    margin: 0 auto;
    padding: 65px 0;
}

/*-----------------------------------
       login and register page
-------------------------------------*/
.login-register-bg {
    background: url(../images/login-register-bg.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.login-register-box {
    width: 90%;
    margin: 0 auto;
    background: #ffffff; 
    /* box-sizing: border-box;
    /* width: 50%;
    margin-left: 50%;
    min-height: 100vh;
    background: #ffffff;
    padding: 30px 7%;
    box-sizing: border-box; */
}
.login-register-header-box .btn-group {
    display: flex;
    width: 100%;
}
.login-register-header-box.common-unit .btn-group{
    display: inherit;
}
.login-register-header-box .btn-group > a {
    width: 50%;
}
.login-register-header-box .btn-group .border-slate.active {
    border: 3px solid #2b4aa1;
    color: #2b4aa1 !important;
    background: #ffffff !important;
    box-shadow: none;
}
.login-register-header-box.common-unit .btn-group .border-slate.active{
    float: inherit;
    width: 80%;
}
.login-register-header-box .btn-group .border-slate {
    border: 3px solid #dadfe6;
    color: #dadfe6 !important;
    font-weight: 600;
    padding: 10px 50px;
    background: transparent;
    font-size: 16px;
}
.login-register-box .select2-container .select2-selection--single {
    height: 45px;
    border: 0;
    border-bottom: 1px solid #bfcbc5;
    border-radius: 0;
}
.login-register-box .select2-selection--single:hover,
.login-register-box .select2-selection--single:focus,
.login-register-box .select2-container--open .select2-selection--single {
    box-shadow: none;
}
.login-register-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
}
.login-register-box .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}
.login-register-box .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 41px;
}
.login-register-box .form-group {
    position: relative;
}
.card-icon {
    position: absolute;
    bottom: 9px;
    right: 0;
}
.card-icon img {
    width: 44px;
}
.info-cvv {
    position: absolute;
    bottom: 9px;
    right: 0;
}
/*----------------------
  domain policies
----------------------*/
.inner-banner {
    background-size: cover !important;
}
.inner-banner .banner-title {
    padding-top: 10%;
}
/*----------------------
  tools Grid
----------------------*/

/* relo tools area /////*/
.relo-box{
    border: 1px solid #e0e3e7;
    height: 145px;
    border-radius: 3px;
    padding: 40px 15px;
    margin-bottom: 20px;
    background: #fff;
}
.relo-box .media .media-body{
    vertical-align: middle;
}
.relo-box .media .media-body h5{
    color: #656f79;
    font-weight: 500;
}
.relo-box .media .media-body{
    padding-left: 0px;
}
.relo-box .media .media-body p{
    color: #aab3bc;
    font-size: 14px;
    line-height: 20px;
}
.relo-box.box-padding {
    padding: 28px 15px;
}
.relo-box-item{
    margin-bottom: 20px;
}
.relo-box-item p{
    font-size: 14px;
    color: #1c1e21;
}
.relo-box-item figure {
    text-align: center;
}
/*----------------------
       footer
----------------------*/
.logo img {
    height: 70px;
}
.footer-wrap{
    background-color: #151534;
}
.footer-wrap h6{
    font-size: 15px;
    line-height: 19px;
    font-weight: 600;
}
.footer-wrap ul li{
    list-style: none;
    padding: 6px 0;
}
.footer-wrap ul li a{
    color: #838d97;
    font-size: 15px;
    line-height: 19px;
}
.footer-wrap p{
    color: #838d97;
    font-size: 15px;
    line-height: 19px;
}

/*----------RESPONSIVE------------*/

@media only screen and (max-width:1199px){
    /*Home page*/
    .home-section2-picture.mobile {
        padding-top: 75px;
    }
    .home-section2-content .media  {
        min-height: 160px;
    }   
    .home-section2-content .media {
        padding-bottom: 20px !important;
    }
    .home-section1-grid {
        min-height: 325px;
    }
    .pricing-header h6.pricing-title, .pricing-header h5.pricing-title{
        font-size: 14px;
    }
    .pricing-header p{
        width: 65px;
        font-size: 10px;
        line-height: 14px;
    }
    .pricing-price{
        font-size: 32px;
        line-height: 36px;
    }
    .pricing-price span{
        font-size: 14px;
    }
}

@media only screen and (max-width:1024px){
    .relotech-header .navbar {
        left: -100%;
        top: 0;        
        background: rgb(222, 234, 255);
        width: 100%;
        height: 100%;
        z-index: 998;
        padding-top: 100px;
        transition: all 0.3s ease;
        position: fixed;
    }
    .relotech-header .navbar-toggle {
        display: block;
    }
    .show-menu .relotech-header .container {
        position: static;
    }
    body.show-menu {
        overflow: hidden;
    }
    .show-menu .relotech-header .navbar-toggle {
        background-image: url(../images/icons/dark-blue/close.svg);
        background-color: transparent;
        z-index: 999;
    }
    .show-menu .relotech-header .navbar {
        left: 0;
    }
    .relotech-header .navbar > li {
        float: none;
        display: block;
        width: 100%;
        text-align: center;
    }
    .relotech-header .navbar > li > a {
        text-align: center;
        padding: 25px 18px;
        font-size: 18px;
    }
    .relotech-header .navbar > li > a.header-login-btn {
        padding: 12px 40px;
        display: inline-block;
    }
    .relotech-header .logo {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width:991px){
    /* header */
    .relotech-header .logo {
        padding : 10px 0;
    } 
    .relotech-header .logo img {
        height: 40px;
    }

    /*Homepage*/

    .home-section1-grid {
        min-height: auto;
        margin-bottom: 40px;
    }
    .home-section1 .grid-container .col-md-4:last-child .home-section1-grid,.home-section3-grid:last-child {        
        margin-bottom: 0px;
    }
    .home-section3-grid {
        min-height: 240px;
        margin-bottom: 40px;
    }
    .home-section2-content .media {
        min-height: 100px;
    }
    .how-relodriver-works {
        flex-direction: column;
    }
    .how-relodriver-works .home-section2-picture.mobile {
        display: block;
        padding: 30px 0;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .how-relodriver-works .home-section2-picture.mobile img.hidden-md {
        display: none;
    }
    .how-relodriver-works .home-section2-content:last-child {
        padding-top: 0px !important;
    }
    .how-relodriver-works .home-section2-content:first-child .media {
        display: flex;
        flex-direction: row-reverse;
    }
    .how-relodriver-works .home-section2-content:first-child .media {
        display: flex;
        flex-direction: row-reverse;
        text-align: left;
    }
    .how-relodriver-works .home-section2-content:first-child .media-right {
        padding-left: 0px;
        padding-right: 10px;
    }
    .how-relodriver-works .home-section2-content:first-child .media-body {
        padding-left: 20px !important;
    }
    .how-relodriver-works {
        padding-bottom: 50px;
    }
    .home-section2-content {
        padding-top: 30px !important;
    }
    .pricing {
        margin-bottom: 20px;
        box-shadow: 0 0 11px 1px rgba(0, 0, 0, 0.2);
        border-radius: 15px;
    }
    /*login and Registration*/

    .login-register-header-box .btn-group .border-slate.active, .login-register-header-box .btn-group .border-slate{
        padding: 10px 30px;
    }

    /* movers */
    .movers-sec1 .movers-sec1-grid {
        margin-bottom: 30px;
    }
    .movers-sec1 .movers-sec1-grid::after {
        display: none;
    }
    .movers-sec1 .col-md-4:last-child .movers-sec1-grid {
        margin-bottom: 0px;
    }
    .movers-sec2-grid-wrap {
        grid-template-columns: auto;        
    }

    /*--------------
    footer
    --------------*/
    .footer-wrap .footer-logo img {
        width: 100%;
    }
    .footer-wrap ul.app li a img{
        width: 100%;
    }
}
@media only screen and (max-width:767px){
    /* login */
    .login-register-box {
        margin: 0 auto;
        width: 70%;
    }
    .login-register-bg {
        background: url(../images/login-bg-mobile.jpg) no-repeat;
        background-size: cover;
        padding: 50px 0;
    }

    /*Header*/       
    .banner .banner-content h1 {
        font-size: 32px;
        line-height: 36px;
    } 
    .banner .banner-content {
        padding-top: 7%;
    }   
    /*banner*/
    .banner{
        min-height: 350px;
    }
    .banner .banner-ovelay .banner-content{
        padding-top: 20%;
    }
    .banner .banner-ovelay .banner-content h1{
        font-size: 32px;
        line-height: 36px;
    }

    /* homepage */
    .common-title , .home-section2 h2 {
        font-size: 32px !important;
        line-height: 35px;
    }
    .common-paragraph {
        padding-bottom: 20px !important;
    }

    /* for mover */
    .number {
        width: 150px;
        height: 150px;
        padding: 44px 0 0 0;
        font-size: 32px;
    }

    /*footer*/
    .footer-wrap{
        text-align: center;
    }
    .footer-wrap div{
        padding-bottom: 10px;
    }
    .footer-wrap.p-b-20{
        padding-bottom: 0px !important;
    }
    .footer-wrap .footer-logo img, .footer-wrap ul.app li a img{
        width: inherit;
    }


}

@media only screen and (max-width:479px){  
    .login-register-box {
        margin: 0 auto;
        width: 90%;
    }
    .relotech-header .navbar-toggle{
        right: 0px;
    }    
    .banner {
        min-height: 250px;
    }
    .banner .banner-ovelay .banner-content{
        padding-top: 15%;
    }
    .banner .banner-ovelay .banner-content h1 {
        font-size: 18px;
        line-height: 24px;
    }
    .banner .banner-ovelay .banner-content p {
        font-size: 15px;
        line-height: 19px;
    }
    .provider-details-picture{
        padding-top: 10px;
    }    
    .banner-btn-group {
        padding-bottom: 20px;
    }

}
@media only screen and (max-width:375px){     
    .join-btn {
        padding: 10px 65px;
        margin-top: 0;
        font-size: 17px;
    }
    .how-relodriver-works .home-section2-picture.mobile img{
        width: 100%;
    }
}