@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

/*===========================
  COMMON css 
===========================*/
:root {
  --font-family: "Inter", sans-serif;
  --primary: #155bd5;
  --primary-dark: #1c3ab6;
  /* Original OEM Colors
  --primary: #155bd5;
  --primary-dark: #1c3ab6;
  */
  --primary-light: #e2f1ff;
  --map-area-color: #6a9ffb;
  --filter-bar-color: #00d4d7;
  --accent: #00d4d7;
  --accent-dark: #00bac1;
  --accent-light: #dff9f8;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #8f15d5;
  --secondary-dark: #6013c7;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
  --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
  --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
  --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
  --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
  --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
  --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
  --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
  --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
    0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
    0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
    0px 20px 32px rgba(96, 97, 112, 0.24);
}

.mapboxgl-popup-content {
  font-family: var(--font-family);
  /* Add any other styling you want to apply to the pop-up content */
}

.text-middle {
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 3px;
}

body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}

@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--black);
  margin: 0px;
}

h1,
.h1 {
  font-size: 2.75em;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 2.25em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.75em;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.5em;
  line-height: 1.25;
}

h5,
.h5 {
  font-size: 1.25em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: 0.875em;
  line-height: 1.25;
}

.display-1 {
  font-size: 5.5em;
  line-height: 1.25;
}

.display-2 {
  font-size: 4.75em;
  line-height: 1.25;
}

.display-3 {
  font-size: 4em;
  line-height: 1.25;
}

.display-4 {
  font-size: 3.25em;
  line-height: 1.25;
}

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-3);
  margin: 0px;
}

.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.15em;
  line-height: 1.5;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.btn:hover {
  color: inherit;
}

.btn:focus {
  box-shadow: none;
  outline: none;
}

.btn.btn-lg {
  font-size: 1.15em;
  padding: 16px 24px;
}

.btn.btn-sm {
  padding: 8px 16px;
}

.btn.square {
  border-radius: 0px;
}

.btn.semi-rounded {
  border-radius: 12px;
}

.btn.rounded-full {
  border-radius: 50px;
}

.btn.rounded-standard-corner {
  border-radius: 4px;
}

.btn.icon-left span,
.btn.icon-left i {
  margin-right: 8px;
}

.btn.icon-right span,
.btn.icon-right i {
  margin-left: 8px;
}

.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}

.btn.icon-btn.btn-lg {
  width: 56px;
  height: 56px;
  line-height: 56px;
}

.btn.icon-btn.btn-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.active.primary-btn,
.primary-btn:hover,
.primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.active.primary-btn-outline,
.primary-btn-outline:hover,
.primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}

.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/* One Click Scrool Top Button*/
.scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--primary);
  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;
  font-size: 14px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 5px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--dark-1);
}

/* One Click Scrool Top Button*/
.map-toggler {
  width: 45px;
  height: 35px;
  line-height: 1.2em;
  background: var(--primary);
  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;
  text-align: center;
  align-items: center;
  font-size: 9px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 5px;
}

.map-toggler:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  /* Comment Out Hover Color Change*/
  /* background-color: var(--dark-1); */
}

/*===========================
  Section Title Five CSS
===========================*/
.section-title-five {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 5px;
  position: relative;
  z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five {
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .section-title-five {
    margin-bottom: 5px;
  }
}

.section-title-five h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 30px;
}

.section-title-five h2 {
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}

@media (max-width: 767px) {
  .section-title-five h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}

.section-title-five p {
  color: var(--dark-3);
}

.made-in-ayroui {
  position: fixed;
  left: 5px;
  bottom: 5px;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.made-in-ayroui:hover {
  transform: translateY(-5px);
}

/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR NINE =====*/
.navbar-area.navbar-nine {
  background: var(--primary);
  padding: 10px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}

.sticky {
  position: fixed !important;
  z-index: 99 !important;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine {
    padding: 10px 0;
  }
}

.navbar-area.navbar-nine .navbar-brand {
  margin: 0;
}

.navbar-area.navbar-nine .navbar {
  position: relative;
  padding: 0;
}

.navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

/* NAVBAR Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-collapse {
    position: absolute;
    top: 116%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    z-index: 8;
    padding: 10px 16px;
  }
}


@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-left: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-right: 0;
  }
}
*/

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item {
  position: relative;
}

/* Key Navbar Params*/
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 0px 16px;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 4px 0;
  opacity: 0.7;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover {
  opacity: 1;
}

/*
NAVBAR Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    padding: 10px 0;
    display: block;
    border: 0;
    margin: 0;
  }
}
*/

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
  opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
  font-size: 12px;
  font-weight: 700;
  padding-left: 7px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* Navbar Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
    position: relative;
    top: -5px;
  }
}
*/

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 130%;
  width: 230px;
  background-color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
}

/* Navbar Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
*/

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}

/* Navbar Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
*/

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  color: var(--dark-2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  z-index: 5;
  opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-weight: 700;
  font-size: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}

/* Navbar Comment
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
*/

@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}

