@import url("https://fonts.googleapis.com/css2?family=Epilogue:wght@200;300;400;500;600&display=swap");
:root {
  --color-1: #1D579E;
  --color-2: #1985C2;
  --darkColor: #444;
  --lite-1: #ececed;
  --blueShade1: #3C99DC;
  --blueShade2: #2565AD;
  --blueShade3: #66D3FA;
  --blueShade4: #0F5297;
  overflow-x: hidden;
  --font-1: "Epilogue", sans-serif;
}

.bg1 {
  background-color: #DD4B39;
}

.bg2 {
  background-color: orange;
}

.bg3 {
  background-color: green;
}

.bg4 {
  background-color: var(--color-2);
}

a {
  text-decoration: none !important;
}

body {
  padding-right: 0 !important;
}

h1, h2, h3, h4, h5, h6, p, a, li, span {
  font-family: var(--font-1);
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-2);
  font-size: 15px;
}

p {
  font-family: var(--font-1);
  color: #444;
  font-weight: 400;
  font-size: 14px;
}

figure {
  margin: 0;
}

/* RADIO BUTTON */
.radio-box-wrapper {
  margin-bottom: 5px;
}

.radio-box-wrapper > .radio-box {
  display: inline-block;
  margin-right: 25px;
}
@media (max-width: 559px) {
  .radio-box-wrapper > .radio-box {
    display: block;
    margin-right: 0;
  }
}

.radio-box-wrapper > .radio-box [type=radio]:checked,
.radio-box-wrapper > .radio-box [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio-box-wrapper > .radio-box [type=radio]:checked + label,
.radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--textColor);
  font-size: 22px;
  margin-bottom: 15px;
}

.radio-box-wrapper > .radio-box [type=radio]:checked + label:before,
.radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--darkColor);
  border-radius: 100%;
  background: #fff;
}

.radio-box-wrapper > .radio-box [type=radio]:checked + label:after,
.radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-1);
  position: absolute;
  top: 7px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.2s ease;
}

.radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

.radio-box-wrapper > .radio-box [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/* MATERIALIZE CHECKBOX */
.materialize-checkbox {
  position: relative;
}

.materialize-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0;
}

.materialize-checkbox label {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.materialize-checkbox label a {
  color: var(--color-1);
}

.materialize-checkbox label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  z-index: 0;
  border: 2px solid #000;
  border-radius: 1px;
  margin-top: 2px;
  transition: 0.2s;
}

.materialize-checkbox input[type=checkbox]:checked + label:before {
  top: -4px;
  left: -5px;
  width: 10px;
  height: 18px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(40deg);
  backface-visibility: hidden;
  transform-origin: 100% 100%;
}

.materialize-checkbox label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 0;
  transform: scale(0);
  border-radius: 1px;
  margin-top: 2px;
  transition: 0.2s;
}

[type=checkbox]:not(.filled-in) + label:after {
  border: 0;
  transform: scale(0);
}

.dis0 {
  display: none;
}

/* FLOATING FORM ELEMENT */
.floating-field-box {
  padding: 0px;
  margin-bottom: 10px;
}

.content-3 .floating-field-box {
  margin-bottom: 10px;
}

.user-input-wrps {
  position: relative;
  margin: 0 auto;
  width: 100%;
  cursor: pointer;
}

.user-input-wrps .inputText {
  width: 100%;
  outline: none;
  border: none;
  box-shadow: none !important;
  padding: 25px 13px 8px;
  background: transparent;
  border: 1px solid #111;
  border-radius: 6px;
  font-size: 12px;
  color: #000;
  cursor: pointer;
}

.user-input-wrps .inputText:focus {
  border-color: var(--theme-color);
  border-width: medium medium 2px;
}

.user-input-wrps .floating-labels {
  position: absolute;
  pointer-events: none;
  top: 18px;
  left: 15px;
  transition: 0.2s ease all;
  color: #111;
  font-size: 14px;
}

.floating-labels.active,
.user-input-wrps input.active + .floating-labels,
.user-input-wrps input:focus ~ .floating-labels {
  top: 8px;
  left: 15px;
  font-size: 13px;
  opacity: 1;
  color: #555;
}

.user-input-wrps .inputText:not(:placeholder-shown) + .floating-labels {
  top: 8px;
  left: 15px;
  font-size: 13px;
  opacity: 1;
  color: #555;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  /* -webkit-text-fill-color: #fff !important; */
}

.type-field {
  display: none;
}

.type-field.active {
  display: block;
}

.checkbox-holder {
  margin-top: 20px;
}

.married-box {
  display: none !important;
}

.married-box.active {
  display: block !important;
}

.floating-field-box.gridy {
  display: grid;
  grid-template-columns: 65px 1fr;
  grid-gap: 5px;
}

.floating-field-box.gridy .code {
  border: 2px solid #111;
  border-radius: 4px;
}

.floating-field-box.gridy .code select {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  font-weight: bold;
  outline: none;
}

/* COMMON STYLES */
.p0 {
  padding: 0;
}

.pageloader {
  display: none;
}

.header-top {
  background: url("../../images/bg/bg-3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
}

.header-top::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-1);
}

.grid-header-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  position: relative;
}

.grid-header-top .left h5 {
  position: relative;
  padding-left: 25px;
  top: 9px;
  font-weight: normal;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
}

.grid-header-top .left h5 svg {
  position: absolute;
  left: 0;
  top: -3px;
}

.grid-header-top .right {
  text-align: right;
}

.grid-header-top .right a {
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
}

.grid-header-top p {
  margin: 0;
}

@media (min-width: 992px) {
  .navbar {
    position: absolute;
    left: 0;
    z-index: 10;
    padding: 0 0;
    width: 100%;
    transition: 0.5s ease;
  }
}
.navbar.sticky {
  position: sticky;
  top: -1px;
  background: #fff;
  -o-box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  padding: 0 0;
  z-index: 99;
}

.grid-navbar {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 20px;
  padding: 0 0;
  width: 100%;
  margin: auto;
}

