@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
html,
body {
  font-family: 'Poppins', sans-serif;
}
body {
  background: #ffffff;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: var(--secondary);
  width: 100%;
}
* {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all ease .2s;
}
:root {
  --primary: #6A67FF;
  --secondary: #181A20;
}
button {
  cursor: pointer;
}
*:focus, *:visited, *:focus:visited, *:focus:active {
  outline: none !important;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
textarea:focus, input:focus {
  outline: none !important;
}
img {
  border: none;
  max-width: 100%;
}
::-moz-selection {
  background: #170025;
  color: #fff;
}
::selection {
  background: #170025;
  color: #fff;
}
a, a:hover {
  text-decoration: none;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
ul{
  margin: 0px;
  padding: 0px;
}
.page-wrapper{
  overflow: hidden;
  width: 100%;
}
section{
  width: 100%;
  padding-top: 100px;
}
.section-title{
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  color: var(--secondary);
  margin-bottom: 30px;
  text-transform: capitalize;
}


/*------- Buttons Style Start -------*/
.btn {
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: #fff;
  padding: 16px 56px 16px 30px;
  border-radius: 12px;
  transition: .2s ease-in;
}
.btn-primary {
  color: #fff;
  background: url("../../assets/images/right-up.svg") no-repeat var(--primary);
  background-position: right 30px center;
  border: 0px;
  transition: .2s ease-in;
}
.btn-primary-white{
  color: var(--secondary);
  background: url("../../assets/images/right-up-3.svg") no-repeat #fff;
  background-position: right 30px center;
}
.btn-outline-primary{
  color: var(--primary);
  background: url("../../assets/images/right-up-2.svg") no-repeat #fff;
  background-position: right 30px center;
  border: 1px solid var(--primary);
  padding: 15px 56px 15px 30px;
  transition: .2s ease-in;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn:first-child:active{
  background-color: var(--secondary);
  transition: .2s ease-in;
}
.btn-primary-white:hover,
.btn-primary-white:active,
.btn-primary-white:focus{
  background: url("../../assets/images/right-up.svg") no-repeat var(--primary);
  background-position: right 30px center;
  transition: .2s ease-in;
}
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus{
  color: #fff;
  border: 1px solid var(--primary);
  background: url("../../assets/images/right-up.svg") no-repeat var(--primary);
  background-position: right 30px center;
}
.btn-primary:active:focus,
.btn-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary:focus,
.btn:first-child:active:focus-visible{
  box-shadow: none;
}
.btn-grp .btn{
  margin-right: 30px;
}
.btn-grp .btn:last-child{
  margin-right: 0px;
}


/*------- Header Style Start -------*/
.main-header{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(248, 248, 248, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #F8F8F8;
}
.main-header.sticky-header{
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  background-color: rgba(248, 248, 248, 0.8);
  box-shadow: 0px 2px 20px 0px #6060600D;
  z-index: 999;
}
.main-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
}
.main-menu .navigation>li {
  position: relative;
  display: inline-block;
  margin-right: 56px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.main-menu .navigation>li:last-child{
  margin-right: 0px;
}
.main-menu .navigation>li>a{
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #59587B;
  text-decoration: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.main-menu .navigation>li>a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -33px;
  width: 100%;
  border-bottom: 2px solid var(--primary);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.main-menu .navigation>li:hover>a:before,
.main-menu .navigation>li.current>a:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.main-menu .navigation>li>a:hover,
.main-menu .navigation>li.current>a{
  font-weight: 600;
  color: #000000;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.head-login-register{
  position: relative;
  padding: 30px 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
.head-login-register>a{
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #000000;
  padding-right: 25px;
  background: url("../../assets/images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right center;
}
.head-login-register>a>img{
  margin-right: 8px;
}
.head-login-register .login-register-dropdown{
  position: absolute;
  right: -40px;
  top: 100%;
  width: 238px;
  z-index: 100;
  display: block;
  background: #ffffff;
  border: 1px solid #F5F5F5;
  box-shadow: 0px 10px 40px 0px #181A200D;
  padding: 11px 0 4px 0;
  border-radius: 24px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
.head-login-register:hover .login-register-dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
.login-register-dropdown li{
  border-bottom: 1px solid #F5F5F5;
  padding: 15px 24px;
}
.login-register-dropdown li:last-child{
  border-bottom: 0px;
}
.login-register-dropdown li a{
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  color: var(--secondary);
}
.login-register-dropdown li a.dropdown-logout{
  color: #FF6767;
}
.login-register-dropdown li a:hover,
.login-register-dropdown li.current-lr a{
  color: var(--primary);
}


/*------- Mobile Menu Style Start -------*/
.logo .mobile-nav-toggler {
  position: relative;
  font-size: 35px;
  line-height: 30px;
  cursor: pointer;
  margin: 0 0 0 30px;
  display: none;
}
.side-menu__block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}
.side-menu__block.active {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.side-menu__block-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0.7;
}
.side-menu__block-overlay .cursor-follower {
  background-color: rgba(8, 39, 64, 0.3);
}
.side-menu__block-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 520px;
  height: 100%;
  overflow-y: auto;
  background: #F9FAFC;
  z-index: 999999;
  padding: 40px 0;
  padding-top: 20px;
}
.side-menu__toggler {
  font-size: 40px;
  line-height: 40px;
  color: var(--secondary);
}
.side-menu__block-inner .mCustomScrollBox {
  width: 100%;
}
.side-menu__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 100px;
  padding-right: 40px;
}
.mobile-nav__container {
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 30px;
}
.mobile-nav__container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav__container li.dropdown ul {
  display: none;
  padding: 10px 0px 0px;
  margin-bottom: 20px;
  padding-left: 0.5em;
}
.mobile-nav__container li.dropdown ul li {
  margin-bottom: 10px;
}
.mobile-nav__container li.dropdown {
  position: relative;
}
.mobile-nav__container li.dropdown>a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-right: 25px;
  vertical-align: middle;
}
.mobile-nav__container li>a>span {
  background-color: var(--primary);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 40px;
  top: -3px;
  position: relative;
  margin-left: 5px;
}
.mobile-nav__container li.dropdown .dropdown-btn {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 22px;
  width: 22px;
  height: 22px;
  display: block;
  text-align: center;
  border: none;
  outline: none;
  background-color: transparent;
  color: #9ca3a9;
  font-size: 14px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.mobile-nav__container li.dropdown .dropdown-btn.open {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: var(--primary);
}
.mobile-nav__container li+li {
  margin-top: 25px;
}
.mobile-nav__container li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
}
.mobile-nav__container li a:hover {
  color: var(--primary);
}
.mobile-nav__container li.current-menu-item>a,
.mobile-nav__container li.current-menu-item .dropdown-btn,
.mobile-nav__container li.current .dropdown-btn,
.mobile-nav__container li.current>a {
  color: var(--primary);
}
.side-menu__sep {
  width: calc(100% - 200px);
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  background-color: #d8d8d8;
  margin-top: 50px;
  margin-bottom: 50px;
}
.side-menu__content {
  padding-left: 100px;
  padding-right: 100px;
}


/*--====== HOME PAGE STYLE START ======--*/
/*------- Hero Slider Style Start -------*/
.hero-slider-main{
  padding-top: 0px;
  position: relative;
}
.hero-slider{
  position: relative;
}
.hero-slider-item {
  width: 100%;
  position: relative;
}
.hero-slider-item .hero-slider-caption{
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 150px;
  z-index: 9;
}
.hero-slider-item .hero-slider-caption h3{
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  color: #fff;
  margin-bottom: 0px;
}
.hero-slider-item:after{
  position: absolute;
  content: "";
  width: 100%;
  height: 60%;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, #010101 90.82%);
}
.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1600px;
  height: 120px;
  text-align: left;
}
.hero-slider .owl-nav .owl-next,
.hero-slider .owl-nav .owl-prev {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #fff !important;
  padding: 0;
  margin: 0;
  font-size: 17px !important;
  color: #fff !important;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.hero-slider .owl-nav .owl-next {
  top: auto;
  bottom: 0;
}
.hero-slider .owl-nav .owl-next i,
.hero-slider .owl-nav .owl-prev i {
  vertical-align: middle;
}
.hero-slider .owl-nav .owl-next:hover,
.hero-slider .owl-nav .owl-prev:hover {
  background: #ffffff !important;
  color: #000 !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.counter-progress{
  position: absolute;
  left: 0;
  bottom: 265px;
  z-index: 9;
  width: 100%;
}
.hero-slide-control{
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}
.hero-slide-control #slide-counter span{
  width: 215px;
  display: inline-block;
}
.slideState{
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 13px;
  left: 24px;
}
.slideState span{
  position: absolute;
  height: 3px;
  background: #fff;
  left: 0;
  top: -1px;
  transition: all 0.5s ease;
  font-size: 0px;
}
.hero-booknow-card{
  position: absolute;
  top: 165px;
  right: 0;
  width: 100%;
}
.hero-booknow-in {
  width: 470px;
  position: relative;
  z-index: 9;
}
.hero-booknow-head{
  width: 100%;
  margin-bottom: 16px;
}
.hero-booknow-head h4{
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  color: #000;
  margin-bottom: 0px;
}
.hero-booknow-head p{
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
  margin-bottom: 0px;
}
.hero-booknow-tabs .nav-pills {
  background: #fff;
  border-bottom: 1px solid #DDDDDD;
  border-radius: 12px 12px 0 0;
  width: auto;
  display: inline-flex;
  padding: 18px 40px 0 40px;
}
.hero-booknow-tabs .nav-pills .nav-item {
  margin-right: 32px;
}
.hero-booknow-tabs .nav-pills .nav-item:last-child{
  margin-right: 0px;
}
.hero-booknow-tabs .nav-pills .nav-link {
  background: transparent;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #9B9BB9;
  padding: 0 5px 11px 5px;
  border-bottom: 2px solid #fff;
}
.hero-booknow-tabs .nav-pills .nav-link.active{
  background: transparent;
  color: var(--secondary);
  border-bottom: 2px solid #6A67FF;
}
.hero-booknow-tabs .tab-content {
  width: 100%;
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 32px;
}
.booknow-form h6{
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  color: var(--secondary);
  margin-bottom: 16px;
}
.booknow-radio-grp {
  width: 100%;
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}
.booknow-radio-grp .form-check {
  margin: 0;
}
.booknow-radio-grp .form-check-label{
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #000000;
}
.booknow-radio-grp .form-check .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid #9B9BB9;
  background: #fff;
  margin-top: 3px;
  margin-right: 10px;
}
.booknow-radio-grp .form-check .form-check-input:checked{
  border: 2px solid #6A67FF;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-3.3 -3.3 8 8'%3e%3ccircle r='2' fill='%236A67FF'/%3e%3c/svg%3e");
  background-size: 20px;
}
.booknow-radio-grp .form-check .form-check-input:focus{
  box-shadow: none;
}
form.row {
  margin-top: 0;
}
form.row>*{
  margin: 0px;
}
.form-floating>.form-control{
  width: 100%;
  height: 54px;
  border-radius: 15px;
  border: 1px solid #DCDBF0;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #000000;
  padding: 15px 16px;
  min-height: auto;
}
.form-floating>.form-control.dateselect{
  background: url("../../assets/images/calendar.svg") no-repeat;
  background-position: right 18px center;
}
.form-floating>label{
  font-family: Poppins;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #9B9BB9;
  padding: 15px 16px;
}
.form-control:focus{
  box-shadow: none;
}
.form-floating>.form-control-plaintext:focus,
.form-floating>.form-control-plaintext:not(:placeholder-shown),
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown){
  padding: 15px 16px;
}
.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label{
  font-size: 14px;
  line-height: 21px;
  color: #9B9BB9;
  padding: 0 4px;
  background: #fff;
  height: auto;
  transform: scale(0.9) translateY(-0.7rem) translateX(1.1rem);
}
.form-floating{
  width: 100%;
  margin-bottom: 20px;
}
.booknow-form .btn.btn-primary{
  min-width: 330px;
  font-size: 16px;
  line-height: 22px;
  background: var(--primary);
  padding: 16px 16px;
}
.booknow-form .btn-primary:hover,
.booknow-form .btn-primary:active,
.booknow-form .btn-primary:focus{
  background: var(--secondary);
}


