@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}
.header_mid_logo{
  margin: 5px 0;
}

.top-header {
  transition: all ease 0.5s 0s;
  width: 100%;
  background: #17bfe6;
  text-align: center;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.top-header p {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 0;
}
.top-header span {
  margin: 0 12px;
}
.top-header span i {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: all ease 0.2s 0s;
}
.top-header span i:hover {
  transition: all ease 0.2s 0s;
  transform: scale(1.1);
}

header .row {
  align-items: center;
}
header .menu_con {
  height: 100%;
  display: flex;
  align-items: center;
}
header .menu_con #navigation nav ul {
  display: flex;
  margin-bottom: 0;
}
header .menu_con #navigation nav ul li {
  list-style: none;
  position: relative;
  padding: 0 15px;
}
header .menu_con #navigation nav ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 20%;
  width: 100%;
  height: 4px;
  background-color: rgb(23, 191, 230);
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease-out;
  border-top: 2px solid #ffffff;
}
header .menu_con #navigation nav ul li:hover {
  color: #fff;
}
header .menu_con #navigation nav ul li:hover a {
  color: #17bfe6;
}
header .menu_con #navigation nav ul li:hover:before {
  opacity: 1;
  bottom: -5px;
}
header .menu_con #navigation nav ul li a {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
}
header .drop {
  height: 100%;
  justify-self: flex-end;
  display: flex;
  align-items: center;
}
header .drop a {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
}
header .drop .dropdown-section {
  position: relative;
}
header .drop .dropdown-section .drop-icon {
  padding: 0 10px;
  border: 1px solid #282827;
  border-radius: 3px;
  margin: 5px 17px;
}
header .drop .dropdown-section .drop-icon:hover {
  border: 1px solid #17bfe6;
}
header .drop .dropdown-section .drop-icon:hover i {
  color: #17bfe6;
}
header .drop .dropdown-section i {
  cursor: pointer;
}
header .drop .dropdown-section .dropdown {
  position: absolute;
  z-index: 10;
  left: 0;
  width: 130px;
  visibility: hidden;
  transition: all ease 0.5s 0s;
  opacity: 0;
  transform: translate(0px, -20px);
}
header .drop .dropdown-section .dropdown ul li {
  list-style: none;
  background-color: #ffffff;
  padding: 8px 12px;
  border: 0.2px solid rgba(194, 194, 194, 0.3);
}
header .drop .dropdown-section .dropdown ul li:hover {
  background-color: #17bfe6;
}
header .drop .dropdown-section .dropdown ul li:hover a {
  color: #fff;
}
header .drop .dropdown-section .dropdown ul li a {
  text-transform: uppercase;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  padding: 8px auto;
  text-decoration: none;
}
header .drop .dropdown-section .show {
  visibility: visible;
  transition: all ease 0.5s 0s;
  opacity: 1;
  transform: translate(0px, 0px);
}

.clicked .drop-icon {
  border: 1px solid #17bfe6 !important;
}
.clicked .drop-icon i {
  color: #17bfe6;
}

.banner-section {
  background-image: url("../images/banner.png");
  height: 650px;
  width: 100%;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.banner-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(91.72deg, #000000 1.46%, rgba(0, 0, 0, 0) 98.64%);
}
.banner-section .tx {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.banner-section .ban-tx .text h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 42px;
  line-height: 60px;
  /* or 143% */
  text-transform: capitalize;
  color: #ffffff;
}
.banner-section .ban-tx .text h2 span {
  color: #17bfe6;
  position: relative;
}
.banner-section .ban-tx .text h2 span::before {
  content: url("../images/text-shape.svg");
  position: absolute;
  left: 10px;
  top: 17px;
}
.banner-section .ban-tx form {
  margin: 36px 0;
  margin-top: 28px;
  position: relative;
}
.banner-section .ban-tx form input {
  width: 100%;
  height: 50px;
  border: none;
  position: relative;
  border-radius: 5px;
  padding: 22px;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-transform: capitalize;
  color: #282827;
}
.banner-section .ban-tx form input::-moz-placeholder {
  color: #282827;
}
.banner-section .ban-tx form input:-ms-input-placeholder {
  color: #282827;
}
.banner-section .ban-tx form input::placeholder {
  color: #282827;
}
.banner-section .ban-tx form input:focus {
  border: none;
  outline: none;
}
.banner-section .ban-tx form input[type=submit] {
  position: absolute;
  width: 200px;
  right: 0;
  padding: 0;
  background: #17bfe6;
  color: #fff;
  border-radius: 0 5px 5px 0;
  transition: all ease 0.4s 0s;
}
.banner-section .ban-tx form input[type=submit]:hover {
  transition: all ease 0.4s 0s;
  background: #000;
  color: #fff;
}
.banner-section .ban-tx form .search_code {
  height: 7rem;
}
.banner-section .ban-tx form .search_code ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.banner-section .ban-tx form .search_code ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.banner-section .ban-tx form .search_code ul li:hover {
  margin: 0;
  padding: 0;
  background-color: transparent;
}
.banner-section .ban-tx form .search_code ul li a {
  box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  background-color: #17bfe6;
  color: #fff;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
}
.banner-section .ban-tx form .search_code ul li a:hover {
  transition: all 0.2s ease-in-out;
  background-color: #0ba6c9;
}
.banner-section .ban-tx p {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 8px;
}
.banner-section .ban-tx ul {
  display: flex;
  flex-wrap: wrap;
}
.banner-section .ban-tx ul li {
  margin: 10px 8px;
  margin-left: 0;
  list-style: none;
  justify-content: flex-start;
  border: 0.5px solid #ffffff;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  display: flex;
  transition: all ease 0.2s 0s;
}
.banner-section .ban-tx ul li:hover {
  transition: all ease 0.2s 0s;
  background: #b9a389;
}
.banner-section .ban-tx ul li a {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
}

.section1 {
  margin-top: 74px;
}
.section1 .heading {
  display: flex;
  justify-content: space-between;
}
.section1 .heading h3 {
  padding: 3px 16px;
  border-left: 5px solid #17bfe6;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}
.section1 .heading a {
  padding: 0px 16px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000000;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  transition: all ease 0.4s 0s;
}
.section1 .heading a:hover {
  background: #17bfe6;
  color: #fff;
  border: 1px solid #17bfe6;
  transition: all ease 0.4s 0s;
}
.section1 .card {
  margin-top: 50px;
  position: relative;
  transition: all ease 0.3s 0s;
  border: none;
}
.section1 .card:hover {
  transition: all ease 0.3s 0s;
  color: #17bfe6;
}
.section1 .card:hover h4 {
  color: #17bfe6;
}
.section1 .card:hover h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 60px;
  transition: all ease 0.3s 0s;
  background: rgb(23, 191, 230);
}
.section1 .card h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
  /* identical to box height */
  text-transform: capitalize;
  color: #000;
  transition: all ease 0.3s 0s;
}

.section2 {
  margin-top: 74px;
}
.section2 h3 {
  padding: 3px 16px;
  border-left: 5px solid #17bfe6;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}
.section2 .card {
  position: relative;
  margin: 72px 0;
  border: none;
}
.section2 .card::before {
  content: url("../images/Line.svg");
  position: absolute;
  right: 0;
  top: 27.5px;
}
.section2 .card:hover {
  transition: all ease-in 0.2s 0s;
}
.section2 .card:hover img {
  transition: all ease-in 0.2s 0s;
  transform: scale(1.1);
}
.section2 .card img {
  height: 69px;
  width: 69px;
  transition: all ease-in 0.2s 0s;
}
.section2 .card p {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  /* or 187% */
  color: #8f8a8a;
}
.section2 .card h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #2e2e2e;
  margin: 30px 0;
  margin-bottom: 16px;
}

.section3 {
  background: rgba(23, 191, 230, 0.1);
  padding: 65px;
  padding-bottom: 32px;
}
.section3 .heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section3 .heading h3 {
  padding: 3px 16px;
  border-left: 5px solid #17bfe6;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}
.section3 .heading a {
  padding: 0px 16px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  background: #17bfe6;
  transition: all ease 0.4s 0s;
}
.section3 .heading a:hover {
  background: #000;
  color: #fff;
  transition: all ease 0.4s 0s;
}
.section3 .ind-title-card {
  display: flex;
  margin: 28px 0;
}
.section3 .ind-title-card .text {
  margin-left: 20px;
}
.section3 .ind-title-card .text i {
  color: #06b417;
}
.section3 .ind-title-card .text span {
  margin-left: 5px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  /* identical to box height, or 133% */
  color: #8f8a8a;
}
.section3 .ind-title-card h6 {
  margin-bottom: 0;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  /* identical to box height, or 125% */
  color: #2e2e2e;
}
.section3 .ind-title-card h6 a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  /* identical to box height, or 125% */
  color: #2e2e2e;
}
.section3 .ind-title-card h6 a:hover {
  color: #17bfe6;
}

.section4 {
  padding: 74px 0;
}
.section4 form {
  margin: 36px 0;
  margin-top: 28px;
}
.section4 form input {
  width: 100%;
  height: 50px;
  border: none;
  position: relative;
  border-radius: 5px;
  padding: 28px;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-transform: capitalize;
  border: 1px solid rgb(229, 229, 229);
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.1);
  color: #282827;
}
.section4 form input::-moz-placeholder {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  /* identical to box height, or 214% */
  color: #2e2e2e;
}
.section4 form input:-ms-input-placeholder {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  /* identical to box height, or 214% */
  color: #2e2e2e;
}
.section4 form input::placeholder {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  /* identical to box height, or 214% */
  color: #2e2e2e;
}
.section4 form input:focus {
  outline: none;
}
.section4 form input[type=submit] {
  position: absolute;
  width: 200px;
  height: 57px;
  border: 1px solid #17bfe6;
  right: 0;
  padding: 0;
  background: #17bfe6;
  color: #fff;
  border-radius: 0 5px 5px 0;
  transition: all ease 0.4s 0s;
}
.section4 form input[type=submit]:hover {
  transition: all ease 0.4s 0s;
  background: #000;
  color: #fff;
}
.section4 form .search_code {
  height: 7rem;
}
.section4 form .search_code ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.section4 form .search_code ul li {
  list-style: none;
}
.section4 form .search_code ul li a {
  box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  background-color: #17bfe6;
  color: #fff;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
}
.section4 form .search_code ul li a:hover {
  transition: all 0.2s ease-in-out;
  background-color: #0ba6c9;
}
.section4 .row {
  justify-content: center;
}
.section4 h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 48px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}
.section4 p {
  max-width: 800px;
  margin: 14px auto;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  /* or 187% */
  text-align: center;
  text-transform: capitalize;
  color: #2e2e2e;
}

