/*===========================================================
 Custom Font CSS
============================================================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

@font-face {
    font-family: 'ArchivoSemiBold';
    src: url('../fonts/ArchivoSemiBold.eot');
    src: url('../fonts/ArchivoSemiBold.eot') format('embedded-opentype'),
        url('../fonts/ArchivoSemiBold.woff2') format('woff2'),
        url('../fonts/ArchivoSemiBold.woff') format('woff'),
        url('../fonts/ArchivoSemiBold.ttf') format('truetype'),
        url('../fonts/ArchivoSemiBold.svg#ArchivoSemiBold') format('svg');
}

/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --hamBg: red;
    --preloaderBg: red;

}

/*===========================================================
 Common CSS
============================================================*/

body {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #000;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    /* overflow-y: hidden; */
}

ul {
    padding: 0;
    margin: 0;
}


li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all .3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid #fff;
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

#npreOverlay {
    background: var(--preloaderBg);
}

/* Line Clmp */

.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.line-clamp-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.line-clamp-5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.line-clamp-6 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}



/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 35px;
    display: none;
    position: fixed;
    right: 10px;
    z-index: 999;
}

.go-top img {
    width: 35px;
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 0;
}

.go-top span:hover {
    color: #fff;
}


/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding: 15px 0;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu ul li {
    list-style: none;
    display: inline-block;
}

.navbar-light .navbar-toggler {
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/*===========================================================
 Hamberger
===========================================================*/


.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--hamBg);
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.navbar-toggler[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -o-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -o-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.navbar-nav.me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: 25px;
}

.nav-item a {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.88;
    color: #373737;
}

.navbar-light .navbar-nav .nav-link {
    color: #373737;

}

.nav-link {
    padding: 0;
}

.title-area {
    background-image: linear-gradient(125deg, #bd1819 61%, #f68d8f 89%);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.title {}

.title h2 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.4;
    color: #fff;
}

/*===========================================================
 Home
===========================================================*/
.home-banner-area {
    background-image: url(../img/banner.jpg);
    width: 100%;
    height: 100%;
    min-height: 625px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;

}

.home-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-banner-text {
    max-width: 760px;
    width: 100%;
}

.home-banner-form {
    max-width: calc(100% - 760px);
}

.home-banner-text h2 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.4;
    color: #fff;
    font-family: 'Archivo Black', sans-serif;
}

.home-banner-text p {
    font-size: 24px;
    line-height: 1.67;
    color: #fff;
    font-weight: 400;
    max-width: 680px;
}

.review-area {
    background-image: linear-gradient(145deg, #bd1819 58%, #f68d8f 99%);
    padding: 60px 0;
}

.prev span {
    font-size: 58.2px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.35);
}

.next span {
    font-size: 58.2px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.35);
}

.review-inner-area {}

.review-inner {
    text-align: center;
    padding: 20px 25px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.review-title h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.46;
    color: #fff;
    font-family: 'ArchivoSemiBold';
    margin-bottom: 60px;
}

.review-text {}

.review-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #373737;
    margin-top: 15px;
    margin-bottom: 10px;
}

.review-btn {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 52px;
    text-align: right;
}

.review-btn.bttn button,
.review-btn.bttn a {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    font-size: 20px;
    font-weight: 500;
    color: #ed2224;
    transition: .5s;
}
.footer-form .textarea{
    width: 100%;
}
.footer-form button:hover,
.bttn button:hover,
.bttn a:hover {
    background: #e21519;
    color: #fff;
}
label.error{
    display: block;
    color: #ed2224 !important;
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 100%;
}
.col label.error{
    left: 15px;
}
.review-area .bttn a:hover {}

.review-text h5 {
    font-size: 12px;
    line-height: 1.58;
    color: #373737;
    color: #ed2224;
}

.review-text h6 {
    font-size: 12px;
    line-height: 1.58;
    color: #373737;
}

.review-img img {
    display: inline-block;
}

.slider {
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}

/* .slick-list,
.slick-track,
.slick-slide,
.slider-inner{
height: 100%;
}
.review-inner{
height: 100%;
} */
.prev,
.next,
.slick-next,
.slick-prev {
    position: absolute;
    top: 36%;
    display: block;
    width: 50px;
    height: 50px;
    padding: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0;

}