.grid-navbar .touch {
  text-align: right;
}

.navbar-brand img {
  width: 100%;
  max-width: 150px;
  position: relative;
  top: 2px;
  padding: 5px 0;
}

.navbar-nav {
  display: block;
  position: relative;
  text-align: right;
}

.navbar-expand-lg .navbar-nav .nav-item {
  display: inline-block;
}

.navbar-expand-lg .navbar-nav .nav-link {
  display: block;
  color: #222;
  padding: 27px 13px;
  font-family: var(--font-1);
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 5px 13px;
    position: relative;
    top: 7px;
  }
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  top: 100%;
  border: none;
  background: var(--color-1);
  padding: 8px;
  border: 1px solid #fff;
  border-top: none;
  position: absolute;
}
.navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2 {
  width: 350px;
  background-color: #fff;
  box-shadow: 0px 1px 8px rgba(118, 118, 118, 0.3);
  padding: 25px;
  right: 0;
  border-top: 3px solid var(--color-1);
}
.navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2.profile {
  width: 250px;
  padding: 15px 25px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2.profile img {
  width: 70px;
  height: 70px;
  border-radius: 70px;
  margin-bottom: 10px;
  border: 3px solid var(--color-1);
  padding: 5px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2.profile h5 {
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 5px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2.profile p {
  margin-bottom: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2.profile a {
  text-decoration: none;
  display: block;
}
.navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2.show {
  right: 0px !important;
  left: auto !important;
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2 {
    right: 0 !important;
    left: auto !important;
    margin-top: 8px;
    width: calc(100vw - 140px);
  }
}
.navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2::before {
  content: "";
  position: absolute;
  left: auto;
  right: 15px;
  top: -11px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--color-1);
}
.navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2 h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2 p {
  margin: 10px 0 10px;
  font-size: 14px;
  line-height: 19px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu.dropdown-type-2 li a {
  display: inline-block;
  color: var(--color-1) !important;
  text-decoration: underline;
  line-height: 10px;
  font-weight: bold;
  padding-bottom: 5px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu::before {
  content: "";
  position: absolute;
  left: 15px;
  top: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--color-1);
  /* z-index: 9; */
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:first-child {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child {
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
  padding: 8px 20px;
  font-size: 14px;
  color: #fff;
  background: var(--color-1) !important;
  white-space: normal;
  font-family: var(--font-1);
  font-size: 16px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover {
  color: var(--color-2);
}

.navbar-expand-lg .navbar-nav .dropdown-menu li:last-child .dropdown-item {
  border-bottom: none;
  box-shadow: none !important;
}

.accordion-button {
  outline: none;
  box-shadow: none !important;
}

.service-menu-widget .accordion-collapse {
  border-top: none;
  border-radius: 0 0 6px 6px;
}

.service-menu-widget .accordion-collapse a {
  position: relative;
  padding: 10px 25px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #111;
  margin: 5px 0;
  border: 1px solid #eee;
  white-space: normal;
}

.service-menu-widget .accordion-collapse a:last-child {
  margin-bottom: 0;
}

.service-menu-widget .accordion-collapse a::before {
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 10px;
  font-weight: bold;
  font-family: "FontAwesome";
}

.service-menu-widget .accordion-button:not(.collapsed) {
  color: #222;
  font-weight: bold;
}

.accordion-xs-radio,
.accordion-xs {
  display: none;
}

.accordion-xs-radio + label {
  position: relative;
}

.accordion-xs-radio + label::before {
  content: "\f107";
  position: absolute;
  right: 10px;
  top: 0px;
  font-family: "FontAwesome";
  font-size: 18px;
  transition: 0.5s ease;
}

.accordion-xs-radio:checked + label::before {
  content: "\f106";
}

.accordion-xs-radio:checked ~ .accordion-xs {
  display: block;
  background: #fff;
  padding: 0;
}

.dropdown-menu.md {
  width: 200px !important;
}

.dropdown-menu.lg {
  width: 300px !important;
}

.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: var(--color-2);
}

.sub-menu-radio,
.sub-menu {
  display: none;
}

.sub-menu-radio:checked + .sub-menu {
  display: block;
}

.sub-menu a {
  padding: 2px 13px;
}

.touch a {
  position: relative;
}

.touch a.any-questions {
  display: inline-block;
  position: relative;
  text-align: left;
  font-size: 14px;
  top: 18px;
  right: 15px;
}

.touch a.any-questions .ico {
  position: absolute;
  left: 0;
  top: 5px;
  width: 30px;
}

.touch a.any-questions .inner {
  padding-left: 40px;
}

.touch a.any-questions h5 {
  margin: 0;
  color: #333;
  font-weight: bold;
  font-size: 17px;
}

.touch a span.ico {
  position: absolute;
  width: 35px;
}

.touch a span.ico img {
  width: 100%;
}

.touch a.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 15px 8px;
  background: var(--color-2);
  color: #fff !important;
  line-height: 20px;
  top: 20px;
  font-family: var(--font-1);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.touch a.type-2 {
  background: var(--color-3);
}

.hamburger {
  position: relative;
  top: -10px;
  display: flex;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  padding-top: 5px;
  padding-bottom: 5px;
}
.hamburger span {
  height: 2px;
  width: 83.33333333%;
  background: var(--color-1);
  transition: all 400ms ease-in-out;
}
.hamburger span.top-bun {
  animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}
.hamburger span.meat {
  animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}
.hamburger span.bottom-bun {
  width: 58.33333333%;
  transition: all 100ms ease-in-out;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}
@keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
.accordion-body {
  padding: 0;
}

.accordion-item {
  border: none;
}

.navbar-expand-lg .navbar-nav .dropdown-menu .accordion-body .dropdown-item {
  background: var(--color-3) !important;
}

.accordion-button:focus {
  border: none !important;
}

/* SM XS HEADER */
.grid-header-sm-xs {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 15px;
  z-index: 1001;
  background: #fff;
  padding: 5px 20px 0 10px;
  -o-box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.header-sm-xs .logo img {
  width: 100%;
  max-width: 90px;
  position: relative;
  top: 4px;
}

.grid-header-sm-xs .touch {
  text-align: center;
}
.grid-header-sm-xs .touch > nav, .grid-header-sm-xs .touch > a {
  display: inline-block;
}

.grid-header-sm-xs .touch nav {
  padding: 0;
  line-height: 27px;
  background-color: transparent;
  position: relative;
  top: -3px;
  right: -8px;
}
.grid-header-sm-xs .touch nav a {
  top: 7px;
  padding: 0;
  line-height: 27px;
  top: 2px;
  background-color: transparent;
  padding: 0 10px;
}
@media (max-width: 991px) {
  .grid-header-sm-xs .touch nav a {
    padding: 0;
  }
}

.grid-header-sm-xs .touch > a {
  top: 3px;
  padding: 0;
  background-color: transparent;
  padding: 0 10px;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  line-height: 39px;
  text-align: center;
  margin-left: 3px;
}
.grid-header-sm-xs .touch > a .fa {
  color: var(--color-1);
  font-size: 15px;
}

ul.style-1 li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
ul.style-1 li a {
  color: inherit;
  display: block;
}

ul.style-1.inline li {
  display: inline-block;
  margin-right: 15px;
}

ul.style-1.lite li {
  color: #bbb;
}

ul.style-1.social li .fa,
ul.style-1 li::before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "FontAwesome";
}

ul.style-1.social li {
  padding-left: 25px;
}

ul.style-1.social li .fa {
  top: 5px;
}

ul.style-1.social li::before {
  display: none !important;
}

ul.style-2 li {
  position: relative;
  padding-left: 35px;
}

ul.style-2 li span,
ul.style-2 li .fa {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 18px;
}

ul.style-2 li p {
  color: #fff;
}

ul.style-2 li span {
  color: #a8aec4;
  font-size: 14px;
  font-weight: normal;
}

.btn-1, .btn{
  background-color: var(--color-1);
  display: inline-block;
  padding: 6px 14px;
  font-size: 14px;
  border: none;
  color: #fff;
  font-weight: bold;
  font-family: var(--font-1);
}
.btn-1, .btn:hover {
  background-color: var(--color-2);
  color: #fff;
}

/* TITLES */
.title-block {
  max-width: 600px;
  margin: 0 auto 30px;
}

.title-1-wrapper .title-1 {
  font-size: 30px;
  line-height: 42px;
  font-style: normal;
  font-family: var(--font-1);
  color: var(--darkColor);
}
/* COMMON STYLES */
.page-header-1 {
  position: relative;
}
@media (max-width: 991px) {
  .page-header-1 {
    padding: 0;
  }
}
.page-header-1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.page-header-1 .container-fluid {
  padding: 0;
  background-color: var(--color-1);
  position: relative;
}
.page-header-1 .container-fluid ul {
  padding: 10px 0 15px;
  margin: 0;
  display: block;
}
.page-header-1 .container-fluid ul li {
  display: inline-block;
  margin-right: 15px;
  font-weight: bold;
  font-size: 14px;
  color: #ddd;
}
.page-header-1 .container-fluid ul li a {
  color: #fff;
  font-weight: bold;
}
@media (max-width: 991px) {
  .page-header-1 .container-fluid ul {
    text-align: center;
  }
}

/* INDEX PAGE OR HOME PAGE */
.banner {
  background-image: url("../../images/bg.png");
  height: calc(100vh - 35px);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 80px;
}
@media (min-width: 992px) {
  .banner .grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-gap: 25px;
  }
  .banner .grid .content {
    padding-left: 10%;
  }
  .banner .grid .imgs {
    padding-right: 10%;
  }
}
.banner .grid .content {
  min-height: 80vh;
}
@media (min-width: 992px) {
  .banner .grid .content {
    display: flex;
  }
}
.banner .grid .content .inner {
  margin: auto 0;
}
.banner .grid .content .inner h2 {
  color: #1D579E;
  font-size: 38px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .banner .grid .content .inner h2 {
    font-size: 25px;
  }
}
.banner .grid .content .inner p.lead {
  color: #1D579E;
  font-size: 26px;
}
@media (max-width: 767px) {
  .banner .grid .content .inner p.lead {
    font-size: 16px;
  }
}
.banner .grid .content .inner a {
  display: inline-block;
  background-color: var(--color-1);
  padding: 15px 30px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 26px;
  margin: 20px 0 50px;
  pointer-events: none;
}
.banner .grid .content .inner .location {
  position: relative;
  text-align: left;
}
.banner .grid .content .inner .location .wrap {
  position: relative;
  margin: auto;
}
.banner .grid .content .inner .location .wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
}
.banner .grid .content .inner .location .wrap p {
  font-size: 18px;
  color: #eee;
  margin-bottom: 0 0 2px;
}
@media (max-width: 991px) {
  .banner .grid .content .inner .location {
    display: flex;
  }
  .hidden-sm-xs {
    display: none !important;
  }
  .inner h2{
      display: none !important;
  }
  
}
.banner .grid .imgs {
  display: flex;
}
.banner .grid .imgs img {
  width: 100%;
  align-self: flex-end;
}
@media (max-width: 767px) {
  .banner .grid .imgs img {
    margin: auto;
  }
}
@media (max-width: 991px) {
  .banner .grid {
    height: auto;
    padding: 30px 10px;
    text-align: center;
  }
  .banner .grid .content {
    margin: auto;
    min-height: 10px;
  }
}
@media (max-width: 991px) {
  .banner {
    height: auto;
    background: #152c48;
            background-image: url(../../images/mobile-bg.png) !important;
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
  }
  .banner * {
    color: #fff !important;
  }
}

/* VEHICLE TYPES */
section.vehicle-types {
  padding: 40px 20px;
}
section.vehicle-types .grid-vehicle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin: 30px auto 0;
}
@media (max-width: 767px) {
  section.vehicle-types .grid-vehicle {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 559px) {
  section.vehicle-types .grid-vehicle {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.vehicle-types .grid-vehicle .title-1-wrapper p span {
  text-transform: uppercase;
  border-left: 2px solid var(--color-2);
  padding-left: 10px;
}
section.vehicle-types .grid-vehicle .title-1-wrapper h2 {
  font-size: 20px;
}
section.vehicle-types .grid-vehicle .explore-box-type-1 {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #555;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 420px;
}
section.vehicle-types .grid-vehicle .explore-box-type-1 .imgs {
  background-color: var(--color-1);
  padding: 25px 10px 20px;
  text-align: center;
}
section.vehicle-types .grid-vehicle .explore-box-type-1 .imgs.imgs1 {
  background-color: var(--blueShade1);
}
section.vehicle-types .grid-vehicle .explore-box-type-1 .imgs.imgs2 {
  background-color: var(--blueShade2);
}
section.vehicle-types .grid-vehicle .explore-box-type-1 .imgs.imgs3 {
  background-color: var(--blueShade3);
}
section.vehicle-types .grid-vehicle .explore-box-type-1 .imgs.imgs4 {
  background-color: var(--blueShade4);
}
section.vehicle-types .grid-vehicle .explore-box-type-1 .imgs img {
  width: 80%;
  max-width: 200px;
  margin: auto;
}
section.vehicle-types .grid-vehicle .explore-box-type-1 .content {
  position: relative;
  background: #fff;
  padding: 20px;
  color: #333;
  text-align: left;
}
section.vehicle-types .grid-vehicle .explore-box-type-1 .content .title-1-wrapper p.spl {
  font-size: 16px;
  margin: 0 0 10px;
}
section.vehicle-types .grid-vehicle .explore-box-type-1 .content .title-1-wrapper h2 {
  line-height: 24px;
  font-size: 14px;
  background-color: #eee;
  padding: 10px 15px;
  font-weight: normal;
}
section.vehicle-types .grid-vehicle .explore-box-type-1 .content .title-1-wrapper + p {
  margin: 0;
  font-weight: bold;
}

/* Align Book Now button left */
section.vehicle-types .grid-vehicle .explore-box-type-1 .book-now-wrapper {
  margin-top: auto;
  text-align: left;
  padding: 15px 20px;
}

/* Button style */
section.vehicle-types .grid-vehicle .explore-box-type-1 .book-now-btn {
  display: inline-block;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  padding: 8px 18px;
  background-color: var(--color-2); 
  font-size: 14px;
  font-weight: 600;
}

section.vehicle-types .grid-vehicle .explore-box-type-1 .book-now-btn:hover {
  background-color: white;
  color:var(--color-2);
  border: 1px solid var(--color-2);
}
/**VEHICLE TYPE END**/

section.personal-goody {
  padding: 30px 10px 40px;
}
section.personal-goody .goody-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-top: 20px;
}
section.personal-goody .goody-box-grid .goody-box {
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 40px 0 rgba(62, 57, 107, 0.07), 0 2px 9px 0 rgba(62, 57, 107, 0.06);
  padding: 20px;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 20px;
}
section.personal-goody .goody-box-grid .goody-box .content p {
  font-size: 18px;
  margin: 0;
}
section.personal-goody .goody-box-grid .goody-box .content h5 {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  section.personal-goody .goody-box-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  section.personal-goody {
    padding: 20px 15px;
  }
}

section.steps {
  position: relative;
  padding: 45px 10px;
  background-color: var(--color-1);
  text-align: center;
}
section.steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  pointer-events: none;
}
section.steps .container {
  max-width: 1100px;
  margin: auto;
}
section.steps .container .title-1-wrapper {
  position: relative;
  margin-bottom: 20px;
}
section.steps .container .title-1-wrapper .title-1 {
  color: #fff;
  margin: 5px 0 20px;
}
section.steps .container .title-1-wrapper .title-1 span {
  color: #fff;
}
section.steps .container .steps-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  position: relative;
}
section.steps .container .steps-box-grid .steps-box {
  position: relative;
  text-align: center;
}
section.steps .container .steps-box-grid .steps-box::before {
  width: 111px;
  height: 4px;
  position: absolute;
  content: "";
  top: 45px;
  right: 0;
}
section.steps .container .steps-box-grid .steps-box span.ico {
  display: block;
  font-size: 90px;
  color: #fff;
}
section.steps .container .steps-box-grid .steps-box .title {
  display: inline-block;
}
section.steps .container .steps-box-grid .steps-box .title .wrap {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-gap: 10px;
  margin-bottom: 10px;
}
section.steps .container .steps-box-grid .steps-box .title .wrap .no {
  width: 40px;
  height: 40px;
  background-color: var(--darkColor);
  color: #fff;
  line-height: 38px;
  text-align: center;
  border-radius: 40px;
  font-weight: bold;
}
section.steps .container .steps-box-grid .steps-box .title .wrap .content {
  line-height: 24px;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  position: relative;
  top: -4px;
}
section.steps .container .steps-box-grid .steps-box p {
  color: #ddd;
  font-size: 15px;
}
section.steps .container .steps-box-grid .steps-box:last-child::before {
  display: none;
}
@media (max-width: 767px) {
  section.steps .container .steps-box-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  section.steps .container .steps-box-grid .steps-box::before {
    display: none;
  }
}
@media (max-width: 767px) {
  section.steps {
    text-align: center;
  }
}

.grid-home-about {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  color: #fff;
}
@media (max-width: 991px) {
  .grid-home-about {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .grid-home-about {
    grid-template-columns: 1fr;
  }
}
.grid-home-about .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-home-about .right {
  padding: 90px;
  background-color: var(--color-1);
  position: relative;
}
.grid-home-about .right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}
.grid-home-about .right .wrapy {
  margin: auto;
  position: relative;
}
.grid-home-about .right .wrapy .title-1-wrapper .title-1 {
  color: #fff;
  margin: 5px 0 20px;
}
.grid-home-about .right .wrapy .title-1-wrapper .title-1 span {
  color: #fff;
}
.grid-home-about .right .wrapy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  color: #ccc;
}
.grid-home-about .right .wrapy ul {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}
.grid-home-about .right .wrapy ul li {
  font-size: 17px;
}
@media (max-width: 767px) {
  .grid-home-about .right .wrapy ul {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .grid-home-about .right {
    padding: 30px;
  }
}

/* PACKAGE OR PRICE PAGE */
section.packages {
  padding: 30px 10px 0px;
  background-color: #F2F3F4;
}
section.packages .package-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin: auto;
  padding: 10px 20px 40px;
  max-width: 1200px;
}
@media (max-width: 767px) {
  section.packages .package-box-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
section.packages .package-box-grid .package-box {
  position: relative;
  padding-bottom: 20px;
  padding: 40px;
  text-align: left;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #CDE2E7;
}
section.packages .package-box-grid .package-box p.lead {
  font-size: 16px;
}
@media (min-width: 992px) {
  section.packages .package-box-grid .package-box {
    transform: scale(0.95);
  }
}
section.packages .package-box-grid .package-box .package-header h3 {
  font-weight: bold;
  font-family: arial;
  margin-bottom: 10px;
  font-size: 22px;
}
section.packages .package-box-grid .package-box .package-header h4 {
  text-decoration: line-through;
  color: #777;
}
section.packages .package-box-grid .package-box .package-header h1 {
  font-weight: bold;
  margin-top: 15px;
  color: var(--color-1);
  font-family: arial;
  font-size: 30px;
  margin: 10px 0;
}
section.packages .package-box-grid .package-box .package-header h1 small {
  font-weight: normal;
  font-size: 15px !important;
}
@media (max-width: 991px) {
  section.packages .package-box-grid .package-box .package-header h1 {
    font-size: 24px;
  }
}
section.packages .package-box-grid .package-box .package-header h1 small:nth-child(2) {
  color: #777;
}
@media (min-width: 992px) {
  section.packages .package-box-grid .package-box .package-header h1 small:nth-child(2) {
    font-size: 22px;
  }
}
section.packages .package-box-grid .package-box .package-body ul li {
  position: relative;
  padding: 3px 0;
  padding-left: 20px;
  font-size: 15px;
  text-align: left;
  color: rgb(99, 115, 126);
  margin-bottom: 5px;
}
section.packages .package-box-grid .package-box .package-body ul li span.check,
section.packages .package-box-grid .package-box .package-body ul li .fa {
  position: absolute;
  left: 0;
  top: 2px;
  color: #75759b;
}
section.packages .package-box-grid .package-box .package-body ul li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 2px;
  font-family: "FontAwesome";
  color: var(--color-1);
}
section.packages .package-box-grid .package-box .package-body ul li span.help {
  position: relative;
  top: -1px;
  left: 3px;
}
section.packages .package-box-grid .package-box .package-body ul li:last-child {
  border: none;
}
section.packages .package-box-grid .package-box .package-footer {
  margin: 15px 0 0;
}
section.packages .package-box-grid .package-box .package-footer a {
  display: block;
  width: 100%;
  background-color: var(--color-1);
  color: #fff;
  text-align: center;
  padding: 7px 10px;
}
section.packages .package-box-grid .package-box.highlight {
  z-index: 1;
  border: 3px solid var(--color-1);
}
@media (min-width: 992px) {
  section.packages .package-box-grid .package-box.highlight {
    left: -1px;
    top: -10px;
    transform: scale(1.05);
  }
}

section.strongest-service {
  padding: 20px 10px 20px;
  background-color: #F2F3F4;
}
section.strongest-service .icon-box-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 20px;
  margin: 0px auto 0;
}
section.strongest-service .icon-box-grid .icon-box {
  padding: 30px 25px;
  line-height: 18px;
  border: unset;
  background-color: #e9edf3;
  text-align: center;
}
section.strongest-service .icon-box-grid .icon-box .fa {
  font-size: 32px;
  margin-bottom: 10px;
}
section.strongest-service .icon-box-grid .icon-box h4 {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 991px) {
  section.strongest-service .icon-box-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  section.strongest-service .icon-box-grid .icon-box:last-child {
    grid-column-start: 3;
    grid-column-end: 5;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  section.strongest-service .icon-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  section.strongest-service .icon-box-grid .icon-box:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
section.strongest-service .booking-content {
  max-width: 900px;
  margin: 20px auto 0;
  text-align: center;
}
@media (max-width: 767px) {
  section.strongest-service {
    text-align: center;
    padding: 20px 10px;
  }
}

/* ABOUT PAGE */
section.about {
  padding: 20px 0;
}
section.about .title {
  margin-bottom: 20px;
}
section.about .bg-1 {
  background-color: #FDD000;
}
section.about .bg-2 {
  background-color: #FAF5F1;
}
section.about .about-box-grid {
  margin-bottom: 20px;
  display: block;
}
section.about .about-box-grid .about-box {
  margin-bottom: 10px;
}
section.about .about-box-grid .about-box > div.content {
  background-color: #f5f5f5;
  padding: 35px;
}
@media (min-width: 768px) {
  section.about .about-box-grid .about-box {
    display: flex;
    grid-gap: 20px;
  }
  section.about .about-box-grid .about-box > div {
    flex-basis: 50%;
    padding: 0;
  }
  section.about .about-box-grid .about-box > div.right {
    display: flex;
  }
  section.about .about-box-grid .about-box > div.right img {
    margin: auto;
  }
  section.about .about-box-grid .about-box.inverse .left {
    order: 1;
  }
  section.about .about-box-grid .about-box.inverse .right {
    order: 2;
  }
}

/* VISION MISSION */
section.vision-mission .grid-block-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
section.vision-mission .grid-block-1 .imgs img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.vision-mission .grid-block-1 .imgs-xs {
  display: none;
}
section.vision-mission .grid-block-1 .content {
  padding: 40px 30px 30px;
  display: flex;
}
section.vision-mission .grid-block-1 .content h2 {
  font-size: 28px;
  margin: 0 0 30px;
  position: relative;
}
section.vision-mission .grid-block-1 .content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: #31577e;
}
section.vision-mission .grid-block-1 .content p {
  font-size: 16px;
  line-height: 22px;
}
section.vision-mission .grid-block-1 .content .btn-1 {
  border: 2px solid #222;
  color: #222;
  padding: 6px 16px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}
section.vision-mission .grid-block-1 .content.dark {
  background-color: #000;
}
section.vision-mission .grid-block-1 .content.dark h2, section.vision-mission .grid-block-1 .content.dark p {
  color: #fff;
}
section.vision-mission .grid-block-1 .content.dark .btn-1 {
  border-color: #fff;
  color: #fff;
}
@media (max-width: 767px) {
  section.vision-mission .grid-block-1 .content {
    padding: 20px;
    display: block;
  }
}
section.vision-mission .grid-block-1 .content .holder {
  margin: auto 20px;
}
@media (max-width: 767px) {
  section.vision-mission .grid-block-1 .content .holder {
    margin: 0;
  }
}
section.vision-mission .grid-block-1 .visible-xs {
  display: none;
}
@media (max-width: 767px) {
  section.vision-mission .grid-block-1 {
    grid-template-columns: 1fr;
  }
  section.vision-mission .grid-block-1 .xs-hidden {
    display: none;
  }
  section.vision-mission .grid-block-1 .visible-xs {
    display: block;
  }
  section.vision-mission .grid-block-1 .imgs-xs {
    display: block;
  }
}

section.winnings {
  padding: 20px;
  background-color: #f5f5f5;
}
section.winnings .winning-holder {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
section.winnings .winning-holder .imgs {
  text-align: center;
}
section.winnings .winning-holder .imgs img {
  width: 300px;
  height: 300px;
  border-radius: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #eee;
}
section.winnings .winning-holder .awards {
  text-align: center;
  margin: 20px 0;
}
section.winnings .winning-holder .awards img {
  display: inline-block;
  width: 100px;
  margin-right: 10px;
}
section.winnings .winning-holder h2 {
  text-transform: uppercase;
  color: #555;
  font-size: 26px;
}
section.winnings .winning-holder p {
  font-size: 16px;
}

/* BECOME AN AGENT PAGE */
section.personal-info {
  display: flex;
  background-color: #d4e9f5;
  min-height: 70vh;
}
@media (min-width: 992px) {
  section.personal-info {
    padding: 30px;
  }
}
section.personal-info .container {
  margin: auto;
  padding: 0;
}
section.personal-info .common-form-wrapper {
  background-color: #fff;
  max-width: 650px;
  margin: auto;
}
section.personal-info .common-form-wrapper .title {
  padding: 25px 40px 0;
  text-align: center;
}
section.personal-info .common-form-wrapper .title h4 {
  font-weight: bold;
}
section.personal-info .common-form-wrapper .title p {
  font-size: 14px;
}
section.personal-info .common-form-wrapper .donation-links {
  text-align: center;
  padding: 0 15px 15px;
  margin-top: -20px;
}
section.personal-info .common-form-wrapper .donation-links .donation-box {
  display: inline-block;
  padding: 20px 20px;
  position: relative;
  margin-left: -10px;
}
section.personal-info .common-form-wrapper .donation-links .donation-box > span {
  display: inline-block;
  --v: 40px;
  width: var(--v);
  height: var(--v);
  border-radius: var(--v);
  line-height: var(--v);
  text-align: center;
  background-color: #fff;
  margin-bottom: 10px;
  border: 2px solid var(--color-1);
  font-size: 18px;
  font-weight: bold;
  position: relative;
}
section.personal-info .common-form-wrapper .donation-links .donation-box > span::before {
  content: "";
  position: absolute;
  left: 0;
}
section.personal-info .common-form-wrapper .donation-links .donation-box h4 {
  margin: 0;
  font-size: 12px;
}
section.personal-info .common-form-wrapper .donation-links .donation-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  height: 1px;
  background-color: var(--color-1);
}
section.personal-info .common-form-wrapper .donation-links .donation-box.active {
  pointer-events: none;
}
section.personal-info .common-form-wrapper .donation-links .donation-box.active > span {
  border-color: var(--color-2);
  background-color: var(--color-2);
  color: #fff;
}
section.personal-info .common-form-wrapper .donation-links .donation-box.active::before {
  background-color: var(--color-2);
}
@media (max-width: 559px) {
  section.personal-info .common-form-wrapper .donation-links .donation-box {
    padding: 10px 10px;
  }
  section.personal-info .common-form-wrapper .donation-links .donation-box::before {
    top: 30px;
  }
}
section.personal-info .common-form-wrapper .personal-info-box {
  padding: 0 40px 40px;
}
section.personal-info .common-form-wrapper .personal-info-box h1 {
  text-align: center;
  margin: 20px 0;
}
section.personal-info .common-form-wrapper .personal-info-box h1 span {
  display: inline-block;
  --v: 80px;
  width: var(--v);
  height: var(--v);
  border-radius: var(--v);
  line-height: var(--v);
  border: 3px solid #222;
}
@media (max-width: 767px) {
  section.personal-info .common-form-wrapper .personal-info-box {
    padding: 0 25px 30px;
  }
}
section.personal-info .common-form-wrapper .btn-1 {
  padding: 12px 10px 10px;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 5px;
}
section.personal-info .common-form-wrapper .btn-1.disabled {
  pointer-events: none;
  opacity: 0.45;
}
section.personal-info .common-form-wrapper p.socials span {
  display: inline-block;
  font-size: 22px;
}
section.personal-info .common-form-wrapper p.socials a {
  display: inline-block;
  margin: 0 1px 0;
  background-color: var(--color-1);
  color: #fff;
  border-radius: 4px;
  --v: 30px;
  width: var(--v);
  height: var(--v);
  line-height: 33px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 559px) {
  section.personal-info .common-form-wrapper p.socials b {
    display: block;
    margin: 10px 0;
  }
}

section.donate-now {
  background-color: #d4e9f5;
}
@media (min-width: 560px) {
  section.donate-now {
    padding: 25px 10px;
  }
}
section.donate-now .container {
  padding: 0;
}
section.donate-now .donate-holder {
  margin: auto;
  background-color: #fff;
  padding: 25px 35px;
  border: 1px solid #fff;
}
section.donate-now .donate-holder h2.title-border {
  margin: 0 0 15px;
}
section.donate-now .donate-holder h2.title-border span {
  display: inline-block;
  position: relative;
  border-bottom: 3px solid var(--color-1);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 5px;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--color-1);
}
section.donate-now .donate-holder h2.title-border span::before {
  content: "";
  position: absolute;
  bottom: -9px;
  right: 5px;
  --v: 8px;
  border-left: var(--v) solid transparent;
  border-right: var(--v) solid transparent;
  border-top: var(--v) solid var(--color-1);
}
section.donate-now .donate-holder .form-holder .wrappers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 10px;
}
@media (max-width: 991px) {
  section.donate-now .donate-holder .form-holder .wrappers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) and (max-width: 559px) {
  section.donate-now .donate-holder .form-holder .wrappers {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.donate-now .donate-holder .btn-1 {
  padding: 12px 30px 10px;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 5px;
}
section.donate-now .donate-holder .btn-1.disabled {
  pointer-events: none;
  opacity: 0.45;
}
@media (max-width: 991px) {
  section.donate-now .donate-holder {
    padding: 20px;
  }
}

/* CONTACT PAGE */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-wrapper .map {
    display: none;
  }
}

.contact-detail-box {
  width: 100%;
  height: 100%;
  padding: 40px;
  background: var(--color-1);
  color: #fff;
}
.contact-detail-box h2 {
  text-align: left;
  font-size: 20px;
  line-height: 30px;
}
.contact-detail-box p {
  font-size: 14px;
  line-height: 24px;
  color: #bbb;
}
.contact-detail-box a {
  color: var(--yellowColor);
}

.btn-chat {
  background: rgb(29, 110, 18);
}

.grid-address-box {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-gap: 20px;
  margin: 40px 0;
}
.grid-address-box h3 {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--whiteColor);
  margin-top: 20px;
  font-weight: normal;
}
.grid-address-box h3:before {
  height: 8px;
  width: 8px;
  content: "";
  left: 0;
  top: 4px;
  display: inline-block;
  background: #ffffff;
  position: relative;
  margin-right: 15px;
  position: absolute;
  content: "";
}