.section5 {
  padding: 44px 0;
  padding-bottom: 0;
  background: rgba(23, 191, 230, 0.1);
}
.section5 .testimonials {
  width: 100%;
  margin: 50px auto;
}
.section5 .testimonials .owl-dots {
  margin-top: 34px !important;
}
.section5 .testimonials .owl-dots .active span {
  background: #17bfe6 !important;
}
.section5 .testimonials .owl-dots .owl-dot:focus {
  border: none;
  outline: none;
}
.section5 .testimonials .owl-dots .owl-dot span {
  width: 20px;
  height: 4px;
  background: #c4c4c4;
  border-radius: 20px;
}
.section5 .testimonials .item {
  display: flex;
}
.section5 .testimonials .item:hover .image .circle {
  border: 3px solid #17bfe6;
}
.section5 .testimonials .item .image .circle {
  height: 80px;
  width: 80px;
  border-radius: 50%;
}
.section5 .testimonials .item .image .circle img {
  height: 75px;
  width: 75px;
  border-radius: 50%;
}
.section5 .testimonials .item .text {
  padding: 0 16px;
}
.section5 .testimonials .item .text h5 {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  /* or 187% */
  color: #2e2e2e;
  margin-bottom: 16px;
}
.section5 .testimonials .item .text h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #17bfe6;
  margin-bottom: 0;
}
.section5 .testimonials .item .text p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  color: #8f8a8a;
}
.section5 h3 {
  padding: 3px 16px;
  border-left: 5px solid #17bfe6;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}

.section6 {
  padding: 74px;
  background: url("../images/back-sec6.png");
}
.section6 h3 {
  padding: 3px 16px;
  border-left: 5px solid #17bfe6;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}
.section6 ul {
  -moz-column-count: 3;
       column-count: 3;
  margin-top: 60px;
}
.section6 ul li {
  min-height: 145px;
  padding-left: 23px;
  list-style: none;
  position: relative;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  /* or 171% */
  color: #2e2e2e;
}
.section6 ul li::before {
  content: url(../images/tick.png);
  position: absolute;
  left: 0;
  top: 5px;
}

.section7 {
  background: url("../images/certified.png");
  background-size: cover;
}
.section7 .row {
  padding: 100px 0;
}
.section7 form {
  margin: 36px 0;
  margin-top: 28px;
}
.section7 form input {
  width: 100%;
  height: 50px;
  border: none;
  position: relative;
  border-radius: 5px;
  padding: 28px;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-transform: capitalize;
  border: 1px solid rgb(229, 229, 229);
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.1);
  color: #282827;
}
.section7 form input::-moz-placeholder {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  /* identical to box height, or 214% */
  color: #2e2e2e;
}
.section7 form input:-ms-input-placeholder {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  /* identical to box height, or 214% */
  color: #2e2e2e;
}
.section7 form input::placeholder {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  /* identical to box height, or 214% */
  color: #2e2e2e;
}
.section7 form input:focus {
  outline: none;
}
.section7 form input[type=submit] {
  position: absolute;
  width: 200px;
  height: 58px;
  border: 1px solid #17bfe6;
  right: 0;
  padding: 0;
  background: #17bfe6;
  color: #fff;
  border-radius: 0 5px 5px 0;
  transition: all ease 0.4s 0s;
}
.section7 form input[type=submit]:hover {
  transition: all ease 0.4s 0s;
  background: #000;
  color: #fff;
}
.section7 form .search_code {
  height: 7rem;
}
.section7 form .search_code ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.section7 form .search_code ul li {
  list-style: none;
}
.section7 form .search_code ul li a {
  box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  background-color: #17bfe6;
  color: #fff;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
}
.section7 form .search_code ul li a:hover {
  transition: all 0.2s ease-in-out;
  background-color: #0ba6c9;
}
.section7 h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
  margin: 12px 0;
}
.section7 h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
}
.section7 p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  /* or 187% */
  text-transform: capitalize;
  color: #2e2e2e;
}

footer {
  height: auto;
  background: url("../images/footer-background.png");
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
}
footer .top-footer {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
footer .top-footer .border-footer-card {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
footer .top-footer .footer-card {
  padding: 22px 0;
  display: flex;
  justify-content: center;
}
footer .top-footer .footer-card p {
  margin-bottom: 0;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  /* identical to box height */
  color: #ffffff;
}
footer .top-footer .footer-card a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 200;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #ffffff;
}
footer .top-footer .footer-card img {
  height: 38px;
  width: 38px;
  margin: 0 16px;
}
footer .mid-footer {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  padding-bottom: 24px;
}
footer .mid-footer .links {
  position: relative;
}
footer .mid-footer .row {
  justify-content: space-between;
}
footer .mid-footer p {
  color: #17bfe6;
  margin-bottom: 0;
  margin: 36px 0;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
}
footer .mid-footer p span {
  color: #fff;
}
footer .mid-footer p span a {
  color: #fff;
  transition: all 0.2s ease-in-out;
}
footer .mid-footer p span a:hover {
  color: #17bfe6;
  transition: all 0.2s ease-in-out;
}
footer .mid-footer form input {
  width: 100%;
  border: 0.5px solid #ffffff;
  box-sizing: border-box;
  border-radius: 4px;
  background: none;
  height: 40px;
  padding: 12px;
  margin: 10px 0;
  color: #fff;
  position: relative;
}
footer .mid-footer form input::-moz-placeholder {
  color: #fff;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  color: #ffffff;
}
footer .mid-footer form input:-ms-input-placeholder {
  color: #fff;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  color: #ffffff;
}
footer .mid-footer form input::placeholder {
  color: #fff;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  color: #ffffff;
}
footer .mid-footer form input[type=submit] {
  width: 103px;
  height: 48px;
  background: #17bfe6;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  color: #fff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .mid-footer form input[type=submit]:hover {
  background: rgb(24, 24, 24);
}
footer .mid-footer ul li {
  list-style: none;
  margin-bottom: 15px;
}
footer .mid-footer ul li h5 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  /* identical to box height */
  color: #ffffff;
  min-height: 48px;
}
footer .mid-footer ul li h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  /* identical to box height */
  color: #ffffff;
  min-height: 48px;
}
footer .mid-footer ul li h6::before {
  content: "";
  height: 3px;
  width: 30px;
  background: #17bfe6;
  position: absolute;
  top: 46px;
  z-index: 2;
}
footer .mid-footer ul li h6::after {
  content: "";
  height: 3px;
  width: 100px;
  background: #ffffff;
  position: absolute;
  top: 46px;
  z-index: 1;
  left: 15px;
}
footer .mid-footer ul li a {
  color: #fff;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  transition: all ease 0.3s 0s;
  /* identical to box height */
  color: #ffffff;
  transition: all ease 0.1s 0s;
}
footer .mid-footer ul li a:hover {
  position: relative;
  transition: all ease 0.3s 0s;
  padding-left: 12px;
}
footer .mid-footer ul li a:hover::before {
  content: "\f324";
  font-family: "Font Awesome 5 pro";
  position: absolute;
  left: 0;
  font-size: 10px;
  z-index: 2;
}
footer .bottom-footer {
  padding: 20px 0;
}
footer .bottom-footer ul {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
  margin-top: 6px;
}
footer .bottom-footer ul li {
  list-style: none;
  margin: 0 10px;
}
footer .bottom-footer ul li img:hover {
  border-radius: 50%;
  box-shadow: rgb(71, 89, 147) 0px 7px 29px 0px;
}
footer .bottom-footer .left-side {
  display: flex;
  align-items: center;
}
footer .bottom-footer .left-side .text {
  margin-left: 20px;
}
footer .bottom-footer .left-side h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 36px;
  /* or 225% */
  color: #ffffff;
  margin-bottom: 0;
}
footer .bottom-footer .left-side ul {
  display: flex;
  margin-top: 0;
  justify-content: flex-start;
  margin-bottom: 3px;
}
footer .bottom-footer .left-side ul li {
  margin: 0;
  margin-right: 12px;
  padding: 0;
  padding-right: 22px;
  border-right: 1px solid #fff;
}
footer .bottom-footer .left-side ul li:last-child {
  border-right: none;
}
footer .bottom-footer .left-side ul li a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  /* or 225% */
  color: #ffffff;
}

/*contact us*/
.banner {
  position: relative;
  height: 250px;
  background: url("../images/hero.png");
  background-size: cover;
}
.banner::before {
  content: "";
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: linear-gradient(91.72deg, #000000 1.46%, rgba(0, 0, 0, 0) 98.64%);
}
.banner .banner-sec {
  height: 100%;
  display: flex;
  align-items: center;
}
.banner .banner-sec .bntx {
  position: relative;
  z-index: 2;
}
.banner .banner-sec h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
  /* identical to box height */
  text-align: justify;
  text-transform: capitalize;
  color: #ffffff;
}
.banner .banner-sec h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 27px;
  /* identical to box height */
  text-align: justify;
  text-transform: capitalize;
  color: #ffffff;
}
.banner .banner-sec h6 span {
  color: #17bfe6;
}