.prev {
    left: -50px;
}

.next {
    right: -50px;
}

.vehicle-text {
    max-width: 540px;
}

.vehicle-text h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.40;
    color: #373737;
    font-family: 'ArchivoSemiBold';
    margin-bottom: 10px;
}

.vehicle-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #7b7b7b;
    margin-bottom: 35px;
}

.vehicle-area {
    padding-top: 80px;
    padding-bottom: 100px;
}

.vehicle-inner {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/

    flex-wrap: wrap;
}

.vehicle-img {
    max-width: calc(100% - 540px);
    width: 100%;
    padding-left: 60px;
    position: relative;
    min-height: 460px;
}

.vehicle-img-2 {
    position: absolute;
    right: 100px;
    top: 140px;
}

.steps-area {
    background-image: linear-gradient(145deg, #bd1819 58%, #f68d8f 99%);
    padding-top: 45px;
    padding-bottom: 80px;
}

.steps-title {}

.steps-title h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.46;
    color: #fff;

}

.step-icon {
    text-align: center;
}

.steps-title {
    margin-bottom: 50px;
}

.step-text {
    text-align: center;
}

.step-text {
    text-align: center;
    margin-top: 23px;
}

.step-text h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.88;
    color: #fff;
}

.step-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    margin-top: 10px;
}

.steps-area .step-text p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.single-service {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 30px 25px;
    height: 100%;
}
.service-area [class*="col-"] {
    margin-bottom: 30px;

}
.service-area {
    padding-top: 100px;
}

.service-text {
    text-align: center;

}

.service-text h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5;
    color: #373737;
    margin-bottom: 10px;
}

.service-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #7b7b7b;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.service-title {}

.service-title h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.46;
    color: #373737;
    margin-bottom: 65px;
}

.started-area {
    background-image: url(../img/bg-1.png);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 530px;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.started-text {
    text-align: center;
    max-width: 437px;
    margin-left: auto;
    margin-right: auto;
}

.started-text h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    color: #fff;

}

.started-text p {
    font-size: 20px;
    color: #fff;
    margin-top: 12px;
    margin-bottom: 35px;

}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/*===========================================================
 About
===========================================================*/
.about-area {
    padding-top: 100px;
}

.about-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-left-text {
    max-width: 570px;
    width: 100%;
}

.about-left-text h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.45;
    color: #373737;
    font-family: 'ArchivoSemiBold';

}

.about-right {
    max-width: calc(100% - 570px);
    /*max-width: 412px;*/
    /*width: 100%;*/
}

.about-left-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #7b7b7b;
    margin-top: 20px;
}

.about-left-text .bttn {
    margin-top: 25px;
}

/*
.quote-form {
    max-width: 412px;
    width: 100%;
}
*/
.quote-form-title h3 {
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: normal;
    text-align: left;
    color: #010101;
    margin-bottom: 12px;
}

.quote-form {}

.quote-inner-form div {
    margin-bottom: 25px;
}

.quote-inner-form div label {
    font-size: 13px;
    letter-spacing: -0.33px;
    color: #555353;
    margin-bottom: 5px;

}

.quote-inner-form div input {
    border: 0;
    width: 100%;
    height: 45px;
    border-radius: 4px;
    border: solid 0.8px #dadada;
    background-color: #fefefe;
    font-size: 13.4px;
    letter-spacing: -0.33px;
    color: #737373;
    padding: 0 12px;
}

.guote-btn {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 20px;

}

.guote-btn .bttn {}
.guote-btn .bttn a {
    width: 120px;
    font-size: 12px;
    font-weight: bold;
    line-height: 45px;
    color: #fefefe;
}
a.reset:hover{
    color: #fff;
}
a.reset{
    line-height: 50px;
    height: 50px;
    display: inline-block;
    text-decoration: none;
    border-radius: 3px;
}
.quote-banner {
    margin-bottom: 55px;
}

.quote-banner .home-banner {
    justify-content: center;
}

/*===========================================================
 Contact
===========================================================*/


.contact-area {
    padding: 100px 0;
}

.contact-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

.contact-left {
    max-width: 485px;
    width: 100%;
    padding-right: 15px;
}

.contact-left {}

.contact-left h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.23;
    color: #373737;
    font-family: 'Archivo Black', sans-serif;

}