/* Navbar Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
*/

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
  color: var(--white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
    color: var(--primary);
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a {
  color: var(--primary);
  padding-left: 22px;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a i {
  color: var(--primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a {
    color: var(--primary);
  }
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a::after {
  opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a::before {
  opacity: 1;
}

.navbar-area.navbar-nine .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 115%;
}

/* Navbar Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
*/

.navbar-area.navbar-nine .navbar .navbar-btn {
  margin-top: 6px;
}

/*
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 7px;
  }
}

@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 7px;
  }
}
*/

.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
  font-size: 22px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(238, 238, 238, 0.425);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar:hover {
  border-color: transparent;
  color: var(--primary);
  background-color: var(--white);
}

/*===== SIDEBAR ONE =====*/
.sidebar-left {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--white);
  height: 100%;
  width: 350px;
  padding-top: 80px;
  z-index: 999;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  text-align: left;
}

.sidebar-left.open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

@media (max-width: 767px) {
  .sidebar-left {
    width: 250px;
  }
}

.sidebar-left .sidebar-close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.sidebar-left .sidebar-close .close {
  font-size: 18px;
  color: var(--black);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.sidebar-left .sidebar-close .close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sidebar-left .sidebar-content {
  padding: 0px 30px;
}

.sidebar-left .sidebar-content .sidebar-menu {
  margin-top: 30px;
}

.sidebar-left .sidebar-content .sidebar-menu .menu-title {
  font-size: 18px;
  font-weight: 600;
}

.sidebar-left .sidebar-content .sidebar-menu ul {
  margin-top: 15px;
}

.sidebar-left .sidebar-content .sidebar-menu ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 0;
  color: var(--dark-3);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
}

.sidebar-left .sidebar-content .sidebar-menu ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.sidebar-left .sidebar-content .text {
  margin-top: 20px;
}

.sidebar-left .sidebar-content .sidebar-social {
  margin-top: 30px;
}

.sidebar-left .sidebar-content .sidebar-social .social-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.sidebar-left .sidebar-content .sidebar-social ul li {
  display: inline-block;
  margin-right: 5px;
}

.sidebar-left .sidebar-content .sidebar-social ul li:last-child {
  margin: 0;
}

.sidebar-left .sidebar-content .sidebar-social ul li a {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 18px;
  color: #666;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sidebar-left .sidebar-content .sidebar-social ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

.overlay-left {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99;
}

.overlay-left.open {
  display: block;
}

/* ===== Buttons Css ===== */
.header-eight .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.header-eight .active.primary-btn,
.header-eight .primary-btn:hover,
.header-eight .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.header-eight .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-eight {
  position: relative;
  padding: 70px 0 70px 0;
  background: var(--primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight {
    padding: 60px 0 60px 0;
  }
}

@media (max-width: 767px) {
  .header-eight {
    padding: 50px 0 30px 0;
  }
}

.header-eight .header-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .header-eight .header-image {
    margin-top: 40px;
  }
}

.header-eight .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}

.header-eight .header-content h1 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight .header-content h1 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .header-eight .header-content h1 {
    font-size: 30px;
    line-height: 42px;
  }
}

.header-eight .header-content h1 span {
  display: block;
}

.header-eight .header-content p {
  margin-top: 10px;
  color: var(--white);
  opacity: 0.7;
}

.header-eight .button {
  margin-top: 40px;
}

.header-eight .primary-btn {
  margin-right: 12px;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}

.header-eight .primary-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.header-eight .video-button {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 767px) {
  .header-eight .video-button {
    margin-top: 20px;
  }
}

.header-eight .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: var(--white);
  font-weight: 600;
}

.header-eight .video-button .icon-btn {
  background: var(--white);
  color: var(--primary);
}

/*===========================
  about-05 css
===========================*/
/*Shorebird: Changed background color from --light-3 to --white*/
.about-five {
  background-color: var(--white);
  padding-top: 70px;
  padding-bottom: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .about-five {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.about-five-content {
  padding-left: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .about-five-content {
    padding-left: 0;
  }
}

.about-five-content .small-title {
  position: relative;
  padding-left: 30px;
}

.about-five-content .small-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  background-color: var(--primary);
  height: 2px;
  width: 20px;
  margin-top: -1px;
}

.about-five-content .main-title {
  margin-top: 10px;
}

.about-five-content .about-five-tab {
  margin-top: 15px;
}

.about-five-content .about-five-tab nav {
  border: none;
  background-color: var(--light-1);
  padding: 15px;
  border-radius: 5px;
}

.about-five-content .about-five-tab nav .nav-tabs {
  border: none;
}

.about-five-content .about-five-tab nav button {
  border: none;
  color: var(--dark-1);
  font-weight: 600;
  padding: 0;
  margin: 0 10px 10px 0;
  position: relative;
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: 4px;
  text-transform: capitalize;
}

/* From GPT*/
.about-five-content .about-five-tab nav .nav-tabs {
  border: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* End GPT*/

@media (max-width: 767px) {
  .about-five-content .about-five-tab nav button {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .about-five-content .about-five-tab nav button:last-child {
    margin: 0;
  }
}

.about-five-content .about-five-tab nav button:hover {
  color: var(--primary);
}

.about-five-content .about-five-tab nav button.active {
  background-color: var(--primary);
  color: var(--white);
}

.about-five-content .about-five-tab nav button:last-child {
  margin-right: 0;
}

.about-five-content .about-five-tab .tab-content {
  border: none;
  padding-top: 15px;
}

.about-five-content .about-five-tab .tab-content p {
  margin-bottom: 20px;
}

.about-five-content .about-five-tab .tab-content p:last-child {
  margin: 0;
}

.about-image-five {
  padding-left: 60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .col-header-img {
    height: 320px;
    margin-top: -30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .col-about-img {
    margin-top: 0px;
    margin-bottom: -20px;
  }
}

.about-image-five img {
  border-radius: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five {
    margin-bottom: 70px;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .about-image-five {
    margin-bottom: 60px;
    padding-left: 0;
  }
}

.about-image-five .shape {
  position: absolute;
  left: 30px;
  top: -30px;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five .shape {
    left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five::before {
    right: -15px;
    bottom: -15px;
  }
}

@media (max-width: 767px) {
  .about-image-five::before {
    display: none;
  }
}

.about-image-five img {
  width: 100%;
  z-index: 2;
}

/*===========================
  services css 
===========================*/
.services-eight {
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-eight {
    padding: 80px 0 50px 0;
  }
}

@media (max-width: 767px) {
  .services-eight {
    padding: 60px 0 30px 0;
  }
}

.services-eight .single-services {
  padding: 40px 30px;
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.services-eight .single-services:hover {
  box-shadow: var(--shadow-4);
}

.services-eight .single-services:hover .service-icon {
  color: var(--white);
  border-color: transparent;
  background: var(--primary);
}

.services-eight .single-services:hover .service-icon::after {
  opacity: 1;
  visibility: visible;
}

.services-eight .single-services .service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin-bottom: 25px;
  background: var(--white);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
}

.services-eight .single-services .service-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: var(--primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid transparent;
}

.services-eight .single-services .service-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.services-eight .single-services .service-content p {
  color: var(--dark-3);
}

/*===== VIDEO ONE =====*/
.video-one {
  background-color: var(--light-3);
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-one {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .video-one {
    padding: 60px 0;
  }
}

.video-one .video-title h5 {
  font-weight: 600;
  color: var(--primary);
}

.video-one .video-title h2 {
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}

.video-one .video-title .text-lg {
  margin-top: 24px;
  color: var(--dark-3);
}

.video-one .video-content {
  position: relative;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.video-one .video-content img {
  border-radius: 8px;
}

.video-one .video-content a {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding-left: 3px;
}

@media (max-width: 767px) {
  .video-one .video-content a {
    width: 68px;
    height: 68px;
    line-height: 68px;
    font-size: 20px;
  }
}

.video-one .video-content a:hover {
  background-color: var(--white);
  color: var(--primary);
}

/*===== portfolio THREE =====*/
.portfolio-three {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-three {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .portfolio-three {
    padding: 60px 0;
  }
}

.portfolio-three .portfolio-menu {
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .portfolio-three .portfolio-menu {
    margin-bottom: 15px;
  }
}

.portfolio-three .portfolio-menu button {
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-3);
  line-height: 48px;
  padding: 0 30px;
  position: relative;
  display: inline-block;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  cursor: pointer;
  margin: 0 2px;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-three .portfolio-menu button {
    font-size: 14px;
    padding: 0 26px;
  }
}

@media (max-width: 767px) {
  .portfolio-three .portfolio-menu button {
    font-size: 14px;
    padding: 0 22px;
    line-height: 42px;
  }
}

.portfolio-three .portfolio-menu button::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 4px;
}

.portfolio-three .portfolio-menu button:hover,
.portfolio-three .portfolio-menu button.active {
  color: var(--primary);
}

.portfolio-three .portfolio-menu button:hover::before,
.portfolio-three .portfolio-menu button.active::before {
  opacity: 1;
}

.portfolio-three .hide {
  display: none;
}

.portfolio-three .show {
  display: block;
}

.portfolio-style-three {
  margin-top: 30px;
}

.portfolio-style-three .portfolio-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.portfolio-style-three .portfolio-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.portfolio-style-three .portfolio-image .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
  border-radius: 8px;
}

.portfolio-style-three .portfolio-image .portfolio-content {
  padding: 16px;
}

.portfolio-style-three .portfolio-image .portfolio-icon {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

.portfolio-style-three .portfolio-image .portfolio-icon a {
  font-size: 28px;
  color: var(--white);
  position: relative;
  z-index: 5;
  line-height: 60px;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background-color: var(--primary);
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.portfolio-style-three .portfolio-image .portfolio-icon a:hover {
  background-color: var(--primary-dark);
}

.portfolio-style-three .portfolio-text {
  padding-top: 16px;
}

.portfolio-style-three .portfolio-title a {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-style-three .portfolio-title a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .portfolio-style-three .portfolio-title a {
    font-size: 20px;
  }
}

.portfolio-style-three .text {
  color: var(--black);
  margin-top: 8px;
}

.portfolio-style-three:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

/* ===== Buttons Css ===== */
.pricing-style-fifteen .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.pricing-style-fifteen .active.primary-btn,
.pricing-style-fifteen .primary-btn:hover,
.pricing-style-fifteen .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.pricing-style-fifteen .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/* ===== Buttons Css ===== */
.pricing-style-fourteen .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.pricing-style-fourteen .active.primary-btn,
.pricing-style-fourteen .primary-btn:hover,
.pricing-style-fourteen .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.pricing-style-fourteen .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.pricing-style-fourteen .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.pricing-style-fourteen .active.primary-btn-outline,
.pricing-style-fourteen .primary-btn-outline:hover,
.pricing-style-fourteen .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}

/*For iPhones - from Alden*/
@media (max-width: 767px) {
  .pricing-style-fourteen {
    margin-bottom: 20px;
  }
}

.pricing-style-fourteen .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== PRICING THIRTEEN =====*/
.pricing-fourteen {
  padding: 95px 0;
  background-color: var(---white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fourteen {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .pricing-fourteen {
    padding: 60px 0;
  }
}

.pricing-style-fourteen {
  border: 1px solid var(--light-1);
  border-radius: 10px;
  background-color: var(--white);
  transition: all 0.4s ease;
  padding: 50px 35px;
  text-align: center;
  z-index: 0;
}

.pricing-style-fourteen:hover {
  box-shadow: var(--shadow-4);
}

.pricing-style-fourteen.middle {
  box-shadow: var(--shadow-4);
}

.pricing-style-fourteen.middle .title {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.pricing-style-fourteen .title {
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--primary);
  padding: 8px 20px;
  border: 2px solid var(--primary);
  display: inline-block;
  border-radius: 30px;
  font-size: 16px;
}

.pricing-style-fourteen .table-head p {
  color: var(--dark-3);
}

.pricing-style-fourteen .price {
  padding-top: 30px;
}

.pricing-style-fourteen .amount {
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  font-size: 55px;
}

.pricing-style-fourteen .currency {
  font-weight: 400;
  color: var(--dark-3);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing-style-fourteen .duration {
  display: inline-block;
  font-size: 18px;
  color: var(--dark-3);
  font-weight: 400;
}

.pricing-style-fourteen .light-rounded-buttons {
  margin: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.pricing-style-fourteen .table-list li {
  position: relative;
  margin-bottom: 10px;
  color: var(--dark-3);
  text-align: left;
}

.pricing-style-fourteen .table-list li:last-child {
  margin: 0;
}

.pricing-style-fourteen .table-list li i {
  color: var(--primary);
  font-size: 16px;
  padding-right: 8px;
}

.pricing-style-fourteen .table-list li i.deactive {
  color: var(--dark-3);
}

/*===========================
  teams css 
===========================*/
.team-area {
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .team-area {
    padding: 60px 0;
  }
}

.team-style-six {
  position: relative;
  box-shadow: var(--shadow-2);
  border-radius: 8px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-style-six {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .team-style-six {
    margin-top: 30px;
  }
}

.team-style-six .team-image img {
  width: 100%;
}

.team-style-six .team-content {
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-top: 25px;
  padding-bottom: 25px;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .team-style-six .team-content {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.team-style-six .team-content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary);
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}

.team-style-six .team-content .team-name {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .team-style-six .team-content .team-name {
    font-size: 18px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-style-six .team-content .team-name {
    font-size: 20px;
  }
}

.team-style-six .team-content .sub-title {
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
  color: var(--primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .team-style-six .team-content .sub-title {
    font-size: 14px;
  }
}

.team-style-six .team-content .team-social {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
}

.team-style-six .team-content .team-social .social {
  background-color: var(--white);
  display: inline-block;
  padding: 10px 20px 6px;
  border-radius: 50px;
}

.team-style-six .team-content .team-social .social li {
  display: inline-block;
  margin: 0 8px;
}

.team-style-six .team-content .team-social .social li a {
  font-size: 16px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.team-style-six .team-content .team-social .social li a:hover {
  color: var(--primary);
}

.team-style-six:hover .team-content {
  padding-top: 50px;
}

@media (max-width: 767px) {
  .team-style-six:hover .team-content {
    padding-top: 35px;
  }
}

.team-style-six:hover .team-content::before {
  opacity: 1;
}

.team-style-six:hover .team-content .team-social {
  top: -20px;
  visibility: visible;
  opacity: 1;
}

.team-style-six:hover .team-content .team-name {
  color: var(--white);
}

.team-style-six:hover .team-content .sub-title {
  color: var(--white);
}

/* ===== Buttons Css ===== */
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.call-action .inner-content .light-rounded-buttons .active.primary-btn-outline,
.call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover,
.call-action .inner-content .light-rounded-buttons .primary-btn-outline:focus {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
}

.call-action .inner-content .light-rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action {
  z-index: 2;
  padding: 70px 0;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action {
    padding: 60px;
  }
}

@media (max-width: 767px) {
  .call-action {
    padding: 50px 0;
  }
}

.call-action:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("assets/images/call-action/overlay.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}

.call-action .inner-content {
  text-align: center;
}

.call-action .inner-content h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
}

.call-action .inner-content p {
  color: var(--white);
}

.call-action .inner-content .light-rounded-buttons {
  margin-top: 45px;
  display: block;
}

.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}

/*===== TESTIMONIAL STYLE FOUR =====*/
.testimonial-5 {
  background-color: var(--light-3);
  position: relative;
  padding-bottom: 160px;
  padding-top: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-5 {
    padding-bottom: 160px;
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .testimonial-5 {
    padding-bottom: 160px;
    padding-top: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .testimonial-5 {
    padding-bottom: 120px;
  }
}

.testimonial-5 .testimonial-slider {
  margin: 0;
}

.testimonial-5 .tns-nav {
  text-align: center;
  position: absolute;
  bottom: 90px;
  transform: translateX(-50%);
  width: 100%;
  left: 50%;
  z-index: 9;
  margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .testimonial-5 .tns-nav {
    bottom: 70px;
  }
}

.testimonial-5 .tns-nav button {
  height: 6px;
  width: 14px;
  background-color: var(--primary);
  opacity: 0.3;
  border-radius: 5px;
  display: inline-block;
  border: none;
  margin: 0px 5px;
  transition: all 0.4s ease;
}

.testimonial-5 .tns-nav button.tns-nav-active {
  width: 25px;
  opacity: 1;
}

.testimonial-5 .single-testimonial {
  background-color: var(--white);
  padding: 70px 50px;
  transition: all 0.4s ease;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  .testimonial-5 .single-testimonial {
    padding: 50px 40px;
  }
}

.testimonial-5 .single-testimonial .shape1 {
  position: absolute;
  left: 40px;
  top: 0;
}

.testimonial-5 .single-testimonial .shape2 {
  position: absolute;
  right: -20px;
  bottom: -20px;
}

.testimonial-5 .single-testimonial .inner-content {
  position: relative;
  z-index: 0;
}

.testimonial-5 .single-testimonial .qote-icon {
  font-size: 70px;
  color: var(--light-2);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.testimonial-5 .single-testimonial .text {
  font-weight: 500;
  line-height: 28px;
  color: var(--dark-3);
}

.testimonial-5 .single-testimonial .author {
  position: relative;
  padding-left: 70px;
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.testimonial-5 .single-testimonial .author img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.testimonial-5 .single-testimonial .author h4 {
  font-size: 18px;
  color: var(--dark-1);
  margin-top: 10px;
  padding-left: 20px;
}

.testimonial-5 .single-testimonial .author h4 span {
  color: var(--dark-3);
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}

/*===== latest-news-area =====*/
.latest-news-area {
  background: var(--white);
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-news-area {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .latest-news-area {
    padding: 60px 0;
  }
}

.latest-news-area .single-news {
  margin-top: 30px;
}

.latest-news-area .single-news .image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.latest-news-area .single-news .image img {
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
}

.latest-news-area .single-news .image .meta-details {
  display: inline-block;
  padding: 6px 15px 6px 7px;
  border-radius: 30px;
  background-color: var(--primary);
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.latest-news-area .single-news .image .meta-details img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: inline-block;
}

.latest-news-area .single-news .image .meta-details span {
  color: var(--white);
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
}

.latest-news-area .single-news .content-body .title {
  margin: 30px 0 20px 0;
}

.latest-news-area .single-news .content-body .title a {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.latest-news-area .single-news .content-body .title a:hover {
  color: var(--primary);
}

.latest-news-area .single-news .content-body p {
  color: var(--dark-3);
}

.latest-news-area .single-news:hover .image .thumb {
  transform: scale(1.1) rotate(1deg);
}

/*======================================
    Brand CSS
========================================*/
.brand-area {
  padding: 100px 0;
  background: var(--light-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .brand-area {
    padding: 60px 0;
  }
}

.brand-area .clients-logos {
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}

.brand-area .clients-logos .single-image {
  display: inline-block;
  margin: 13px 10px;
  background-color: var(--white);
  line-height: 100px;
  padding: 8px 25px;
  border-radius: 8px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  border: 1px solid #eee;
}

.brand-area .clients-logos .single-image:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.096);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

.brand-area .clients-logos img {
  max-width: 170px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.shorebird-logo {
  height: 25%;
  width: 25%;
}

.shorebird-logo-footer {
  width: 300px;
  /* Adjust this to the desired width */
  height: 70px;
  /* Adjust this to the desired height */
}

/* ===== Buttons Css ===== */
.contact-form-wrapper .contact-form .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.contact-form-wrapper .contact-form .active.primary-btn,
.contact-form-wrapper .contact-form .primary-btn:hover,
.contact-form-wrapper .contact-form .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.contact-form-wrapper .contact-form .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
	Contact CSS
========================================*/
.contact-section {
  position: relative;
  z-index: 3;
  /* After Integrating Pricing and Contact Section, Remove Padding from Contact-section
  padding-top: 100px;*/
  padding-top: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding-top: 20px;
  }
}

.contact-section .contact-item-wrapper .contact-item {
  display: flex;
  border: 1px solid var(--gray-4);
  border-radius: 10px;
  /*background: var(--white);*/
  background: var(--light-3);
  margin-bottom: 30px;
  padding: 20px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.contact-section .contact-item-wrapper .contact-item:hover {
  box-shadow: var(--shadow-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item {
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}

.contact-section .contact-item-wrapper .contact-item .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.contact-section .contact-item-wrapper .contact-item .contact-content {
  margin-left: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}

.contact-section .contact-item-wrapper .contact-item .contact-content h4 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-form-wrapper {
  padding: 50px 40px;
  background: var(--white);
  border: 1px solid var(--gray-4);
  margin-left: 0px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.contact-form-wrapper:hover {
  box-shadow: var(--shadow-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-wrapper {
    margin-left: 30px;
  }
}

.contact-form-wrapper .section-title {
  margin-bottom: 30px;
}

.contact-form-wrapper .section-title span {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}

.contact-form-wrapper .section-title h2 {
  margin-bottom: 10px;
}

.contact-form-wrapper .section-title p {
  color: var(--dark-3);
}

.contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px solid var(--gray-4);
  margin-bottom: 25px;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {

  .contact-form-wrapper .contact-form input,
  .contact-form-wrapper .contact-form textarea {
    padding: 12px 25px;
  }
}

.contact-form-wrapper .contact-form input:focus,
.contact-form-wrapper .contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form-wrapper .contact-form textarea {
  border-radius: 18px;
}

.map-style-9 {
  margin-top: -130px;
}

@media (max-width: 767px) {
  .map-style-9 {
    height: 250px;
  }
}

/* Footer eleven css */
.footer-eleven {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--white);
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-eleven {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
    text-align: center;
  }
}

.footer-eleven .footer-widget h5 {
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--black);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-eleven .footer-widget h5 {
    margin-bottom: 25px;
  }
}

.footer-eleven .f-about {
  padding-right: 30px;
}

@media (max-width: 767px) {
  .footer-eleven .f-about {
    padding: 0;
  }
}

.footer-eleven .f-about p {
  color: var(--dark-3);
  margin-top: 8px;
}

.footer-social-link {
  margin-top: 14px;
  color: var(--dark-3);
}

.footer-eleven .f-about .copyright-text {
  color: var(--dark-3);
  margin-top: 40px;
}

.footer-eleven .f-about .copyright-text span {
  display: block;
}

@media (max-width: 767px) {
  .footer-eleven .f-about .copyright-text {
    margin-top: 20px;
  }
}

.footer-eleven .f-about .copyright-text a {
  color: var(--primary);
}

.footer-eleven .f-about .copyright-text a:hover {
  color: var(--primary-dark);
}

.footer-eleven .f-link li {
  display: block;
  margin-bottom: 12px;
}

.footer-eleven .f-link li:last-child {
  margin: 0;
}

.footer-eleven .f-link li a {
  color: var(--dark-3);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.footer-eleven .f-link li a:hover {
  color: var(--primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
  .footer-eleven .newsletter {
    padding-left: 80px;
  }
}

.footer-eleven .newsletter p {
  color: var(--dark-3);
}

.footer-eleven .newsletter-form {
  margin-top: 30px;
  position: relative;
}

.footer-eleven .newsletter-form input {
  height: 55px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--gray-4);
  box-shadow: none;
  text-shadow: none;
  padding-left: 18px;
  padding-right: 65px;
  transition: all 0.4s ease;
}

.footer-eleven .newsletter-form input:focus {
  border-color: var(--primary);
}

.footer-eleven .newsletter-form .button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-eleven .newsletter-form .sub-btn {
  height: 42px;
  width: 42px;
  border-radius: 6px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  line-height: 42px;
  border: none;
  box-shadow: none;
  text-shadow: none;
  font-size: 17px;
  transition: all 0.4s ease;
}

.footer-eleven .newsletter-form .sub-btn:hover {
  color: var(--white);
  background-color: var(--primary-dark);
}

/* Shorebird Custom CSS*/

/* PAYWALL AND INPUT BOX CSS START/* 
/* Animation keyframes for sliding up */
@keyframes slide-up {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.first-paywall-item {
  padding-top: 0em;
}

#overlay {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 11%;
  /* Percent at the top that the paywall starts at */
  left: 0;
  width: 100%;
  height: 89%;
  /* height + top = 100% */
  background-color: rgba(250, 250, 250, 0.98);
  z-index: 9999;
}

#paywallMessage {
  max-width: 400px;
  /* Adjust the max-width as needed */
  padding: 0.5em;
  background-color: rgba(250, 250, 250, 0);
  /* Keep alpha to 0 for continuity with paywall */
  border-radius: 10px;
  text-align: center;
  /* Add a subtle box shadow for depth */
}

#paywallMessage h2 {
  font-size: 30px;
  /* Adjust the font size as needed */
  margin-bottom: 10px;
  /* Add some spacing between the title and the content */
}

.paywall-reg-text {
  font-size: 14px;
  font-family: var(--font-family);
  color: var(--black);
  /* Adjust the font size as needed */
  margin-bottom: 0px;
  /* Add spacing between paragraphs */
}

#passwordInput {
  padding: 10px;
  margin-bottom: 2px;
  /* Add spacing between password input and the button */
}

.password-input-paywall {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  padding: 8px 68px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin: 0px;
  border-color: var(--black);
}

.password-container {
  text-align: left;
}

.password-label {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 12px;
  color: var(--black);
  /* Remove the default bottom margin for <p> */
}

s #paywallMessage p:last-child {
  margin-bottom: 0;
  /* Remove the bottom margin for the last paragraph */
}

.paywall-tos-text {
  font-size: 8px;
  font-family: var(--font-family);
  color: var(--black);
  margin-bottom: 15px;
}

.paywall-img {
  height: 50%;
  width: 50%;
}

.primary-btn-paywall {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.active.primary-btn-paywall,
.primary-btn-paywall:hover,
.primary-btn-paywall:focus {
  background: var(--dark-1);
  border-color: var(--dark-1);
  color: var(--white);
}

.deactive.primary-btn-paywall {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

.btn-paywall {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 68px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin: 8px;
}

.paywall-divider {
  font-size: 14px;
  display: flex;
  align-items: center;
  color: var(--black);
}

.paywall-divider::before,
.paywall-divider::after {
  flex: 1;
  content: "";
  padding: 0.5px;
  background-color: var(--dark-1);
  margin: 8px;
}

/* PAYWALL AND INPUT BOX CSS END*/

/* For Button Spacing */
@media (max-width: 1000px) {
  .header-eight .button {
    margin-top: 20px;
    margin-bottom: 0px;
  }
}

/* DataGrid CSS*/

/*===========================
  Section Title Five CSS
===========================*/
.section-title-dg {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 8px;
  position: relative;
  z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-dg {
    margin-bottom: 6px;
  }
}

@media (max-width: 767px) {
  .section-title-dg {
    margin-bottom: 6px;
  }
}

.section-title-dg h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 30px;
}

.section-title-dg h2 {
  margin-bottom: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-dg h2 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}

@media (max-width: 767px) {
  .section-title-dg h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}

.section-title-dg p {
  color: var(--dark-3);
}

.filter-table-box {
  margin-top: 14px;
  margin-bottom: 8px;
  padding: 0px;
}

.header-eight .filter-table-box p {
  margin-top: 8px;
  color: var(--white);
  opacity: 0.7;
}

.header-eight .button-app {
  margin-top: 16px;
}

.about-img-selected {
  /*height: 100%;*/
  max-height: 400px;
  /* Adjust the height as needed */
  width: 400px;
  padding-top: 15px;
  object-fit: contain;
  border-radius: 4px;
  /* object-fit: contain ensures that the photo is neither cropped nor distorted*/
}

#recaptcha {
  width: 304px;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 8px;
}

.manage-subscription-text {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 16px;
  color: black;
}

.tos-submit-text p {
  display: inline-block;
  font-size: 7px;
}

.tos-submit-text a {
  font-size: 7px;
}

.modal-button {
  color: var(--white);
  background-color: var(--primary);
}

.filter-table table {
  padding-bottom: 30px;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  width: 100vw;
  /* was 696px*/
  border-collapse: collapse;
}

.filter-table-width {
  width: 100vw;
  padding-left: 0px;
  padding-right: 0px;
}

.filter-table-first-item {
  padding-left: 60px;
}

.filter-table-last-item {
  padding-right: 40px;
}

.filter-table td {
  border: none;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  margin: 0px;
  padding: 0px;
  text-align: center;
  width: 116px;
  font-family: var(--font-family);
}

.filter-table input {
  width: 75px;
  padding: 4px 4px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin: 8px;
  border-color: var(--white);
  background-color: var(--white);
}

.filter-table select {
  width: 75px;
  padding: 4px 4px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin: 8px;
  border-color: var(--white);
  background-color: var(--white);
}

/* For Filter Table and Search Bar iPhone*/
@media (max-width: 767px) {
  .filter-table table {
    padding-bottom: 30px;
    margin-top: 10px;
  }

  .filter-table button {

    padding: 0 !important;
    width: 44px !important;
    height: 22px;
    padding: 2px 2px;
    border-radius: 4px;
    /* font-size: 16px !important; */
    font-size: 1em !important;
    margin: 4px !important;
    border-color: var(--white);
    background-color: var(--white);
    color: var(--white);
  }

  .filter-table-box {
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 0px;
  }

  .filter-table td {
    border: none;
    font-size: 0.6em;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--font-family);
    color: var(--white);
    margin: 0px;
    padding: 0px;
    text-align: center;
  }

  .filter-table input {
    width: 44px;
    height: 22px;
    padding: 2px 2px;
    border-radius: 4px;
    font-size: 16px !important;
    border: 1px solid transparent;
    margin: 4px;
    border-color: var(--white);
    background-color: var(--white);
  }

  .filter-table select {
    width: 38px;
    height: 22px;
    padding: 2px 2px;
    border-radius: 4px;
    border: 1px solid transparent;
    margin: 4px;
    border-color: var(--white);
    background-color: var(--white);
  }

  .filter-table-first-item {
    padding-left: 40px;
  }

  .filter-table-last-item {
    padding-right: 10px;
  }
}

/* For Filter Table iPad, Tablet*/
@media (min-width: 991px) and (max-width: 1200px) {
  .filter-table table {
    padding-bottom: 30px;
    margin-top: 10px;
    width: 500px;
    border-collapse: collapse;
  }

  .filter-table button {
    width: 75px;
    padding: 4px 4px;
    border-radius: 4px;
    margin: 8px;
    border-color: var(--white);
    background-color: var(--white);
    color: var(--white);
  }

  .filter-table td {
    border: none;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    margin: 0px;
    padding: 0px;
    text-align: center;
    width: 116px;
    font-family: var(--font-family);
  }

  .filter-table input {
    width: 75px;
    padding: 4px 4px;
    border-radius: 4px;
    border: 1px solid transparent;
    margin: 8px;
    border-color: var(--white);
    background-color: var(--white);
  }

  .filter-table select {
    width: 75px;
    padding: 4px 4px;
    border-radius: 4px;
    border: 1px solid transparent;
    margin: 8px;
    border-color: var(--white);
    background-color: var(--white);
  }
}

/* Base style */
.filter-table button {
  width: 75px;
  padding: 4px 4px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin: 8px;
  border-color: var(--white);
  background-color: var(--white);
  font-size: 1em;
  font-family: var(--font-family);
  color: var(--white);
  /* match your existing input color */
  text-align: center;
  cursor: pointer;
}

@media (max-width: 767px) {

  .datatable th,
  td {
    padding: 2px;
    font-size: 10px;
  }

  .map-height {
    height: 800px;
  }
}

/* As long as map-height is > the screen height, the 100vw setting on the div will make it render properly*/
.map-height {
  height: 1500px;
}

/* @media (max-width: 767px) {
  .map-height {
    height: 100vw;
  }
} */

.mobile-hide-text {
  display: block;
}

@media (max-width: 767px) {
  .mobile-hide-text {
    display: none;
  }
}

/*===========================
  about-05 css
===========================*/
/*Shorebird: Changed background color from --light-3 to --white*/
.about-datagrid {
  background-color: var(--white);
  padding-top: 0px;
  padding-bottom: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-datagrid {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .about-datagrid {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.about-datagrid-content {
  padding-left: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-datagrid-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .about-datagrid-content {
    padding-left: 0;
  }
}

.about-datagrid-content .small-title {
  position: relative;
  padding-left: 30px;
}

.about-datagrid-content .small-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  background-color: var(--primary);
  height: 2px;
  width: 20px;
  margin-top: -1px;
}

.about-datagrid-content .main-title {
  margin-top: 10px;
}

.about-datagrid-content .about-datagrid-tab {
  margin-top: 15px;
}

.about-datagrid-content .about-datagrid-tab nav {
  border: none;
  background-color: var(--light-1);
  padding: 15px;
  border-radius: 5px;
}

.about-datagrid-content .about-datagrid-tab nav .nav-tabs {
  border: none;
}

.about-datagrid-content .about-datagrid-tab nav button {
  border: none;
  color: var(--dark-1);
  font-weight: 600;
  padding: 0;
  margin: 0 10px 10px 0;
  position: relative;
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: 4px;
  text-transform: capitalize;
}

/* From GPT*/
.about-datagrid-content .about-datagrid-tab nav .nav-tabs {
  border: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* End GPT*/

@media (max-width: 767px) {
  .about-datagrid-content .about-datagrid-tab nav button {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .about-datagrid-content .about-datagrid-tab nav button:last-child {
    margin: 0;
  }
}

.about-datagrid-content .about-datagrid-tab nav button:hover {
  color: var(--primary);
}

.about-datagrid-content .about-datagrid-tab nav button.active {
  background-color: var(--primary);
  color: var(--white);
}

.about-datagrid-content .about-datagrid-tab nav button:last-child {
  margin-right: 0;
}

.about-datagrid-content .about-datagrid-tab .tab-content {
  border: none;
  padding-top: 15px;
}

.about-datagrid-content .about-datagrid-tab .tab-content p {
  margin-bottom: 20px;
}

.about-datagrid-content .about-datagrid-tab .tab-content p:last-child {
  margin: 0;
}

.div-nopadding {
  padding: 0;
}

.filter-table-right {
  text-align: center;
}

.filter-table-left {
  text-align: center;
  padding-right: 1.25em;
  font-size: 1.25em;
  white-space: nowrap;
}

.filter-table-left a {
  color: var(--white);
  white-space: nowrap;
}

/*======================================
    Map Area CSS
========================================*/
.map-area {
  position: relative;
  padding: 70px 0 0px 0;
  background: var(--map-area-color);
  width: 100vw;
  overflow: hidden;
  margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .map-area {
    padding: 60px 0 60px 0;
  }
}

@media (max-width: 767px) {
  .map-area {
    padding: 50px 0 30px 0;
  }
}

.map-area .header-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .map-area .header-image {
    margin-top: 40px;
  }
}

.map-area .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}

.map-area .header-content h1 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .map-area .header-content h1 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .map-area .header-content h1 {
    font-size: 30px;
    line-height: 42px;
  }
}

.map-area .header-content h1 span {
  display: block;
}

.map-area .header-content p {
  margin-top: 10px;
  color: var(--white);
  opacity: 0.7;
}

.map-area .button {
  margin-top: 40px;
}

.map-area .primary-btn {
  margin-right: 12px;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}

.map-area .primary-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.map-area .video-button {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 767px) {
  .map-area .video-button {
    margin-top: 20px;
  }
}

.map-area .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: var(--white);
  font-weight: 600;
}

.map-area .video-button .icon-btn {
  background: var(--white);
  color: var(--primary);
}

.nomargin-nopadding {
  margin: 0;
  padding: 0;
}

.width-100vw {
  width: 105vw;
}

.width-100 {
  width: 100%;
}

.help-modal ul {
  list-style-type: square;
  padding-left: 10px;
}

/* For mobile map toggler*/
.toggle-buttons {
  display: none;
}

/* Mobile Map / Datagrid Height*/
@media (max-width: 767px) {
  .toggle-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .view-section {
    display: none;
    height: 100vh;
    /* Adjust based on the height of your filter bar and other elements above */
    overflow-y: auto;
  }

  .view-section.active {
    display: block;
  }

  .full-height {
    height: 100vh;
  }

  /* Set height of child elements to 100% */
  .view-section .container,
  .view-section .row,
  .view-section .col-lg-12,
  .view-section #csvTable,
  .view-section #map {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .view-section {
    height: auto;
  }
}

/*For Map Left Hand Side Gradient for DESKTOP*/
@media (min-width: 767px) {
  .map-height {
    position: relative;
  }

  /*For Map Left Hand Side Gradient*/
  .map-height::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2%;
    /* Adjust the width to 3% of the container */
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 8;
    /* Ensure the gradient doesn't interfere with any interactions */
  }
}

/*For Map Top Side Gradient for Mobile*/
@media (max-width: 767px) {
  .map-height {
    position: relative;
  }

  /*For Map Left Hand Side Gradient*/
  .map-height::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Adjust the width to 3% of the container */
    height: 1%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 8;
    /* Ensure the gradient doesn't interfere with any interactions */
  }
}

@media (max-width: 767px) {

  /* Override DataTables dt-scroll-body height and max-height */
  .dt-scroll-body {
    height: 60vh !important;
    max-height: 60vh !important;
  }
}

@media (min-width: 768px) and (max-width: 1025px) {

  /* Override DataTables dt-scroll-body height and max-height for ipad*/
  .dt-scroll-body {
    height: 60vh !important;
    max-height: 60vh !important;
  }
}

/* Test: For Large Screen Sizes, also override dt-scroll body height and max-height*/
@media (min-width: 1025px) {

  /* Override DataTables dt-scroll-body height and max-height for ipad*/
  .dt-scroll-body {
    height: 55vh !important;
    max-height: 55vh !important;
  }
}


@media (max-width: 767px) {
  .about-datagrid {
    height: 100vh;
  }
}

@media (min-width: 768px) and (max-width: 1025px) {

  /* For iPad*/
  .about-datagrid {
    height: 100vh;
  }
}

/* Hide Map Toggler on Media Over Mobile Size*/
@media (min-width: 854px) {
  .map-toggler {
    display: none;
  }
}

/* price box effects */
@keyframes sheen {
  0% {
    left: -75%;
    /* Start position of the sheen effect */
  }

  50% {
    left: 125%;
    /* End position of the sheen effect */
  }

  100% {
    left: 125%;
    /* Ensures the effect stays off-screen after it runs */
  }
}

.pricing-box {
  position: relative;
  /* Needed for absolute positioning of the sheen effect */
  overflow: hidden;
  /* Hides the sheen effect outside of the box */
  background-color: #fff;
  /* Your desired background color */
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Optional: Adds a shadow for a raised effect */
}

.pricing-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-25deg);
  filter: blur(10px);
  z-index: 1;
  /* Keeps the sheen effect below the text */
  animation: sheen 4s ease-in-out infinite;
  /* 4s duration, runs infinitely */
}

.scam-faq-area {
  margin-left: 80px;
  margin-right: 80px;
  margin-top: 60px;
  margin-bottom: 0px
}

.scam-faq-area h3 {
  margin-bottom: .5em;
  margin-top: .5em;
}

.scam-faq-area h5 {
  margin-bottom: .25em;
  margin-top: 1em;
}


.scam-faq-area p {
  color: var(--black);
}

.scam-faq-area ul {
  list-style-type: disc;
  margin-left: 3em;
}

@media (max-width: 767px) {
  .scam-faq-area {
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 30px;
    margin-bottom: 0px;
  }
}

/*Prevent Scroll on App Page for Mobile*/
/*This prevents users from losing the filter bar and view of the map*/
@media (max-width: 767px) {
  .mobile-no-scroll {
    overflow: hidden;
    height: 100vh;
  }
}

/* Font Awesome Footer Icons*/
.fa-footer {
  color: var(--dark-3)
}

/* #datagrid input {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  padding: 8px 68px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin: 0px;
  border-color: var(--black);
} */

/* #datagrid table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

#datagrid th,
td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
} */

/* For Logo Resizing */
/* @media (max-width: 1000px) {
  .shorebird-logo {
    width: 30%;
    height: 30%;
  }
} */

/* Checkboxes main page */

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .checkbox-wrapper-13 input[type=checkbox] {
    --active: #275EFE;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #BBC1E1;
    --border-hover: #275EFE;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }

  .checkbox-wrapper-13 input[type=checkbox]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    margin-top: 2px;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }

  .checkbox-wrapper-13 input[type=checkbox]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }

  .checkbox-wrapper-13 input[type=checkbox]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }

  .checkbox-wrapper-13 input[type=checkbox]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }

  .checkbox-wrapper-13 input[type=checkbox]:disabled+label {
    cursor: not-allowed;
  }

  .checkbox-wrapper-13 input[type=checkbox]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }

  .checkbox-wrapper-13 input[type=checkbox]:focus {
    box-shadow: 0 0 0 var(--focus);
  }

  .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
    width: 21px;
  }

  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
    opacity: var(--o, 0);
  }

  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
    --o: 1;
  }

  .checkbox-wrapper-13 input[type=checkbox]+label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 4px;
    margin-top: 2px;
  }

  .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
    border-radius: 7px;
  }

  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 2px;
    transform: rotate(var(--r, 20deg));
  }

  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
}

.checkbox-wrapper-13 * {
  box-sizing: inherit;
}

.checkbox-wrapper-13 *:before,
.checkbox-wrapper-13 *:after {
  box-sizing: inherit;
}

/*Checkout Checkbox CSS*/
.signup-checkbox {
  padding: 0rem !important;
  font-size: 16px !important;
}

.checkbox-padding {
  margin-bottom: 8px !important;
}

/* === Scoped styles for checkout page === */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

.checkout-page {
  --primary-color: rgb(11, 78, 179);
  --taskbar-height: 60px;
}

*,
*::before,
.checkout-page *::after {
  box-sizing: border-box;
}

.checkout-page body {
  font-family: Montserrat, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  display: grid;
  overflow: auto;
}

/* Global Stylings */
.checkout-page label {
  display: block;
  margin-bottom: 0.1rem;
}

.checkout-page input {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 1rem;
  transition: background-color 0.3s ease;
}

.checkout-page fieldset {
  overflow-y: visible !important;
}

.checkout-page .width-50 {
  width: 50%;
}

.checkout-page .ml-auto {
  margin-left: auto;
}

/*===========================
  COMMON css 
===========================*/
.checkout-page {
  --font-family: "Inter", sans-serif;
  --primary: #155bd5;
  --primary-dark: #1c3ab6;
  /* Original OEM Colors
  --primary: #155bd5;
  --primary-dark: #1c3ab6;
  */
  --primary-light: #e2f1ff;
  --map-area-color: #6a9ffb;
  --filter-bar-color: #00d4d7;
  --accent: #00d4d7;
  --accent-dark: #00bac1;
  --accent-light: #dff9f8;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #8f15d5;
  --secondary-dark: #6013c7;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
  --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
  --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
  --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
  --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
  --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
  --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
  --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
  --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
    0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
    0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
    0px 20px 32px rgba(96, 97, 112, 0.24);
}

.checkout-page .mapboxgl-popup-content {
  font-family: var(--font-family);
  /* Add any other styling you want to apply to the pop-up content */
}

.checkout-page body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}

@media (max-width: 991px) {
  .checkout-page body {
    font-size: 14px;
  }
}

.checkout-page img {
  max-width: 100%;
}

.checkout-page a {
  display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
.checkout-page button:focus {
  text-decoration: none;
  outline: none;
}

/* Buttons and links */
.checkout-page button {
  background: #5469d4;
  font-family: Arial, sans-serif;
  color: #ffffff;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}

.checkout-page button:hover {
  filter: contrast(115%);
}

.checkout-page button:disabled {
  opacity: 0.5;
  cursor: default;
}

ul,
.checkout-page ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
.checkout-page h6 {
  font-weight: 600;
  color: var(--black);
  margin: 0px;
}

h1,
.checkout-page .h1 {
  font-size: 2.75em;
  line-height: 1.25;
}

h2,
.checkout-page .h2 {
  font-size: 2.25em;
  line-height: 1.25;
}

h3,
.checkout-page .h3 {
  font-size: 1.75em;
  line-height: 1.25;
}

h4,
.checkout-page .h4 {
  font-size: 1.5em;
  line-height: 1.25;
}

h5,
.checkout-page .h5 {
  font-size: 1.25em;
  line-height: 1.25;
}

h6,
.checkout-page .h6 {
  font-size: 0.875em;
  line-height: 1.25;
}

.checkout-page .display-1 {
  font-size: 5.5em;
  line-height: 1.25;
}

.checkout-page .display-2 {
  font-size: 4.75em;
  line-height: 1.25;
}

.checkout-page .display-3 {
  font-size: 4em;
  line-height: 1.25;
}

.checkout-page .display-4 {
  font-size: 3.25em;
  line-height: 1.25;
}

.checkout-page p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-3);
  margin: 0px;
  margin-bottom: 1rem;
}

.checkout-page .text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.checkout-page .text-lg {
  font-size: 1.15em;
  line-height: 1.5;
}

.checkout-page .bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .checkout-page .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.checkout-page .btn {
  height: 45px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.checkout-page .btn:hover {
  color: inherit;
}

.checkout-page .btn:focus {
  box-shadow: none;
  outline: none;
}

.checkout-page .btn.btn-lg {
  font-size: 1.15em;
  padding: 16px 24px;
}

.checkout-page .btn.btn-sm {
  padding: 8px 16px;
}

.checkout-page .btn.square {
  border-radius: 0px;
}

.checkout-page .btn.semi-rounded {
  border-radius: 12px;
}

.checkout-page .btn.rounded-full {
  border-radius: 50px;
}

.checkout-page .btn.rounded-standard-corner {
  border-radius: 4px;
}

.btn.icon-left span,
.checkout-page .btn.icon-left i {
  margin-right: 8px;
}

.btn.icon-right span,
.checkout-page .btn.icon-right i {
  margin-left: 8px;
}

.checkout-page .btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}

.checkout-page .btn.icon-btn.btn-lg {
  width: 56px;
  height: 56px;
  line-height: 56px;
}

.checkout-page .btn.icon-btn.btn-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

/* ===== Buttons Css ===== */
.checkout-page .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.active.primary-btn,
.primary-btn:hover,
.checkout-page .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.checkout-page .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.checkout-page .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.active.primary-btn-outline,
.primary-btn-outline:hover,
.checkout-page .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}

.checkout-page .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/* One Click Scrool Top Button*/
.checkout-page .scroll-top {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--primary);
  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;
  font-size: 14px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 5px;
}

.checkout-page .scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--dark-1);
}