.contact-sec1 {
  padding: 74px 0;
  padding-bottom: 28px;
  background: #f6f6f6;
  position: relative;
}
.contact-sec1 h3 {
  padding: 3px 16px;
  border-left: 5px solid #17bfe6;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}
.contact-sec1 p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  /* or 171% */
  text-align: justify;
  color: #000000;
}
.contact-sec1 img {
  position: absolute;
  right: 0;
  top: 0;
}
.contact-sec1 form input,
.contact-sec1 form textarea {
  width: 100%;
  border: 1px solid #d3d3d3;
  background: #f6f6f6;
  box-sizing: border-box;
  border-radius: 4px;
  height: 48px;
  padding: 0 40px;
  margin-bottom: 20px;
  position: relative;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  text-align: justify;
  text-transform: capitalize;
  color: #444444;
}
.contact-sec1 form input:focus,
.contact-sec1 form textarea:focus {
  border: 1px solid #d3d3d3;
  outline: none;
}
.contact-sec1 form i {
  position: absolute;
  top: 18px;
  left: 28px;
}
.contact-sec1 form textarea {
  height: 145px;
  padding-top: 12px;
}
.contact-sec1 form input[type=submit] {
  width: 165px;
  height: 48px;
  background: #17bfe6;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.2s 0s;
}
.contact-sec1 form input[type=submit]:hover {
  transition: all ease 0.3s 0s;
  background: #000;
}

.map {
  height: 440px;
  width: 100%;
}
.map iframe {
  width: 100%;
}

.login-ban {
  background: url("../images/login-ban.png");
  background-size: cover;
}

.login-sec1 {
  padding: 59px 0;
}
.login-sec1 p {
  margin-top: 3px;
}
.login-sec1 .image-wrapper {
  position: relative;
}
.login-sec1 .image-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 0.5;
  border-radius: 8px;
  left: 0;
}
.login-sec1 .image-wrapper::before {
  content: "";
  width: 97%;
  height: 97%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #17bfe6;
  box-sizing: border-box;
  border-radius: 8px;
}
.login-sec1 .image-wrapper img {
  width: 100%;
}
.login-sec1 h3 {
  padding: 3px 16px;
  border-left: 5px solid #17bfe6;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}
.login-sec1 p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 26px;
  /* identical to box height, or 173% */
  color: #000000;
}
.login-sec1 form input:not([type=checkbox]) {
  width: 100%;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  border-radius: 4px;
  height: 48px;
  padding: 0 40px;
  position: relative;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  text-align: justify;
  color: #444444;
}
.login-sec1 form input:not([type=checkbox]):focus {
  border: 1px solid #d3d3d3;
  outline: none;
}
.login-sec1 form i {
  position: absolute;
  top: 18px;
  left: 28px;
}
.login-sec1 form input[type=submit] {
  width: 165px;
  height: 48px;
  background: #17bfe6;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.2s 0s;
  margin: 20px 0;
}
.login-sec1 form input[type=submit]:hover {
  transition: all ease 0.3s 0s;
  background: #000;
}
.login-sec1 form .checkbox-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-sec1 form .checkbox-sec label {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 26px;
  /* identical to box height, or 186% */
  text-transform: capitalize;
  color: #000000;
}
.login-sec1 form .checkbox-sec a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 26px;
  /* identical to box height, or 186% */
  text-transform: capitalize;
  color: #17bfe6;
}
.login-sec1 form h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  /* identical to box height, or 186% */
  color: #2e2e2e;
}
.login-sec1 form h6 a {
  color: #17bfe6;
}

.solution-ban {
  background: url("../images/solution-ban.png");
  background-size: cover;
}

.solution-sec1 {
  margin: 80px 0;
}
.solution-sec1 .card {
  border: none;
  margin-bottom: 15px;
  position: relative;
}
.solution-sec1 .card::before {
  content: "";
  position: absolute;
  color: white;
  font-size: 12px;
  background-color: #ffffff;
  font-weight: 400;
  text-align: center;
  right: 15px;
  height: 83px;
  padding: 10px;
  top: 0;
  width: 70px;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 74%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 74%, 0% 100%);
}
.solution-sec1 .card .tag {
  position: absolute;
  color: white;
  background-color: #17bfe6;
  font-weight: 400;
  text-align: center;
  right: 15px;
  height: 80px;
  padding: 10px;
  top: 0;
  width: 70px;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 74%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 74%, 0% 100%);
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 125% */
  text-align: center;
  color: #ffffff;
}
.solution-sec1 .card .tag span {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  /* identical to box height, or 185% */
  text-align: center;
  color: #ffffff;
}
.solution-sec1 .card .text {
  padding: 12px 0;
}
.solution-sec1 .card .text h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  /* or 167% */
  color: #000000;
  margin-bottom: 0;
  margin-top: 8px;
}
.solution-sec1 .card .text p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  /* or 187% */
  color: #000000;
  margin-bottom: 5px;
}
.solution-sec1 .card .text a {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  color: #000000;
}
.solution-sec1 .card .text a:hover {
  color: #16bde4;
}
.solution-sec1 .card .text span {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  color: #000000;
}
.solution-sec1 .card .text i {
  color: #17bfe6;
  margin-right: 12px;
}
.solution-sec1 .card .text .arrow {
  margin-right: 0;
  margin-left: 6px;
}
.solution-sec1 .pagination-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.solution-sec1 .pagination-wrapper ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 34px;
  border: 1px solid #23409d;
  box-sizing: border-box;
  border-radius: 4px;
  width: 194px;
}
.solution-sec1 .pagination-wrapper ul li {
  list-style: none;
  margin: 0 8px;
}
.solution-sec1 .pagination-wrapper ul li i {
  color: #17bfe6;
}
.solution-sec1 .pagination-wrapper ul li a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  /* identical to box height, or 214% */
  color: #000000;
}
.solution-sec1 .pagination-wrapper ul li a:hover {
  color: #17bfe6;
  font-weight: 800;
}

.blog-details-section {
  padding: 80px 0;
  padding-bottom: 38px;
}
.blog-details-section hr {
  margin: 38px 0;
}
.blog-details-section .blog-details img {
  width: 100%;
}
.blog-details-section .blog-details .blog-info {
  display: flex;
  flex-wrap: wrap;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  margin: 17px 0;
  margin-bottom: 10px;
  /* or 187% */
  color: #666464;
}
.blog-details-section .blog-details .blog-info i {
  margin-right: 6px;
}
.blog-details-section .blog-details .blog-info .posted-by {
  margin-right: 16px;
}
.blog-details-section .blog-details h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 35px;
  /* identical to box height, or 175% */
  color: #000000;
}
.blog-details-section .blog-details p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  /* or 150% */
  text-align: justify;
  color: #000000;
}
.blog-details-section .comment-section h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 38px;
  /* identical to box height, or 190% */
  color: #000000;
}
.blog-details-section .comment-section .comment-card-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px 0;
}
.blog-details-section .comment-section .comment-card-wrapper .comment-card {
  display: flex;
}
.blog-details-section .comment-section .comment-card-wrapper .comment-card .profile-pic {
  margin-right: 30px;
}
.blog-details-section .comment-section .comment-card-wrapper .comment-card .comment h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 38px;
  /* identical to box height, or 211% */
  color: #000000;
  margin-bottom: 0;
}
.blog-details-section .comment-section .comment-card-wrapper .comment-card .comment small {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 38px;
  /* identical to box height, or 271% */
  color: #000000;
}
.blog-details-section .comment-section .comment-card-wrapper .comment-card .comment p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
  /* or 200% */
  text-align: justify;
  color: #000000;
  margin-bottom: 0;
}
.blog-details-section .comment-section .comment-card-wrapper .comment-card .comment a {
  display: flex;
  justify-content: flex-end;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 28px;
  /* identical to box height, or 200% */
  text-align: justify;
  color: #17bfe6;
}
.blog-details-section .comment-section .comment-card-wrapper .reply {
  margin-left: 90px;
}
.blog-details-section .comment-section .comment-card-wrapper:last-child {
  border-bottom: none;
}
.blog-details-section .comment-section h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  /* identical to box height */
  color: #000000;
  margin-top: 20px;
}
.blog-details-section .comment-section p {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  /* identical to box height, or 187% */
  color: #000000;
}
.blog-details-section .comment-section form input:not([type=checkbox]) {
  height: 50px;
  margin-bottom: 20px;
}
.blog-details-section .comment-section form textarea {
  height: 190px;
}
.blog-details-section .comment-section form input:not([type=checkbox]),
.blog-details-section .comment-section form textarea {
  padding: 12px;
  width: 100%;
  background: rgba(196, 196, 196, 0.25);
  border: 1px solid #c4c4c4;
  box-sizing: border-box;
  border-radius: 4px;
}
.blog-details-section .comment-section form input:not([type=checkbox]):focus,
.blog-details-section .comment-section form textarea:focus {
  border: 1px solid #c4c4c4;
  background: #fff;
  outline: none;
}
.blog-details-section .comment-section form input[type=submit] {
  width: 258px;
  height: 48px;
  background: #17bfe6;
  border-radius: 6px;
  color: #fff;
  margin-top: 30px;
  transition: all ease 0.3s 0s;
}
.blog-details-section .comment-section form input[type=submit]:hover {
  transition: all ease 0.3s 0s;
  background: rgba(0, 0, 0, 0.9);
}
.blog-details-section .comment-section form .checkbox-sec {
  margin-top: 6px;
}
.blog-details-section .comment-section form .checkbox-sec label {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  color: #a6a6a6;
}
.blog-details-section .right-bar form {
  position: relative;
}
.blog-details-section .right-bar form:before {
  content: "\f002";
  font-family: "Font Awesome 5 pro";
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translate(-20%, -50%);
  z-index: 9;
}
.blog-details-section .right-bar form input:not([type=submit]) {
  width: 100%;
  height: 57px;
  position: relative;
  border: 0.5px solid #17bfe6;
  padding: 0 12px;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 26px;
  /* identical to box height, or 186% */
  color: #000000;
}
.blog-details-section .right-bar form input:not([type=submit]):focus {
  border: 1px solid #17bfe6;
  outline: none;
}
.blog-details-section .right-bar form input[type=submit] {
  width: 50px;
  position: absolute;
  top: 50%;
  right: 14%;
  transform: translate(-14%, -50%);
  background: none;
  border: none;
  outline: none;
  z-index: 10;
}
.blog-details-section .right-bar .category-section {
  margin: 40px 0;
}
.blog-details-section .right-bar .category-section hr {
  margin: 18px 0;
}
.blog-details-section .right-bar .category-section h5 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  /* or 120% */
  color: #000000;
}
.blog-details-section .right-bar .category-section ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(23, 191, 230, 0.3);
}
.blog-details-section .right-bar .category-section ul li:last-child {
  border-bottom: none;
}
.blog-details-section .right-bar .category-section ul li:hover {
  border-bottom: 1px solid #17bfe6;
}
.blog-details-section .right-bar .category-section ul li:hover a {
  color: #17bfe6;
}
.blog-details-section .right-bar .category-section ul li:hover i {
  color: #17bfe6;
}
.blog-details-section .right-bar .category-section ul li a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 60px;
  /* or 437% */
  color: #000000;
  margin-left: 26px;
}
.blog-details-section .right-bar .recent-news-section hr {
  margin: 18px 0;
}
.blog-details-section .right-bar .recent-news-section h5 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  /* or 120% */
  color: #000000;
}
.blog-details-section .right-bar .recent-news-section .news-card {
  display: flex;
}
.blog-details-section .right-bar .recent-news-section .news-card .image img {
  width: 100%;
}
.blog-details-section .right-bar .recent-news-section .news-card .text {
  margin-left: 12px;
}
.blog-details-section .right-bar .recent-news-section .news-card .text h6 {
  margin-bottom: 2px;
  line-height: 16px;
}
.blog-details-section .right-bar .recent-news-section .news-card .text h6 a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  /* or 150% */
  color: #000000;
  margin-bottom: 0;
}
.blog-details-section .right-bar .recent-news-section .news-card .text h6 a:hover {
  color: #17bfe6;
}
.blog-details-section .right-bar .recent-news-section .news-card .text p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  /* or 171% */
  color: #000000;
}
.blog-details-section .right-bar .tag-section {
  margin-top: 12px;
}
.blog-details-section .right-bar .tag-section hr {
  margin: 18px 0;
}
.blog-details-section .right-bar .tag-section h5 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  /* or 120% */
  color: #000000;
}
.blog-details-section .right-bar .tag-section ul {
  -moz-column-count: 3;
       column-count: 3;
}
.blog-details-section .right-bar .tag-section ul li {
  list-style: none;
  padding: 4px 20px;
  background: #17bfe6;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s 0s;
}
.blog-details-section .right-bar .tag-section ul li:hover {
  transition: all ease 0.3s 0s;
  background: #000;
}
.blog-details-section .right-bar .tag-section ul li a {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  /* identical to box height, or 171% */
  color: #ffffff;
}