.contact-left p {
    font-size: 16px;
    line-height: 1.5;
    color: #7b7b7b;
    margin-top: 7px;
    margin-bottom: 50px;
}

.contact-right {
    max-width: calc(100% - 485px);
    width: 100%;

}

.contact-right .single-form {}

.contact-right .single-form input {
    height: 60px;
    padding: 0 15px;
    border-radius: 5px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
    border: solid 1px #d8d8d8;
    font-size: 16px;
    line-height: 1.5;
    color: #7b7b7b;
}

.contact-right .textarea {
    height: 200px;
    margin-bottom: 40px;
}

.contact-right .textarea textarea {
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
    border: solid 1px #d8d8d8;
    height: 100%;
    font-size: 16px;
    line-height: 1.5;
    color: #7b7b7b;
}

address {
    margin-bottom: 0;
}

.contact-left .single-footer span:first-child {
    width: 55px;
}

.contact-left .single-footer span {
    font-size: 16px;
    line-height: 1.5;
    color: #7b7b7b;
}

.contact-left .single-footer div {
    margin-bottom: 35px;
}

.contact-left .single-footer span a {
    font-size: 16px;
    line-height: 1.5;
    color: #7b7b7b;
}
.footer-area [class*="col-"]:nth-child(3) h3{
    margin-bottom: 20px;
}
.pdl-70 {
    padding-left: 70px;
}
.footer-area [class*="col-"]:nth-child(3) div{
    margin-left: -6px;
}

/*===========================================================
 Work
===========================================================*/

.ship-area {
    padding-top: 100px;
}

.single-ship {
    max-width: 950px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;


    border-radius: 10px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
    background-color: #fbfbfb;
    padding: 38px;
    padding-bottom: 60px;
}

.single-ship:nth-child(2) {
    margin-left: 150px;
}

.single-ship:nth-child(3) {
    margin-left: 300px;
}

.ship-title h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.45;
    color: #373737;
    font-family: 'ArchivoSemiBold';
    margin-bottom: 55px;

}

.ship-icon {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    background-image: linear-gradient(165deg, #bd1819 52%, #f68d8f 118%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ship-text {
    max-width: 595px;
    width: 100%;
    padding-left: 50px;
}

.ship-text h3 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5;
    color: #373737;
    margin-bottom: 10px;
}

.ship-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #7b7b7b;

}

/*===========================================================
 
===========================================================*/

.bttn button,
.bttn a {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    border-radius: 5px;
    box-shadow: 4px 5px 15px 0 rgba(255, 83, 0, 0.1);
    background-color: #ed2224;
    line-height: 50px;
    display: inline-block;
    text-decoration: none;
    /*width: 153px;*/
    padding: 0 22px;
    text-align: center;
}

.footer-area {
    background: #494848;
    padding: 60px 0;
}

.single-footer {}

.single-footer h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.46;
    color: #fff;
    font-family: 'ArchivoSemiBold';
    margin-bottom: 25px;
}

.single-footer ul {}

.single-footer ul li {
    list-style: none;
}

.single-footer ul li a {
    margin-bottom: 10px;
    display: inline-block;
    transition: .5s;
}

.single-footer a:hover {
    color: #ed2224;
}

.single-footer a {
    font-size: 16px;
    line-height: 1.51;
    color: #fff;
    text-decoration: none;
}

.single-footer div {
    display: flex;
    align-items: center;
}

.single-form {
    margin-bottom: 10px;

}

.single-form input {
    border-radius: 2.9px;
    border: 0;
    box-shadow: 0 0.6px 5.8px 0 rgba(0, 0, 0, 0.1);
    border: solid 0.6px #fff;
    height: 34px;
    background: transparent;
    font-size: 10px;
    line-height: 1.5;
    color: #f2f2f2;
    padding: 0 9px;
    width: 100%;
}

.textarea textarea {
    width: 100%;
    background: transparent;
    border: 0;
    box-shadow: 0 0.6px 5.8px 0 rgba(0, 0, 0, 0.1);
    border: solid 0.6px #fff;
    height: 113px;
    resize: none;
    font-size: 10px;
    line-height: 1.5;
    color: #f2f2f2;
    padding: 10px 10px;
    width: 100%;
}

.form-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-inner .single-form {
    width: 49%;
}