.grid-subscribe-contact {
  border-bottom: 1px solid #eee;
  max-width: 400px;
  display: grid;
  grid-template-columns: auto 50px;
  grid-column-gap: 10px;
  margin-top: 15px;
}
.grid-subscribe-contact input {
  height: 45px;
  padding: 10px;
  width: 100%;
  background: transparent;
  color: var(--whiteColor);
  border: none;
  padding-left: 0;
  font-size: 14px;
}
.grid-subscribe-contact input::-moz-placeholder {
  color: var(--whiteColor);
}
.grid-subscribe-contact input::placeholder {
  color: var(--whiteColor);
}
.grid-subscribe-contact button {
  height: 45px;
  padding: 10px;
  width: 100%;
  background: transparent;
  color: var(--whiteColor);
  border: none;
  padding-left: 0;
  font-size: 14px;
  text-align: center;
}
.grid-subscribe-contact button::after {
  display: none;
}
.grid-subscribe-contact button:hover {
  color: var(--yellowColor);
}

.call-to-action-block {
  background: #f2f2f2;
  display: block;
  padding: 40px 20px 40px;
}

.call-to-action h3 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
}
.call-to-action h3 span {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
}
.call-to-action h6 {
  font-size: 19px;
}
.call-to-action h6 a {
  font-weight: 700;
  font-size: 19px;
}
.call-to-action p {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .contact-wrapper {
    padding: 0;
  }
  .contact-wrapper .map {
    display: block;
    position: relative;
  }
  .contact-wrapper .map iframe {
    width: 100%;
    height: 100%;
  }
  .contact-wrapper .map .overlay {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
  }
}
/* SIDE SOCIALS */
.side-socials {
  position: fixed;
  right: 10px;
  bottom: 45px;
  z-index: 10;
}
.side-socials button {
  padding: 10px;
  font-size: 24px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--color-1);
  right: 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  color: #fff;
  line-height: 22px;
  border: 1px solid #fff;
}
.side-socials button:focus {
  box-shadow: none;
}
.side-socials button:hover img {
  transform: rotate(360deg);
}
.side-socials .dropdown-menu {
  min-width: 50px;
  width: 50px;
  border-radius: 0;
  padding: 0;
  bottom: 10px !important;
  background-color: transparent;
  border: none;
}
.side-socials .dropdown-menu .dropdown-item {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0 0;
  position: relative;
  right: -5px;
  padding: 0;
  cursor: pointer;
}
.side-socials .circle-item {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  cursor: pointer;
  font-size: 24px;
}
.side-socials .circle-item.phone {
  background-color: var(--color-2);
  --v: 40px;
  width: var(--v);
  height: var(--v);
  border-radius: var(--v);
  line-height: 40px;
  font-size: 15px;
  margin: 5 14px 5px;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 1px 1px 2px #999;
  right: -10px;
}
@media (max-width: 767px) {
  .side-socials {
    bottom: 90px;
    right: 10px;
  }
}