.naics-ban {
  background: url("../images/naics-ban.png");
  background-size: cover;
}

.naics-section1 {
  margin: 80px 0;
}
.naics-section1 table {
  width: 100%;
}
.naics-section1 table tr:last-child {
  border-bottom: 1px solid #d6d6d6;
}
.naics-section1 table tr:nth-child(odd) {
  background: #f5f7fa;
}
.naics-section1 table tr th {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #2e2e2e;
  padding: 12px;
  background-color: #ededed;
  padding: 16px 26px;
}
.naics-section1 table tr th:last-child {
  text-align: right;
}
.naics-section1 table tr td {
  min-width: 100px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #2e2e2e;
  padding: 22px 26px;
}
.naics-section1 table tr td:last-child {
  text-align: right;
}
.naics-section1 table tr td a {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #2e2e2e;
}
.naics-section1 table tr td a:hover {
  color: #24cdf3;
}
.naics-section1 form input:not([type=submit]) {
  width: 100%;
  position: relative;
  height: 49px;
  border: none;
  outline: none;
  background: #ededed;
  padding: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 20px;
  /* identical to box height */
  text-transform: capitalize;
  color: #282827;
}
.naics-section1 form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
  width: 97px;
  height: 49px;
  background: #17bfe6;
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #ffffff;
  transition: all ease 0.4s 0s;
}
.naics-section1 form input[type=submit]:hover {
  transition: all ease 0.4s 0s;
  background-color: #000;
}
.naics-section1 ul {
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
.naics-section1 ul h6 {
  padding-bottom: 8px;
}
.naics-section1 ul li {
  list-style: none;
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 40px;
  color: #2e2e2e;
}
.naics-section1 ul li a {
  color: #2e2e2e;
  transition: all ease 0.3s 0s;
}
.naics-section1 ul li a:hover {
  transition: all ease 0.3s 0s;
  color: #17bfe6;
  font-weight: 500;
}
.naics-section1 .pagination {
  width: 100%;
  display: flex;
  margin-top: 30px;
}
.naics-section1 .pagination ul {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.naics-section1 .pagination ul .active {
  background: #17bfe6;
}
.naics-section1 .pagination ul .active a {
  color: #fff;
}
.naics-section1 .pagination ul li {
  list-style: none;
  margin: 0 6px;
  padding: 14px;
  height: 25px;
  width: 25px;
  background: #f4f4f5;
  border-radius: 2px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  /* identical to box height */
  border-radius: 2px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.naics-section1 .pagination ul li:hover {
  transition: all ease 0.4s 0s;
  background: #71d7ee;
}
.naics-section1 .pagination ul li:hover a {
  color: #fff;
}

.naics-details-section1 {
  margin: 80px 0;
}
.naics-details-section1 table {
  width: 100%;
}
.naics-details-section1 table tr:last-child {
  border-bottom: 1px solid #d6d6d6;
}
.naics-details-section1 table tr:nth-child(odd) {
  background: #f5f7fa;
}
.naics-details-section1 table tr th {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #2e2e2e;
  padding: 12px;
  background-color: #ededed;
  padding: 16px 26px;
}
.naics-details-section1 table tr th:last-child {
  text-align: right;
}
.naics-details-section1 table tr td {
  min-width: 100px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #2e2e2e;
  padding: 22px 26px;
}
.naics-details-section1 table tr td:last-child {
  text-align: right;
}
.naics-details-section1 table tr td a {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #2e2e2e;
}
.naics-details-section1 table tr td a:hover {
  color: #24cdf3;
}
.naics-details-section1 form input:not([type=submit]) {
  width: 100%;
  position: relative;
  height: 49px;
  border: none;
  outline: none;
  background: #ededed;
  padding: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 20px;
  /* identical to box height */
  text-transform: capitalize;
  color: #282827;
}
.naics-details-section1 form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
  width: 97px;
  height: 49px;
  background: #17bfe6;
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #ffffff;
  transition: all ease 0.4s 0s;
}
.naics-details-section1 form input[type=submit]:hover {
  transition: all ease 0.4s 0s;
  background-color: #000;
}
.naics-details-section1 ul {
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
.naics-details-section1 ul h6 {
  padding-bottom: 8px;
}
.naics-details-section1 ul li {
  list-style: none;
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 40px;
  color: #2e2e2e;
}
.naics-details-section1 ul li a {
  color: #2e2e2e;
  transition: all ease 0.3s 0s;
}
.naics-details-section1 ul li a:hover {
  transition: all ease 0.3s 0s;
  color: #17bfe6;
  font-weight: 500;
}
.naics-details-section1 .pagination {
  width: 100%;
  display: flex;
  margin-top: 30px;
}
.naics-details-section1 .pagination ul {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.naics-details-section1 .pagination ul .active {
  background: #17bfe6;
}
.naics-details-section1 .pagination ul .active a {
  color: #fff;
}
.naics-details-section1 .pagination ul li {
  list-style: none;
  margin: 0 6px;
  padding: 14px;
  height: 25px;
  width: 25px;
  background: #f4f4f5;
  border-radius: 2px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  /* identical to box height */
  border-radius: 2px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.naics-details-section1 .pagination ul li:hover {
  transition: all ease 0.4s 0s;
  background: #71d7ee;
}
.naics-details-section1 .pagination ul li:hover a {
  color: #fff;
}

.bussiness-name-ban {
  background: url("../images/bussiness-name-ban.png");
  background-size: cover;
}

.bussiness-name-section1 {
  margin: 40px 0;
}
.bussiness-name-section1 .form-wrapper {
  background: #17bfe6;
  border-radius: 20px;
  width: 100%;
  padding: 20px 40px;
  padding-bottom: 28px;
}
.bussiness-name-section1 form input:not([type=submit]) {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #18bee5;
  box-sizing: border-box;
  box-shadow: 0px 0px 53px rgba(108, 11, 170, 0.05);
  -webkit-backdrop-filter: blur(53px);
          backdrop-filter: blur(53px);
  /* Note: backdrop-filter has minimal browser support */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #fff;
  text-transform: capitalize;
  border-radius: 8px;
  padding: 0 26px;
}
.bussiness-name-section1 form input:not([type=submit])::-moz-placeholder {
  color: #fff;
}
.bussiness-name-section1 form input:not([type=submit]):-ms-input-placeholder {
  color: #fff;
}
.bussiness-name-section1 form input:not([type=submit])::placeholder {
  color: #fff;
}
.bussiness-name-section1 form input:not([type=submit]):focus {
  border: none;
  outline: none;
}
.bussiness-name-section1 form input[type=submit] {
  width: 100%;
  height: 60px;
  background: rgb(0, 0, 0);
  border: 2px solid #18bee5;
  box-sizing: border-box;
  box-shadow: 0px 0px 53px rgba(108, 11, 170, 0.05);
  -webkit-backdrop-filter: blur(53px);
          backdrop-filter: blur(53px);
  /* Note: backdrop-filter has minimal browser support */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #fff;
  text-transform: capitalize;
  border-radius: 8px;
  padding: 0 26px;
  transition: all ease 0.3s 0s;
}
.bussiness-name-section1 form input[type=submit]:hover {
  transition: all ease 0.3s 0s;
  background-color: #282827;
}
.bussiness-name-section1 h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  margin-bottom: 16px;
  color: #ffffff;
}

.bussiness-name-section2 h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  margin-bottom: 24px;
  text-transform: capitalize;
  color: #000000;
}
.bussiness-name-section2 .card {
  border: none;
}
.bussiness-name-section2 .card .image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ececec;
  border: 1px solid #797979;
  box-sizing: border-box;
  border-radius: 8px 8px 0 0;
}
.bussiness-name-section2 .card p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  /* or 187% */
  text-transform: capitalize;
  color: #000000;
}
.bussiness-name-section2 .card .para-color {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: #17bfe6;
}
.bussiness-name-section2 .card h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-top: 10px;
}
.bussiness-name-section2 .card h4 a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
}
.bussiness-name-section2 .card h4 a:hover {
  color: #16b0d3;
}

