@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);
 .contain-head h1 {
    font-size: 2.4vw;
    text-align: center;
    font-weight: 600;
    color: #1F3A5F;
}
.heading-dy h2 {
    font-size: 2.5vw;
    text-align: center;
    font-weight: 600;
    color: #1F3A5F;
}
.contain-head h4, .contain-head p{
    color: #1F3A5F;
}
section {
    padding: 60px 20px;
}
.btn-one, .btn-two {
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.btn-one:hover, .btn-two:hover {
    transform: translateY(-2px);
    box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgba(58, 65, 111, 0.5) 0 -3px 0 inset;
}
.btn-one:active, .btn-two:active {
    transform: translateY(2px);
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px inset;
}
form#updatefrm button{
    background-color: #0077B6;
    color: white;
    border: none;
}
.contain-headings{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.contain-headings a{
    align-self: center;
    font-weight: 600;
}
.banner-area {
    padding-bottom: 0;
    padding-top: 100px;
}

.banner-area .contain-head h4 {
    font-size: 1.5vw;
}
.contain-head p {
    margin-top: 15px;
    font-size: 1vw;
    text-align: center;
}
.contain-img > img {
    max-width: 100%;
}
.img {
    max-width: 100%;
    height: auto;
    width: 100%;
}
.contain-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
 .calculator-area {
    background-color: white;
    background-image: url("<?php echo base_url() ?>application/views/assets/Calculator-banner.png");
     background-position: center;
    background-size: contain;
    padding: 120px 20px;
    background-color: #81d0f8;
    background-repeat: no-repeat;
}
.contain-form {
    background-color: #6cb4d9;
    border-radius: 15px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}
.contain-form h3 {
    background-color: #008dd7;
    padding: 10px 30px;
    text-align: center;
    color: white;
}
.contain-fields {
    padding: 30px;
}
.contain-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    border-right: 1px solid #ddd;
}
.fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: white;
    max-width: calc(50% - 15px);
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}
.fields input {
    width: 100%;
    border: none;
}
.contain-icons span {
    font-weight: 600;
    text-transform: capitalize;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
#calc-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
}
input::-webkit-input-placeholder {
    padding-left: 20px;
}
input::-moz-placeholder {
    padding-left: 20px;
}
input:-ms-input-placeholder {
    padding-left: 20px;
}
input::-ms-input-placeholder {
    padding-left: 20px;
}
input::placeholder {
    padding-left: 20px;
}
.fields.zip input {
    height: 50px;
}
.contain-perm {
    border-left: 1px solid #ddd;
}
.calculator-area button {
    border: none;
    margin: 0 auto;
    margin-top: 20px;
}
.howitwork {
    background-color: #81d0f8;
}
.howitwork h2 {
    text-align: center;
    font-size: 3vw;
}
.howitwork .contain-instructions {
    margin-top: 30px;
}
.howitwork .contain-instructions .contain-inst {
    width: calc(25% - 60px);
    position: relative;
}
.howitwork .contain-instructions .contain-inst:not(:last-child)::after {
    content: "";
    background-image: url(img/arrow.png);
    width: 50px;
    height: 50px;
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    top: 100px;
    left: calc(100% + 15px);
}
.howitwork .contain-instructions .contain-inst img {
    height: auto;
    max-width: 100%;
    width: 100%;
}
.howitwork .contain-instructions .contain-inst p{
    color: #1F3A5F;
    font-size: 1vw;
    text-align: center;
    padding: 0 10px;
    padding-top: 15px;
}
.description{
    color: #1F3A5F;
    font-size: 1vw;
    text-align: center;
}
.howitwork a, .check-reviews a, .info a{
    font-weight: 600;
    color: #1F3A5F;
}
.contain-instructions {
    display: flex;
    justify-content: space-between;
}
form#updatefrm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
form#updatefrm button {
    border-radius: 0;
    margin: 0;
    font-weight: normal;
    padding: 5px 15px;
}
form#updatefrm input {
    border: none;
    max-width: 300px;
    width: 100%;
    background: #d9d9d9;
}
form#updatefrm input::-webkit-input-placeholder, form#updatefrm input::-moz-placeholder, form#updatefrm input:-ms-input-placeholder, form#updatefrm input::-ms-input-placeholder, form#updatefrm input::placeholder {
    color: black;
}
.banner-area{
    background-color: #8DD9F8;
}
.calculator-area{
    background-color: #79D1F5;
}
.howitwork{
    background-color: #8DD9F8;
}
.About-eamon-area{
    background-color: #79D1F5;
}
.check-reviews{
    background-color: #8DD9F8;
}
.check-reviews .info a{
    font-weight: 600;
}
.need-help{
    background-color: #79D1F5;
}
.info{
    color: #1F3A5F;
    font-size: 1vw;
    line-height: 1.7em;
    text-align: center;
}
.title-one {
    color: #1F3A5F;
    margin-bottom: 0;
    margin-top: 0;
    font-size: .9vw;
    font-weight: 600;
}
.info-one{
    font-size: .8vw;
    margin-top: 1rem;
    color: #1F3A5F;
}
.row-three{
    display: flex;
    flex-wrap: wrap;
}
.left{
    flex: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.left a{
    font-weight: 600;
}
.right{
    flex: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img1 {
    max-width: 100%;
    height: auto;
    width: 70%;
}
.row-one{
    padding: 0 5rem;
}
@media screen and (max-width: 1350px){
    .contain-head h1{
        font-size: 2.9vw;
    }
    .heading-dy h2{
        font-size: 3vw;
    }
    .banner-area .contain-head h4 {
        font-size: 2.5vw;
    }
    .contain-head p, .howitwork .contain-instructions .contain-inst p, .info, .description{
        font-size: 1.4vw;
    }
    .btn-one{
        width: 50%;
    }
    .title-one{
        font-size: 1.2vw;
    }
    .info-one{
        font-size: 1.1vw;
    }
}
@media screen and (max-width: 990px){
    .w-100{
        justify-content: center;
    }
    .contain-head h1{
        font-size: 4vw;
        text-align: center;
    }
    .heading-dy h2{
        font-size: 4vw;
        text-align: center;
    }
    .banner-area .contain-head h4 {
        font-size: 3.5vw;
        text-align: center;
    }
    .contain-head p, .info{
        font-size: 1.9vw;
        text-align: center;
    }
    .howitwork .contain-instructions .contain-inst p, .description{
        font-size: 1.5vw;
    }
    .img{
        width: 70%;
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
    .btn-one, .btn-two{
        margin-top: 0;
        margin-bottom: 20px;
    }
    section {
        padding: 40px 20px;
    }
    .contain-img {
        flex: 100%;
    }
    .howitwork .contain-instructions .contain-inst{
        width: calc(30% - 60px);
    }
    .px-5{
    }
    .btn-one{
        width: 40%;
    }
    .img1{
        width: 80%;
    }
    .left, .right{
        flex: 100%;
    }
    .left{
        padding-left: 0;
        align-items: center;
    }
    .info{
        text-align: center;
    }
}
@media screen and (max-width: 980px) {
    .title-one{
        font-size: 1.3vw;
    }
    .info-one{
        font-size: 1.2vw;
    }
}
@media screen and (max-width: 900px){
    .contain-instructions{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .howitwork .contain-instructions .contain-inst{
        width: calc(50% - 60px);
    }
    .howitwork .contain-instructions .contain-inst p, .info, .description{
        font-size: 1.9vw;
    }
    .title-one{
        font-size: 1.7vw;
    }
    .info-one{
        font-size: 1.4vw;
    }
    .img1{
        width: 85%;
    }
}
@media screen and (max-width: 750px){
    .contain-head h1{
        font-size: 5.3vw;
    }
    .heading-dy h2{
        font-size: 4.5vw;
    }
    .banner-area .contain-head h4 {
        font-size: 4vw;
    }
    .contain-head p, .howitwork .contain-instructions .contain-inst p, .info, .description{
        font-size: 2.5vw;
    }
    .title-one{
        font-size: 1.8vw;
    }
    .info-one{
        font-size: 1.6vw;
    }
    .img1{
        width: 90%;
    }
}
@media screen and (max-width: 600px){
    .contain-head h1{
        font-size: 5.9vw;
    }
    .heading-dy h2{
        font-size: 4.9vw;
    }
    .banner-area .contain-head h4 {
        font-size: 4vw;
    }
    .contain-head p, .howitwork .contain-instructions .contain-inst p, .info, .description{
        font-size: 2.5vw;
    }
    .btn-one{
        width: 55%;
    }
    .btn-two{
        width: 40%;
    }
    .howitwork .contain-instructions .contain-inst p{
        padding: 0;
        padding-top: 10px;
    }
    .howitwork .contain-instructions .contain-inst{
        width: calc(60% - 60px);
    }
    section {
        padding: 30px 20px;
    }
    .img{
        width: 100%;
    }
    .input-group{
        flex-direction: row;
    }
    .title-one{
        font-size: 2.3vw;
    }
    .info-one{
        font-size: 2.1vw;
    }
    .row-one{
        padding: 0;
    }
}
@media screen and (max-width: 550px){
    .btn-one{
        width: 60%;
    }
    .btn-two{
        width: 50%;
    }
}
@media screen and (max-width: 500px){
    .contain-head h1{
        font-size: 6.5vw;
    }
    .heading-dy h2{
        font-size: 5.7vw;
    }
    .banner-area .contain-head h4 {
        font-size: 4.7vw;
    }
    .contain-head p, .howitwork .contain-instructions .contain-inst p, .info .description{
        font-size: 3.3vw;
    }
    .btn-one{
        width: 65%;
    }
    .btn-two{
        width: 55%;
    }
    section {
        padding: 20px 20px;
    }
    .img{
        width: 100%;
    }
    .w-100{
        justify-content: center;
    }
    .px-5{
        padding-right:1rem !important;
        padding-left:1rem!important;
    }
    .title-one{
        font-size: 2.6vw;
    }
    .info-one{
        font-size: 2.5vw;
    }
    .img1{
        width: 90%;
    }
    #calc-form{
        padding: 0 1rem !important;
    }
    .first-section{
        padding: 0!important;
    }
}
@media screen and (max-width: 450px){
    .btn-one{
        width: 80%;
    }
    .btn-two{
        width: 65%;
    }
    .howitwork .contain-instructions .contain-inst{
        width: calc(60% - 12px);
    }
    .w-100{
        justify-content: center;
    }
    .contain-head h1{
        font-size: 7vw;
    }
    .heading-dy h2{
        font-size: 7vw;
    }
    .banner-area .contain-head h4 {
        font-size: 5.5vw;
    }
    .contain-head p, .howitwork .contain-instructions .contain-inst p, .info, .description{
        font-size: 4vw;
    }
    .img{
        width: 100%;
    }
    .title-one{
        font-size: 3.7vw;
    }
    .info-one{
        font-size: 3.3vw;
    }
}
@media screen and (max-width: 420px){
    .btn-one{
        width: 90%;
    }
    .img1{
        width: 100%;
    }
}
@media screen and (max-width: 380px){
    .contain-head h1{
        font-size: 7.5vw;
    }
    .heading-dy h2{
        font-size: 5.1vw;
    }
    .banner-area .contain-head h4 {
        font-size: 4.8vw;
    }
    .contain-head p, .howitwork .contain-instructions .contain-inst p, .info, .description{
        font-size: 3.5vw;
    }
    .btn-one{
        width: 97%;
    }
    .btn-two{
        width: 72%;
    }
    .w-100{
        justify-content: center;
    }
    .img{
        width: 100%;
    }
    .title-one{
        font-size: 3.7vw;
    }
    .info-one{
        font-size: 3.3vw;
    }
}
@media (min-width: 990px) {
    .request_service {
        justify-content: center ;
    }
}
#shipperStreet::placeholder, #recipientStreet::placeholder {
    padding-left: 0;
}
#weightLabel::placeholder{
    padding-left: 0;
}
.radar-autocomplete-wrapper {
    display: flex !important;
    width: 100% !important;
    max-width: 500px !important;
    min-width: 250px !important;
    flex-direction: column !important;
}
.radar-autocomplete-results-list > * {
    flex: 1 1 auto !important;
    min-width: 250px !important;
    max-width: calc(50% - 5px) !important;
    padding: 8px !important;
    white-space: normal !important;
    flex-direction: column !important;
    justify-content: center!important;
}
@media screen and (max-width: 1200px) {
    .radar-autocomplete-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        min-width: unset !important;
    }
    .radar-autocomplete-results-list > * {
        max-width: 100% !important;
        min-width: unset !important;
        flex: 1 1 100% !important;
        text-align: center !important;
    }
}
@media screen and (max-width: 426px) {
    .radar-autocomplete-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        min-width: unset !important;
    }
    .radar-autocomplete-results-list > * {
        max-width: 100% !important;
        min-width: unset !important;
        flex: 1 1 100% !important;
        text-align: center !important;
    }
}
.row-two{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 0;
    align-items: stretch;
    padding: 0 10%;
    padding-top: 20px;
    padding-bottom: 30px;
    background-color: #8DD9F8;
    gap: 10px;
}
.column-one{
    align-self: center;
}
.phone {
    width: 340px;
    height: 570px;
    background: white;
    border-radius: 25px;
    border: 6px solid #1E1E1E; /* Black border */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
}

