/*
Theme Name: Startupx Child
Theme URI: https://www.codegearthemes.com/startupx
Description: Child theme for Startupx
Author: CodeGearThemes
Author URI: https://www.codegearthemes.com
Template: startupx
Version: 1.0.0
*/

.inner-section-quote-form:after {
    content: "";
    position: absolute;
    height: 200px;
    width: 30px;
    background: red;
    top: -50px;
    left: 0px;
    transform: rotate(45deg);
    transform-origin: center;
    margin-left: 30px;
}

.inner-section-quote-form form p{
    margin: 0;
    color: #fff;
}

.inner-section-quote-form form input {
    background: none;
    border-left: 0;
    border-radius: 0;
    border-top: 0;
    border-right: 0;
    padding: 0;
    color: #fff;
    margin-bottom: 30px;
    border-color: #fff;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
}

.inner-section-quote-form form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #20B824 inset;
}

.inner-section-quote-form form input[type="date"] {
    margin-bottom: 5px;
}

.inner-section-quote-form form input::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.inner-section-quote-form form input[type="submit"] {
    padding: 20px 26px;
    background: #ff5029;
    border-radius: 30px;
    width: 100%;
    font-weight: bold;
    letter-spacing: .5px;
    border: 1px solid #ff5029;
	margin-top: 30px;
}

.inner-section-quote-form form input[type="submit"]:hover{
	background:#3B3B3C;
	color:#fff;
}

.section-steps {
    position: relative;
}

.section-steps:after {
    content: "";
    position: absolute;
    height: calc( 100% - 150px);
    width: 2px;
    background: #ff5029;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-steps .step-1,
.section-steps .step-2,
.section-steps .step-3 {
    position: relative;
    padding-left: 60px;
}

.section-steps .step-1:before,
.section-steps .step-2:before,
.section-steps .step-3:before {
   
    left: -50px;
    position: absolute;
    top: 45px;
    width: 80px;
    height: 80px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    background: #ff5029;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    z-index: 2;
}

.section-steps .step-1:before{
    content: "1";
}

.section-steps .step-2:before{
    content: "2";
}

.section-steps .step-3:before{
    content: "3"; 
}

.section-steps .step-3:after {
    content: "";
    width: 40px;
    height: 100%;
    background: #20B824;
    position: absolute;
    top: 50px;
    left: -30px;
    z-index:1;
}