/* One Click Scrool Top Button*/
.checkout-page .map-toggler {
  width: 45px;
  height: 35px;
  line-height: 1.2em;
  background: var(--primary);
  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;
  text-align: center;
  align-items: center;
  font-size: 9px;
  color: #fff !important;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 5px;
}

.checkout-page .map-toggler:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: var(--dark-1);
}

/*===========================
  Section Title Five CSS
===========================*/
.checkout-page .section-title-five {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 5px;
  position: relative;
  z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .section-title-five {
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .checkout-page .section-title-five {
    margin-bottom: 5px;
  }
}

.checkout-page .section-title-five h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 30px;
}

.checkout-page .section-title-five h2 {
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .section-title-five h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}

@media (max-width: 767px) {
  .checkout-page .section-title-five h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}

.checkout-page .section-title-five p {
  color: var(--dark-3);
}

.checkout-page .made-in-ayroui {
  position: fixed;
  left: 5px;
  bottom: 5px;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.checkout-page .made-in-ayroui:hover {
  transform: translateY(-5px);
}

/*===========================
  NAVBAR css 
===========================*/
.checkout-page .navbar-toggler:focus {
  box-shadow: none;
}

.checkout-page .mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR NINE =====*/
.checkout-page .navbar-area.navbar-nine {
  background: var(--primary);
  padding: 10px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  flex-shrink: 0;
}

.checkout-page .sticky {
  position: fixed !important;
  z-index: 99 !important;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}

.checkout-page .navbar-area.navbar-nine .navbar-brand {
  margin: 0;
}

.checkout-page .navbar-area.navbar-nine .navbar {
  position: relative;
  padding: 0;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}


.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item {
  position: relative;
}

/* Key Navbar Params*/
.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 0px 16px;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 4px 0;
  opacity: 0.7;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover {
  opacity: 1;
}

/*
NAVBAR Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
.checkout-page (max-width: 767px) {
.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    padding: 10px 0;
    display: block;
    border: 0;
    margin: 0;
  }
}
*/

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
  opacity: 1;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
  font-size: 12px;
  font-weight: 700;
  padding-left: 7px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* Navbar Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
.checkout-page (max-width: 767px) {
.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
    position: relative;
    top: -5px;
  }
}
*/

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 130%;
  width: 230px;
  background-color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
}

