ul, li{
	margin: 0;
	padding: 0;
	list-style: none;
}

*{
	font-family: var(--font-theme);
}

/* Domain Search Box Styles */
.domain-search-box {
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.domain-search-box:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.domain-search-box .form-control {
    height: 55px;
    border-radius: 6px 0 0 6px !important;
    border: 1px solid #e0e0e0;
    padding-left: 20px;
    font-size: 16px;
}

.domain-search-box .form-select {
    height: 55px;
    border-radius: 0 6px 6px 0 !important;
    border: 1px solid #e0e0e0;
    border-left: none;
    background-color: #f8f9fa;
    cursor: pointer;
}

.domain-search-box .btn-primary {
    height: 55px;
    border-radius: 6px;
    font-weight: 600;
    background: var(--primary-color);
    border: none;
    transition: all 0.3s ease;
}

.domain-search-box .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.domain-search-box .form-control:focus, 
.domain-search-box .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.15);
}

a{
	text-decoration: none;
	color: unset;
}

h1, h2, h3, h4, h5, h6, p, a, span{
margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}
body{
	overflow-x: hidden;
}

.fit-content{
	width: fit-content;
}
body input:focus{
	outline: none;
	box-shadow: none;
}
body .form-control:focus{
	outline: none;
	box-shadow: none;
}


.read-more-btn {
	font-family: var(--font-theme-two);
	font-weight: 600;
	font-size: 16px;
	color: var(--color-one);
}
  .read-more-btn i {
	vertical-align: middle;
	transition: all .3s ease-in-out;
	margin-left: 8px;
  }
  .read-more-btn:hover i{
	transform: translateX(3px);
	margin-left: 12px;
  }
  .read-more-btn:hover, .read-more-btn:hover i{
	color: var(--color-one);
  }

  .feature_image{
  background-image: url(../images/feature_card.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  border-radius: 12px;
  }

  .feature_image.bg1{
	background-color: #dddddd;
  }

  .feature_image.bg2 {
	background-color: rgba(0,0,0,.075);
}

.feature_image.bg3{
	background-color: #fff;
  }

  .feature_image img{
	position: absolute;
  	transition: all 0.5s ease-out;
  }



 .roundness{
	border-radius: 15px;
 }

 .bgone{
	background-color: #F8FAFF;
 }
 .bgtwo {
	background-color: #fff2e9;
}

.mix-dark{
	mix-blend-mode: darken;
}