.footer-form button {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    width: 110px;
    text-align: center;
    text-decoration: none;
    border-radius: 2.9px;
    background-color: #ed2224;
    line-height: 28px;
    margin-top: 12px;
}

.footer-form ::-webkit-input-placeholder {

    font-size: 10px;
    line-height: 1.5;
    color: #f2f2f2;
}

.footer-form :-ms-input-placeholder {
    font-size: 10px;
    line-height: 1.5;
    color: #f2f2f2;

}

.footer-form ::placeholder {
    font-size: 10px;
    line-height: 1.5;
    color: #f2f2f2;

}

.footer-left div h6 {
    margin-top: 85px;
    font-size: 16px;
    line-height: 1.51;
    color: #fff;
}

.copright-area {
    background-color: #1a1a1a;
    padding: 30px 0;
}

.copyright-text p {
    font-size: 16px;
    line-height: 1.51;
    color: #fff;
}

/*===========================================================
 
===========================================================*/

.panel {
    max-width: 412px;
    /*border: 1px solid #fff;*/
    border-radius: 10px;
    /*background-color: #fff;*/
    /* box-shadow: 0px 1px 3px #ccc; */
    border-radius: 20px;
    /* background: #ddd; */
    padding-top: 15px;
    padding-bottom: 50px;
    background-image: url(../img/steps-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}





.steps>ul>li {
    position: relative;
}

.steps>ul>li:after {
    background: rgba(58, 58, 58, .5);
    height: 1.7px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.steps>ul>li:after,
.steps>ul>li:before {
    height: 5px;
    position: absolute;
    content: '';
    height: 1.7px;
    top: 50%;
}

.steps {
    position: relative;
}

.steps:after {
    position: absolute;
    height: 1.7px;
    top: 50%;
    content: "";
    left: 0;
    width: 44px;
    z-index: 11;
    background: #ED2224;
}

.steps>ul>li:before {
    background: #ED2224;
}

li.done::before {
    background: #ED2224;
    left: 50%;
    z-index: 10;
    width: 100%;
}


.first.done+li.current+.last.done::before,
.first.current+li+.last.done::before,
.first.current+li::before {
    background: transparent !important;
}

.wizard-content .wizard>.steps>ul>li:after,
.wizard-content .wizard>.steps>ul>li:before {
    /* content: '';
    z-index: 9;
    display: block;
    position: absolute */
}

.wizard-content .wizard {
    width: 100%;
    overflow: hidden
}

.wizard-content .wizard .content {
    margin-left: 0 !important
}

.wizard-content .wizard>.steps {
    position: relative;
    display: block;
    width: 100%
}

.wizard-content .wizard>.steps .current-info {
    position: absolute;
    left: -99999px
}

.wizard-content .wizard>.steps>ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 0;
    padding: 0;
    list-style: none
}

.wizard-content .wizard>.steps>ul>li {
    display: table-cell;
    width: auto;
    vertical-align: top;
    text-align: center;
    /*position: relative*/
}

.wizard-content .wizard>.steps>ul>li a {
    position: relative;
    padding-top: 52px;
    margin-top: 20px;
    margin-bottom: 5px;
    display: block
}

.first.done+li.current+.last.done .step,
.first.current+li+.last.done .step,
.first.current+li .step {
    border: 2.5px solid rgba(58, 58, 58, 0.5) !important;
    background: #E5E3E3 !important;
    color: rgba(57, 57, 57, .3) !important;
}

/* .wizard-content .wizard>.steps>ul>li:before {
    left: 0
}

.wizard-content .wizard>.steps>ul>li:after {
    right: 0
} */
/* 
.wizard-content .wizard>.steps>ul>li:first-child:before,
.wizard-content .wizard>.steps>ul>li:last-child:after {
    content: none
} */

.wizard-content .wizard>.steps>ul>li.current>a {
    color: #2f3d4a;
    cursor: default
}

.wizard-content .wizard>.steps>ul>li.current .step {
    border-color: #ed2224;
    background-color: #ed2224;
    color: #fff !important;

}
.quote-form div{
    position: relative;
}

.wizard-content .wizard>.steps>ul>li.disabled a,
.wizard-content .wizard>.steps>ul>li.disabled a:focus,
.wizard-content .wizard>.steps>ul>li.disabled a:hover {
    color: #999;
    cursor: default
}

.wizard-content .wizard>.steps>ul>li.done a,
.wizard-content .wizard>.steps>ul>li.done a:focus,
.wizard-content .wizard>.steps>ul>li.done a:hover {
    color: #999
}

.wizard-content .wizard>.steps>ul>li.done .step {
    background-color: #ed2224;
    border-color: #ed2224;
    color: #fff;
}

.wizard-content .wizard>.steps>ul>li.error .step {
    border-color: #f62d51;
    color: #f62d51
}

.wizard-content .wizard>.steps .step {
    background-color: #fff;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -24px;
    z-index: 10;
    text-align: center
}

.wizard-content .wizard>.content {
    overflow: hidden;
    position: relative;
    width: auto;
    padding: 0;
    margin: 0
}

.wizard-content .wizard>.content>.title {
    position: absolute;
    left: -99999px
}

.wizard-content .wizard>.content>.body {
    padding: 0 30px
}

.wizard-content .wizard>.content>iframe {
    border: 0;
    width: 100%;
    height: 100%
}

.wizard-content .wizard>.actions {
    position: relative;
    display: block;
    text-align: right;
    padding: 0 30px
}

.wizard-content .wizard>.actions>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.wizard-content .wizard>.actions>ul:after {
    content: '';
    display: table;
    clear: both
}

.wizard-content .wizard>.actions>ul li:first-child {
    display: flex;
}

.wizard-content .wizard>.actions>ul li {
    width: 50%;
}

.wizard-content .wizard>.actions>ul>li {
    float: left
}

.wizard-content .wizard>.actions>ul>li+li {
    margin-left: 0;
}

.wizard-content .wizard>.actions>ul>li>a {
    width: 120px;
    font-size: 12px;
    font-weight: bold;
    line-height: 45px;
    color: #fefefe;
    border-radius: 5px;
    box-shadow: 4px 5px 15px 0 rgb(255 83 0 / 10%);
    background-color: #ed2224;
    line-height: 50px;
    display: inline-block;
    text-decoration: none;
    padding: 0 22px;
    text-align: center;
}

.wizard-content .wizard>.actions>ul>li>a:focus,
.wizard-content .wizard>.actions>ul>li>a:hover {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, .05) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, .05) inset
}

