@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --brand: #003E6E;
  --yellow: #F7A800;
  --brand-light-bg: rgba(220, 25, 45, 0.04);
  --bg-light-blue: #D7E9F3;
  --link-color: #1D242E;
  --heading-color: #454545;
  --dark: #1B1918;
  --grey: #7B7B7B;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color:#000000;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-font: "Hanken Grotesk", sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  padding-right: 0 !important;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.btn {
  font-size: 0.937rem;
}

.bg-light {
  background-color: rgba(0, 62, 110, 0.07) !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.text-primary {
  color: var(--brand) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-yellow {
  color: var(--brand) !important;
}

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.ptb {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--white);
  font-size: 1rem;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}

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

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem !important;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}

ul {
  padding-left: 1.5rem !important;
}

ul li {
  list-style-type: none !important;
}

.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.top__title {
  padding: 0.125rem 0.5rem;
  background-color: #E3EDFF;
  display: inline-block;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  border: 1px solid #E5E5E5;
  font-weight: 600;
  color: var(--body-text-color);
  border-radius: 0%;
  line-height: 1;
  padding: 0.75rem 0.75rem;
  min-width: 2.5rem;
  text-align: center;
}
.pagination .page-item .page-link img {
  width: 1.125rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .btn {
    font-size: 0.937rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
/*====================== Navigation Styles ===================*/
.smart-scroll {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.scrolled-down {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}

.scrolled-up {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  background-color: var(--brand);
}
.scrolled-up .navbar-brand img {
  max-height: 5rem;
}

.navbar {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1921568627);
}
.navbar .navbar-brand img {
  max-height: 3rem;
}
.navbar .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--yellow);
}
.navbar .nav-item .nav-link:hover .caret {
  transform: rotate(-180deg);
}
.navbar .nav-item.active .nav-link {
  color: var(--yellow);
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .dropdown {
  -webkit-appearance: none;
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 96%;
  left: 0%;
  width: 100%;
  min-width: 19rem;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown .dropdown-menu.houseboat {
  min-width: 21rem;
}
.navbar .dropdown .dropdown-menu.india__tour {
  min-width: 12rem;
  max-width: 12rem;
}
.navbar .dropdown .dropdown-menu.india__tour_2 {
  min-width: 14rem;
  max-width: 14rem;
}
.navbar .dropdown .dropdown-menu .dropdown-item {
  color: var(--link-color);
  font-size: 0.937rem;
  display: block;
  padding: 0.5rem 1rem;
  position: relative;
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover, .navbar .dropdown .dropdown-menu .dropdown-item:focus, .navbar .dropdown .dropdown-menu .dropdown-item:active {
  color: var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown .dropdown-menu .dropdown-item:last-child {
  padding-bottom: 0.55rem;
}
.navbar .dropdown .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.navbar .dropdown .dropdown-menu .active .dropdown-item {
  color: var(--brand);
  border-left: 0.25rem solid var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown:hover > .nav-link {
  color: var(--yellow);
}
.navbar .dropdown:hover > .nav-link .caret {
  transform: rotate(-180deg);
}
.navbar .navbar-toggler {
  border: 1px solid transparent;
  width: 2.875rem;
  height: 2.875rem;
  position: relative;
  background-color: var(--white);
  color: #fff;
  margin-left: 1rem;
}
.navbar .navbar-toggler svg {
  width: 1.625rem;
  height: 1.625rem;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar.fixed-top {
  position: fixed;
  background-color: var(--white) !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 105%;
    left: 0%;
    width: 100%;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 0 0 1rem 1rem;
    z-index: 999;
  }
  .navbar .navbar-collapse .nav-link {
    color: var(--dark);
  }
}
@media (max-width: 1200px) {
  .navbar .nav-item .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 6rem;
  }
}
.contact__card .icon {
  width: 2rem;
}
.contact__card .icon img {
  height: 2rem;
}
.contact__card .icon img.sm {
  height: 2rem;
}
.contact__card .caption {
  width: calc(100% - 2rem);
  padding-left: 0.5rem;
}

footer {
  background: #F5F5F5;
  color: #373b3e;
}
footer .lead {
  color: #08222E;
  font-weight: 700;
  font-size: 1.125rem;
}
footer .link-hover {
  font-size: 1rem;
  padding: 0.2rem 0;
  text-transform: capitalize;
}
footer .link-hover.plus {
  color: rgb(255, 145, 0);
}
footer .link-hover.plus:hover {
  color: var(--brand);
}
footer .logo__wrapp {
  margin-top: -7.8rem;
}
footer .logo__wrapp .logo {
  display: inline-block;
}
footer .logo__wrapp .logo img {
  height: auto;
  width: 6rem;
}
footer .google__partner__box {
  margin-top: -5rem;
  position: relative;
  z-index: 11;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
footer .google__partner__box .logo__box {
  width: 12rem;
  background-color: #f5f5f5;
}

@media (max-width: 991px) {
  footer .logo__wrapp {
    max-width: 20rem;
    margin: -3rem auto 0 auto;
  }
}
.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 3px;
  background-color: var(--brand);
  color: var(--white);
}
.social__links li a svg {
  width: 1.125rem;
  height: 1.125rem;
}
.social__links li a svg path {
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--dark);
  color: var(--white);
}
.social__links li:not(:first-child) {
  margin-left: 0.5rem;
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 6rem;
    width: auto;
  }
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  footer .logo__main {
    max-height: 5rem;
    width: auto;
    margin-bottom: 1rem;
  }
  footer .logo {
    max-height: 3rem;
    width: auto;
  }
}
.header__wrapper {
  margin-top: -5rem;
  padding: 13rem 0 5rem 0;
}

.header__wrapper .btn__box {
  margin-top: 2.5rem;
}

.hero__btn {
  background-color: var(--white);
  color: var(--dark);
  padding: 0.75rem 1.5rem;
  gap: 0 1rem;
  min-width: 14rem;
  border-color: var(--white);
}

.hero__btn .icon {
  border: 1px solid var(--dark);
  padding: 0.15rem 0.75rem 0.25rem 0.75rem;
  border-radius: 2rem;
}

.hero__btn:hover .icon, .hero__btn:focus .icon, .hero__btn:active .icon {
  transform: none;
}

.hero__btn:hover .icon svg path, .hero__btn:focus .icon svg path, .hero__btn:active .icon svg path {
  fill: var(--white);
}

.hero__btn:hover .icon, .hero__btn:focus .icon, .hero__btn:active .icon {
  border-color: var(--white);
}

.hero__btn:hover, .hero__btn:focus, .hero__btn:active {
  background-color: var(--brand);
  color: var(--white);
  border: 1px solid var(--brand);
}

.cpanel__wrapper .plans__card {
  border: 1px solid rgba(112, 112, 112, 0.1);
  border-radius: 18px;
  transition: all 0.4s ease-in-out;
}

.cpanel__wrapper .plans__card .title__box {
  padding-left: 10%;
}

.cpanel__wrapper .plans__card .icon__box {
  width: 6.5rem;
}

.cpanel__wrapper .plans__card .title {
  padding: 2.5rem 5rem;
}

.cpanel__wrapper ul {
  padding: 1rem 0 1rem 20% !important;
}

.cpanel__wrapper .dedicated_server ul {
  padding: 1rem 0 1rem 12% !important;
}

.cpanel__wrapper .check__list li {
  padding-left: 0rem;
  position: relative;
}

.cpanel__wrapper .check__list li::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: -1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 512 512'%3E%3Cpath fill='%23000' d='M17.47 250.9C88.82 328.1 158 397.6 224.5 485.5c72.3-143.8 146.3-288.1 268.4-444.37L460 26.06C356.9 135.4 276.8 238.9 207.2 361.9c-48.4-43.6-126.62-105.3-174.38-137z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1rem;
  width: 1rem;
  height: 1rem;
}

.cpanel__wrapper .plans__card .hero__btn {
  border-color: var(--yellow);
}

.cpanel__wrapper .plans__card .hero__btn .icon {
  border-color: var(--yellow);
}

.cpanel__wrapper .plans__card:hover {
  background-color: rgba(246, 118, 14, 0.09);
  border: 1px solid rgba(246, 118, 14, 0.09);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .cpanel__wrapper .plans__card .title__box {
    padding-top: 2rem !important;
  }
  .cpanel__wrapper .plans__card ul {
    padding: 1rem 0 1rem 15% !important;
  }
}
.contact__bg__overlay {
  height: calc(100% - 9rem);
}

@media (max-width: 992px) {
  .contact__bg__overlay {
    height: 100%;
  }
}
@media (max-width: 575px) {
  .contact__bg__overlay {
    height: 100%;
  }
}
.social__box li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  position: relative;
  background-color: #fff;
}