.bussiness-name-section3 {
  margin: 60px 0;
  margin-bottom: 30px;
}
.bussiness-name-section3 .heading {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}
.bussiness-name-section3 .heading h3 {
  padding: 3px 5px;
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}
.bussiness-name-section3 .heading a {
  padding: 0px 16px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #71d7ee;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  background: #17bfe6;
  transition: all ease 0.4s 0s;
}
.bussiness-name-section3 .heading a:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #000000;
  transition: all ease 0.4s 0s;
}
.bussiness-name-section3 .card {
  margin-bottom: 30px;
  border: none;
  background: transparent;
}
.bussiness-name-section3 .card img {
  margin-bottom: 12px;
}
.bussiness-name-section3 .card h6 {
  display: flex;
  justify-content: space-between;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
}
.bussiness-name-section3 .card h6 a {
  color: #000;
}
.bussiness-name-section3 .card h6 a:hover {
  color: #17bfe6;
}
.bussiness-name-section3 .card h6 span {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  text-align: right;
  text-transform: capitalize;
  color: #17bfe6;
}

.industry-title-ban {
  background: url("../images/industry-title-ban.png");
  background-size: cover;
}

.industry-title-section1 {
  margin: 50px 0;
}
.industry-title-section1 .form-wrapper {
  background: #17bfe6;
  border-radius: 20px;
  width: 100%;
  padding: 20px 40px;
  padding-bottom: 28px;
}
.industry-title-section1 form input:not([type=submit]) {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #18bee5;
  box-sizing: border-box;
  box-shadow: 0px 0px 53px rgba(108, 11, 170, 0.05);
  -webkit-backdrop-filter: blur(53px);
          backdrop-filter: blur(53px);
  /* Note: backdrop-filter has minimal browser support */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #fff;
  text-transform: capitalize;
  border-radius: 8px;
  padding: 0 26px;
}
.industry-title-section1 form input:not([type=submit])::-moz-placeholder {
  color: #fff;
}
.industry-title-section1 form input:not([type=submit]):-ms-input-placeholder {
  color: #fff;
}
.industry-title-section1 form input:not([type=submit])::placeholder {
  color: #fff;
}
.industry-title-section1 form input:not([type=submit]):focus {
  border: none;
  outline: none;
}
.industry-title-section1 form input[type=submit] {
  width: 100%;
  height: 60px;
  background: rgb(0, 0, 0);
  border: 2px solid #18bee5;
  box-sizing: border-box;
  box-shadow: 0px 0px 53px rgba(108, 11, 170, 0.05);
  -webkit-backdrop-filter: blur(53px);
          backdrop-filter: blur(53px);
  /* Note: backdrop-filter has minimal browser support */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #fff;
  text-transform: capitalize;
  border-radius: 8px;
  padding: 0 26px;
  transition: all ease 0.3s 0s;
}
.industry-title-section1 form input[type=submit]:hover {
  transition: all ease 0.3s 0s;
  background-color: #282827;
}
.industry-title-section1 h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  margin-bottom: 16px;
  color: #ffffff;
}

.industry-title-section2 {
  margin: 60px 0;
  margin-bottom: 30px;
}
.industry-title-section2 .heading {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}
.industry-title-section2 .heading h3 {
  padding: 3px 5px;
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}
.industry-title-section2 .heading a {
  padding: 0px 16px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #71d7ee;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  background: #17bfe6;
  transition: all ease 0.4s 0s;
}
.industry-title-section2 .heading a:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #000000;
  transition: all ease 0.4s 0s;
}
.industry-title-section2 .card {
  margin-bottom: 30px;
  border: none;
  background: transparent;
}
.industry-title-section2 .card img {
  margin-bottom: 12px;
}
.industry-title-section2 .card h6 {
  display: flex;
  justify-content: space-between;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
}
.industry-title-section2 .card h6 a {
  color: #000;
}
.industry-title-section2 .card h6 a:hover {
  color: #17bfe6;
}
.industry-title-section2 .card h6 span {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  text-align: right;
  text-transform: capitalize;
  color: #17bfe6;
}

.certifications-ban {
  background: url("../images/certifications-ban.png");
  background-size: cover;
}

.certifications-section1 {
  margin: 50px 0;
}
.certifications-section1 .form-wrapper {
  background: #17bfe6;
  border-radius: 20px;
  width: 100%;
  padding: 20px 40px;
  padding-bottom: 28px;
}
.certifications-section1 form input:not([type=submit]),
.certifications-section1 form select {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #18bee5;
  box-sizing: border-box;
  box-shadow: 0px 0px 53px rgba(108, 11, 170, 0.05);
  -webkit-backdrop-filter: blur(53px);
          backdrop-filter: blur(53px);
  /* Note: backdrop-filter has minimal browser support */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #fff;
  text-transform: capitalize;
  border-radius: 8px;
  padding: 0 26px;
}
.certifications-section1 form select {
  appearance: none;
}
.certifications-section1 form select option {
  color: #000;
}
.certifications-section1 form input:not([type=submit])::-moz-placeholder {
  color: #fff;
}
.certifications-section1 form input:not([type=submit]):-ms-input-placeholder {
  color: #fff;
}
.certifications-section1 form input:not([type=submit])::placeholder {
  color: #fff;
}
.certifications-section1 form input:not([type=submit]):focus {
  border: none;
  outline: none;
}
.certifications-section1 form input[type=submit] {
  width: 100%;
  height: 60px;
  background: rgb(0, 0, 0);
  border: 2px solid #18bee5;
  box-sizing: border-box;
  box-shadow: 0px 0px 53px rgba(108, 11, 170, 0.05);
  -webkit-backdrop-filter: blur(53px);
          backdrop-filter: blur(53px);
  /* Note: backdrop-filter has minimal browser support */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #fff;
  text-transform: capitalize;
  border-radius: 8px;
  padding: 0 26px;
  transition: all ease 0.3s 0s;
}
.certifications-section1 form input[type=submit]:hover {
  transition: all ease 0.3s 0s;
  background-color: #282827;
}
.certifications-section1 h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  margin-bottom: 16px;
  color: #ffffff;
}