.wizard-content .wizard>.actions>ul>li>a:active {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, .1) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, .1) inset
}

.wizard-content .wizard>.actions>ul>li>a[href="#previous"] {
    background-color: #fff;
    color: #54667a;
    border: 1px solid #d9d9d9
}

.wizard-content .wizard>.actions>ul>li>a[href="#previous"]:focus,
.wizard-content .wizard>.actions>ul>li>a[href="#previous"]:hover {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, .02) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, .02) inset
}

.wizard-content .wizard>.actions>ul>li>a[href="#previous"]:active {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, .04) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, .04) inset
}

.wizard-content .wizard>.actions>ul>li.disabled>a,
.wizard-content .wizard>.actions>ul>li.disabled>a:focus,
.wizard-content .wizard>.actions>ul>li.disabled>a:hover {
    color: #999
}

.wizard-content .wizard>.actions>ul>li.disabled>a[href="#previous"],
.wizard-content .wizard>.actions>ul>li.disabled>a[href="#previous"]:focus,
.wizard-content .wizard>.actions>ul>li.disabled>a[href="#previous"]:hover {
    -webkit-box-shadow: none;
    box-shadow: none
}

/* 
.wizard-content .wizard.wizard-circle>.steps>ul>li:after,
.wizard-content .wizard.wizard-circle>.steps>ul>li:before {
    top: 37px;
    width: 50%;
    height: 1.7px;
    background-color: #ed2224;
}

.wizard-content .wizard.wizard-circle>.steps>ul>li.current:after,
.wizard-content .wizard.wizard-circle>.steps>ul>li.current~li:after,
.wizard-content .wizard.wizard-circle>.steps>ul>li.current~li:before {
    background-color: rgba(58, 58, 58, 0.5);
} */

.wizard-content .wizard.wizard-circle>.steps .step {
    width: 35px;
    height: 35px;
    line-height: 30px;
    border: 2.5px solid rgba(58, 58, 58, 0.5);
    font-size: 20px;
    border-radius: 50%;
    color: rgba(57, 57, 57, .3);
    background: #E5E3E3;
}