.phone:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.phone:active {
    transform: scale(0.95);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Notch */
.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 15px;
    background: #1E1E1E;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.screen {
    padding: 13px;
    
    border-radius: 15px;
}

.title-part {
    text-align: center;
    margin-top: 20px;
}

.content {
    text-align: center;
}

.column-two-new{
    display: flex;
    flex-direction: column;
}

.first-card, .second-card{
    display: flex;
    justify-content: center;
}

.snip1533 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #9e9e9e;
    display: inline-block;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    margin: 35px 10px 10px;
    max-width: 310px;
    min-width: 250px;
    position: relative;
    text-align: center;
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    border-top: 5px solid #4991C4;
  }
  
  .snip1533 *,
  .snip1533 *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
  }
  
  .snip1533 figcaption {
    padding: 13% 10% 12%;
  }
  
  .snip1533 figcaption:before {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    color: #4991C4;
    content: "\f10e";
    font-family: 'FontAwesome';
    font-size: 32px;
    font-style: normal;
    left: 50%;
    line-height: 60px;
    position: absolute;
    top: -30px;
    width: 60px;
  }
  .snip1533 a{
    text-decoration: none;
    color: #1F3A5F;
    font-weight: 600;
}
@media screen and (max-width: 1600px){
    .phone{
        width: 290px;
        height: 510px;
    }
}