/*Calendar Date Start*/
.datepicker {
  border-radius: 15px;
  padding: 0;
}
.datepicker-days table thead,
.datepicker-days table tbody,
.datepicker-days table tfoot {
  padding: 10px;
  display: list-item;
}
.datepicker-days table thead,
.datepicker-months table thead,
.datepicker-years table thead,
.datepicker-decades table thead,
.datepicker-centuries table thead {
  background: var(--primary);
  color: #ffffff;
  border-radius: 0;
}
.datepicker-days table thead tr:nth-child(2n+0) td,
.datepicker-days table thead tr:nth-child(2n+0) th {
  border-radius: 3px;
}
.datepicker-days table thead tr:nth-child(3n+0) {
  text-transform: uppercase;
  font-weight: 300 !important;
  font-size: 12px;
  color: #fff;
}
.table-condensed>tbody>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>thead>tr>th {
  padding: 7px 10px;
}
.table-condensed>tbody>tr>td {
  font-size: 14px;
}
.datepicker-months table thead td,
.datepicker-months table thead th,
.datepicker-years table thead td,
.datepicker-years table thead th,
.datepicker-decades table thead td,
.datepicker-decades table thead th,
.datepicker-centuries table thead td,
.datepicker-centuries table thead th {
  border-radius: 0;
}
.datepicker-days table tfoot {
  padding: 0px;
}
.datepicker td,
.datepicker th {
  border-radius: 50%;
  padding: 0 12px;
}
.datepicker-days table thead,
.datepicker-months table thead,
.datepicker-years table thead,
.datepicker-decades table thead,
.datepicker-centuries table thead {
  background: var(--primary);
  color: #ffffff;
  border-radius: 15px 15px 0 0;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-image: none;
}
.datepicker .prev,
.datepicker .next {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  width: 37px;
  height: 37px;
}
.datepicker .prev:hover,
.datepicker .next:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.99);
  font-size: 21px;
}
.datepicker .datepicker-switch {
  font-size: 20px;
  font-weight: 400;
  transition: 0.3s;
}
.datepicker .datepicker-switch:hover {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
}
.datepicker table tr td span {
  border-radius: 2px;
  margin: 3%;
  width: 27%;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: var(--primary);
  background-image: none;
}
.dropdown-menu {
  border: 1px solid rgba(0, 0, 0, .1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.datepicker-dropdown.datepicker-orient-top:before {
  border-top: 7px solid rgba(0, 0, 0, .1);
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 27px;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 26px;
}
.datepicker table tr td span {
  height: 40px;
  line-height: 40px;
}


/*------- Top Intro Style Start -------*/
.top-intro-section{
  padding-top: 31px;
}
.top-intro-content.pr-sm {
  padding-right: 20px;
}
.top-intro-content
.top-intro-content p{
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 30px;
}
.point-list{
  width: 100%;
  margin-bottom: 60px;
}
.point-list li{
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 25px;
  padding-left: 39px;
  position: relative;
}
.point-list li:last-child{
  margin-bottom: 0px;
}
.point-list li::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url("../../assets/images/point-list.svg") var(--primary);
  background-repeat: no-repeat;
  background-position: center center;
}
.top-intro-img{
  width: 100%;
  display: flex;
  gap: 30px;
  position: relative;
  align-items: flex-end;
}
.intro-img-1{
  width: 265px;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 35px;
}
.intro-img-2{
  width: 365px;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 74px;
}
.happy-clients-box{
  width: 275px;
  background: #fff;
  box-shadow: 0px 0px 50px 0px #181A2012;
  padding: 30px 34px;
  border-radius: 12px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 155px;
}
.happy-clients-box h6{
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 13px;
}
.client-item-box{
  display: flex;
  justify-content: center;
}
.client-item-box li{
  width: 50px;
  height: 50px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -12px;
}
.client-item-box li:first-child{
  margin-left: 0px;
}
.client-item-box li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.client-item-box li.clients-more{
  background: var(--secondary);
  font-size: 20px;
  line-height: 47px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}


/*------- How We Wrok Style Start -------*/
.section-heading{
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
.section-heading .section-title{
  margin-bottom: 16px;
}
.section-heading p{
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0px;
}
.howwe-wrok-card{
  width: 100%;
  text-align: center;
  padding: 75px 15px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.howwe-wrok-card.howwe-wrok-active,
.howwe-wrok-card:hover{
  border: 1px solid #F5F5F5;
  box-shadow: -40px 40px 40px 0px #181A200D;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.howwe-wrok-card img{
  margin-bottom: 16px;
}
.howwe-wrok-card h5{
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
}
.howwe-wrok-card p{
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 30px;
}


/*------- Moving Complicated Style Start -------*/
.moving-complicated-card{
  width: 100%;
  text-align: center;
}
.moving-complicated-card img{
  width: 100%;
  border-radius: 12px;
  margin-bottom: 32px;
}


/*------- Move Store Both Style Start -------*/
.move-store-both-img{
  width: 100%;
  padding-right: 80px;
  position: relative;
}
.move-store-both-img>img{
  width: 100%;
  border-radius: 12px;
}
.load-moved-card{
  width: 238px;
  position: absolute;
  bottom: 71px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 50px 0px #181A2012;
  padding: 20px 21px;
  display: flex;
}
.load-moved-card i{
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 10px;
  text-align: center;
}
.load-moved-in p{
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #717171;
  margin-bottom: 0px;
}
.load-moved-in h5{
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--secondary);
  margin-bottom: 0px;
}
.move-store-content {
  width: 100%;
  padding-left: 20px;
}
.move-store-content .section-heading{
  text-align: left;
}
.move-store-content .section-heading p{
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
}
.move-store-item{
  width: 100%;
  display: flex;
  margin-bottom: 30px;
}
.move-store-item:last-child{
  margin-bottom: 0px;
}
.move-store-item i{
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background: #F7F7F7;
  display: inline-block;
  margin-right: 20px;
}
.move-store-item-in{
  flex: 1;
}
.move-store-item-in h6{
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 5px;
}
.move-store-item-in p{
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0px;
}
.values-deliver-section{
  padding-top: 100px;
}


/*------- Home Testimonial Style Start -------*/
.home-testimonial .section-heading{
  margin-bottom: 0px;
}
.testimonial-item{
  width: 100%;
  background: url("../../assets/images/quote.svg") #ffffff;
  background-repeat: no-repeat;
  background-position: top 40px right 45px;
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  padding: 60px 50px 57px 60px;
  position: relative;
  margin: 32px 0 45px 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.testimonial-item:after{
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #fff;
  opacity: 0;
  border-radius: 0 0 12px 12px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.testimonial-carousel .owl-item.center .testimonial-item,
.testimonial-item:hover{
  box-shadow: 0px 10px 40px 0px #181A200D;
}
.testimonial-carousel .owl-item.center .testimonial-item:after,
.testimonial-item:hover:after{
  background: var(--primary);
  opacity: 1;
}
.testimonial-user{
  width: 100%;
  margin-bottom: 39px;
  display: flex;
  align-items: center;
}
.testimonial-user img{
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}
.testimonial-user-in{
  flex: 1;
}
.testimonial-user-in h6{
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 4px;
}
.testimonial-user-in p{
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #717171;
  margin-bottom: 0px;
}
.testimonial-content p{
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0px;
}
.testimonial-carousel .owl-dots{
  position: absolute;
  width: auto;
  text-align: center;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.testimonial-carousel .owl-dots .owl-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9B9BB9;
  margin: 0 4px;
}
.testimonial-carousel .owl-dots .owl-dot.active{
  width: 8px;
  height: 8px;
  background: var(--primary);
}
.testimonial-carousel .owl-nav{
  width: 145px;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}
.testimonial-carousel .owl-nav button{
  font-size: 25px !important;
  color: var(--secondary) !important;
}


/*------- Why Choose Us Style Start -------*/
.why-choose-img{
  width: 100%;
  height: 510px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  gap: 10px;
}
.why-choose-item:first-child{
  gap: initial;
  width: 56%;
}
.why-choose-item{
  width: 22%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.why-choose-item img{
  width: 100%;
  height: 50%;
  object-fit: cover;
  padding-bottom: 5px;
}
.why-choose-item img:last-child{
  padding-top: 5px;
  padding-bottom: 0;
}
.why-choose-item:first-child img{
  height: 100%;
  padding: 0px;
}


/*------- Our Blog Style Start -------*/
.our-blog-card{
  width: 100%;
}
.our-blog-img{
  width: 100%;
  position: relative;
  padding-bottom: 24px;
}
.our-blog-img img{
  width: 100%;
  height: 208px;
  border-radius: 12px;
}
.our-blog-date{
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: 0;
  right: 20px;
  background: #fff;
  box-shadow: 0px 6px 15px 0px #404F680D;
  text-align: center;
  padding: 9px;
  border-radius: 12px;
}
.our-blog-date p{
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0px;
}
.our-blog-date h6{
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 0px;
}
.our-blog-content h6{
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #717171;
  margin-bottom: 5px;
}
.our-blog-content h4{
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  color: var(--secondary);
  margin-bottom: 0px;
}
.our-blog-content h4 a{
  color: var(--secondary);
}
.our-blog-content h4 a:hover{
  color: var(--primary);
}


/*------- Talk to our expert Style Start -------*/
.talk-expert-section {
  padding-bottom: 90px;
}
.talk-expert-card{
  width: 100%;
  background: #F7F7F7;
  border-radius: 12px;
  padding: 108px 0;
}
.talk-expert-container{
  width: 100%;
  max-width: 1146px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.talk-expert-content{
  flex: 1;
}
.talk-expert-content .section-title{
  margin-bottom: 10px;
}
.talk-expert-content p{
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0px;
}
.talk-expert-btn{
  display: flex;
  gap: 29px;
}
.talk-expert-btn .btn-primary{
  background: var(--primary);
  padding: 16px 30px;
}
.talk-expert-btn .btn-primary:hover{
  background: var(--secondary);
}
.talk-expert-btn .btn-primary img{
  margin-right: 10px;
}
.talk-expert-btn .btn-outline-primary{
  background: url(../../assets/images/right-up-2.svg) no-repeat transparent;
  background-position: right 30px center;
}
.talk-expert-btn .btn-outline-primary:hover{
  background: url(../../assets/images/right-up.svg) no-repeat var(--primary);
  background-position: right 30px center;
}


/*------- Footer Style Start -------*/
footer{
  width: 100%;
  background: var(--secondary);
  padding-top: 80px;
}
.footer-info-card>img{
  margin-bottom: 24px;
}
.subscribe-card{
  width: 100%;
  margin-bottom: 65px;
}
.subscribe-card h4{
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  color: #fff;
  margin-bottom: 6px;
}
.subscribe-card p{
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  margin-bottom: 30px;
}
.subscribe-form{
  width: 567px;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
}
.subscribe-form form{
  width: 100%;
  display: flex;
}
.subscribe-form .form-control{
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  padding: 0 14px;
}
.subscribe-form .btn-primary{
  background: var(--primary);
  padding: 14px 28px;
}
.subscribe-form .btn-primary:hover{
  background: var(--secondary);
}
.footer-links{
  width: 100%;
}
.footer-links li{
  display: inline-block;
  margin-right: 40px;
}
.footer-links li:last-child{
  margin-right: 0px;
}
.footer-links li a{
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
}
.footer-links li a:hover{
  color: var(--primary);
}
.footer-contact-info-in{
  width: 100%;
  margin-bottom: 24px;
}
.footer-contact-info-in h6{
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #BEBDBD;
  margin-bottom: 8px;
}
.footer-contact-info-in p{
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  color: #FFFFFF;
  margin-bottom: 0px;
}
.footer-contact-info-in p a{
  color: #FFFFFF;
}
.footer-contact-info-in p a:hover{
  color: var(--primary);
}
.footer-social h6{
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.footer-social ul{
  display: flex;
  gap: 5px;
  margin-left: -15px;
}
.footer-social li a{
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.footer-social li a .social-icon-hv{
  display: none;
}
.footer-social li a:hover{
  background: #24252b;
}
.footer-social li a:hover .social-icon-hv{
  display: inline-block;
}
.footer-social li a:hover .social-icon{
  display: none;
}
.footer-copyright{
  width: 100%;
  border-top: 1px solid #4c4d52;
  margin-top: 24px;
  padding: 20px 0 24px 0;
  display: flex;
  justify-content: space-between;
}
.footer-copyright p{
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #BEBDBD;
  margin-bottom: 0px;
}
.footer-copyright ul{
  display: flex;
  gap: 25px;
  padding-right: 65px;
}
.footer-copyright li{
  position: relative;
}
.footer-copyright li:after{
  position: absolute;
  content: "·";
  top: 0;
  right: -13px;
  color: #BEBDBD;
}
.footer-copyright li:last-child:after{
  display: none;
}
.footer-copyright li a{
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #BEBDBD;
}
.footer-copyright li a:hover{
  color: #fff;
}


/*------- Scroll Top Style Start -------*/
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #DDDDDD;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap::after {
  position: absolute;
  font-family: bootstrap-icons !important;
  content: '\F145';
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #EB6753;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #EB6753;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}



/*--====== LOGIN / REGISTER PAGES STYLE START ======--*/
/*------- Register Section Style Start -------*/
.login-register-main{
  width: 100%;
  padding-top: 0px;
  display: flex;
  align-items: center;
}
.login-register-img{
  width: 54%;
  height: 1000px;
}
.login-register-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.login-register-card {
  width: 46%;
  padding-left: 94px;
}
.login-register-item {
  width: 406px;
}
.lr-logo{
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}
.lr-heading{
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.lr-heading h5{
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 0px;
}
.lr-heading p{
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #9B9BB9;
  margin: 8px 0 5px 0;
}
.lr-form-card .btn-primary{
  min-width: 330px;
  background: var(--primary);
  font-size: 16px;
  line-height: 24px;
  padding: 15px;
}
.lr-form-card .btn-primary:hover{
  background: var(--secondary);
}
.form-floating .field-icon {
  position: absolute;
  top: 15px;
  right: 16px;
  z-index: 9;
  color: #9B9BB9;
  font-size: 18px;
  cursor: pointer;
}
.verification-code-inputs{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
.verification-code-inputs input{
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1px solid #9B9BB9;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 17px;
  color: var(--primary);
}
.verification-code-inputs input:focus{
  border: 1px solid #000000;
}
.forgot-password-link{
  width: 100%;
  text-align: right;
  margin-bottom: 32px;
}
.forgot-password-link a{
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #000;
}
.forgot-password-link a:hover{
  color: var(--primary);
}
.register-link{
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.register-link p{
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #9B9BB9;
  margin: 0px;
}
.register-link p a{
  color: var(--primary);
}
.register-link p a:hover{
  text-decoration: underline;
}
.login-pass{
  margin-bottom: 8px;
}
.modal-backdrop{
  background: #0000004D;
}
.modal-backdrop.show{
  opacity: 1;
}
.pass-successfully-created .modal-dialog{
  max-width: 570px;
}
.pass-successfully-created .modal-content{
  width: 100%;
  background: #fff;
  border-radius: 8px;
  border: 0px;
}
.pass-successfully-created .modal-body{
  padding: 40px 15px;
}
.successfully-created-card{
  width: 100%;
  text-align: center;
}
.successfully-created-card i{
  display: inline-block;
  line-height: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #28AC55;
  font-size: 32px;
  color: #fff;
  margin-bottom: 16px;
}
.successfully-created-card h4{
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 8px;
}
.successfully-created-card p{
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  margin-bottom: 32px;
}
.successfully-created-card .btn-primary{
  min-width: 330px;
  background: var(--primary);
  font-size: 16px;
  line-height: 24px;
  padding: 15px;
}
.successfully-created-card .btn-primary:hover{
  background: var(--secondary);
}



/*--====== MY BOOKINGS PAGES STYLE START ======--*/
/*------- My Bookings Card Style Start -------*/
.sub-first-section{
  padding-top: 127px;
}
.sub-page-title{
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #000;
  margin-bottom: 24px;
}
.my-bookings-main{
  padding-bottom: 88px;
}
.my-bookings-card{
  width: 100%;
  border: 2px solid #F5F5F5;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px !important;
}
.my-bookings-card:last-child{
  margin-bottom: 0px;
}
.my-bookings-head{
  width: 100%;
  margin-bottom: 24px;
}
.my-bookings-date h6{
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #000;
  margin-bottom: 4px;
}
.my-bookings-date p{
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  margin-bottom: 0px;
}
.my-bookings-date p.status-ongoing{
  color: #E48900;
}
.my-bookings-date p.status-completed{
  color: #28AC55;
}
.my-bookings-date p.status-canceled{
  color: #ee1010;
}
.bookings-view-details a{
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #000;
}
.bookings-view-details a:hover{
  color: var(--primary);
}
.bookings-view-details a i {
  margin-left: 5px;
}
.bookings-view-details a i.bi-chevron-right::before {
  font-weight: 700 !important;
}
.bookings-tags{
  width: 100%;
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.bookings-tags span{
  width: auto;
  display: inline-block;
  border-radius: 8px;
  background: #F6F5FE;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: var(--primary);
  padding: 8px 12px;
}
.bookings-tags span.book-tag-2{
  background: #EEF7FA;
  color: #006BCE;
}
.bookings-tags span.book-tag-3{
  background: #EBF4FA;
  color: #12A1C0;
}
.bookings-info{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 80px;
  margin-bottom: 24px;
}
.bookings-info-card p{
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #9B9BB9;
  margin-bottom: 4px;
}
.bookings-info-card h5{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  margin-bottom: 0px;
}
.bookings-truck-info{
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.bookings-truck-info img{
  width: 56px;
  height: 56px;
  object-fit: cover;
  margin-right: 16px;
}
.bookings-truck-info-in{
  flex: 1;
}
.bookings-truck-info-in h6{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0px;
}
.btn-noicon{
  min-width: 142px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 14px;
  background: transparent;
}
.btn-noicon:hover,
.btn-outline-primary.btn-noicon:focus,
.btn-outline-primary.btn-noicon:active{
  background: var(--primary);
}

/*------- FAQ Section Style Start -------*/
h3.sub-page-title{
  font-size: 30px;
  margin-bottom: 40px;
}
.faq-main .content-card{
  margin-bottom: 40px;
}
.faq-card .accordion-item{
  width: 100%;
  border: 1px solid #DDD !important;
  background: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0px 10px 40px 0px rgba(24, 26, 32, 0.05);
}
.faq-card .accordion-item:last-child{
  margin-bottom: 0px;
}
.faq-card .accordion-button{
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #000000;
  padding: 18px 24px;
  background-color:#fff;
  box-shadow: none;
}
.faq-card .accordion-body p{
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #606060;
  margin-bottom: 0px;
}
.faq-card .accordion-button:not(.collapsed){
  background-color:#fff;
  box-shadow: none;
}
.faq-card .accordion-body{
  width: 100%;
  padding: 24px 24px 20px 24px;
}
.faq-card .accordion-button::after{
  background-image: url("../../assets/images/accordion-icon.svg");
  background-size: 7px;
  background-position: center;
}
.accordion-button:not(.collapsed)::after{
  transform: rotate(0.25turn);
}

/*------- Need Help Style Start -------*/
.regular .talk-expert-card{
  padding: 100px;
}


/*--====== MY BOOKINGS DETAILS PAGES STYLE START ======--*/
/*------- Booking Details Card Style Start -------*/
.booking-details-card .my-bookings-head{
  margin-bottom: 16px;
}
.booking-details-card .bookings-tags{
  margin-bottom: 32px;
}
.truck-drop-details{
  width: 100%;
}
.truck-drop-detail-card{
  width: 100%;
  padding-bottom: 32px;
  position: relative;
}
.truck-drop-detail-card.tdd-active:before{
  position: absolute;
  content: "";
  top: 0;
  left: 8px;
  width: 8px;
  height: 100%;
  background: url("../../assets/images/booking-details-border.png");
  background-size: 1px;
  background-position: bottom center;
  background-repeat: repeat-y;
}
.truck-drop-detail-card.tdd-active:after{
  position: absolute;
  content: "\F124";
  bottom: 0;
  left: 4.5px;
  font-family: bootstrap-icons !important;
  color: var(--primary);
  font-size: 15px;
  line-height: 9px;
  background: #fff;
}
.tdd-head{
  width: 100%;
  display: flex;
}
.tdd-head i{
  width: 24px;
  text-align: center;
  position: relative;
}
.tdd-head i:after{
  position: absolute;
  content: "";
  background: #fff;
  width: 24px;
  height: 30px;
  top: 0;
  left: 0;
}
.tdd-head i img{
  position: relative;
  z-index: 9;
}
.tdd-head-card{
  flex: 1;
  margin-left: 16px;
}
.truck-drop-detail-card h4{
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #000;
  margin-bottom: 8px;
}
.tdd-head-card .bookings-info{
  gap: 20px 40px;
  margin-bottom: 0px;
}
.multiple-pickups-card{
  max-width: 710px;
  margin-top: 32px;
  padding-left: 24px;
  border-left: 1px solid #9B9BB9;
  margin-left: 40px;
}
.multiple-pickups-info{
  width: 100%;
  display: flex;
  gap: 25px 68px;
  flex-wrap: wrap;
}
.multiple-pickups-info .bookings-info{
  margin-bottom: 0px;
  gap: 16px 40px;
  width: 45%;
}
.multiple-pickups-info .bookings-info .bookings-info-card:first-child{
  width: 100%;
}
.truck-details-info{
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.td-info-item{
  width: 48%;
  display: flex;
  align-items: center;
}
.td-info-item img{
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.td-info-item-name{
  flex: 1;
  margin-left: 24px;
}
.td-info-item-name h4{
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 4px;
}
.td-info-item-name h3{
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  margin-bottom: 0px;
}
.td-info-item-name h3 span{
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #8E8E8E;
  margin-left: 6px;
}
.booking-total-amount{
  width: 100%;
  margin-bottom: 32px;
  border: 2px solid #F5F5F5;
  border-radius: 12px;
  padding: 32px;
}
.booking-total-amount li{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.booking-total-amount li:last-child{
  margin-bottom: 0px;
}
.booking-total-amount li h6{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #9B9BB9;
  margin-bottom: 0px;
}
.booking-total-amount li h5{
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #000000;
  margin-bottom: 0px;
}
.booking-total-amount li.booking-total-main{
  padding-top: 24px;
  border-top: 2px solid #F5F5F5;
}
.booking-total-amount li.booking-total-main h6{
  color: #000000;
}
.booking-total-amount li.booking-total-main h5{
  color: var(--primary);
}
.download-invoice-btn a{
  display: inline-flex;
}
.download-invoice-name{
  flex: 1;
  margin-left: 16px;
}
.download-invoice-name h5{
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 4px;
  color: #000;
}
.download-invoice-name h6{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0px;
  color: #000;
  display: flex;
}
.download-invoice-name h6 i{
  color: var(--primary);
  margin-right: 4px;
  font-size: 18px;
}
.download-invoice-btn {
  padding-left: 8px;
}
/*------- Profile Style Start -------*/
.profil-detail{
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
.profile-photo img{
  max-width: 55px;
  border-radius: 50%;
}
.profile-modal .modal-dialog-centered.modal-sm{
  max-width: 660px;
}

/*--====== SERVICES PAGES STYLE START ======--*/
/*------- Services Intro Style Start -------*/
.sub-first-section-2{
  padding-top: 87px;
}
.services-intro{
  width: 100%;
  display: flex;
  align-items: center;
}
.services-intro-img {
  width: 50%;
  height: 920px;
}
.services-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-intro-content {
  width: 50%;
  padding-left: 80px;
}
.services-intro-content-in {
  width: 735px;
}
.services-intro-content .section-title{
  margin-bottom: 4px;
}
.services-intro-content p{
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 25px;
}
.services-intro-content p:last-child{
  margin-bottom: 0px;
}
.services-intro-content .point-list{
  margin: 32px 0;
  width: 380px;
}


/*------- Moving Made Easy Style Start -------*/
.moving-easy-section{
  padding-top: 100px;
}
.moving-easy-section .section-title{
  margin-bottom: 4px;
}
.moving-easy-section .point-list{
  margin-bottom: 32px;
}


/*------- Moving & Storage Style Start -------*/
.moving-storage-section{
  width: 100%;
  background: url("../../assets/images/moving-storage-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 190px 0;
  margin-top: 100px;
  position: relative;
}
.moving-storage-section::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(249, 243, 238, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.moving-storage-content{
  width: 100%;
  position: relative;
  z-index: 9;
  text-align: center;
}
.moving-storage-content h6{
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #000;
}
.moving-storage-content h3{
  font-size: 36px;
  font-weight: 600;
  line-height: 54px;
  color: #000;
  margin-bottom: 30px;
}
.moving-storage-btn{
  display: flex;
  gap: 20px 40px;
  justify-content: center;
}
.services-last-section{
  padding-bottom: 140px;
}



/*--====== BLOG PAGES STYLE START ======--*/
/*------- Blog Card Style Start -------*/
.blog-section-main{
  padding-bottom: 95px;
}
.blog-main-item{
  width: 100%;
  background: #fff;
  box-shadow: 0px 1px 4px 0px #181A2012;
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
}
.blog-main-item:last-child{
  margin-bottom: 0px;
}
.blog-main-img{
  width: 100%;
  position: relative;
}
.blog-main-img img{
  width: 100%;
}
.blog-main-date{
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: -45px;
  right: 18px;
  background: #fff;
  box-shadow: 0px 6px 15px 0px #404F680D;
  text-align: center;
  padding: 9px;
  border-radius: 12px;
}
.blog-main-date p {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0px;
}
.blog-main-date h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 0px;
}
.blog-main-content{
  width: 100%;
  padding: 32px 30px 37px 30px;
}
.blog-main-content h6{
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #717171;
  margin-bottom: 5px;
}
.blog-main-content h4{
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--secondary);
  margin-bottom: 20px;
}
.blog-main-content h4 a{
  color: var(--secondary);
}
.blog-main-content h4 a:hover{
  color: var(--primary);
}
.blog-main-content p{
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0px;
}


/*------- Blog Right Style Start -------*/
.blog-right-main {
  width: 100%;
  padding-left: 16px;
}
.blog-right-card{
  width: 100%;
  border: 1px solid #F5F5F5;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}
.blog-right-card:last-child{
  margin-bottom: 0px;
}
.blog-search .form-control{
  width: 100%;
  background: url("../../assets/images/search.svg") #ffffff;
  background-repeat: no-repeat;
  background-position: top 18px left 15px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  height: 55px;
  padding: 15px 15px 15px 43px;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #717171;
}
.blog-right-card>h4{
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 20px;
}
.categories-list li a{
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  color: var(--secondary);
}
.categories-list li a:hover{
  font-weight: 600;
}
.latest-post-item{
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.latest-post-item:last-child{
  margin-bottom: 0px;
}
.latest-post-item img{
  width: 90px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 15px;
}
.latest-post-name{
  flex: 1;
}
.latest-post-name h5{
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 2px;
}
.latest-post-name h5 a{
  color: var(--secondary);
}
.latest-post-name h5 a:hover{
  color: var(--primary);
}
.latest-post-name p{
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #717171;
  margin-bottom: 0px;
}
.popular-tag-list{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.popular-tag-list li a{
  border: 1px solid #DDDDDD;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #000;
  padding: 6px 19px;
  display: inline-block;
}
.popular-tag-list li a:hover{
  border: 1px solid var(--primary);
  color: var(--primary);
}
.bolg-pagination {
  width: 100%;
  margin-top: 47px;
  display: flex;
  justify-content: center;
}
.bolg-pagination .pagination{
  border: 0px;
  border-radius: 0px;
  gap: 12px;
}
.bolg-pagination .pagination .page-link{
  width: 40px;
  height: 40px;
  text-align: center;
  border: 0px;
  border-radius: 50px;
  background: #fff;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 40px;
  color: var(--secondary);
}
.bolg-pagination .pagination .page-link:hover{
  background: #EDEDED;
}
.bolg-pagination .pagination .page-item.active .page-link{
  background: var(--primary);
  color: #fff;
}
.bolg-pagination .pagination .page-link[aria-label="Previous"],
.bolg-pagination .pagination .page-link[aria-label="Next"]{
  box-shadow: 0px 1px 4px 0px #181A2012;
}



/*--====== BLOG DETAILS PAGES STYLE START ======--*/
/*------- Blog Details Style Start -------*/
.blog-details-head{
  width: 100%;
  margin-bottom: 32px;
}
.blog-details-head h1{
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 7px;
}
.blog-details-user{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog-details-user img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.blog-details-user span{
  font-size: 13px;
  font-weight: 400;
  line-height: 28px;
  color: #717171;
  display: inline-block;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #DDDDDD;
}
.blog-details-user span:last-child{
  padding-right: 0px;
  margin-right: 0px;
  border-right: 0px;
}
.blog-details-content{
  width: 100%;
}
.blog-details-content img{
  width: 100%;
  border-radius: 12px;
  margin-bottom: 41px;
}
.blog-details-content img:first-child{
  margin-bottom: 81px;
}
.blog-details-content h3{
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 11px;
}
.blog-details-content p{
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 25px;
}
.blockquote-card{
  width: 100%;
  background: #fef4f3;
  border-left: 3px solid var(--secondary);
  padding: 41px 40px 35px 58px;
  margin: 40px 0;
}
.blockquote-card p{
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 15px;
}
.blockquote-card h6{
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 0px;
}
.blog-details-list{
  margin-top: 20px;
  margin-bottom: 25px;
}
.blog-details-list li{
  min-width: 390px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 18px;
  margin-right: 70px;
  padding-left: 29px;
  position: relative;
}
.blog-details-list li::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: url(../../assets/images/point-list-2.svg) #e6f5eb;
  background-repeat: no-repeat;
  background-position: center center;
}
.blog-details-list-2 {
  margin-top: 20px;
}
.blog-details-list-2 li{
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
  list-style: inside;
}
.blog-details-list-2 li:last-child{
  margin-bottom: 0px;
}
.blog-share-post{
  width: 100%;
  border-top: 1px solid #DDDDDD;
  margin-top: 40px;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.share-post-card{
  display: flex;
  align-items: center;
}
.share-post-card h6{
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 0px;
  margin-right: 29px;
}
.share-post-card ul{
  display: flex;
}
.share-post-card li{
  margin-right: 20px;
}
.share-post-card li:last-child{
  margin-right: 0px;
}
.blog-details-tags{
  display: flex;
  gap: 10px;
}
.blog-details-tags a{
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 60px;
  padding: 5px 17px;
  background: #fafafb;
  color: var(--secondary);
}
.blog-details-tags a:hover{
  color: var(--primary);
}
.bd-last-section{
  padding-bottom: 140px;
}



/*--====== CONTACT US PAGES STYLE START ======--*/
/*------- Contact Us Map Style Start -------*/
.contact-map-main{
  margin-top: 87px;
  padding-top: 0px;
  width: 100%;
  height: 650px;
  position: absolute;
}
.contact-map-main img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-map-main .open-google-maps{
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 9;
}
.contact-map-main .open-google-maps a{
  display: inline-block;
  background: url(../../assets/images/right-up-3.svg) no-repeat #fff;
  background-position: right 20px center;
  box-shadow: 0px 10px 40px 0px #181A200D;
  font-family: Poppins;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  color: var(--secondary);
  padding: 10px 46px 10px 20px;
  border-radius: 12px;
}
.contact-map-main .open-google-maps a:hover{
  background: url(../../assets/images/right-up.svg) no-repeat var(--primary);
  background-position: right 20px center;
  color: #fff;
}


/*------- Contact Form Style Start -------*/
.contact-form-main{
  padding-top: 227px;
}
.contact-form-card{
  width: 470px;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  box-shadow: 0px 10px 40px 0px #181A200D;
  border-radius: 12px;
  padding: 32px;
  z-index: 9;
  position: relative;
}
.contact-form-card h6{
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 26px;
}
.form-floating>textarea.form-control{
  height: 141px;
}
.btn-primary-noicon{
  min-width: 142px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 15px;
  background: var(--primary);
}
.btn-primary-noicon:hover{
  background: var(--secondary);
}
.bw-330{
  min-width: 330px;
}
.contact-form-main .section-heading{
  text-align: left;
  margin-bottom: 21px;
}
.contact-form-main .section-heading .section-title{
  margin-bottom: 3px;
}


/*------- Contact Info Style Start -------*/
.contact-info-card{
  width: 100%;
  height: 444px;
  padding: 106px 20px 20px 20px;
  border-radius: 20px;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-info-card.ci-active,
.contact-info-card:hover{
  box-shadow: 0px 10px 40px 0px #181A200D;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.contact-info-card img{
  margin-bottom: 40px;
}
.contact-info-card h5{
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
}
.contact-info-card p{
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 5px;
}
.contact-phone{
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  color: var(--secondary);
  margin-bottom: 10px;
  display: inline-block;
}
.contact-phone:hover{
  color: var(--primary);
}
.ci-map{
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: var(--primary);
  text-decoration: underline;
  margin-top: 2px;
  display: block;
}
.ci-map:hover{
  text-decoration: underline;
}
.contact-info-card p a{
  color: var(--secondary);
}
.contact-info-card p a:hover{
  color: var(--primary);
}
.contact-last-section{
  padding-bottom: 100px;
}



/*--====== GET ESTIMATE PAGES STYLE START ======--*/
/*------- Get Estimate List Style Start -------*/
.get-estimate-section{
  padding-bottom: 70px;
}
.get-estimate-list{
  width: 100%;
}
.get-estimate-list li{
  width: 100%;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  position: relative;
  padding-left: 30px;
}
.get-estimate-list li:last-child{
  margin-bottom: 0px;
}
.get-estimate-list li::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url(../../assets/images/point-list.svg) #9B9BB9;
  background-repeat: no-repeat;
  background-position: center center;
}
.get-estimate-list li.active::before{
  background: url(../../assets/images/point-list.svg) var(--primary);
  background-repeat: no-repeat;
  background-position: center center;
}


/*------- Get Estimate Style Start -------*/
.get-estimate-item{
  width: 100%;
  margin-bottom: 32px;
  border: 2px solid #F5F5F5;
  border-radius: 12px;
  padding: 32px;
}
.ge-icon-text{
  width: 100%;
  padding: 18px 8px;
  display: flex;
  align-items: center;
}
.ge-icon-text i{
  display: inline-block;
  margin-right: 40px;
}
.ge-icon-content{
  flex: 1;
}
.ge-title{
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 24px;
}
.ge-icon-text .ge-title{
  margin-bottom: 16px;
}
.ge-icon-content .booknow-radio-grp{
  margin-bottom: 0px;
}
.ge-form .single-row .form-floating{
  margin-bottom: 0px;
}
.form-floating>.form-control.form-select{
  background: url("../../assets/images/select-box-dd.svg") #fff;
  background-repeat: no-repeat;
  background-position: center right 22px;
}
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after{
  display: none;
}
.form-floating>.form-control.form-select{
  color: #9b9bb9;
}
.form-floating>.form-control.form-select.option{
  color: #000000;
}
.form-floating>.form-control[type="time"]{
  background: url("../../assets/images/select-box-dd.svg") #fff;
  background-repeat: no-repeat;
  background-position: center right 22px;
}
.form-floating>.form-control[type="time"]::-webkit-inner-spin-button,
.form-floating>.form-control[type="time"]::-webkit-calendar-picker-indicator{
  background: none;
  -webkit-appearance: none;
}
.form-floating>.form-control[type="time"]:invalid~label{
  font-family: Poppins;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #9B9BB9;
  padding: 13px 16px;
  min-width: 150px;
  margin: 1px;
  transform: none;
  border-radius: 15px 0 0 15px;
}
.form-floating>.form-control[type="time"]:valid~label,
.form-floating>.form-control[type="time"]:focus~label,
.form-floating>.form-control[type="time"]:active~label {
  font-size: 14px;
  line-height: 21px;
  color: #9B9BB9;
  padding: 0 4px;
  background: #fff;
  height: auto;
  transform: scale(0.9) translateY(-0.7rem) translateX(1.1rem);
  border-radius: 0px;
  margin: 0px;
  min-width: initial;
}
.ge-multiple-pd-item{
  width: 100%;
}
.ge-multiple-pd-item>h6{
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 24px;
}
.ge-multiple-pd-form{
  width: 100%;
  position: relative;
  margin-top: 64px;
  padding-left: 8px;
  border-left: 1px solid #6A67FF;
}
.ge-multiple-pd-form:nth-child(2){
  border-top: 0px;
  margin-top: 0px;
}
.ge-multiple-pd-form::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #DCDBF0;
  top: -32px;
  left: 0;
}
.ge-multiple-pd-form:nth-child(2)::before{
  display: none;
}
.add-location{
  width: 100%;
  padding-top: 8px;
}
.add-location a{
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--primary);
}
.ge-multiple-pd-form .form-floating{
  margin-bottom: 24px;
}
.ge-multiple-pd-form .col-lg-6.col-md-6 .form-floating{
  margin-bottom: 0px;
}
.form-check.checkbox-custom{
  padding-left: 26px;
  margin-bottom: 16px;
}
.checkbox-custom .form-check-label{
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}
.checkbox-custom .form-check-input{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url(../../assets/images/point-list.svg) #9B9BB9;
  background-repeat: no-repeat;
  background-position: center center;
  border: 0px;
  margin-left: -26px;
}
.checkbox-custom .form-check-input:checked[type=checkbox]{
  background: url(../../assets/images/point-list.svg) var(--primary);
  background-repeat: no-repeat;
  background-position: center center;
}
.checkbox-custom .form-check-input:focus{
  box-shadow: none;
}
.ge-residential-equipment{
  width: 100%;
}
.ge-re-item{
  width: 100%;
  margin-bottom: 32px;
}
.ge-re-item:last-child{
  margin-bottom: 0px;
}
.ge-re-item .booknow-radio-grp{
  display: inline-block;
  margin-bottom: 0;
}
.ge-re-item-in{
  width: 100%;
  display: flex;
  align-items: center;
}
.ge-re-item-in img{
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-right: 24px;
}
.ge-re-item-in-content{
  flex: 1;
}
.ge-re-item-in-content h4{
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 4px;
}
.ge-re-item-in-content p{
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #E48900;
  margin-bottom: 4px;
}
.ge-re-item-in-content h3{
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  margin-bottom: 0px;
}
.ge-re-item-in-content h3 span{
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #8E8E8E;
  margin-left: 6px;
}
.ge-re-item .booknow-radio-grp .form-check{
  position: relative;
  padding-left: 48px;
}
.ge-re-item .booknow-radio-grp .form-check .form-check-input{
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
}
.moving-feature .row{
  margin-bottom: 30px;
}
.material-he-card{
  width: 100%;
  display: flex;
  gap: 20px 80px;
  flex-wrap: wrap;
}
.material-he-item img{
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 12px;
}
.material-he-item h6{
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 6px;
}
.material-he-item h4{
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  margin-bottom: 24px;
}
.material-he-item a{
  min-width: 142px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 15px;
  display: inline-block;
  text-align: center;
}
.material-he-item a:hover{
  color: #fff;
  background: var(--primary);
}
.material-he-item a.material-remove{
  color: #FF6767;
  border: 1px solid #FF6767;
}
.material-he-item a.material-remove:hover{
  color: #fff;
  background: #FF6767;
}
.damage-protection-card .booknow-radio-grp {
  width: 100%;
  display: flex;
  gap: 20px 80px;
  margin-bottom: 24px;
}
.damage-protection-card .ge-re-item-in img{
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 16px;
}
.ge-re-item-in-content p.dp-color-1{
  color: var(--primary);
}
.ge-re-item-in-content p.dp-color-2{
  color: #FF6767;
}
.damage-protection-card .booknow-radio-grp .form-check{
  position: relative;
  padding-left: 40px;
}
.damage-protection-card .booknow-radio-grp .form-check .form-check-input {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
}
.coverage-details-link a{
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #000;
}
.coverage-details-link a i {
  margin-left: 5px;
  position: relative;
  top: 1px;
}
.coverage-details-link a:hover{
  color: var(--primary);
}
.coverage-details-link a i.bi-chevron-right::before {
  font-weight: 700 !important;
}
.get-estimate-pay-card{
  width: 100%;
  margin-bottom: 32px;
}
.ge-payment-card-main{
  width: 100%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.ge-payment-card{
  width: 460px;
  border: 2px solid #F5F5F5;
  border-radius: 12px;
  padding: 32px;
}
.ge-payment-card.my-card-in{
  width: 100%;
  max-width: 540px;
  margin-bottom: 30px;
}
.ge-payment-card span{
  display: inline-block;
  background: #000;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: #fff;
  padding: 6px 14px;
  margin-bottom: 12px;
}
.ge-payment-card h5{
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  margin-bottom: 12px;
  color: #000;
}
.card-exp-date{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-exp-date h6{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0px;
  color: #000;
}
.ge-change-add-card{
  width: 460px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ge-change-add-card a{
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #000;
}
.ge-change-add-card a i {
  margin-left: 5px;
  position: relative;
  top: 1px;
}
.ge-change-add-card a:hover{
  color: var(--primary);
}
.ge-change-add-card a i.bi-chevron-right::before,
.ge-change-add-card a i.bi-plus-lg::before {
  font-weight: 700 !important;
}
.get-estimate-foot .checkbox-custom .form-check-label a{
  color: var(--primary);
  text-decoration: underline;
}
.get-estimate-foot .btn{
  margin-top: 16px;
}


/*------- Get Estimate Style Start -------*/
.card-modal-main .modal-dialog {
  max-width: 950px;
}
.card-modal-main .modal-content {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  border: 0px;
}
.card-modal-main .modal-body {
  padding: 40px 15px;
}
.card-modal-content{
  width: 460px;
  margin: 0 auto;
}
.card-modal-title{
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
.card-modal-title h4{
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  color: #232329;
  margin-bottom: 0px;
}
.choose-card-item .ge-payment-card{
  width: 100%;
  position: relative;
  margin-bottom: 32px;
}
.remove-card-link{
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #FF6767;
}
.setas-default-link{
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: var(--primary);
}
.add-new-card-btn{
  width: 100%;
  text-align: center;
}
.choose-card-item .form-check.checkbox-custom {
  position: absolute;
  top: 12px;
  right: 10px;
  padding-left: 0px;
  margin: 0;
}
.choose-card-item .checkbox-custom .form-check-input{
  width: 24px;
  height: 24px;
}
.errorColor
{
  color: #cf0303 !important;
  font-weight: 400 !important;
}
.form-control-phone{
  width: 100%;
  height: 54px;
  border-radius: 15px;
  border: 1px solid #DCDBF0;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #000000;
  padding: 15px 16px;
  min-height: auto;
}
.data{
  margin-bottom: 10px !important;
    color: var(--primary) !important;
}
.mb-book-auto
{
   margin-bottom: 40px;
}
.mt-20
{
  margin-top: 20px;
}
.ms-book-auto
{
  margin-left: auto!important;
  margin-top: 25px;
  margin-bottom: 20px;
}
.form-control-book {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}