.wizard-content .wizard.wizard-notification>.steps>ul>li:after,
.wizard-content .wizard.wizard-notification>.steps>ul>li:before {
    top: 39px;
    width: 50%;
    height: 2px;
    background-color: #009efb
}

.wizard-content .wizard.wizard-notification>.steps>ul>li.current .step {
    border: 2px solid #009efb;
    color: #009efb;
    line-height: 36px
}

.wizard-content .wizard.wizard-notification>.steps>ul>li.current .step:after,
.wizard-content .wizard.wizard-notification>.steps>ul>li.done .step:after {
    border-top-color: #009efb
}

.wizard-content .wizard.wizard-notification>.steps>ul>li.current:after,
.wizard-content .wizard.wizard-notification>.steps>ul>li.current~li:after,
.wizard-content .wizard.wizard-notification>.steps>ul>li.current~li:before {
    background-color: #F3F3F3
}

.wizard-content .wizard.wizard-notification>.steps>ul>li.done .step {
    color: #FFF
}

.wizard-content .wizard.wizard-notification>.steps .step {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.3rem;
    border-radius: 15%;
    background-color: #F3F3F3
}

.wizard-content .wizard.wizard-notification>.steps .step:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -8px;
    margin-bottom: -8px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #F3F3F3
}

.wizard-content .wizard.vertical>.steps {
    display: inline;
    float: left;
    width: 20%
}

.wizard-content .wizard.vertical>.steps>ul>li {
    display: block;
    width: 100%
}

.wizard-content .wizard.vertical>.steps>ul>li.current:after,
.wizard-content .wizard.vertical>.steps>ul>li.current:before,
.wizard-content .wizard.vertical>.steps>ul>li.current~li:after,
.wizard-content .wizard.vertical>.steps>ul>li.current~li:before,
.wizard-content .wizard.vertical>.steps>ul>li:after,
.wizard-content .wizard.vertical>.steps>ul>li:before {
    background-color: transparent
}

.quote-inner-form select {
    width: 100%;
    height: 45px;
    border-radius: 4px;
    border: solid 0.8px #dadada;
    background-color: #fefefe;
    font-size: 13.4px;
    letter-spacing: -0.33px;
    color: #737373;
    padding: 0 12px;
}

#datepicker {
    background-image: url('../img/calendar.svg');
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 40px;
}

.Zebra_DatePicker_Icon_Wrapper {
    width: 100% !important;
    padding: 0 !important;
}

#datepicker {
    position: relative;
    width: 100%;
}

.Zebra_DatePicker {
    left: 50% !important;
    transform: translateX(-50%);
}

.social-icon {
    margin-left: -10px;
}
.footer-form button,
.social-icon a{
    transition: .5s;
}

