@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200;400&display=swap');
html {
  font-family: 'Karla', sans-serif;
}
a {
  text-decoration: none !important
}
.card-margin-header{margin-top:-80px}
body {
  margin: 0;
  font-family: 'Karla', sans-serif !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}
.sidebar .list-group-item .badge {
  color: #fff;
}
.btn-outline-primary {
  color: #0F1BA7;
  border-color: #0F1BA7;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #0F1BA7;
  border-color: #0F1BA7;
}
.domain-search h1 {
  color: #0F1BA7;
  font-weight: 900
}
header.header {
  background-image: linear-gradient(45deg, #15095e, #1e4dce);
  color: white;
}
.navbar-top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  background: linear-gradient(90deg, #100746 0%, #0e1564 100%);
}
header.header .navbar a {
  color: #fff;
}
.center-panel {
  width: 100px;
  background-color: white;
}
#order-standard_cart .view-cart-items-header {
  background-color: #1928c5;
}
.header .navbar .dropdown-item a {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.sidebar .list-group-item.active, .sidebar .list-group-item.active:focus, .sidebar .list-group-item.active:hover {
  background-color: #0a076a;
  border-color: #0a076a;
}
.home-domain-search .tld-logos {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.5em;
    color: #0f47eb;
    font-weight: 900;
}
.footer {
  margin: 0;
  padding: 50px 0 80px;
  background-color: #100746;
  color: #eee;
  font-size: .9rem;
}
footer.footer {
  margin: 0;
  padding: 50px 0 20px;
  background-color: #100746;
  color: #eee;
  font-size: .9rem
}
.footer-icons {
  margin-top: 30px;
  border-top-width: 1px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top-color: rgba(30, 115, 190, 0.07);
  border-top-style: solid
}
.footer-copyright {
  margin-bottom: 30px;
  border-top-width: 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top-color: rgba(26, 114, 191, 0.52);
  border-top-style: dotted;
}
.footer-menu h3 {
  color: #99CCFF;
  text-transform: uppercase;
  font-size: 1rem;
}
#footer-menu a, #footer-menu ul, #footer-menu li {
  color: white;
  display: block;
  list-style-type: none;
  padding: 2px 0px;
  text-decoration: none;
}
.btn-primary {
  color: #fff;
  background-color: #0809cf;
  border-color: #3a2ee1;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0a076a;
  border-color: #3a2ee1;
}
.btn-primary:active {
  background-color: #110BC0;
}
.navbar {}
header.header .navbar a {
  color: #fff;
}
.dropdown-item {
  color: #212529 !important;
}
header.header .main-navbar-wrapper .navbar-collapse {
    padding: 15px 0px 15px 0px;
}
.navbar-light {
  background: linear-gradient(90deg, #100746 0%, #0e1564 100%);
}
.main-navbar-wrapper {
  background: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
}
.home-domain-search {
 background-image:url("../images/photorealistic-style-clouds.jpg"); background-repeat: no-repeat; background-position: center; background-size: cover; background-color: white;
}
/* RESET */
* {
  box-sizing: border-box;
}
/* Wrapper */
.video-circle-wrapper {
  width: 180px;
  height: 180px;
  margin: 10px auto;
  position: relative;
}
/* Button */
.video-circle-btn {
  width: 180px;
  height: 180px;
  position: relative;
  display: block;
  cursor: pointer;
}
/* Animated rings */
.video-circle-btn::before, .video-circle-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(0, 25, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2.2s infinite ease-out;
  z-index: 1;
}
.video-circle-btn::after {
  animation-delay: 1.1s;
}
@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}
/* Center play button */
.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: #0019ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 25, 255, 0.6);
  z-index: 3;
  transition: transform 0.3s ease;
}
.video-circle-btn:hover .inner-circle {
  transform: translate(-50%, -50%) scale(1.1);
}
/* Play icon */
.play-icon {
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
/* Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}
/* Modal content */
.video-modal-content {
  position: relative;
  width: 85%;
  max-width: 900px;
  margin: 80px auto;
  background: #000;
  border-radius: 10px;
}
/* Iframe */
.video-modal-content iframe {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  border: none;
}
/* Close button */
.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
.card {
  width: 100%;
  background: #fff;
  transition: .3s;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  cursor: pointer
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15)
}
.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(to right, rgba(169, 3, 41, 1) 0%, rgba(196, 72, 72, 1) 44%, rgba(170, 34, 56, 1) 100%);
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
  z-index: 10
}
.badge-yellow {
  background: linear-gradient(to right, #ffeb3b 0%, #fdd835 44%, #fbc02d 100%);
  color: black;
}
.tilt {
  overflow: hidden
}
.img {
  height: 200px;
  overflow: hidden
}
.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}
.card:hover .img img {
  transform: scale(1.05)
}
.info {
  padding: 20px
}
.cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #71717A;
  margin-bottom: 5px
}
.title {
  font-size: 18px;
  font-weight: 700;
  color: #18181B;
  margin: 0 0 10px;
  letter-spacing: -.5px
}
.desc {
  font-size: 13px;
  color: #52525B;
  line-height: 1.4;
  margin-bottom: 12px
}
.feats {
  display: flex;
  gap: 6px;
  margin-bottom: 15px
}
.feat {
  font-size: 10px;
  background: #F4F4F5;
  color: #71717A;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 500
}
.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px
}
.price {
  display: flex;
  flex-direction: column
}
.old {
  font-size: 13px;
  text-decoration: line-through;
  color: #A1A1AA;
  margin-bottom: 2px
}
.new {
  font-size: 20px;
  font-weight: 700;
  color: #18181B
}
.icon {
  transition: transform .3s
}
.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F4F4F5;
  padding-top: 12px
}
.rating {
  display: flex;
  align-items: center;
  gap: 2px
}
.rcount {
  margin-left: 6px;
  font-size: 11px;
  color: #71717A
}
.stock {
  font-size: 11px;
  font-weight: 600;
  color: #22C55E
}
@media (max-width:400px) {
  .card {
    width: 90%
  }
  .title {
    font-size: 16px
  }
  .img {
    height: 180px
  }
  .bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }
  .price {
    margin-bottom: 5px
  }
  .btn {
    width: 100%;
    justify-content: center
  }
}
.card .btn {
  background: linear-gradient(45deg, #15095e, #1e4dce);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: .3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .1)
}
.card .btn:hover {
  background: linear-gradient(45deg, #27272A, #3F3F46);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .15)
}
.card .btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
  transition: .5s
}
.card .btn:hover:before {
  left: 100%
}
.card .btn:hover .icon {
  transform: rotate(-10deg) scale(1.1)
}
.course-card {
  border-radius: 5px;
  padding: 40px 20px;
  background: #fff;
  transition: 0.3s;
}
.course-card:hover {
  transform: translateY(-5px);
}
.course-icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid #0011c0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
  color: #0500c0;
  font-size: 45px;
}
.social-icons i {
  font-size: 28px;
  color: #00c037;
  margin-right: 18px;
  cursor: pointer;
}
.social-icons i:hover {
  opacity: 0.7;
}
.feature-item img {
  width: 60px;
}
.feature-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #100746;
}
.feature-text {
  margin-left: 0 !important;
}