.fixed-bottom-btns {
  position: fixed;
  right: 5px;
  bottom: 0px;
  padding: 5px;
}
.fixed-bottom-btns a {
  border-radius: 4px;
  background-color: #DD4B39;
}
.fixed-bottom-btns a.tracking {
  background-color: green;
}
@media (max-width: 767px) {
  .fixed-bottom-btns {
    padding: 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    bottom: -1px;
    display: none;
  }
  .fixed-bottom-btns a {
    width: 100%;
    display: block;
    border-radius: 0;
  }
}

/* BOTTOM ICON STRIP */
.bottom-icon-strip {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: rgba(250, 252, 255, 0.9);
  box-shadow: 0px -4px 16px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 8;
  display: none;
}
.bottom-icon-strip ul {
  display: flex;
  margin: 0;
  width: 100%;
}
.bottom-icon-strip ul li {
  list-style-type: none;
  margin: 0;
  align-items: center;
  justify-content: center;
  width: 25%;
}
.bottom-icon-strip ul li label,
.bottom-icon-strip ul li a {
  display: block;
  width: 100%;
  height: 60px;
  padding: 6px 5px 5px 5px;
  border-top: 2px solid #FFFFFF;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  text-align: center;
  font-size: 11px;
  color: var(--color-1);
  text-transform: uppercase;
  font-weight: bold;
}
.bottom-icon-strip ul li label .Index_custom_mini_menu_svgiconpath_new,
.bottom-icon-strip ul li a .Index_custom_mini_menu_svgiconpath_new {
  text-align: center;
  height: 28px;
  line-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.bottom-icon-strip ul li label .Index_custom_mini_menu_svgiconpath_new svg,
.bottom-icon-strip ul li a .Index_custom_mini_menu_svgiconpath_new svg {
  display: flex;
  margin: auto;
  align-items: center;
  height: 34px;
}
@media (max-width: 767px) {
  .bottom-icon-strip {
    display: block;
  }
}

/* TRACKING PAGE */
section.tracking {
  padding: 30px 10px;
}
section.tracking .title {
  max-width: 1000px;
  margin: 20px auto 0;
}
section.tracking .title h2 {
  font-size: 20px;
  font-weight: bold;
}
section.tracking .title p {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}
section.tracking .reference-box {
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 500px;
  margin: auto;
  border: 3px solid var(--darkColor);
}
section.tracking .reference-box input {
  border: none !important;
  outline: none !important;
  background-color: #fff;
  padding-left: 20px;
  width: 100%;
  min-height: 40px;
  height: 100%;
}
section.tracking .reference-box button {
  width: 100%;
  border: none;
  background-color: var(--color-1);
  padding: 10px 30px;
  text-transform: uppercase;
  font-weight: bold;
  border-left: 3px solid var(--darkColor);
  color: #fff;
}
@media (max-width: 767px) {
  section.tracking .reference-box {
    display: block;
  }
  section.tracking .reference-box button {
    border: none;
  }
}

section.reference-booking {
  background-color: var(--color-2);
  padding: 20px 10px 0;
}
section.reference-booking section {
  text-align: left;
}

/* 404 OR PAGE NOT FOUND */
.page-not-found img {
  width: 100%;
  max-width: 350px;
  margin: 15px 0;
}

/* MEDIA QURIES */
.visible-sm-xs,
.visible-xs {
  display: none;
}

@media (max-width: 991px) {
  body.inner-pages,
  body {
    padding-top: 58px;
  }
  .hidden-sm-xs {
    display: none;
  }
  .visible-sm-xs {
    display: block;
  }
}
@media (max-width: 767px) {
  .visible-xs {
    display: block;
  }
  .hidden-xs {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */

/* online booking custom styles */
.steps-completed {
      background-color: green !important;
      border-color: green !important;
}

.zoom-tick {
  animation: zoomInOut 1.5s infinite ease-in-out;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.invoice-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin: 20px auto;
  max-width: 650px;
  font-size: small;
  border-top: 1px dotted #000;
  border-bottom: 1px dotted #000;
}

.invoice-table th,
.invoice-table td {
  /* border: 1px dotted #000; */
  text-align: left;
  vertical-align: middle;
  padding: 5px;
  border: none;
}
.invoice-table th {
  background-color: #f8f9fa;
  text-transform: uppercase;
  font-weight: bold;
}
.order-card {
  max-width: 350px;
  margin: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 12px;
  margin-left: 47%;
}
.order-card .card-body {
  padding: 25px;
}
.order-card hr {
  margin: 15px 0;
}
.btn-group-custom {
  display: flex;
  gap: 10px;
}
.billtocolumn{
  width: 325px;
}

.my-5 {
    margin-top: -20px !important;
    margin-bottom: 3rem !important;
}

.border {
    border: 1px dotted #000 !important;
}

.fixed-box {
  border: 1px solid #dee2e6; 
  min-height: 100%;        
  border-radius: 4px;
}

.success-box {
		max-width: 400px;
		margin: 2px auto;
		background: #fff;
		border-radius: 16px;
		padding: 30px 25px 40px; 
		margin-bottom: 40px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
		text-align: center;
		font-family: 'Segoe UI', sans-serif;
	}

	.success-icon {
		width: 70px;
		height: 70px;
		background-color: #28a745;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto 20px;
		animation: pop 0.5s ease;
	}

	.success-icon i {
		color: #fff;
		font-size: 32px;
	}

	.booktext {
		font-weight: 700;
		margin-bottom: 10px;
		color: #333;
	}

	.tnumber {
		font-size: 18px;
		color: #666;
		margin-bottom: 25px;
	}

	.socials {
		margin-top: 25px;
		font-size: 14px;
		color: #555;
	}

	.socials a {
		color: #555;
		margin: 0 8px;
		font-size: 18px;
		transition: color 0.2s;
	}

	.socials a:hover {
		color: #007bff;
	}

	@keyframes pop {
		0% {
			transform: scale(0.5);
			opacity: 0;
		}
		100% {
			transform: scale(1);
			opacity: 1;
		}
	}

  /*Web kit scroll bar */
  /* Scrollbar width */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

/* Track (background) */
::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}

/* Thumb (scroll handle) */
::-webkit-scrollbar-thumb {
	background: var(--color-1);
	border-radius: 4px;
}

.steptext{
  font-size: xx-small;
}


.warning-box {
  display: flex;
  align-items: baseline;
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 600px;
  margin: 20px auto;
}

.warning-box .icon {
  font-size: 14px;
  margin-right: 15px;
  line-height: 1.2;
  color: #856404;
}

.warning-box .content p {
  margin: 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 480px) {
  .warning-box .icon {
    font-size: 10px;
  }
  
    .warning-box .content p {
      font-size: 10px;
    }
}









