* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #939395;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
}

div,
ul,
ol,
li,
a,
span,
p,
h1,
h2,
h3,
h4,
h5,
h6,
label {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style-type: none;
    outline: none;
}

.form-control {
    background: transparent;
    height: auto;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #333;
}

.container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.inner-container {
    max-width: 830px;
    width: 100%;
    margin: 0 auto;
}

.text p {
    margin-bottom: 25px;
}

.main-sec {
    padding: 50px 0;
}

.main-sec .title {
    margin-bottom: 35px;
}

.orange {
    color: #f58127 !important;
}

.bg-green {
    background-color: #4dae83;
}

.bg-aqua {
    background-color: #2eb8c2;
}

.bg-blue {
    background-color: #2481c2;
}

.btn {
    border-color: #2481c2;
    background-color: #2481c2;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 25px;
    border: 1px solid transparent;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    color: #fff;
}

.btn:hover {
    background-color: #1d679b;
    border-color: #1d679b;
}

.active {
    display: block;
}

/* header css starts */
header {
    padding: 30px 0;
}

header .logo {
    max-width: 160px;
    width: 100%;
    display: inline-block;
}

header .logo img {
    width: 100%;
}

/* header css ends */
/* qa-form css starts */
.qa-form-wrap {
    max-width: 700px;
    width: 100%;
    margin: 0 auto 37px;
    padding: 33px 24px 31px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
}

.qa-form-wrap .slide-item.active {
    display: block;
}

.qa-form-wrap .slide-item {
    display: none;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.qa-form-wrap .slide-item>p {
    font-size: 20px;
    color: #333;
    font-weight: 700;
}

.qa-form-wrap .form-group {
    margin-bottom: 40px;
}

.qa-form-wrap .form-group-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
}

.qa-form-wrap label {
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-size: 18px;
}

.qa-form-wrap input,
.qa-form-wrap textarea,
.qa-form-wrap input:focus,
.qa-form-wrap textarea:focus {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 8px 15px;
    resize: none;
    font-size: 18px;
    font-weight: 600;
}

.qa-form-wrap input.form-control-range {
    box-shadow: none;
    padding: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.qa-form-wrap .total-amount {
    margin-bottom: 35px;
}

.progress {
    height: 12px;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.2);
    margin-bottom: 35px;
    border-radius: 50px;
}

.progress-bar {
    height: 100%;
    background-color: #2481c2;
    position: relative;
    border-radius: 50px;
    transition: 0.5s all ease;
}

.progress-bar:after {
    content: " ";
    width: 20px;
    height: 20px;
    border-radius: 50px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2481c2;
}

.range_labels {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 93%;
    font-size: 16px;
    padding-bottom: 2px;
    margin: 30px auto 20px;
}


.range-value {
    font-weight: bold;
    color: #2481c2;
}

input[type="range"] {
    width: 95%;
    margin: auto;
    padding: 0;
    height: 2px;
    background: transparent;
    position: relative;
    z-index: 2;
}

input[type="range"]:before {
    content: "";
    width: 2px;
    height: 20px;
    background: #979797;
    position: absolute;
    left: 0;
    top: -9px;
    margin: auto auto;
}

input[type="range"]:after {
    content: "";
    width: 2px;
    height: 20px;
    background: #979797;
    position: absolute;
    right: 0;
    top: -9px;
    margin: auto auto;
}

/* qa-form css ends */
/* make-value css starts */
.make-value .list,
.make-value li {
    list-style-type: disc;
    text-align: left;
}

.make-value li {
    width: 48%;
}

/* make-value css ends */
/* sell-where css starts */

.sell-where .single-card {
    position: relative;
    color: #fff;
    padding: 30px;
    height: 100%;
}

.sell-where .single-card:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    content: " ";
    pointer-events: none;
    height: 100%;
    width: 100%;
    background: linear-gradient(-45deg, #fff, #fff 49.9%, #000 50%, #000);
    opacity: .05;
    mix-blend-mode: multiply;
}

.cards-wrap .heading {
    font-size: 28px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.cards-wrap .heading span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-top: 5px;
}

.cards-wrap p {
    font-size: 16px;
    font-weight: 500;
}

/* sell-where css ends */
/* valuation-method css starts */
.box-wrap .single-box {
    position: relative;
    text-align: left;
    padding-left: 120px;
    padding-right: 15px;
    margin-bottom: 35px;
}

.box-wrap .box-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 82px;
    width: 82px;
    margin-bottom: 2rem;
    background: #fff;
    box-shadow: 20px 20px 38px rgba(208, 215, 226, .42);
    border-radius: 50%;
    color: #e0e4e9;
    font-size: 38px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-wrap .box-title {
    color: #2481c2;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 22px;
}

.box-wrap .box-text {
    font-size: 16px;
}

/* valuation-method css ends */