.contact__form__wrapper {
  background-color: #DAE4F1;
}

.content__wrapper .check__list li {
  padding-left: 2rem;
  position: relative;
}

.content__wrapper .check__list li::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 512 512'%3E%3Cpath fill='rgb(20, 115, 230)' d='M17.47 250.9C88.82 328.1 158 397.6 224.5 485.5c72.3-143.8 146.3-288.1 268.4-444.37L460 26.06C356.9 135.4 276.8 238.9 207.2 361.9c-48.4-43.6-126.62-105.3-174.38-137z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1.3rem;
  width: 1.3rem;
  height: 1.3rem;
}

.table__wrapper {
  border: 1px solid rgba(56, 56, 56, 0.2941176471);
  border-radius: 1rem;
  overflow: hidden;
}
.table__wrapper .tb__header {
  background-color: #383838;
  color: var(--white);
  border-radius: 1rem;
}
.table__wrapper .tb__header .col {
  color: var(--white);
}
.table__wrapper .col {
  width: 11%;
  padding: 1rem 0;
  white-space: nowrap;
  flex: auto;
  font-weight: 600;
  font-size: 1.125rem;
  color: #383838;
}
.table__wrapper .col:nth-child(1) {
  padding-left: 2rem;
}
.table__wrapper .col:nth-child(8) {
  width: 23%;
  text-align: center;
}
.table__wrapper .col .tb__btn {
  padding: 0.25rem 1rem;
  color: var(--dark);
  gap: 0 1rem;
}
.table__wrapper .col .tb__btn .icon {
  border: 1px solid #F6770E;
  padding: 0.01rem 0.75rem 0.15rem 0.75rem;
  border-radius: 2rem;
}