.certifications-section2 {
  padding-bottom: 50px;
}
.certifications-section2 table {
  width: 100%;
}
.certifications-section2 table tr:last-child {
  border-bottom: 1px solid #d6d6d6;
}
.certifications-section2 table tr:nth-child(odd) {
  background: #f5f7fa;
}
.certifications-section2 table tr th {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #2e2e2e;
  padding: 12px;
  background-color: #ededed;
  padding: 16px 26px;
}
.certifications-section2 table tr th:last-child {
  text-align: right;
}
.certifications-section2 table tr td {
  min-width: 100px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #2e2e2e;
  padding: 22px 26px;
}
.certifications-section2 table tr td a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  text-transform: uppercase;
  /* Neutral/800(Primary) */
  color: #2e2e2e;
}
.certifications-section2 table tr td a:hover {
  color: #17bfe6;
}
.certifications-section2 table tr td:last-child {
  text-align: right;
}
.certifications-section2 .pagination {
  width: 100%;
  display: flex;
  margin-top: 30px;
}
.certifications-section2 .pagination ul {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.certifications-section2 .pagination ul .active {
  background: #17bfe6;
}
.certifications-section2 .pagination ul .active a {
  color: #fff;
}
.certifications-section2 .pagination ul li {
  list-style: none;
  margin: 0 6px;
  padding: 14px;
  height: 25px;
  width: 25px;
  background: #f4f4f5;
  border-radius: 2px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  /* identical to box height */
  border-radius: 2px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.certifications-section2 .pagination ul li a {
  color: #000;
}
.certifications-section2 .pagination ul li:hover {
  transition: all ease 0.4s 0s;
  background: #71d7ee;
}
.certifications-section2 .pagination ul li:hover a {
  color: #fff;
}

.city-ban {
  background: url("../images/city-ban.png");
  background-size: cover;
}

.city-section1 {
  margin: 80px 0;
}
.city-section1 table {
  width: 100%;
}
.city-section1 table tr:last-child {
  border-bottom: 1px solid #d6d6d6;
}
.city-section1 table tr:nth-child(odd) {
  background: #f5f7fa;
}
.city-section1 table tr th {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #2e2e2e;
  padding: 12px;
  background-color: #ededed;
  padding: 16px 26px;
}
.city-section1 table tr th:last-child {
  text-align: right;
}
.city-section1 table tr td {
  min-width: 100px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #2e2e2e;
  padding: 22px 26px;
}
.city-section1 table tr td:last-child {
  text-align: right;
}
.city-section1 table tr td a {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #2e2e2e;
  /* Neutral/800(Primary) */
  color: #2e2e2e;
}
.city-section1 table tr td a:hover {
  color: #17bfe6;
}
.city-section1 form input:not([type=submit]) {
  width: 100%;
  position: relative;
  height: 49px;
  border: none;
  outline: none;
  background: #ededed;
  padding: 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 20px;
  /* identical to box height */
  text-transform: capitalize;
  color: #282827;
}
.city-section1 form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
  width: 97px;
  height: 49px;
  background: #17bfe6;
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #ffffff;
  transition: all ease 0.4s 0s;
}
.city-section1 form input[type=submit]:hover {
  transition: all ease 0.4s 0s;
  background-color: #000;
}
.city-section1 ul {
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
.city-section1 ul h6 {
  padding-bottom: 8px;
}
.city-section1 ul li {
  list-style: none;
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 40px;
  color: #2e2e2e;
}
.city-section1 ul li a {
  color: #2e2e2e;
  transition: all ease 0.3s 0s;
}
.city-section1 ul li a:hover {
  transition: all ease 0.3s 0s;
  color: #17bfe6;
  font-weight: 500;
}
.city-section1 .pagination {
  width: 100%;
  display: flex;
  margin-top: 30px;
}
.city-section1 .pagination ul {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.city-section1 .pagination ul .active {
  background: #17bfe6;
}
.city-section1 .pagination ul .active a {
  color: #fff;
}
.city-section1 .pagination ul li {
  list-style: none;
  margin: 0 6px;
  padding: 14px;
  height: 25px;
  width: 25px;
  background: #f4f4f5;
  border-radius: 2px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  /* identical to box height */
  border-radius: 2px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.city-section1 .pagination ul li:hover {
  transition: all ease 0.4s 0s;
  background: #71d7ee;
}
.city-section1 .pagination ul li:hover a {
  color: #fff;
}

.city-listing-section1 {
  margin: 40px 0;
}
.city-listing-section1 .form-wrapper {
  background: #17bfe6;
  border-radius: 20px;
  width: 100%;
  padding: 20px 40px;
  padding-bottom: 28px;
}
.city-listing-section1 form input:not([type=submit]) {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #18bee5;
  box-sizing: border-box;
  box-shadow: 0px 0px 53px rgba(108, 11, 170, 0.05);
  -webkit-backdrop-filter: blur(53px);
          backdrop-filter: blur(53px);
  /* Note: backdrop-filter has minimal browser support */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #fff;
  text-transform: capitalize;
  border-radius: 8px;
  padding: 0 26px;
}
.city-listing-section1 form input:not([type=submit])::-moz-placeholder {
  color: #fff;
}
.city-listing-section1 form input:not([type=submit]):-ms-input-placeholder {
  color: #fff;
}
.city-listing-section1 form input:not([type=submit])::placeholder {
  color: #fff;
}
.city-listing-section1 form input:not([type=submit]):focus {
  border: none;
  outline: none;
}
.city-listing-section1 form input[type=submit] {
  width: 100%;
  height: 60px;
  background: rgb(0, 0, 0);
  border: 2px solid #18bee5;
  box-sizing: border-box;
  box-shadow: 0px 0px 53px rgba(108, 11, 170, 0.05);
  -webkit-backdrop-filter: blur(53px);
          backdrop-filter: blur(53px);
  /* Note: backdrop-filter has minimal browser support */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #fff;
  text-transform: capitalize;
  border-radius: 8px;
  padding: 0 26px;
  transition: all ease 0.3s 0s;
}
.city-listing-section1 form input[type=submit]:hover {
  transition: all ease 0.3s 0s;
  background-color: #282827;
}
.city-listing-section1 h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-transform: capitalize;
  margin-bottom: 16px;
  color: #ffffff;
}

.city-listing-section2 {
  padding-bottom: 60px;
}
.city-listing-section2 h3 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  display: flex;
  align-items: center;
  background: #17bfe6;
  color: #ffffff;
  height: 50px;
  padding-left: 22px;
  margin-bottom: 0;
}
.city-listing-section2 .accordion {
  width: 100%;
  margin: 0 auto;
  background: #f5f7fa;
}
.city-listing-section2 .accordion-toggle {
  border-bottom: 1px solid #cccccc;
  cursor: pointer;
  margin: 0;
  padding: 20px 24px;
  position: relative;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  border-bottom: 1px solid #a6a6a6;
  /* identical to box height */
  color: #000000;
}
.city-listing-section2 .accordion-toggle:before {
  content: "\f067";
  font-family: "Font Awesome 5 pro";
  position: absolute;
  font-size: 22px;
  right: 40px;
  top: 21px;
  width: 0;
  height: 0;
}
.city-listing-section2 .accordion-toggle.active:after {
  content: "\f068";
  font-family: "Font Awesome 5 pro";
  position: absolute;
  right: 40px;
  font-size: 22px;
  right: 40px;
  top: 21px;
  width: 0;
  height: 0;
}
.city-listing-section2 .accordion-toggle.active:before {
  display: none;
}
.city-listing-section2 .accordion-content {
  display: none;
}
.city-listing-section2 .accordion-content:last-child {
  padding-bottom: 12px;
}
.city-listing-section2 .accordion-content form {
  height: 100%;
  margin-bottom: 0;
  margin-top: 12px;
}
.city-listing-section2 .accordion-content form .form-check {
  display: flex;
  align-items: center;
}
.city-listing-section2 .accordion-content form .form-check label {
  margin-left: 12px;
  display: block;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  text-transform: capitalize;
  color: #8f8a8a;
}
.city-listing-section2 .accordion-content form .form-check input {
  height: 16px;
  width: 16px;
  margin-bottom: 8px;
}
.city-listing-section2 form {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
}
.city-listing-section2 form input {
  width: 100%;
  background: #f2f2f2;
  /* Neutral/600(Border) */
  height: 50px;
  border: 1px solid #e4e4e4;
  box-sizing: border-box;
  border-radius: 4px;
  padding-left: 22px;
}
.city-listing-section2 form input:focus {
  outline: none;
  border: none;
}
.city-listing-section2 .calender {
  position: absolute;
  right: 30px;
  top: 16px;
}
.city-listing-section2 .card {
  padding: 20px 30px;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.city-listing-section2 .card .row {
  align-items: center;
}
.city-listing-section2 .card-services h6 {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 10px;
}
.city-listing-section2 .card-services h6 span {
  color: #17bfe6;
}
.city-listing-section2 .card-services h4 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 12px;
}
.city-listing-section2 .card-services h4 a {
  color: #000;
  transition: all ease 0.3s 0s;
}
.city-listing-section2 .card-services h4 a:hover {
  transition: all ease 0.3s 0s;
  color: #71d7ee;
}
.city-listing-section2 .card-services h5 {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  margin-bottom: 37px;
  color: #8f8a8a;
}
.city-listing-section2 .card-services ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  line-height: 0;
}
.city-listing-section2 .card-services ul li {
  list-style: none;
  margin: 0 6px;
  height: 25px;
  width: 25px;
  margin-left: 15px;
}
.city-listing-section2 .card-services ul li a img {
  transition: all ease-in 0.2s 0s;
}
.city-listing-section2 .card-services ul li a:hover img {
  transition: all ease-in 0.2s 0s;
  transform: scale(1.1);
}
.city-listing-section2 .card-services ul h6 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #17bfe6;
  margin-bottom: 0;
}
.city-listing-section2 .card-services .tag {
  position: absolute;
  color: white;
  background-color: #17bfe6;
  font-weight: 400;
  text-align: center;
  right: 15px;
  height: 55px;
  padding: 10px;
  top: -20px;
  width: 40px;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 74%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 74%, 0% 100%);
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.city-listing-section2 .review-section ul {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.city-listing-section2 .review-section ul li {
  list-style: none;
}
.city-listing-section2 .review-section ul li i {
  font-size: 22px;
  color: #c4c4c4;
  margin-right: 4px;
}
.city-listing-section2 .review-section h6 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  text-align: center;
  color: #2e2e2e;
  margin-bottom: 35px;
}
.city-listing-section2 .review-section h4 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #2e2e2e;
}

#ui-datepicker-div {
  display: none;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #78909c;
}
.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding: 0;
}
.ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 0.25rem;
  line-height: 2rem;
  transition: 0.3s all;
  color: #546e7a;
  font-size: 0.875rem;
  text-decoration: none;
}
.ui-datepicker-calendar tbody td a:hover {
  background-color: #17bfe6;
  color: #fff;
}
.ui-datepicker-calendar tbody td a.ui-state-active {
  background-color: #17bfe6;
  color: white;
}

.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.25rem;
  transition: 0.3s all;
}
.ui-datepicker-header a.ui-corner-all:hover {
  background-color: #eceff1;
}
.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: 50%;
  transform: rotate(180deg);
}
.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 50%;
}
.ui-datepicker-header a > span {
  display: none;
}

.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
  color: #78909c;
  font-weight: 400;
  font-size: 0.75rem;
}

#datepicker {
  cursor: pointer !important;
}

#datepicker2 {
  cursor: pointer !important;
}

#datepicker3 {
  cursor: pointer !important;
}

.join-network-section1 {
  margin: 54px 0;
}
.join-network-section1 img {
  width: 100%;
}
.join-network-section1 h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  color: #000000;
}
.join-network-section1 p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 40px;
  color: #000000;
  text-align: justify;
}
.join-network-section1 .butn {
  width: 164px;
  height: 48px;
  background: #17bfe6;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-out 0.2s 0s;
}
.join-network-section1 .butn:hover {
  background: #000;
  transition: all ease-in 0.2s 0s;
}
.join-network-section1 .butn a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}

.join-network-section2 {
  padding: 50px 0;
  padding-bottom: 0;
}
.join-network-section2 h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 48px;
  /* identical to box height */
  margin-bottom: 12px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}