@media screen and (max-width: 1350px){
    .phone{
        width: 320px;
        height: 550px;
    }
}
@media screen and (max-width: 1200px){
    .phone {
        width: 290px;
        height: 510px;
    }
}
@media screen and (max-width: 1100px){
    .phone {
        width: 270px;
        height: 460px;
    }
}
@media screen and (max-width: 762px){
    .phone {
        width: 260px;
        height: 430px;
    }
}
@media screen and (max-width: 750px) {
    .phone {
        width: 260px;
        height: 450px;
    }
}
@media screen and (max-width: 650px){
    .phone {
        width: 240px;
        height: 400px;
    }
}
@media screen and (max-width: 600px) {
    .phone{
        width: 270px;
        height: 470px;
    }
}
@media screen and (max-width: 450px) {
    .phone {
        width: 320px;
        height: 545px;
    }
}
.trustpilot-widget{
    padding-top: 30px;
}
@media screen and (max-width: 420px) {
    .phone{
        width: 290px;
        height: 515px;
    }
}
@media screen and (max-width: 400px) {
    .phone {
        width: 280px;
        height: 490px;
    }
}
@media screen and (max-width: 380px) {
    .phone {
        width: 270px;
        height: 470px;
    }
}
@media screen and (max-width: 360px) {
    .phone{
        width: 260px;
        height: 445px;
    }
    .snip1533{
        min-width: 230px;
    }
}
@media screen and (max-width: 320px) {
    .phone {
        width: 230px;
        height: 400px;
    }
    .snip1533{
        min-width: 200px;
    }
}
@media screen and (max-width: 290px) {
    .phone {
        width: 220px;
        height: 380px;
    }
}