@media (max-width: 991px) {
  .table__wrapper {
    border: 0;
  }
  .table__wrapper .row__item {
    border: 1px solid rgba(56, 56, 56, 0.2941176471);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  .table__wrapper .row__item .col {
    padding: 1rem 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .table__wrapper .row__item .col::before {
    content: attr(data-label);
    color: #9a9a9a;
    text-transform: uppercase;
  }
  .table__wrapper .row__item .col:nth-child(1) {
    background-color: var(--dark);
    color: var(--white);
  }
  .table__wrapper .row__item .col:nth-child(8) {
    display: none;
  }
  .table__wrapper .row__item .col:nth-child(7) {
    border-top: 2px solid #eee;
  }
}
@media (max-width: 575px) {
  .table__wrapper .row__item .col {
    padding: 0.75rem 1.5rem;
  }
}
table {
  width: 100%;
  text-align: center;
}

table, .table__roll {
  background-color: #383838;
}

table, tr, th {
  padding: 2rem 1rem;
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  background-color: #383838;
  white-space: nowrap;
}

table, tr, td {
  padding: 2rem 1rem;
  font-weight: 600;
  font-size: 22px;
  color: #383838;
  background-color: var(--white);
  white-space: nowrap;
}

/*---------- Search Wrapper Start ---------*/
.search__wrapper {
  background-color: #ededed;
}
.search__wrapper .form__wrapp {
  display: flex;
  flex-direction: row;
  border: 1px solid #707070;
  background-color: var(--white);
  padding: 0.25rem;
  border-radius: 4rem;
  padding-left: 1rem;
  overflow: hidden;
}
.search__wrapper .form__wrapp .form-control, .search__wrapper .form__wrapp .form-select {
  height: 4.5rem;
  border: 0;
  font-size: 1.125rem;
  font-family: var(--second-font);
}
.search__wrapper .form__wrapp .form-control::placeholder, .search__wrapper .form__wrapp .form-select::placeholder {
  color: #403f3f !important;
}
.search__wrapper .form__wrapp .form-control:focus, .search__wrapper .form__wrapp .form-select:focus {
  box-shadow: none;
}
.search__wrapper .form__wrapp .form-select {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEwIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik01LjAzNjgzIDYuOTk5NzNMMC42NTE1NTEgMS4wMzk5Mkw5LjMxMTQ0IDAuOTYwMDQ3TDUuMDM2ODMgNi45OTk3M1oiIGZpbGw9IiNGRjkwMDAiLz4KPC9zdmc+Cg==");
  background-size: 12px 10px;
  cursor: pointer;
}
.search__wrapper .form__wrapp .select {
  width: 10rem;
  position: relative;
}
.search__wrapper .form__wrapp .select::before {
  content: "";
  width: 1px;
  height: 60%;
  display: block;
  background-color: #707070;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.search__wrapper .form__wrapp .btn-primary {
  border-radius: 4rem;
  height: 4.5rem;
  min-width: 14rem;
}

/*------ Price Wrapper Styles --------------*/
.price__wrapper {
  padding: 1.5rem 0;
}
.price__wrapper .card {
  background: #FCFCFC 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 3px rgba(64, 64, 64, 0.1333333333);
  border: 0.6000000238px solid #DEDEDE;
  display: block;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 1.125rem;
  font-weight: bold;
  font-family: var(--second-font);
  position: relative;
  z-index: 21;
  transition: all 0.3s ease-in-out;
}
.price__wrapper .card .name {
  color: var(--brand);
  padding-right: 0.5rem;
}
.price__wrapper .card .price {
  color: #454344;
}
.price__wrapper .card:hover {
  box-shadow: 0 2.8px 2.2px 0 rgba(0, 0, 0, 0.02), 0 6.7px 5.3px 0 rgba(0, 0, 0, 0.03), 0 12.5px 10px 0 rgba(0, 0, 0, 0.04), 0 22.3px 17.9px 0 rgba(0, 0, 0, 0.05), 0 41.8px 33.4px 0 rgba(0, 0, 0, 0.05), 0 100px 80px 0 rgba(0, 0, 0, 0.07);
}
.price__wrapper .container {
  position: relative;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.price__wrapper .container::before {
  content: "";
  width: 100%;
  height: 5rem;
  border: 0.125rem solid #ededed;
  border-radius: 1rem;
  display: block;
  position: absolute;
  top: -2rem;
  left: 0%;
  z-index: 0;
}
.price__wrapper .container::after {
  content: "";
  width: 90%;
  height: 5rem;
  background-color: #f5f8fa;
  border-radius: 1rem;
  display: block;
  position: absolute;
  top: 0rem;
  left: 5%;
  z-index: 0;
}

/*------ Plan Wrapper Styles --------------*/
.plan__wrapper {
  position: relative;
}
.plan__wrapper .container {
  position: relative;
  z-index: 11;
}
.plan__wrapper .h5 {
  color: #9D9D9D;
}
.plan__wrapper .card {
  border: 1px solid #B5B5B5;
  border-radius: 1.875rem;
  padding: 2.5rem 3rem;
}
.plan__wrapper .card .icon {
  background-color: var(--brand);
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
  margin-right: 1rem;
}
.plan__wrapper .card .icon img {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--white);
}
.plan__wrapper .card .price__box {
  margin: 2rem 0 1.5rem 0;
}
.plan__wrapper .card .price__box .cur, .plan__wrapper .card .price__box .price {
  font-size: 4rem;
  line-height: 1;
  font-weight: 400;
  font-family: var(--second-font);
}
.plan__wrapper .card .price__box .cur {
  font-family: inherit;
  font-weight: 300;
}
.plan__wrapper .card .price__box .price {
  white-space: nowrap;
}
.plan__wrapper .card .price__box .price sub {
  font-size: 1.75rem;
  bottom: 0%;
}
.plan__wrapper .card .price__box .price .time {
  font-size: 1.125rem;
  padding-left: 0.12rem;
}
.plan__wrapper .card ul li {
  padding-left: 1.5rem;
  position: relative;
  font-family: var(--second-font);
}
.plan__wrapper .card ul li::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background-color: var(--brand);
  position: absolute;
  top: 0.25rem;
  left: 0%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZWNrIj48cG9seWxpbmUgcG9pbnRzPSIyMCA2IDkgMTcgNCAxMiI+PC9wb2x5bGluZT48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1rem 1rem;
}
.plan__wrapper .card ul li b {
  font-weight: 600;
}
.plan__wrapper .card ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.plan__wrapper .card .btn-outline-primary {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-color: var(--brand);
  padding: 0.65rem 2rem;
  border-radius: 0.5rem;
}
.plan__wrapper .card .btn-outline-primary:hover {
  background-color: var(--brand);
  color: var(--white);
}

.btn-primary.brand {
  background-color: var(--brand);
  border-radius: 0.45rem;
}

/*------ Assurance Wrapper Styles --------------*/
.assurance__wrapper .content {
  max-width: 18rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.assurance__wrapper .content .icon {
  width: 5.5rem;
  height: 5rem;
  border-radius: 0.65rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem auto;
}
.assurance__wrapper .content .icon img {
  width: 3rem;
  height: 3rem;
}
.assurance__wrapper .content .small {
  color: #464646;
}

/*------- Pertner Wrapper Styles --------*/
.partnerSlider .owl-item {
  padding: 1rem;
}
.partnerSlider .owl-item .items {
  padding: 0.5rem;
  background-color: #fff;
  min-height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.partnerSlider .owl-item .items img {
  max-height: 5rem;
}

@media (max-width: 1400px) {
  .header__wrapper .h2 {
    font-size: 1.35rem;
  }
  .header__wrapper .h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  .header__wrapper .h3 {
    font-size: 1.25rem;
  }
  .price__wrapper .card span {
    display: block;
  }
  .plan__wrapper .card {
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
  }
  .plan__wrapper .card .icon {
    background-color: var(--brand);
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    padding: 0.5rem;
    margin-right: 1rem;
  }
  .plan__wrapper .card .icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--white);
  }
  .plan__wrapper .card .price__box {
    margin: 2rem 0 1.5rem 0;
  }
  .plan__wrapper .card .price__box .cur, .plan__wrapper .card .price__box .price {
    font-size: 3rem;
  }
  .plan__wrapper .card .price__box .price sub {
    font-size: 1.5rem;
  }
  .plan__wrapper .card .price__box .price .time {
    font-size: 1.125rem;
  }
}
@media (max-width: 1200px) {
  .search__wrapper {
    background-color: var(--brand);
  }
  .search__wrapper .form__wrapp .form-control, .search__wrapper .form__wrapp .form-select {
    height: 3.5rem;
  }
  .search__wrapper .form__wrapp .btn-primary {
    height: 3.5rem;
    min-width: 14rem;
  }
  .plan__wrapper .card {
    border-radius: 1.15rem;
    padding: 2rem 1.5rem;
  }
  .plan__wrapper .card .icon {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0.5rem;
    margin-right: 1rem;
  }
  .plan__wrapper .card .icon svg {
    width: 2rem;
    height: 2rem;
  }
  .plan__wrapper .card .price__box .cur, .plan__wrapper .card .price__box .price {
    font-size: 2.75rem;
  }
  .plan__wrapper .card .price__box .price sub {
    font-size: 1.5rem;
  }
  .plan__wrapper .card .price__box .price .time {
    font-size: 1.125rem;
  }
}
@media (max-width: 576px) {
  html, body {
    overflow-x: hidden;
  }
  .header__wrapper .h1 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
  .search__wrapper {
    position: relative;
  }
  .search__wrapper .form__wrapp {
    position: relative;
    overflow: visible;
    margin-bottom: 3rem;
  }
  .search__wrapper .form__wrapp .form-control, .search__wrapper .form__wrapp .form-select {
    height: 3.5rem;
  }
  .search__wrapper .form__wrapp .form-select {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
  .search__wrapper .form__wrapp .btn-primary {
    height: 3rem;
    min-width: 14rem;
    position: absolute;
    bottom: -3.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.services__card {
  background: #F8F8F8;
}
.services__card .icon__box svg {
  width: 2.75rem;
  height: 2.75rem;
}
.services__card .icon__box svg path {
  transition: all 0.3s ease-in-out;
}
.services__card:hover .icon__box svg path {
  fill: var(--brand);
}

.servicesCarousel .owl-stage {
  display: flex;
}
.servicesCarousel .owl-stage .owl-item {
  display: flex;
}

.carousel__nav .owl-prev, .carousel__nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -3rem;
}
.carousel__nav .owl-prev svg, .carousel__nav .owl-next svg {
  width: 2.5rem;
  height: 2.5rem;
}
.carousel__nav .owl-prev svg path, .carousel__nav .owl-next svg path {
  fill: var(--dark);
  transition: all 0.3s ease-in-out;
}
.carousel__nav .owl-prev:hover svg path, .carousel__nav .owl-prev:focus svg path, .carousel__nav .owl-next:hover svg path, .carousel__nav .owl-next:focus svg path {
  fill: var(--brand);
}
.carousel__nav .owl-prev.disabled, .carousel__nav .owl-next.disabled {
  opacity: 0.2;
}
.carousel__nav .owl-next {
  left: auto;
  right: -3rem;
}

@media (max-width: 575px) {
  .carousel__nav .owl-nav {
    text-align: center;
    padding-top: 1rem;
  }
  .carousel__nav .owl-prev, .carousel__nav .owl-next {
    position: static;
    transform: none;
  }
}
/*----- Domain Search Page Styles ------------*/
.domain__search .form-control {
  font-size: 1.25rem;
  padding: 1.25rem 2rem;
}
.domain__search .form-control::placeholder {
  color: #aaa;
}
.domain__search .btn-primary {
  font-size: 1.25rem;
  font-weight: 600;
  width: 14rem;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .domain__search {
    padding: 0.35rem;
    background-color: var(--white);
  }
  .domain__search .form-control {
    padding: 1rem 2rem;
  }
  .domain__search .btn-primary {
    margin: 0%;
    width: 12rem;
  }
}
.cms__wrapper h2 {
  font-weight: 700;
  margin-top: 4rem;
}
.cms__wrapper h3 {
  font-weight: 700;
  margin-top: 2rem;
}

.header__wrapper .price___wrapper .main__card {
  border: 1px solid white;
}

.choose__wrapper .in__card {
  background-color: #f9f9f9;
  transition: 0.3s ease-in-out;
}
.choose__wrapper .in__card:hover {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1490196078);
  transition: 0.3s ease-in-out;
}

.content__wrapper .service__card {
  border: 1px solid rgba(43, 37, 29, 0.22);
}

@media (max-width: 575px) {
  .auto__wrapper {
    overflow-x: auto;
  }
}
@media (max-width: 575px) {
  .auto__wrapper .row {
    flex-direction: row;
    justify-content: flex-start !important;
    flex-wrap: nowrap;
    margin-bottom: 1rem;
  }
}
.access__card {
  background-color: rgba(246, 118, 14, 0.09);
  border: 1px solid rgba(112, 112, 112, 0.2941176471);
  transition: all 0.3s ease-in-out;
}
.access__card .hero__btn {
  min-width: 13rem;
}
.access__card .hero__btn:hover, .access__card .hero__btn:focus, .access__card .hero__btn:active {
  background-color: var(--yellow);
  color: var(--white);
  border: 1px solid var(--yellow);
}
.access__card:hover {
  background-color: rgba(246, 118, 14, 0.15);
  transform: translateY(-0.5rem);
  border-color: transparent;
}