.join-network-section2 p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  /* or 187% */
  max-width: 800px;
  text-align: center;
  text-transform: capitalize;
  margin: auto;
  color: #2e2e2e;
}
.join-network-section2 .card {
  padding: 50px 30px;
  padding-bottom: 30px;
  background: #ffffff;
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.1);
  border: none;
  margin: 51px 0;
}
.join-network-section2 .card h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.5rem;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}
.join-network-section2 .card h5 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 54px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #2e2e2e;
  margin-bottom: 30px;
}
.join-network-section2 .card h5 span {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  color: #8f8a8a;
}
.join-network-section2 .card ul li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  list-style: none;
  position: relative;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  color: #8f8a8a;
  margin-bottom: 8px;
}
.join-network-section2 .card ul li::before {
  content: url(../images/tick.png);
  filter: invert(60%) sepia(20%) saturate(3893%) hue-rotate(106deg) brightness(87%) contrast(100%);
  position: absolute;
  left: 0;
  top: 5px;
}
.join-network-section2 .card a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #17bfe6;
}
.join-network-section2 .card .butn-price {
  height: 50px;
  background: #ffffff;
  border: 1px solid #8f8a8a;
  box-sizing: border-box;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.join-network-section2 .card .butn-price:hover {
  background: #000;
  transition: all ease-in 0.2s 0s;
}
.join-network-section2 .card .butn-price:hover a {
  color: #fff;
}
.join-network-section2 .card .butn-price a {
  transition: all ease-in 0.2s 0s;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #8f8a8a;
}
.join-network-section2 .recommended {
  padding: 50px 30px;
  padding-top: 40px;
  position: relative;
  bottom: 20px;
  z-index: 2;
  border: 1px solid #3ccf8e;
}
.join-network-section2 .recommended h4 {
  width: 97px;
  margin: auto;
  background: #ffb34b;
  border-radius: 2px;
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  margin-bottom: 7px;
  /* identical to box height */
  color: #ffffff;
}

.plan-checkout-section1 {
  margin: 60px 0;
}
.plan-checkout-section1 .row {
  margin-bottom: 40px;
}
.plan-checkout-section1 h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  color: #000000;
}
.plan-checkout-section1 p {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #2e2e2e;
}
.plan-checkout-section1 form {
  /* select */
}
.plan-checkout-section1 form label {
  width: 100%;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #2e2e2e;
}
.plan-checkout-section1 form .tt-select {
  position: relative;
  height: auto;
  text-align: left;
  border: none;
  outline: none;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 15px;
  background: #f2f2f2;
  border: 1px solid #e4e4e4;
  box-sizing: border-box;
  border-radius: 4px;
  /* identical to box height */
  color: #000000;
}
.plan-checkout-section1 form .tt-select select {
  display: none;
}
.plan-checkout-section1 form .select-selected {
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0.8) !important;
  color: #ffffff;
  cursor: pointer;
  font-family: Roboto;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  color: #000000;
}
.plan-checkout-section1 form .select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}
.plan-checkout-section1 form .select-selected:before {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 5 pro";
  top: 15px;
  right: 29px;
  width: 0;
  height: 0;
  transform: rotate(0deg);
}
.plan-checkout-section1 form .select-selected.select-arrow-active:before {
  content: "";
}
.plan-checkout-section1 form .select-selected.select-arrow-active:after {
  content: "\f078";
  font-family: "Font Awesome 5 pro";
  top: 26px;
  right: 10px;
  width: 0;
  height: 0;
  transform: rotate(180deg);
}
.plan-checkout-section1 form .select-items {
  position: absolute;
  background-color: rgb(28, 48, 61);
  top: 100%;
  transform: translate(0, 0);
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: all ease 0.5s 0s;
}
.plan-checkout-section1 form .select-items div {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid #fff;
  cursor: pointer;
}
.plan-checkout-section1 form .select-items div:first-child {
  display: none;
}
.plan-checkout-section1 form .select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.plan-checkout-section1 form .select-hide {
  transform: translate(0, -50%);
  visibility: hidden;
  z-index: -1;
  opacity: 0;
  transition: all ease 0.5s 0s;
}
.plan-checkout-section1 form .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
.plan-checkout-section1 form input:not([type=radio]) {
  width: 100%;
  height: 50px;
  padding: 18px;
  background: #f2f2f2;
  border: 1px solid #e4e4e4;
  box-sizing: border-box;
  border-radius: 4px;
}
.plan-checkout-section1 form input[type=radio] {
  width: 28px;
  height: 17px;
  cursor: pointer;
}
.plan-checkout-section1 form input {
  margin-bottom: 40px;
}
.plan-checkout-section1 form input:last-child {
  margin-bottom: 0;
}
.plan-checkout-section1 form input:focus {
  border: none;
  outline: none;
}
.plan-checkout-section1 form .radio-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.plan-checkout-section1 form .radio-button {
  width: 46%;
  height: 50px;
  padding: 15px;
  background: #f2f2f2;
  border: 1px solid #e4e4e4;
  box-sizing: border-box;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.plan-checkout-section1 form .cancel {
  width: 103px;
  height: 48px;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 6px;
  background: transparent;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}
.plan-checkout-section1 form .cancel:hover {
  background: #000;
  transition: all ease-in 0.2s 0s;
  color: #fff;
}
.plan-checkout-section1 form button[type=submit] {
  width: 164px;
  height: 48px;
  border: none;
  outline: none;
  background: #17bfe6;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  margin-left: 30px;
  color: #ffffff;
}
.plan-checkout-section1 form button[type=submit]:hover {
  background: #000;
  transition: all ease-in 0.2s 0s;
}
.plan-checkout-section1 form input[type=search] {
  position: relative;
}
.plan-checkout-section1 form input[type=search]:focus + span {
  display: none;
}
.plan-checkout-section1 form span i {
  position: absolute;
  top: 50px;
  right: 30px;
}

.join-now-section1 {
  margin: 50px 0;
}
.join-now-section1 video {
  border-radius: 10px;
}
.join-now-section1 h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-align: justify;
  text-transform: capitalize;
  color: #000000;
  margin-top: 50px;
}
.join-now-section1 .butn {
  width: 164px;
  height: 48px;
  background: #17bfe6;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-out 0.2s 0s;
  margin-top: 20px;
}
.join-now-section1 .butn:hover {
  background: #000;
  transition: all ease-in 0.2s 0s;
}
.join-now-section1 .butn a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}

.join-now-section2 {
  padding-bottom: 0;
}

.join-now-section3 {
  background: url("../images/join-now-sec3-back.png");
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 100px;
}
.join-now-section3 h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 72px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}
.join-now-section3 p {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}
.join-now-section3 .card {
  background: none;
  border: none;
  text-align: center;
}
.join-now-section3 .card a {
  transition: all ease 0.3s 0s;
}
.join-now-section3 .card a:hover {
  transition: all ease 0.3s 0s;
}
.join-now-section3 .card a:hover img {
  transform: scale(1.1);
  transition: all ease 0.3s 0s;
}
.join-now-section3 .card img {
  margin-bottom: 20px;
  transition: all ease 0.3s 0s;
}
.join-now-section3 .card h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}
.join-now-section3 .card h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-align: center;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  text-transform: capitalize;
  color: #ffffff;
}

.join-now-section4 {
  padding: 60px 0;
  padding-bottom: 0;
  position: relative;
}
.join-now-section4 .top {
  position: absolute;
  top: 0;
  right: 0;
}
.join-now-section4 .down {
  position: absolute;
  bottom: 0;
  left: 0;
}
.join-now-section4 .sec {
  margin-bottom: 138px;
  position: relative;
}
.join-now-section4 .sec:last-child {
  margin-bottom: 84px;
}
.join-now-section4 .sec:last-child::before {
  content: none;
}
.join-now-section4 .sec::before {
  content: url("../images/vector-pointer.png");
  position: absolute;
  bottom: -200px;
  left: 28%;
  z-index: 9;
}
.join-now-section4 .row:nth-child(odd)::before {
  transform: scale(-1, 1);
  left: 40%;
}
.join-now-section4 .row:nth-child(odd) .image {
  order: 2;
}
.join-now-section4 .row:nth-child(odd) .text {
  order: 1;
}
.join-now-section4 h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 51px;
}
.join-now-section4 h3 span {
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  text-transform: capitalize;
  color: #17bfe6;
}
.join-now-section4 .text ul {
  list-style-position: inside;
}
.join-now-section4 .text ul li {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  /* or 171% */
  color: #000000;
}
.join-now-section4 .text h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  color: #2e2e2e;
  margin-bottom: 0;
}
.join-now-section4 .text h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  color: #000000;
}
.join-now-section4 .text p {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #2e2e2e;
}
.join-now-section4 .text a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  /* or 171% */
  color: #17bfe6;
}
.join-now-section4 .text a:hover {
  color: #24abcb;
}

.join-now-section5 {
  padding: 60px 0;
  background: #f5f7fa;
  position: relative;
}
.join-now-section5 img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.join-now-section5 h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 42px;
  /* identical to box height */
  margin-bottom: 40px;
  text-transform: capitalize;
  color: #000000;
}
.join-now-section5 h5 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #000000;
}
.join-now-section5 ul {
  list-style-position: inside;
  margin-bottom: 25px;
}
.join-now-section5 ul li {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  margin-bottom: 10px;
}
.join-now-section5 h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 42px;
  /* identical to box height */
  text-transform: capitalize;
  color: #17bfe6;
}
.join-now-section5 h6 {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  /* identical to box height, or 187% */
  color: #000000;
}
.join-now-section5 .ab-image {
  position: absolute;
  bottom: 37px;
  left: -50px;
  width: unset;
  z-index: 1;
}

.join-now-section6 {
  padding: 60px 0;
}
.join-now-section6 h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height */
  margin-bottom: 50px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}
.join-now-section6 .image {
  width: 200px;
  height: 200px;
  margin: auto;
  position: relative;
}
.join-now-section6 .image::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 1px solid #17bfe6;
  border-radius: 50%;
  left: -10px;
}
.join-now-section6 .image img {
  height: 200px;
  width: 200px;
}
.join-now-section6 p {
  font-family: Poppins;
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  line-height: 30px;
  /* or 214% */
  margin-bottom: 0;
  margin: 20px 0;
  text-align: center;
  color: #000000;
}
.join-now-section6 h5 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  /* identical to box height, or 187% */
  text-align: center;
  margin-bottom: 12px;
  color: #000000;
}
.join-now-section6 h6 {
  font-family: Poppins;
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #000000;
}
.join-now-section6 .owl-dots span {
  height: 16px !important;
  width: 16px !important;
}
.join-now-section6 .owl-dots .active span {
  background: #17bfe6 !important;
}

.join-now-section7 {
  padding: 60px 0;
  padding-bottom: 0;
  background: #f5f7fa;
}
.join-now-section7 h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 50px;
}
.join-now-section7 .image {
  width: 150px;
  margin: auto;
  margin-bottom: 10px;
}
.join-now-section7 .image img {
  width: 100%;
}
.join-now-section7 h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  text-transform: capitalize;
  max-width: 800px;
  margin: auto;
  color: #000000;
  margin-bottom: 60px;
}
.join-now-section7 .card {
  position: relative;
  border: none;
  background: transparent;
}
.join-now-section7 .card::before {
  content: "";
  height: 40px;
  width: 144px;
  position: absolute;
  top: 0;
  left: 5px;
  -webkit-clip-path: polygon(0 0, 100% 0, 82% 51%, 100% 100%, 0 100%, 0% 50%);
          clip-path: polygon(0 0, 100% 0, 82% 51%, 100% 100%, 0 100%, 0% 50%);
  background: #16b0d3;
  z-index: 1;
}
.join-now-section7 .card .shape {
  -webkit-clip-path: polygon(0 0, 100% 0, 82% 51%, 100% 100%, 0 100%, 0% 50%);
          clip-path: polygon(0 0, 100% 0, 82% 51%, 100% 100%, 0 100%, 0% 50%);
  background: #17bfe6;
  height: 40px;
  width: 144px;
  margin-bottom: 20px;
  z-index: 2;
}
.join-now-section7 .card .shape h6 {
  font-family: Poppins;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  /* identical to  box height, or 214% */
  line-height: 38px;
  margin-bottom: 0;
  margin-left: 12px;
  color: #ffffff;
}
.join-now-section7 .card h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: #000000;
  margin-bottom: 10px;
}
.join-now-section7 .card p {
  font-family: Poppins;
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  line-height: 30px;
  /* or 214% */
  color: #000000;
}
.join-now-section7 .butn {
  width: 343px;
  height: 48px;
  background: #000000;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin: 60px auto;
  transition: all ease 0.3s 0s;
}
.join-now-section7 .butn:hover {
  transition: all ease 0.3s 0s;
  background: rgb(34, 34, 34);
}
.join-now-section7 .butn a {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}