/* Navbar Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
.checkout-page (max-width: 767px) {
.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
*/

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}

/* Navbar Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
.checkout-page (max-width: 767px) {
.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
*/

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  color: var(--dark-2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  z-index: 5;
  opacity: 1;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-weight: 700;
  font-size: 12px;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}


@media (max-width: 767px) {
  .checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}


.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
  color: var(--white);
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a {
  color: var(--primary);
  padding-left: 22px;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a i {
  color: var(--primary);
}


.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a::after {
  opacity: 1;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover>a::before {
  opacity: 1;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 115%;
}

/* Navbar Comment
@media only screen and (min-width: 768px) and (max-width: 991px),
.checkout-page (max-width: 767px) {
.checkout-page .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
*/

.checkout-page .navbar-area.navbar-nine .navbar .navbar-btn {
  margin-top: 6px;
}

/*
@media only screen and (min-width: 768px) and (max-width: 991px) {
.checkout-page .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 70px;
    top: 7px;
  }
}

@media (max-width: 767px) {
.checkout-page .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 7px;
  }
}
*/

.checkout-page .navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
  font-size: 22px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(238, 238, 238, 0.425);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .navbar-area.navbar-nine .navbar .navbar-btn .menu-bar:hover {
  border-color: transparent;
  color: var(--primary);
  background-color: var(--white);
}

/*===== SIDEBAR ONE =====*/
.checkout-page .sidebar-left {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--white);
  height: 100%;
  width: 350px;
  padding-top: 80px;
  z-index: 999;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  text-align: left;
}

.checkout-page .sidebar-left.open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

@media (max-width: 767px) {
  .checkout-page .sidebar-left {
    width: 250px;
  }
}

.checkout-page .sidebar-left .sidebar-close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.checkout-page .sidebar-left .sidebar-close .close {
  font-size: 18px;
  color: var(--black);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.checkout-page .sidebar-left .sidebar-close .close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.checkout-page .sidebar-left .sidebar-content {
  padding: 0px 30px;
}

.checkout-page .sidebar-left .sidebar-content .sidebar-menu {
  margin-top: 30px;
}

.checkout-page .sidebar-left .sidebar-content .sidebar-menu .menu-title {
  font-size: 18px;
  font-weight: 600;
}

.checkout-page .sidebar-left .sidebar-content .sidebar-menu ul {
  margin-top: 15px;
}

.checkout-page .sidebar-left .sidebar-content .sidebar-menu ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 0;
  color: var(--dark-3);
  text-transform: capitalize;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
}

.checkout-page .sidebar-left .sidebar-content .sidebar-menu ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.checkout-page .sidebar-left .sidebar-content .text {
  margin-top: 20px;
}

.checkout-page .sidebar-left .sidebar-content .sidebar-social {
  margin-top: 30px;
}

.checkout-page .sidebar-left .sidebar-content .sidebar-social .social-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.checkout-page .sidebar-left .sidebar-content .sidebar-social ul li {
  display: inline-block;
  margin-right: 5px;
}

.checkout-page .sidebar-left .sidebar-content .sidebar-social ul li:last-child {
  margin: 0;
}

.checkout-page .sidebar-left .sidebar-content .sidebar-social ul li a {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 18px;
  color: #666;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .sidebar-left .sidebar-content .sidebar-social ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}

.checkout-page .overlay-left {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99;
}

.checkout-page .overlay-left.open {
  display: block;
}

/* ===== Buttons Css ===== */
.checkout-page .header-eight .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.header-eight .active.primary-btn,
.header-eight .primary-btn:hover,
.checkout-page .header-eight .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.checkout-page .header-eight .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.checkout-page .header-eight {
  position: relative;
  padding: 70px 0 70px 0;
  background: var(--primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .header-eight {
    padding: 60px 0 60px 0;
  }
}

@media (max-width: 767px) {
  .checkout-page .header-eight {
    padding: 50px 0 30px 0;
  }
}

.checkout-page .header-eight .header-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.checkout-page .header-eight .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}

.checkout-page .header-eight .header-content h1 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .header-eight .header-content h1 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .checkout-page .header-eight .header-content h1 {
    font-size: 30px;
    line-height: 42px;
  }
}

.checkout-page .header-eight .header-content h1 span {
  display: block;
}

.checkout-page .header-eight .header-content p {
  margin-top: 10px;
  color: var(--white);
  opacity: 0.7;
}

.checkout-page .header-eight .button {
  margin-top: 40px;
}

.checkout-page .header-eight .primary-btn {
  margin-right: 12px;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}

.checkout-page .header-eight .primary-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.checkout-page .header-eight .video-button {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 767px) {
  .checkout-page .header-eight .video-button {
    margin-top: 20px;
  }
}

.checkout-page .header-eight .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: var(--white);
  font-weight: 600;
}