.social-icon:hover a{
    opacity: 0.8;
}
.confirm-area {
    position: absolute;
    top: 0;
    bottom: -50px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 50px;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

.confirm {
    position: relative;
    max-width: 314px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
}

.confirm p {
    font-style: normal;
    font-weight: 700;
    font-size: 21.7009px;
    line-height: 122.7%;
    color: #1E1E1E;
}

.reset {
    width: 190px;
    background: rgba(237, 34, 36, 1);
    line-height: 45px;
    height: 45px;
    font-style: normal;
    font-weight: 700;
    font-size: 12.5198px;
    line-height: 15px;
    margin-top: 35px;

    color: #FEFEFE;
}

.actions.confirms,
.panel-body.confirms .quote-form {
    opacity: 0;
}

.panel-body.confirms .confirm-area {
    opacity: 1;
    visibility: visible;
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 1400px) {
    .social-icon {
        margin-left: -10px;
    }

    .social-icon img {
        width: 50px;
    }
}

@media (max-width: 991px) {
    .header-area {
        display: none;
    }

    .mobile-logo {
        width: 100px;
    }

    .dropdown-menu {
        padding-top: 0;
    }


    .home-banner-area .home-banner-form {
        /* display: none; */
        position: absolute;
        max-width: 100%;
        left: 50%;
        transform: translateX(-50%);
        top: 750px;
    }

    .home-banner-area {
        margin-bottom: 640px;
    }

    .home-banner-area.quote-banner {
        margin-bottom: 0;
        padding: 35px 0;
    }
}

/*===========================================================
 Responsive
============================================================*/

@media (max-width: 1399px) {
    .home-banner-text {
        max-width: 630px;
        width: 100%;
    }

    .home-banner-form {
        max-width: calc(100% - 630px);
    }

    .social-icon a {
        display: inline-block;
    }

    .single-ship:nth-child(3) {
        margin-left: 200px;
    }

    .single-ship:nth-child(2) {
        margin-left: 100px;
    }

    .service-text h2 {
        font-size: 22px;
    }

    .home-banner-text h2 {
        font-size: 42px;
    }

    .prev {
        left: -10px;
    }

    .next {
        right: -10px;
    }

    .review-btn {
        max-width: 1100px;
        margin-top: 25px;
        text-align: right;
        padding-right: 31px;
    }

    .vehicle-img-2 {
        position: absolute;
        right: 0;
        top: 150px;
    }

}

@media (max-width: 1199px) {
    .home-banner-text {
        max-width: 500px;
        width: 100%;
    }

    .home-banner-form {
        max-width: calc(100% - 500px);
    }

    .home-banner-text h2 {
        font-size: 33px;
    }

    .step-text h3 {
        font-size: 19px;
    }

    .step-text p {
        font-size: 15px;
    }

    .vehicle-text h2 {
        font-size: 38px;
    }

    .vehicle-text {
        padding-right: 18px;
    }

    .about-left-text h2 {
        font-size: 32px;
    }

    .single-ship:nth-child(2) {
        margin-left: 0;
    }

    .about-left-text {
        padding-right: 25px;
    }

    .pdl-70 {
        padding-left: 0;
    }

    .footer-form {
        margin-top: 25px;
    }

    .single-ship:nth-child(3) {
        margin-left: 0;
    }

    .service-text h2 {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .desktop-none {
        display: none;
    }
}

@media (max-width: 991px) {
    .desktop-none {
        display: block;
    }


    .review-btn {
        padding-right: 39px;
    }

    .vehicle-inner {
        flex-direction: column;
    }

    .vehicle-img {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        position: relative;
        min-height: auto;
        margin-top: 50px;
    }

    .vehicle-area {
        padding-top: 80px;
        padding-bottom: 220px;
    }

    .about-right {
        max-width: 100%;
        margin-top: 35px;
    }

    .service-text p {
        font-size: 15px;
    }

    .nav-item {
        margin-left: 0;
    }

    .navbar-nav.me-auto {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .nav-item {
        margin-left: 0;
        margin: 5px 0;
    }

    .contact-left {
        max-width: 100%;
        width: 100%;
        padding-right: 0;
    }

    .contact-right {
        max-width: 100%;
        width: 100%;
    }

    .contact-area {
        padding: 80px 0;
    }

    .ship-area {
        padding-top: 80px;
    }

    .ship-text {
        max-width: 100%;
        width: 100%;
        padding-left: 20px;
    }

    .ship-text h3 {
        font-size: 22px;
    }

    .single-ship {
        max-width: 950px;
        margin-bottom: 40px;
        padding: 25px;
        padding-bottom: 40px;
    }

    .ship-icon {
        height: 160px;
    }

    .ship-text p {
        font-size: 15px;
    }

    .ship-title h2 {
        margin-bottom: 40px;
    }

    .started-area {
        min-height: 400px;
    }

    .single-footer h3 {
        font-size: 28px;
    }

    .single-footer ul li a {
        margin-bottom: 6px;
    }

    .single-footer {
        margin-bottom: 50px;
    }

    .footer-form {
        margin-top: 0;
        margin-bottom: 60px;
    }

    .footer-left div h6 {
        margin-top: 40px;
    }

    .single-step {
        margin-bottom: 35px;
    }

    .steps-area {
        padding-bottom: 20px;
    }

    .steps-title h2 {
        font-size: 38px;
    }
}

@media (min-width: 768px) {
    .desktop-none {
        display: none;
    }
}

@media (max-width: 767px) {
    .home-banner-area .home-banner-form {
        width: 410px;
    }

    .home-banner-text h2 {
        font-size: 34px;
    }

    .vehicle-text h2 {
        font-size: 28px;
    }

    .vehicle-text p {
        margin-bottom: 30px;
    }

    .about-area {
        padding-top: 70px;
    }

    .about-left-text h2 {
        font-size: 30px;
    }

    .service-title h2 {
        margin-bottom: 40px;
    }

    .service-title h2 {
        font-size: 30px;
    }

    .mobile-none {
        display: none;
    }

    .title h2 {
        font-size: 40px;
    }

    .ship-title h2 {
        font-size: 28px;
    }

    .single-ship {
        flex-direction: column;
    }

    .ship-icon {
        margin-bottom: 45px;
    }

    .ship-text {
        padding-left: 0;
        text-align: center;
    }

    .contact-right .single-form input {
        height: 50px;
    }

    .copyright-text p {
        font-size: 15px;
        text-align: center;
    }

    .copright-area {
        padding: 26px 0;
    }

    .service-area {
        padding-top: 45px;
    }

    .steps-title h2 {
        font-size: 29px;
    }
}

@media (max-width: 575px) {
    .review-btn{
        padding-right: 0;
    }
    .review-inner{
        box-shadow: none;
    }
    .slick-track {
        display: flex !important;
    }

    .slick-slide {
        height: auto;
    }

    .slick-initialized .slick-slide {
        display: flex;
        align-items: center;
        background: #fff;
    }

    /* .slick-track{
        display: flex;
        align-items: center;
    } */
    .review-btn.bttn {
        text-align: center;
    }

    .review-title {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .review-area .container {
        max-width: 100%;
        width: 100%;
    }

    .review-inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .slick-initialized .slick-slide {
        margin: 10px;
    }

    .review-area .row {
        margin-left: 0;
        margin-right: 0;
    }

    .review-area .container,
    .review-area [class*="col-"],
    .slider {
        padding-left: 0;
        padding-right: 0;
    }

    .prev,
    .next {
        display: none;
    }

    .copyright-text p {
        font-size: 11px;
        line-height: 1.51;
        color: #fff;
        text-align: center;
    }

    .single-footer h3 {
        margin-bottom: 12px;
    }

    .contact-left h2 {
        font-size: 25px;
        font-family: 'ArchivoSemiBold';

    }

    .contact-right .textarea {
        height: 110px;
        margin-bottom: 30px;
    }

    .contact-area {
        padding: 45px 0;
    }

    .contact-left p {
        margin-bottom: 30px;
    }

    .contact-right .single-form input {
        height: 40px;
    }

    .title h2 {
        font-size: 28px;
    }

    .ship-title h2 {
        font-size: 24px;
    }

    .single-ship {
        max-width: 950px;
        margin-bottom: 20px;
        padding: 15px;
        padding-bottom: 30px;
    }

    .ship-icon {
        width: 78px;
        height: 78px;
    }

    .ship-area {
        padding-top: 45px;
    }

    .ship-icon img {
        width: 35px;
        height: 35px;
    }

    .started-text h2 {
        font-size: 36px;
    }

    .bttn a {
        font-size: 17px;
        line-height: 40px;
    }

    .about-area {
        padding-top: 45px;
    }

    .about-left-text h2 {
        font-size: 25px;
    }

    .service-title h2 {
        margin-bottom: 25px;
    }

    .service-title h2 {
        font-size: 22px;
    }

    .wizard-content .wizard>.content>.body {
        padding: 0 15px;
    }

    .wizard-content .wizard>.actions {
        padding: 0 15px;
    }

    .review-title h2 {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .steps-title h2 {
        font-size: 22px;
    }

    .home-banner-text h2 {
        font-size: 27px;
    }

    .home-banner-text p {
        font-size: 14px;
    }

    .home-banner-area {
        min-height: 445px;
    }

    .vehicle-text h2 {
        font-size: 24px;
    }

    .vehicle-img-1 {
        width: 237px;
    }

    .vehicle-img-2 {
        width: 237px;
    }

    .vehicle-img-2 {
        position: absolute;
        right: 0;
        top: 100px;
    }

    .vehicle-area {
        padding-top: 80px;
        padding-bottom: 190px;
    }

    .home-banner-area .home-banner-form {
        /* bottom: -490px; */
        top: 575px;
    }


}

@media (max-width: 450px) {
    .home-banner-area .home-banner-form {
        width: 327px;
    }
}