.bottom-image {
  margin: auto;
  padding-bottom: 60px;
  background: #f5f7fa;
}
.bottom-image .wrapper {
  display: flex;
  justify-content: center;
}
.bottom-image .wrapper img {
  margin: 0 25px;
}

/*modal design */
.modal-header {
  height: 0;
  padding: 0 !important;
  position: unset;
  border: none;
}

.modal-header .close {
  right: 16px;
  top: 7px;
  opacity: 1;
  position: absolute;
  z-index: 999;
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
  transition: all ease 0.3s 0s;
}

.modal-header .close:focus {
  border: none;
  outline: none;
}

.modal-header .close:hover {
  transition: all ease 0.3s 0s;
  transform: scale(1.1);
}

.modal-header .close span {
  font-size: 40px;
  color: #a0a6ab;
  font-size: 34px;
  opacity: 1;
}

.modal-header h5 {
  display: none;
}

.modal-body {
  padding: 2rem !important;
}

.modal-body h3 {
  color: #17bfe6;
  font-family: Poppins;
  font-style: normal;
  margin-bottom: 22px;
}

.modal-footer button.btn.btn-primary {
  background: #2cc5e8;
  border: 2px solid #2cc5e8;
}

.modal button {
  transform: scale(1);
  transition: all ease 0.3s 0s;
}
.modal button:hover {
  transition: all ease 0.3s 0s;
  transform: scale(1.1);
}
.modal label {
  font-family: Poppins;
  margin-bottom: 5px;
}
.modal button.btn.btn-info.my-3 {
  background: #2cc5e8;
  border: 2px solid #2cc5e8;
}
@-webkit-keyframes textAnimation {
  0% {
    transform: translate(-30px, 0);
    transition: all ease 0.3s 0s;
  }
  100% {
    transform: translate(0px, 0);
    transition: all ease 0.3s 0s;
  }
}
@keyframes textAnimation {
  0% {
    transform: translate(-30px, 0);
    transition: all ease 0.3s 0s;
  }
  100% {
    transform: translate(0px, 0);
    transition: all ease 0.3s 0s;
  }
}
.modal p.text-danger {
  color: #2cc5e8 !important;
  margin-top: 12px;
  margin-bottom: 0;
  -webkit-animation: textAnimation 1s;
          animation: textAnimation 1s;
}

.modal-content {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

div#findBusinessCloseConfirmModel h5 {
  color: #17bfe6;
  font-family: Poppins;
  font-style: normal;
  margin-bottom: 22px;
}
div#findBusinessCloseConfirmModel button.btn.btn-primary.px-5 {
  background: #2cc5e8;
  border: 0px solid #2cc5e8;
}
div#findBusinessCloseConfirmModel button.btn.btn-primary-info.px-5 {
  background: #6c757d;
  color: #fff;
}
div#findBusinessCloseConfirmModel button {
  transform: unset;
  transition: unset;
}
div#findBusinessCloseConfirmModel button:hover {
  transition: unset;
  transform: unset;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
section.forget-sec1 form input[type=submit] {
  margin-top: 2px;
}

section.tos-body {
  padding: 50px 0;
}
section.tos-body p {
  line-height: 28px;
  margin-bottom: 20px;
}
section.tos-body ul.tos__terms-list1 {
  margin-bottom: 40px;
  padding-left: 30px;
}
section.tos-body ul.tos__terms-list1 li {
  margin-bottom: 15px;
}
section.tos-body ul.tos__terms-list2 {
  margin-bottom: 40px;
}
section.tos-body ul.tos__terms-list2 li {
  margin-bottom: 15px;
  list-style-type: disclosure-closed;
}
section.tos-body ul.tos__terms-list2 li::marker {
  vertical-align: middles;
}
section.tos-body ul.tos__terms-list2 li h4 {
  margin-bottom: 20px;
  font-style: italic;
}
section.tos-body ul.tos__terms-list2 li ul {
  margin-bottom: 20px;
  padding-left: 30px;
}
section.tos-body ul.tos__terms-list2 li ul li {
  list-style: decimal;
  margin-bottom: 10px;
}
section.tos-body ul.tos__terms-list2 li ul li::marker {
  margin-right: 10px;
}

section.term-privacy-cnt {
  padding: 50px 0;
}
section.term-privacy-cnt h1 {
  font-size: 1.375rem;
  color: #333;
  font-weight: 700;
}
section.term-privacy-cnt h1 span {
  display: block;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 40px;
}
section.term-privacy-cnt h2 {
  font-size: 1.2rem;
  color: #333;
  font-weight: 700;
}
section.term-privacy-cnt p {
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 90%;
}
section.term-privacy-cnt h5 {
  font-size: 1.25rem;
  font-size: 1rem;
  color: #333;
  font-weight: 700;
  font-style: italic;
}
section.term-privacy-cnt ul.ultxt {
  margin-left: 30px;
}
section.term-privacy-cnt ul.ultxt li {
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  list-style: disc;
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 10px;
}

section.city-listing-section2 .modal .modal-header .close span {
  color: #1e1e1e;
}
section.city-listing-section2 .modal .modal-body {
  padding-bottom: 0 !important;
}
section.city-listing-section2 .modal .modal-body h3 {
  display: inline-block;
  background-color: transparent;
  margin-bottom: 0 !important;
  color: #222;
  padding: 0;
}
section.city-listing-section2 .modal .modal-footer button {
  background-color: #2cc5e8;
  border: none;
}

/* extra css  */
.table-striped tbody tr:nth-of-type(odd) {
  background: rgba(23, 191, 230, 0.1) !important;
}

.table td, .table th {
  border-top: none;
}

.table td, .table th {
  font-size: 16px;
}

.table tr th {
  border-radius: 8px 0 0 8px !important;
}

.table tr td {
  border-radius: 0px 8px 8px 0 !important;
}

.table td, .table th {
  vertical-align: middle;
}

section.city-listing-section2 .modal .modal-body h3 {
  position: relative;
}

section.city-listing-section2 .modal .modal-body h3::before {
  position: absolute;
  bottom: 18px;
  left: 0;
  content: "";
  height: 2px;
  width: 60%;
  background-color: rgba(23, 191, 230, 0.3) !important;
}

section.city-listing-section2 .modal .modal-header .close span {
  color: rgba(23, 191, 230, 0.8) !important;
}

#findBusinessModel ::-webkit-scrollbar {
  width: 0 !important;
}

.black-bg {
  background-color: #262626 !important;
  color: rgb(255, 255, 255) !important;
}
.black-bg::after {
  background-color: #262626 !important;
}

.red-bg {
  background-color: #c71f30 !important;
  color: rgb(255, 255, 255) !important;
}
.red-bg::after {
  background-color: #c71f30 !important;
}

.green-bg {
  background-color: #4e9c00 !important;
  color: rgb(255, 255, 255) !important;
}
.green-bg::after {
  background-color: #4e9c00 !important;
}

.table-con {
  margin-top: 10px;
}

table.price-table {
  width: 100%;
}
table.price-table thead tr th:nth-child(2) {
  position: relative;
}
table.price-table thead tr th:nth-child(2)::after {
  background-color: #000000;
  position: absolute;
  content: "";
  height: 62px;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 170px;
  transform: translateX(-50%);
}
table.price-table thead th {
  padding: 0 0 20px;
}
table.price-table thead th h3 {
  padding: 46px 28px 10px;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  background-image: url(../images/thead-img.svg);
  position: relative;
  margin-inline: auto;
  background-repeat: no-repeat;
  background-position: 34px 26px;
  background-size: 94px;
  z-index: 4;
  width: 160px;
  line-height: 25px;
}
table.price-table thead th h3::after {
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: -23px;
  z-index: -1;
  left: 0;
  -webkit-clip-path: polygon(100% 0, 100% 44%, 50% 56%, 0 43%, 0 1%);
  clip-path: polygon(100% 0, 100% 44%, 50% 86%, 0 43%, 0 1%);
  z-index: -1;
}
table.price-table tbody tr {
  border-block: 1px solid #afafaf;
}
table.price-table tbody tr td {
  position: relative;
}
table.price-table tbody tr td:not(:first-child) {
  text-align: center;
  color: #0075dc;
  font-size: 30px;
}
table.price-table tbody tr td:first-child {
  font-size: 18px;
}
table.price-table tbody tr td:nth-child(2) {
  background-color: #000000;
}
table.price-table tbody tr td:not(:first-child)::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  right: 0;
}
table.price-table tbody tr td:not(:first-child)::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  left: 0;
}
table.price-table tfoot tr td {
  position: relative;
}
table.price-table tfoot tr td:not(:first-child)::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  right: 0;
}
table.price-table tfoot tr td:not(:first-child)::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  left: 0;
}
table.price-table tfoot tr td .btns {
  background-color: #0075dc;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 7px;
}
table.price-table tfoot tr td .btns a {
  text-decoration: none;
  color: #fff !important;
  font-size: 20px;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
}
table.price-table tfoot tr td .btns a:first-child {
  border-bottom: 1px solid #fff;
}
table.price-table tfoot tr td .btns a span {
  color: #e9d864;
  font-size: 14px;
  font-weight: 700;
}

.table-responsive {
  position: relative;
}
.table-responsive::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  height: 70px;
  background: rgb(184, 216, 245);
  background: linear-gradient(90deg, rgb(184, 216, 245) 0%, rgb(39, 132, 214) 35%, rgb(0, 117, 220) 100%);
  z-index: -1;
}/*# sourceMappingURL=style.css.map */