.checkout-page .header-eight .video-button .icon-btn {
  background: var(--white);
  color: var(--primary);
}

/*===========================
  about-05 css
===========================*/
/*Shorebird: Changed background color from --light-3 to --white*/
.checkout-page .about-five {
  background-color: var(--white);
  padding-top: 70px;
  padding-bottom: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .about-five {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .checkout-page .about-five {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.checkout-page .about-five-content {
  padding-left: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .about-five-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .checkout-page .about-five-content {
    padding-left: 0;
  }
}

.checkout-page .about-five-content .small-title {
  position: relative;
  padding-left: 30px;
}

.checkout-page .about-five-content .small-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  background-color: var(--primary);
  height: 2px;
  width: 20px;
  margin-top: -1px;
}

.checkout-page .about-five-content .main-title {
  margin-top: 10px;
}

.checkout-page .about-five-content .about-five-tab {
  margin-top: 15px;
}

.checkout-page .about-five-content .about-five-tab nav {
  border: none;
  background-color: var(--light-1);
  padding: 15px;
  border-radius: 5px;
}

.checkout-page .about-five-content .about-five-tab nav .nav-tabs {
  border: none;
}

.checkout-page .about-five-content .about-five-tab nav button {
  border: none;
  color: var(--dark-1);
  font-weight: 600;
  padding: 0;
  margin: 0 10px 10px 0;
  position: relative;
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: 4px;
  text-transform: capitalize;
}

/* From GPT*/
.checkout-page .about-five-content .about-five-tab nav .nav-tabs {
  border: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* End GPT*/

@media (max-width: 767px) {
  .checkout-page .about-five-content .about-five-tab nav button {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .checkout-page .about-five-content .about-five-tab nav button:last-child {
    margin: 0;
  }
}

.checkout-page .about-five-content .about-five-tab nav button:hover {
  color: var(--primary);
}

.checkout-page .about-five-content .about-five-tab nav button.active {
  background-color: var(--primary);
  color: var(--white);
}

.checkout-page .about-five-content .about-five-tab nav button:last-child {
  margin-right: 0;
}

.checkout-page .about-five-content .about-five-tab .tab-content {
  border: none;
  padding-top: 15px;
}

.checkout-page .about-five-content .about-five-tab .tab-content p {
  margin-bottom: 20px;
}

.checkout-page .about-five-content .about-five-tab .tab-content p:last-child {
  margin: 0;
}

.checkout-page .about-image-five {
  padding-left: 60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .checkout-page .col-header-img {
    height: 320px;
    margin-top: -30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .checkout-page .col-about-img {
    margin-top: 0px;
    margin-bottom: -20px;
  }
}

.checkout-page .about-image-five img {
  border-radius: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .about-image-five {
    margin-bottom: 70px;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .checkout-page .about-image-five {
    margin-bottom: 60px;
    padding-left: 0;
  }
}

.checkout-page .about-image-five .shape {
  position: absolute;
  left: 30px;
  top: -30px;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .about-image-five .shape {
    left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .about-image-five::before {
    right: -15px;
    bottom: -15px;
  }
}

@media (max-width: 767px) {
  .checkout-page .about-image-five::before {
    display: none;
  }
}

.checkout-page .about-image-five img {
  width: 100%;
  z-index: 2;
}

/*===========================
  services css 
===========================*/
.checkout-page .services-eight {
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .services-eight {
    padding: 80px 0 50px 0;
  }
}

@media (max-width: 767px) {
  .checkout-page .services-eight {
    padding: 60px 0 30px 0;
  }
}

.checkout-page .services-eight .single-services {
  padding: 40px 30px;
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .services-eight .single-services:hover {
  box-shadow: var(--shadow-4);
}

.checkout-page .services-eight .single-services:hover .service-icon {
  color: var(--white);
  border-color: transparent;
  background: var(--primary);
}

.checkout-page .services-eight .single-services:hover .service-icon::after {
  opacity: 1;
  visibility: visible;
}

.checkout-page .services-eight .single-services .service-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin-bottom: 25px;
  background: var(--white);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 40px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
}

.checkout-page .services-eight .single-services .service-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: var(--primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid transparent;
}

.checkout-page .services-eight .single-services .service-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.checkout-page .services-eight .single-services .service-content p {
  color: var(--dark-3);
}

/*===== VIDEO ONE =====*/
.checkout-page .video-one {
  background-color: var(--light-3);
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .video-one {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .checkout-page .video-one {
    padding: 60px 0;
  }
}

.checkout-page .video-one .video-title h5 {
  font-weight: 600;
  color: var(--primary);
}

.checkout-page .video-one .video-title h2 {
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}

.checkout-page .video-one .video-title .text-lg {
  margin-top: 24px;
  color: var(--dark-3);
}

.checkout-page .video-one .video-content {
  position: relative;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.checkout-page .video-one .video-content img {
  border-radius: 8px;
}

.checkout-page .video-one .video-content a {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding-left: 3px;
}

@media (max-width: 767px) {
  .checkout-page .video-one .video-content a {
    width: 68px;
    height: 68px;
    line-height: 68px;
    font-size: 20px;
  }
}

.checkout-page .video-one .video-content a:hover {
  background-color: var(--white);
  color: var(--primary);
}

/*===== portfolio THREE =====*/
.checkout-page .portfolio-three {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .portfolio-three {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .checkout-page .portfolio-three {
    padding: 60px 0;
  }
}

.checkout-page .portfolio-three .portfolio-menu {
  margin-bottom: 30px;
}

.checkout-page .portfolio-three .portfolio-menu button {
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-3);
  line-height: 48px;
  padding: 0 30px;
  position: relative;
  display: inline-block;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  cursor: pointer;
  margin: 0 2px;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .portfolio-three .portfolio-menu button {
    font-size: 14px;
    padding: 0 26px;
  }
}

@media (max-width: 767px) {
  .checkout-page .portfolio-three .portfolio-menu button {
    font-size: 14px;
    padding: 0 22px;
    line-height: 42px;
  }
}

.checkout-page .portfolio-three .portfolio-menu button::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 4px;
}

.portfolio-three .portfolio-menu button:hover,
.checkout-page .portfolio-three .portfolio-menu button.active {
  color: var(--primary);
}

.portfolio-three .portfolio-menu button:hover::before,
.checkout-page .portfolio-three .portfolio-menu button.active::before {
  opacity: 1;
}

.checkout-page .portfolio-three .hide {
  display: none;
}

.checkout-page .portfolio-three .show {
  display: block;
}

.checkout-page .portfolio-style-three {
  margin-top: 30px;
}

.checkout-page .portfolio-style-three .portfolio-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.checkout-page .portfolio-style-three .portfolio-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .portfolio-style-three .portfolio-image .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
  border-radius: 8px;
}

.checkout-page .portfolio-style-three .portfolio-image .portfolio-content {
  padding: 16px;
}

.checkout-page .portfolio-style-three .portfolio-image .portfolio-icon {
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

.checkout-page .portfolio-style-three .portfolio-image .portfolio-icon a {
  font-size: 28px;
  color: var(--white);
  position: relative;
  z-index: 5;
  line-height: 60px;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background-color: var(--primary);
  border-radius: 8px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .portfolio-style-three .portfolio-image .portfolio-icon a:hover {
  background-color: var(--primary-dark);
}

.checkout-page .portfolio-style-three .portfolio-text {
  padding-top: 16px;
}

.checkout-page .portfolio-style-three .portfolio-title a {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .checkout-page .portfolio-style-three .portfolio-title a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .checkout-page .portfolio-style-three .portfolio-title a {
    font-size: 20px;
  }
}

.checkout-page .portfolio-style-three .text {
  color: var(--black);
  margin-top: 8px;
}

.checkout-page .portfolio-style-three:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

/* ===== Buttons Css ===== */
.checkout-page .pricing-style-fifteen .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.pricing-style-fifteen .active.primary-btn,
.pricing-style-fifteen .primary-btn:hover,
.checkout-page .pricing-style-fifteen .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.checkout-page .pricing-style-fifteen .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/* ===== Buttons Css ===== */
.checkout-page .pricing-style-fourteen .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.pricing-style-fourteen .active.primary-btn,
.pricing-style-fourteen .primary-btn:hover,
.checkout-page .pricing-style-fourteen .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.checkout-page .pricing-style-fourteen .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.checkout-page .pricing-style-fourteen .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.pricing-style-fourteen .active.primary-btn-outline,
.pricing-style-fourteen .primary-btn-outline:hover,
.checkout-page .pricing-style-fourteen .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}

.checkout-page .pricing-style-fourteen .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== PRICING THIRTEEN =====*/
.checkout-page .pricing-fourteen {
  padding: 95px 0;
  background-color: var(---white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .pricing-fourteen {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .checkout-page .pricing-fourteen {
    padding: 60px 0;
  }
}

.checkout-page .pricing-style-fourteen {
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-top: 0px;
  background-color: var(--white);
  transition: all 0.4s ease;
  padding: 50px 35px;
  text-align: center;
  z-index: 0;
}

.checkout-page .pricing-style-fourteen:hover {
  box-shadow: var(--shadow-4);
}

.checkout-page .pricing-style-fourteen.middle {
  box-shadow: var(--shadow-4);
}

.checkout-page .pricing-style-fourteen.middle .title {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.checkout-page .pricing-style-fourteen .title {
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--primary);
  padding: 8px 20px;
  border: 2px solid var(--primary);
  display: inline-block;
  border-radius: 30px;
  font-size: 16px;
}

.checkout-page .pricing-style-fourteen .table-head p {
  color: var(--dark-3);
}

.checkout-page .pricing-style-fourteen .price {
  padding-top: 30px;
}

.checkout-page .pricing-style-fourteen .amount {
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  font-size: 55px;
}

.checkout-page .pricing-style-fourteen .currency {
  font-weight: 400;
  color: var(--dark-3);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}

.checkout-page .pricing-style-fourteen .duration {
  display: inline-block;
  font-size: 18px;
  color: var(--dark-3);
  font-weight: 400;
}

.checkout-page .pricing-style-fourteen .light-rounded-buttons {
  margin: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.checkout-page .pricing-style-fourteen .table-list li {
  position: relative;
  margin-bottom: 10px;
  color: var(--dark-3);
  text-align: left;
}

.checkout-page .pricing-style-fourteen .table-list li:last-child {
  margin: 0;
}

.checkout-page .pricing-style-fourteen .table-list li i {
  color: var(--primary);
  font-size: 16px;
  padding-right: 8px;
}

.checkout-page .pricing-style-fourteen .table-list li i.deactive {
  color: var(--dark-3);
}

/*===========================
  teams css 
===========================*/
.checkout-page .team-area {
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .team-area {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .checkout-page .team-area {
    padding: 60px 0;
  }
}

.checkout-page .team-style-six {
  position: relative;
  box-shadow: var(--shadow-2);
  border-radius: 8px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .team-style-six {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .checkout-page .team-style-six {
    margin-top: 30px;
  }
}

.checkout-page .team-style-six .team-image img {
  width: 100%;
}

.checkout-page .team-style-six .team-content {
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-top: 25px;
  padding-bottom: 25px;
  z-index: 5;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .checkout-page .team-style-six .team-content {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.checkout-page .team-style-six .team-content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary);
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  opacity: 0;
}

.checkout-page .team-style-six .team-content .team-name {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .checkout-page .team-style-six .team-content .team-name {
    font-size: 18px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .checkout-page .team-style-six .team-content .team-name {
    font-size: 20px;
  }
}

.checkout-page .team-style-six .team-content .sub-title {
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
  color: var(--primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .checkout-page .team-style-six .team-content .sub-title {
    font-size: 14px;
  }
}

.checkout-page .team-style-six .team-content .team-social {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
}

.checkout-page .team-style-six .team-content .team-social .social {
  background-color: var(--white);
  display: inline-block;
  padding: 10px 20px 6px;
  border-radius: 50px;
}

.checkout-page .team-style-six .team-content .team-social .social li {
  display: inline-block;
  margin: 0 8px;
}

.checkout-page .team-style-six .team-content .team-social .social li a {
  font-size: 16px;
  color: var(--dark-3);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .team-style-six .team-content .team-social .social li a:hover {
  color: var(--primary);
}

.checkout-page .team-style-six:hover .team-content {
  padding-top: 50px;
}

@media (max-width: 767px) {
  .checkout-page .team-style-six:hover .team-content {
    padding-top: 35px;
  }
}

.checkout-page .team-style-six:hover .team-content::before {
  opacity: 1;
}

.checkout-page .team-style-six:hover .team-content .team-social {
  top: -20px;
  visibility: visible;
  opacity: 1;
}

.checkout-page .team-style-six:hover .team-content .team-name {
  color: var(--white);
}

.checkout-page .team-style-six:hover .team-content .sub-title {
  color: var(--white);
}

/* ===== Buttons Css ===== */
.checkout-page .call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.call-action .inner-content .light-rounded-buttons .active.primary-btn-outline,
.call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover,
.checkout-page .call-action .inner-content .light-rounded-buttons .primary-btn-outline:focus {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
}

.checkout-page .call-action .inner-content .light-rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== call action four =====*/
.checkout-page .call-action {
  z-index: 2;
  padding: 70px 0;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .call-action {
    padding: 60px;
  }
}

@media (max-width: 767px) {
  .checkout-page .call-action {
    padding: 50px 0;
  }
}

.checkout-page .call-action:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("assets/images/call-action/overlay.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}

.checkout-page .call-action .inner-content {
  text-align: center;
}

.checkout-page .call-action .inner-content h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
}

.checkout-page .call-action .inner-content p {
  color: var(--white);
}

.checkout-page .call-action .inner-content .light-rounded-buttons {
  margin-top: 45px;
  display: block;
}

.checkout-page .call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}

/*===== TESTIMONIAL STYLE FOUR =====*/
.checkout-page .testimonial-5 {
  background-color: var(--light-3);
  position: relative;
  padding-bottom: 160px;
  padding-top: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .testimonial-5 {
    padding-bottom: 160px;
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .checkout-page .testimonial-5 {
    padding-bottom: 160px;
    padding-top: 60px;
  }
}


.checkout-page .testimonial-5 .testimonial-slider {
  margin: 0;
}

.checkout-page .testimonial-5 .tns-nav {
  text-align: center;
  position: absolute;
  bottom: 90px;
  transform: translateX(-50%);
  width: 100%;
  left: 50%;
  z-index: 9;
  margin: 0;
}

.checkout-page .testimonial-5 .tns-nav button {
  height: 6px;
  width: 14px;
  background-color: var(--primary);
  opacity: 0.3;
  border-radius: 5px;
  display: inline-block;
  border: none;
  margin: 0px 5px;
  transition: all 0.4s ease;
}

.checkout-page .testimonial-5 .tns-nav button.tns-nav-active {
  width: 25px;
  opacity: 1;
}

.checkout-page .testimonial-5 .single-testimonial {
  background-color: var(--white);
  padding: 70px 50px;
  transition: all 0.4s ease;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  .checkout-page .testimonial-5 .single-testimonial {
    padding: 50px 40px;
  }
}

.checkout-page .testimonial-5 .single-testimonial .shape1 {
  position: absolute;
  left: 40px;
  top: 0;
}

.checkout-page .testimonial-5 .single-testimonial .shape2 {
  position: absolute;
  right: -20px;
  bottom: -20px;
}

.checkout-page .testimonial-5 .single-testimonial .inner-content {
  position: relative;
  z-index: 0;
}

.checkout-page .testimonial-5 .single-testimonial .qote-icon {
  font-size: 70px;
  color: var(--light-2);
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.checkout-page .testimonial-5 .single-testimonial .text {
  font-weight: 500;
  line-height: 28px;
  color: var(--dark-3);
}

.checkout-page .testimonial-5 .single-testimonial .author {
  position: relative;
  padding-left: 70px;
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.checkout-page .testimonial-5 .single-testimonial .author img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.checkout-page .testimonial-5 .single-testimonial .author h4 {
  font-size: 18px;
  color: var(--dark-1);
  margin-top: 10px;
  padding-left: 20px;
}

.checkout-page .testimonial-5 .single-testimonial .author h4 span {
  color: var(--dark-3);
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}

/*===== latest-news-area =====*/
.checkout-page .latest-news-area {
  background: var(--white);
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .latest-news-area {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .checkout-page .latest-news-area {
    padding: 60px 0;
  }
}

.checkout-page .latest-news-area .single-news {
  margin-top: 30px;
}

.checkout-page .latest-news-area .single-news .image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.checkout-page .latest-news-area .single-news .image img {
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
}

.checkout-page .latest-news-area .single-news .image .meta-details {
  display: inline-block;
  padding: 6px 15px 6px 7px;
  border-radius: 30px;
  background-color: var(--primary);
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.checkout-page .latest-news-area .single-news .image .meta-details img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: inline-block;
}

.checkout-page .latest-news-area .single-news .image .meta-details span {
  color: var(--white);
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
}

.checkout-page .latest-news-area .single-news .content-body .title {
  margin: 30px 0 20px 0;
}

.checkout-page .latest-news-area .single-news .content-body .title a {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .latest-news-area .single-news .content-body .title a:hover {
  color: var(--primary);
}

.checkout-page .latest-news-area .single-news .content-body p {
  color: var(--dark-3);
}

.checkout-page .latest-news-area .single-news:hover .image .thumb {
  transform: scale(1.1) rotate(1deg);
}

/*======================================
    Brand CSS
========================================*/
.checkout-page .brand-area {
  padding: 100px 0;
  background: var(--light-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .brand-area {
    padding: 80px;
  }
}

@media (max-width: 767px) {
  .checkout-page .brand-area {
    padding: 60px 0;
  }
}

.checkout-page .brand-area .clients-logos {
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}

.checkout-page .brand-area .clients-logos .single-image {
  display: inline-block;
  margin: 13px 10px;
  background-color: var(--white);
  line-height: 100px;
  padding: 8px 25px;
  border-radius: 8px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  border: 1px solid #eee;
}

.checkout-page .brand-area .clients-logos .single-image:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.096);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

.checkout-page .brand-area .clients-logos img {
  max-width: 170px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.checkout-page .shorebird-logo {
  height: 28%;
  width: 28%;
}

.checkout-page .shorebird-logo-footer {
  width: 300px;
  /* Adjust this to the desired width */
  height: 70px;
  /* Adjust this to the desired height */
}

/* ===== Buttons Css ===== */
.checkout-page .contact-form-wrapper .contact-form .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.contact-form-wrapper .contact-form .active.primary-btn,
.contact-form-wrapper .contact-form .primary-btn:hover,
.checkout-page .contact-form-wrapper .contact-form .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}

.checkout-page .contact-form-wrapper .contact-form .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
	Contact CSS
========================================*/
.checkout-page .contact-section {
  position: relative;
  z-index: 3;
  /* After Integrating Pricing and Contact Section, Remove Padding from Contact-section
  padding-top: 100px;*/
  padding-top: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .contact-section {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .checkout-page .contact-section {
    padding-top: 20px;
  }
}

.checkout-page .contact-section .contact-item-wrapper .contact-item {
  display: flex;
  border: 1px solid var(--gray-4);
  border-radius: 10px;
  /*background: var(--white);*/
  background: var(--light-3);
  margin-bottom: 30px;
  padding: 20px 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .contact-section .contact-item-wrapper .contact-item:hover {
  box-shadow: var(--shadow-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .checkout-page .contact-section .contact-item-wrapper .contact-item {
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .checkout-page .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}

.checkout-page .contact-section .contact-item-wrapper .contact-item .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .contact-section .contact-item-wrapper .contact-item .contact-content {
  margin-left: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .checkout-page .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .checkout-page .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}

.checkout-page .contact-section .contact-item-wrapper .contact-item .contact-content h4 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}

.checkout-page .set-flex-form {
  flex: 1 0 90%;
  justify-content: space-around;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.checkout-page .set-flex-form-element {
  /* display: flex; */
  /* flex-direction: column; */
  flex: 1;
  align-items: space-around;
  width: 100%;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.checkout-page .font-preferences {
  font-size: 14px !important;
}

@media (max-width: 767px) {
  .checkout-page .font-preferences {
    font-size: 11px !important;
  }
}

.checkout-page .set-flex-form-button {
  /* flex-direction: column; */
  flex: 0 0 7%;
}

.set-flex-form-element input,
.checkout-page .set-flex-form-element textarea {
  width: 100%;
  /* Full width of the parent container */
  padding: 0.75rem;
  text-align: center;
  border: 1px solid #ccc;

  box-sizing: border-box;
  /* Include padding and border in the element's width and height */
}

.checkout-page .contact-form-wrapper {
  padding: 50px 40px;
  background: var(--white);
  border: 1px solid var(--gray-4);
  margin-left: 0px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.checkout-page .contact-form-wrapper:hover {
  box-shadow: var(--shadow-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .checkout-page .contact-form-wrapper {
    margin-left: 30px;
  }
}

.checkout-page .contact-form-wrapper .section-title {
  margin-bottom: 30px;
}

.checkout-page .contact-form-wrapper .section-title span {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}

.checkout-page .contact-form-wrapper .section-title h2 {
  margin-bottom: 10px;
}

.checkout-page .contact-form-wrapper .section-title p {
  color: var(--dark-3);
}

.contact-form-wrapper .contact-form input,
.checkout-page .contact-form-wrapper .contact-form textarea {
  padding: 15px 25px;
  border-radius: 30px;
  border: 1px solid var(--gray-4);
  margin-bottom: 25px;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {

  .contact-form-wrapper .contact-form input,
  .checkout-page .contact-form-wrapper .contact-form textarea {
    padding: 12px 25px;
  }
}

.contact-form-wrapper .contact-form input:focus,
.checkout-page .contact-form-wrapper .contact-form textarea:focus {
  border-color: var(--primary);
}

.checkout-page .contact-form-wrapper .contact-form textarea {
  border-radius: 18px;
}

.checkout-page .map-style-9 {
  margin-top: -130px;
}

@media (max-width: 767px) {
  .checkout-page .map-style-9 {
    height: 250px;
  }
}

.checkout-page .footer {
  display: flex;
  min-height: 560px;
  flex-shrink: 0;
}

/* Footer eleven css */
.checkout-page .footer-eleven {
  padding-top: 200px;
  padding-bottom: 100px;
  margin-top: 100px;
  background-color: var(--white);
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .footer-eleven .footer-widget {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .checkout-page .footer-eleven .footer-widget {
    margin-top: 40px;
    text-align: center;
  }
}

.checkout-page .footer-eleven .footer-widget h5 {
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--black);
}


.checkout-page .footer-eleven .f-about {
  padding-right: 30px;
}

@media (max-width: 767px) {
  .checkout-page .footer-eleven .f-about {
    padding: 0;
  }
}

.checkout-page .footer-eleven .f-about p {
  color: var(--dark-3);
  margin-top: 8px;
}

.checkout-page .footer-social-link {
  margin-top: 14px;
  color: var(--dark-3);
}

.checkout-page .footer-eleven .f-about .copyright-text {
  color: var(--dark-3);
  margin-top: 40px;
}

.checkout-page .footer-eleven .f-about .copyright-text span {
  display: block;
}

@media (max-width: 767px) {
  .checkout-page .footer-eleven .f-about .copyright-text {
    margin-top: 20px;
  }
}

.checkout-page .footer-eleven .f-about .copyright-text a {
  color: var(--primary);
}

.checkout-page .footer-eleven .f-about .copyright-text a:hover {
  color: var(--primary-dark);
}

.checkout-page .footer-eleven .f-link li {
  display: block;
  margin-bottom: 12px;
}

.checkout-page .footer-eleven .f-link li:last-child {
  margin: 0;
}

.checkout-page .footer-eleven .f-link li a {
  color: var(--dark-3);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.checkout-page .footer-eleven .f-link li a:hover {
  color: var(--primary);
}

.checkout-page .footer-eleven .newsletter p {
  color: var(--dark-3);
}

.checkout-page .footer-eleven .newsletter-form {
  margin-top: 30px;
  position: relative;
}

.checkout-page .footer-eleven .newsletter-form input {
  height: 55px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--gray-4);
  box-shadow: none;
  text-shadow: none;
  padding-left: 18px;
  padding-right: 65px;
  transition: all 0.4s ease;
}

.checkout-page .footer-eleven .newsletter-form input:focus {
  border-color: var(--primary);
}

.checkout-page .footer-eleven .newsletter-form .button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}

.checkout-page .footer-eleven .newsletter-form .sub-btn {
  height: 42px;
  width: 42px;
  border-radius: 6px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  line-height: 42px;
  border: none;
  box-shadow: none;
  text-shadow: none;
  font-size: 17px;
  transition: all 0.4s ease;
}

.checkout-page .footer-eleven .newsletter-form .sub-btn:hover {
  color: var(--white);
  background-color: var(--primary-dark);
}

/* Shorebird Custom CSS*/

/* PAYWALL AND INPUT BOX CSS START/* 
/* Animation keyframes for sliding up */

.checkout-page .first-paywall-item {
  padding-top: 0em;
}

.checkout-page #overlay {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 11%;
  left: 0;
  width: 100%;
  height: 89%;
  background-color: rgba(250, 250, 250, 0.98);
  z-index: 9999;
}

.checkout-page #paywallMessage {
  max-width: 400px;
  padding: 0.5em;
  background-color: rgba(250, 250, 250, 0);
  border-radius: 10px;
  text-align: center;
}

.checkout-page #paywallMessage h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.checkout-page .paywall-reg-text {
  font-size: 14px;
  font-family: var(--font-family);
  color: var(--black);
  margin-bottom: 0px;
}

.checkout-page #passwordInput {
  padding: 10px;
  margin-bottom: 2px;
}

.checkout-page .password-input-paywall {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  padding: 8px 68px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin: 0px;
  border-color: var(--black);
}

.checkout-page .password-container {
  text-align: left;
}

.checkout-page .password-label {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 12px;
  color: var(--black);
}

.checkout-page s #paywallMessage p:last-child {
  margin-bottom: 0;
}

.checkout-page .paywall-tos-text {
  font-size: 8px;
  font-family: var(--font-family);
  color: var(--black);
  margin-bottom: 15px;
}

.checkout-page .paywall-img {
  height: 50%;
  width: 50%;
}

.checkout-page .primary-btn-paywall {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.active.primary-btn-paywall,
.primary-btn-paywall:hover,
.checkout-page .primary-btn-paywall:focus {
  background: var(--dark-1);
  border-color: var(--dark-1);
  color: var(--white);
}

.checkout-page .deactive.primary-btn-paywall {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

.checkout-page .btn-paywall {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 68px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin: 8px;
}

.checkout-page .paywall-divider {
  font-size: 14px;
  display: flex;
  align-items: center;
  color: var(--black);
}

.paywall-divider::before,
.checkout-page .paywall-divider::after {
  flex: 1;
  content: "";
  padding: 0.5px;
  background-color: var(--dark-1);
  margin: 8px;
}

/* PAYWALL AND INPUT BOX CSS END*/

/* For Button Spacing */
@media (max-width: 1000px) {
  .checkout-page .header-eight .button {
    margin-top: 20px;
    margin-bottom: 0px;
  }
}

/* DataGrid CSS*/

/*===========================
  Section Title Five CSS
===========================*/
.checkout-page .section-title-dg {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 8px;
  position: relative;
  z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .section-title-dg {
    margin-bottom: 6px;
  }
}

@media (max-width: 767px) {
  .checkout-page .section-title-dg {
    margin-bottom: 6px;
  }
}

.checkout-page .section-title-dg h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 30px;
}

.checkout-page .section-title-dg h2 {
  margin-bottom: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .section-title-dg h2 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}

@media (max-width: 767px) {
  .checkout-page .section-title-dg h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}

.checkout-page .section-title-dg p {
  color: var(--dark-3);
}

.checkout-page .filter-table-box {
  margin-top: 14px;
  margin-bottom: 8px;
  padding: 0px;
}

.checkout-page .header-eight .filter-table-box p {
  margin-top: 8px;
  color: var(--white);
  opacity: 0.7;
}

.checkout-page .header-eight .button-app {
  margin-top: 16px;
}

.checkout-page .about-img-selected {
  height: 100%;
  width: 400px;
  padding-top: 15px;
  object-fit: contain;
  border-radius: 4px;
  /* object-fit: contain ensures that the photo is neither cropped nor distorted*/
}

.checkout-page #recaptcha {
  width: 304px;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 8px;
}

.checkout-page .manage-subscription-text {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 16px;
  color: black;
}

.checkout-page .tos-submit-text p {
  display: inline-block;
  font-size: 7px;
}

.checkout-page .tos-submit-text a {
  font-size: 7px;
}

.checkout-page .modal-button {
  color: var(--white);
  background-color: var(--primary);
}

.checkout-page .filter-table table {
  padding-bottom: 30px;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  margin-right: 10px;
  width: 100vw;
  /* was 696px*/
  border-collapse: collapse;
}

.checkout-page .filter-table-width {
  width: 100vw;
  padding-left: 0px;
  padding-right: 0px;
}

.checkout-page .filter-table-first-item {
  padding-left: 60px;
}

.checkout-page .filter-table-last-item {
  padding-right: 40px;
}

.checkout-page .filter-table td {
  border: none;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  margin: 0px;
  padding: 0px;
  text-align: center;
  width: 116px;
  font-family: var(--font-family);
}

.checkout-page .filter-table input {
  width: 75px;
  padding: 4px 4px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin: 8px;
  border-color: var(--white);
  background-color: var(--white);
}

.checkout-page .filter-table select {
  width: 75px;
  padding: 4px 4px;
  border-radius: 4px;
  border: 1px solid transparent;
  margin: 8px;
  border-color: var(--white);
  background-color: var(--white);
}

/* For Filter Table iPhone*/
@media (max-width: 767px) {
  .checkout-page .filter-table table {
    padding-bottom: 30px;
    margin-top: 10px;
  }

  .checkout-page .filter-table-box {
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 0px;
  }

  .checkout-page .filter-table td {
    border: none;
    font-size: 0.6em;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--font-family);
    color: var(--white);
    margin: 0px;
    padding: 0px;
    text-align: center;
  }

  .checkout-page .filter-table input {
    width: 38px;
    padding: 2px 2px;
    border-radius: 4px;
    border: 1px solid transparent;
    margin: 4px;
    border-color: var(--white);
    background-color: var(--white);
  }

  .checkout-page .filter-table select {
    width: 38px;
    padding: 2px 2px;
    border-radius: 4px;
    border: 1px solid transparent;
    margin: 4px;
    border-color: var(--white);
    background-color: var(--white);
  }

  .checkout-page .filter-table-first-item {
    padding-left: 40px;
  }

  .checkout-page .filter-table-last-item {
    padding-right: 10px;
  }
}

/* For Filter Table iPad, Tablet*/
@media (min-width: 991px) and (max-width: 1200px) {
  .checkout-page .filter-table table {
    padding-bottom: 30px;
    margin-top: 10px;
    width: 500px;
    border-collapse: collapse;
  }

  .checkout-page .filter-table td {
    border: none;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    margin: 0px;
    padding: 0px;
    text-align: center;
    width: 116px;
    font-family: var(--font-family);
  }

  .checkout-page .filter-table input {
    width: 75px;
    padding: 4px 4px;
    border-radius: 4px;
    border: 1px solid transparent;
    margin: 8px;
    border-color: var(--white);
    background-color: var(--white);
  }

  .checkout-page .filter-table select {
    width: 75px;
    padding: 4px 4px;
    border-radius: 4px;
    border: 1px solid transparent;
    margin: 8px;
    border-color: var(--white);
    background-color: var(--white);
  }
}

.checkout-page .mobile-hide-text {
  display: block;
}

@media (max-width: 767px) {
  .checkout-page .mobile-hide-text {
    display: none;
  }
}

/*===========================
  about-05 css
===========================*/
/*Shorebird: Changed background color from --light-3 to --white*/
.checkout-page .about-datagrid {
  background-color: var(--white);
  padding-top: 0px;
  padding-bottom: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .about-datagrid {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .checkout-page .about-datagrid {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.checkout-page .about-datagrid-content {
  padding-left: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .about-datagrid-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .checkout-page .about-datagrid-content {
    padding-left: 0;
  }
}

.checkout-page .about-datagrid-content .small-title {
  position: relative;
  padding-left: 30px;
}

.checkout-page .about-datagrid-content .small-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  background-color: var(--primary);
  height: 2px;
  width: 20px;
  margin-top: -1px;
}

.checkout-page .about-datagrid-content .main-title {
  margin-top: 10px;
}

.checkout-page .about-datagrid-content .about-datagrid-tab {
  margin-top: 15px;
}

.checkout-page .about-datagrid-content .about-datagrid-tab nav {
  border: none;
  background-color: var(--light-1);
  padding: 15px;
  border-radius: 5px;
}

.checkout-page .about-datagrid-content .about-datagrid-tab nav .nav-tabs {
  border: none;
}

.checkout-page .about-datagrid-content .about-datagrid-tab nav button {
  border: none;
  color: var(--dark-1);
  font-weight: 600;
  padding: 0;
  margin: 0 10px 10px 0;
  position: relative;
  background-color: var(--white);
  padding: 10px 18px;
  border-radius: 4px;
  text-transform: capitalize;
}

.checkout-page .about-datagrid-content .about-datagrid-tab nav .nav-tabs {
  border: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .checkout-page .about-datagrid-content .about-datagrid-tab nav button {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .checkout-page .about-datagrid-content .about-datagrid-tab nav button:last-child {
    margin: 0;
  }
}

.checkout-page .about-datagrid-content .about-datagrid-tab nav button:hover {
  color: var(--primary);
}

.checkout-page .about-datagrid-content .about-datagrid-tab nav button.active {
  background-color: var(--primary);
  color: var(--white);
}

.checkout-page .about-datagrid-content .about-datagrid-tab nav button:last-child {
  margin-right: 0;
}

.checkout-page .about-datagrid-content .about-datagrid-tab .tab-content {
  border: none;
  padding-top: 15px;
}

.checkout-page .about-datagrid-content .about-datagrid-tab .tab-content p {
  margin-bottom: 20px;
}

.checkout-page .about-datagrid-content .about-datagrid-tab .tab-content p:last-child {
  margin: 0;
}

.checkout-page .div-nopadding {
  padding: 0;
}

.checkout-page .filter-table-right {
  text-align: center;
}

.checkout-page .filter-table-left {
  text-align: center;
  padding-right: 1.25em;
  font-size: 1.25em;
}

.checkout-page .filter-table-left a {
  color: var(--white);
}

/*======================================
    Map Area CSS
========================================*/
.checkout-page .map-area {
  position: relative;
  padding: 70px 0 0px 0;
  background: var(--map-area-color);
  width: 100vw;
  overflow: hidden;
  margin: 0;
}

.checkout-page .map-margin {
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .map-area {
    padding: 60px 0 60px 0;
  }
}

@media (max-width: 767px) {
  .checkout-page .map-area {
    padding: 50px 0 30px 0;
  }
}

.checkout-page .map-area .header-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.checkout-page .map-area .header-content {
  border-radius: 0;
  position: relative;
  z-index: 1;
  text-align: left;
}

.checkout-page .map-area .header-content h1 {
  font-weight: 700;
  color: var(--white);
  text-shadow: 0px 3px 8px #00000017;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .checkout-page .map-area .header-content h1 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .checkout-page .map-area .header-content h1 {
    font-size: 30px;
    line-height: 42px;
  }
}

.checkout-page .map-area .header-content h1 span {
  display: block;
}

.checkout-page .map-area .header-content p {
  margin-top: 10px;
  color: var(--white);
  opacity: 0.7;
}

.checkout-page .map-area .button {
  margin-top: 40px;
}

.checkout-page .map-area .primary-btn {
  margin-right: 12px;
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid transparent;
}

.checkout-page .map-area .primary-btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.checkout-page .map-area .video-button {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 767px) {
  .checkout-page .map-area .video-button {
    margin-top: 20px;
  }
}

.checkout-page .map-area .video-button .text {
  display: inline-block;
  margin-left: 15px;
  color: var(--white);
  font-weight: 600;
}

.checkout-page .map-area .video-button .icon-btn {
  background: var(--white);
  color: var(--primary);
}

.checkout-page .nomargin-nopadding {
  margin: 0;
  padding: 0;
}

.checkout-page .width-100vw {
  width: 105vw;
}

.checkout-page .width-100 {
  width: 100%;
}

.checkout-page .help-modal ul {
  list-style-type: square;
  padding-left: 10px;
}

/* For mobile map toggler*/
.checkout-page .toggle-buttons {
  display: none;
}


.checkout-page .view-section.active {
  display: block;
}

.checkout-page .full-height {
  height: 100svh;
}

/* Progressbar */
.checkout-page .progressbar {
  position: relative;
  display: flex;
  justify-content: space-around;
  counter-reset: step;
  margin: 1rem 0 2rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  flex: 0 0 5%;
}

.progressbar::before,
.checkout-page .progress {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background-color: #dcdcdc;
  z-index: -1;
  opacity: 0;
}

.checkout-page .progress {
  background-color: var(--primary-color);
  width: 0%;
  transition: 0.3s;
}

.checkout-page .progress-step {
  width: 1.85rem;
  height: 1.85rem;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkout-page .progress-step::before {
  counter-increment: step;
  content: counter(step);
}

.checkout-page .progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: calc(100% + 0.5rem);
  font-size: 0.85rem;
  color: #666;
}

.checkout-page .progress-step-active {
  background-color: var(--primary-color);
  color: #f3f3f3;
}

.checkout-page

/* #outer-container {
  display: flex;
  flex-direction: column;
} */
.checkout-page #sub-container {
  display: flex;
  flex-direction: column;
  /* flex-grow: 1; */
  align-items: center;
  /* overflow: visible; */
}

.checkout-page .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 527px;
  height: inherit;
  margin: 5px auto;
  margin-top: 10px;
  border-radius: 0.35rem;
  padding: 0rem;
  background-color: var(--white);
}

.checkout-page .title-bar {
  /* display: flex; */
  flex-direction: column;
  position: relative;
  flex: 0 0 6%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0px;
  margin-right: 10px;
  margin-left: 10px;
  padding: 0px;
  background-color: #ffffff;
  border-radius: 5px;
}

.checkout-page .title-bar2 {
  /* display: flex; */
  flex-direction: column;
  position: relative;
  flex: 0 0 6%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0px;
  padding: 0px;
  background-color: #ffffff;
  border-radius: 5px;
}

.checkout-page .text-area {
  height: 100px;
  /* Adjust the height as needed */
  width: 100%;
}

.checkout-page .form-step {
  display: none;
  /* transform-origin: top; */
  animation: animate 0.5s;
  box-sizing: border-box;
}

.checkout-page .form-step-active {
  height: 97svh;
  display: flex;
  flex: 1 0 100%;
  /* 6/7ths of the height */
  animation: animate 0.5s;
  flex-direction: column;
  /* transform-origin: top; */
  animation: animate 0.5s;
  box-sizing: border-box;
  min-height: 0px;
}

@keyframes animate {
  from {
    transform: scale(1, 0);
    opacity: 0;
  }

  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}

.checkout-page .inner-container {
  display: flex;
  flex-direction: column;
  overflow: visible;
  width: 100%;
  min-height: 0px;
}

.checkout-page .input-group {
  margin: 2rem 0;
}

/* Begin CSS options for input form on page 2 */

.checkout-page #contactForm {
  margin-left: 5px;
  margin-right: 5px;
}

.checkout-page #message {
  font-family: "Inter", sans-serif;
  /* Specifies "Inter" as the preferred font, falling back to sans-serif if needed */
  margin-bottom: 20px;
  border-radius: 1rem;
  height: 110px;
}

.checkout-page input:focus {
  background-color: rgb(232, 240, 254);
  /* Highlight background color */
  outline: none;
  /* Remove the default outline */
  border: 2px solid #cccccc;
  /* Optional: add a border to match the highlight */
  transition: background-color 0.3s ease, border-color 0.3s ease;
  /* Smooth transition */
}

.checkout-page textarea:focus {
  background-color: rgb(232, 240, 254);
  /* Highlight background color */
  outline: none;
  /* Remove the default outline */
  border: 2px solid #cccccc;
  /* Optional: add a border to match the highlight */
  transition: background-color 0.3s ease, border-color 0.3s ease;
  /* Smooth transition */
}

.checkout-page .textareatrans {
  transition: background-color 0.3s ease;
}

.checkout-page .label-style {
  font-size: 13px;
  margin-left: 9px;
}

.checkout-page .popup-overlay-css {
  display: none;
  opacity: 1;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  /* Ensure content is centered */
  align-items: center;
  /* Ensure content is centered */
}

.checkout-page .popup-css {
  display: none;
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.checkout-page .popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000000;
}

.checkout-page .popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* Darker overlay */
  z-index: 99900000;
}

.checkout-page #inner-popup-container {
  display: flex;
  /* Set flexbox layout */
  flex-direction: column;
  /* Arrange children vertically */
  align-items: center;
  /* Center items horizontally */
  justify-content: center;
  /* Center items vertically */
  text-align: center;
  /* Ensure the text in the <p> tag is centered */
  height: 100%;
  /* Optional: Ensure the container takes full height if needed */
}

.checkout-page #back-arrow {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 20px;
  display: none;
  /* Initially hidden */
}

/* Button */
.checkout-page .btns-group {
  display: flex;
  gap: 1.5rem;
  flex: 0 0 10%;
  position: relative;
  z-index: 1000;
  /* Ensures it hovers over most other elements */
  margin-bottom: 100px;
  margin-top: 5px;
  z-index: 1;
}

.checkout-page .btns-group4 {
  display: flex;
  gap: 1.5rem;
  flex: 0 0 10%;
  position: relative;
  z-index: 1000;
  /* Ensures it hovers over most other elements */
  margin-bottom: 100px;
  margin-top: 5px;
  justify-content: center;
  margin: 15px;
  z-index: 1;
}

.checkout-page .btn {
  padding: 0rem;
  display: block;
  text-decoration: none;
  background-color: var(--primary-color);
  color: #f3f3f3;
  text-align: center;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}

.checkout-page .btn4 {
  padding: 0rem;
  display: block;
  text-decoration: none;
  background-color: var(--primary-color);
  color: #f3f3f3;
  text-align: center;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}

.checkout-page .btn4 {
  height: 45px;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}

@media (min-width: 523px) {
  .checkout-page .btn4 {
    max-width: 379px;
  }
}

@media (max-width: 523px) {
  .checkout-page #sub-container {
    height: fit-content;
    width: 100%;
  }

  .checkout-page .inner-container {
    display: flex;
    flex-direction: column;
    height: 88svh;
    width: 100%;
  }

  .checkout-page .btns-group4 {
    display: flex;
    gap: 1.5rem;
    flex: 0 0 7%;
    position: relative;
    z-index: 1000;
    /* Ensures it hovers over most other elements */
    margin-bottom: 100px;
    /* margin-top: -80px; */
  }
}

@media (min-width: 523px) {
  .checkout-page .inner-container {
    display: flex;
    flex-direction: column;
    height: 85vh;
    width: 100%;
  }

  .checkout-page .btn {
    max-width: 175px;
  }

  .checkout-page .btns-group {
    justify-content: space-between;
  }

  .checkout-page .title-bar {
    margin-top: 7px;
  }

  .checkout-page .title-bar2 {
    margin-top: 7px;
  }

  .checkout-page .title-bar3 {
    margin-top: 7px;
  }
}

.checkout-page .btn:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

.checkout-page .blur-text {
  filter: blur(3px);
}

.checkout-page
/* .button-container {
  flex: 1 0 10%;
  margin-top: 5px;
  margin-right: 5px;
  margin-left: 5px;
  /* Adjust alignment of buttons */
/* position: relative;
  margin-bottom: 10px; /* Margin from the bottom */
/* position: sticky; 
} */
.checkout-page

/* .mapboxgl-map {
  overflow: auto !important;
  display: flex !important;
} */
.checkout-page .inner-container3 {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.checkout-page .title-bar3 {
  /* display: flex; */
  flex-direction: column;
  position: relative;
  flex: 1 0 6%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0px;
  padding: 0px;
  background-color: #ffffff;
  border-radius: 5px;
}

.checkout-page .button-container3 {
  flex: 0 0 8%;
  margin-top: 5px;
  margin-right: 5px;
  margin-left: 5px;
  /* Adjust alignment of buttons */
  position: relative;
  margin-bottom: 10px;
  /*Margin from the bottom 
   position: sticky; */
}

.checkout-page .button-container4 {
  margin-top: -125px;
}

.checkout-page #map {
  flex: 1 0 10%;
  flex-direction: column;
}

.checkout-page

/* #recaptcha {
  flex: 1 0 80%;
} */
.checkout-page #csvTable_wrapper {
  z-index: "1";
}

.checkout-page .inner-container4 {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.checkout-page .dt-scroll {
  flex: 1 0 92%;
  flex-direction: column;
}

.checkout-page .dt-info {
  flex: 1 0 5%;
  flex-direction: column;
}

@media (max-width: 767px) {
  .checkout-page .map-height {
    flex: 1 0 85%;
    position: relative;
  }

  /*For Map Left Hand Side Gradient*/
  .checkout-page .map-height::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Adjust the width to 3% of the container */
    height: 1%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 8;
    /* Ensure the gradient doesn't interfere with any interactions */
  }
}

/* 
@media (max-width: 767px) {
  /* Override DataTables dt-scroll-body height and max-height  */
.checkout-page .dt-scroll-body {
  height: 48vh !important;
  max-height: 60svh !important;
}

@media (max-width: 767px) {
  .checkout-page .about-datagrid {
    height: 100svh;
  }
}

/* Hide Map Toggler on Media Over Mobile Size*/
@media (min-width: 768px) {
  .checkout-page .map-toggler {
    display: none;
  }
}

/* Font Awesome Footer Icons*/
.checkout-page .fa-footer {
  color: var(--dark-3)
}

/*Checkout Checkbox CSS*/
.checkout-page .signup-checkbox {
  padding: 0rem !important;
  font-size: 16px !important;
  margin-bottom: 10px !important;
}

.checkout-page .checkbox-padding {
  margin-bottom: 10px !important;
}

.checkout-page th {
  font-weight: normal;
  padding-bottom: 20px;
  padding-left: 2px;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .checkout-page .checkbox-wrapper-13 input[type=checkbox] {
    --active: #275EFE;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #BBC1E1;
    --border-hover: #275EFE;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    margin-top: 2px;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:disabled+label {
    cursor: not-allowed;
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:focus {
    box-shadow: 0 0 0 var(--focus);
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
    width: 21px;
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
    opacity: var(--o, 0);
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
    --o: 1;
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]+label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 4px;
    margin-top: 2px;
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
    border-radius: 7px;
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 2px;
    transform: rotate(var(--r, 20deg));
  }

  .checkout-page .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
}

.checkout-page .checkbox-wrapper-13 * {
  box-sizing: inherit;
}

.checkbox-wrapper-13 *:before,
.checkout-page .checkbox-wrapper-13 *:after {
  box-sizing: inherit;
}