body {
	overflow-x: hidden;
}

.header {
	position: relative;
    top: 0;
    z-index: 1000;
    border-top: 1px
    solid #065599;
    border-bottom: 1px solid #065599;
    padding: 15px 0;
    background: rgba(255,255,255,0.4);
    backdrop-filter: saturate(180%) blur(10px);
}

.logo {
	width: 50%;
}

.main-div {
	margin: 0 auto;
}

.main-text {
	font-size: 1.5rem;
	color: #707070;
}

.cust-input {
	border: 1px solid #DF5715!important;
    border-radius: 7px!important;
}

.color-text {
	color: #DF5715;
}

.footer-wrapper {
	background-color: #8BBEEA;
    padding: 20px 0;
    margin-top: 100px;
}

.footer-img {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}

input[type="range"] {
  -webkit-appearance: none;
  background: rgba(0, 255, 255, 0.6);
  border: 1px solid #DF5715;
  border-radius: 5px;
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Input Thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #DF5715;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ff4500;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ff4500;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #ff0200;
}

input[type="range"]::-moz-range-thumb:hover {
  background: #ff0200;
}

input[type="range"]::-ms-thumb:hover {
  background: #ff0200;
}

/* Input Track */
input[type=range]::-webkit-slider-runnable-track  {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type=range]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type="range"]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}