/* Form CSS Starts */
form input[type="text"],
form input[type="email"],
form textarea
{
	width: 100%;
	box-sizing: border-box;
	font-size: 18px;
	background-color: #f3f3f3;
	border: 3px solid #f3f3f3;
	padding: 12px 20px;
	border-radius: 5px;
	transition: background-color 0.2s, border 0.2s;
	font-family: var(--cw-font-family);
}

form input[type="text"]:hover,
form input[type="email"]:hover,
form textarea:hover {
    background-color: #ededed;
    border: 3px solid #ededed;
}

form input[type="text"]:active,
form input[type="email"]:active,
form textarea:active,
form input[type="text"]:focus,
form input[type="number"]:focus,
form input[type="email"]:focus,
form textarea:focus {
	background-color: var(--cw-blue-light);
	border: 3px solid #89aac1;
	box-sizing: border-box;
}

form input[type="text"]::placeholder,
form input[type="email"]::placeholder,
form textarea::placeholder {
    color: #999999;
}

textarea {
    resize: vertical;
	height: 100%;
    width: 100%;
}

form {
    background-color: #fff;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0px 0px 14px 0px #00000052;
    padding: 30px 40px;
    box-sizing: border-box;
    height: max-content;
    margin-bottom: 60px;
}

form .input-class {
	margin-bottom: 14px;
}

[id|="err-ind"] {
	word-break: break-word;
	color: red;
	line-height: 1.2em;
	font-size: 13.33px;
	font-weight: 500;
	margin-top: 5px;
	margin-left: 22px;
	display: none;
	position: relative;
}

[id|="err-ind"]:before {
	content: "!";
	width: 16px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #f72020;
	border-radius: 50%;
	color: #fff;
	font-weight: bolder;
	margin-left: -20px;
	margin-top: -0.15px;
	font-size: 12px;
	position: absolute;
}

form .submit_button-sec {
	text-align: right;
	padding-top: 8px;
}

form #submit_button {
    border: none;
    padding-left: 60px;
    padding-right: 60px;
}

.form-head {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 24px;
    color: #7a7a7a;
}

svg.hand-show-icon {
    width: 50%;
    height: max-content;
    margin-top:  30px;
    transform: rotate(15deg);
}

svg.hand-show-icon  path {
    fill: #ffffff38;
}

.emptyTextField {
	border: 3px solid red !important;
}
/* Form CSS Ends */

/* Get Started Section CSS Starts */
.sec-get-started {
    background-color: #fff;
}

.sec-get-started .container {
    padding-top: 0px;
    padding-bottom: 0px;
}

.sec-get-started .content {
    display: flex;
    padding: 60px 50px 0 50px;
    position: relative;
    background-image: linear-gradient(242deg, hsl(205 62% 16% / 1) 0%, hsl(205 62% 28% / 1) 100%);
    border-radius: 24px;
    gap: 40px;
    overflow: hidden;
}

.sec-get-started .left {
    display: flex;
    width: 50%;
    flex-direction: column;
}

.sec-get-started .head .txt {
    color: #ffffff;
}

.sec-get-started .body {
	color: #ffffffd4;
	font-size: 24px;
	margin-top: 30px;
	font-weight: 400;
}

.sec-get-started .right {
    width: 50%;
}
/* Get Started Section CSS Ends */

/* (Responsive) Get Started Section CSS Starts */
@media only screen and (max-width:1080px) {
    .sec-get-started .content {
        gap: 30px;
    }
    #contact-form {
        padding: 26px 34px 32px;
    }
}
@media only screen and (max-width:980px) {
    .sec-get-started .content {
        flex-direction: column;
        padding: 40px 40px 56px;
        gap: 20px;
    }
    .sec-get-started .left {
        width: 100%;
    }
    .sec-get-started .head.lb .txt::after {
        
top: calc(100% + 14px);
    }
    .sec-get-started .body {
        margin-top:20px;
        margin-bottom: 20px;
    }
    .sec-get-started .right {
        max-width: 510px;
        width: 100%;
        height: max-content;
        margin: 0 auto;
    }
    svg.hand-show-icon {
        display: none;
    }
    #contact-form {
        margin-bottom: 0;
    }
}
@media only screen and (max-width:680px) {
    .sec-get-started .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sec-get-started .body {
        margin-top: 20px;
    }
}
@media only screen and (max-width:580px) {
    .sec-get-started .content {
        padding: 30px 20px 24px 20px;
    }
    .sec-get-started .left {
        padding: 0 20px;
        box-sizing: border-box;
    }
    .sec-get-started .body {
        font-size: 20px;
    }
    #contact-form {
        padding-left: 30px;
        padding-right: 30px;
    }
    #contact-form .submit_button-sec {
        text-align: center;
    }
}
@media only screen and (max-width:460px) {
    .sec-get-started .container {
        padding: 0;
    }
    .sec-get-started .content {
        border-radius: 0;
        padding: 40px 14px 54px;
    }
    .sec-get-started .left {
        padding: 0 6px;
    }
    #contact-form {
        padding: 24px 18px 26px;
        border-radius: 12px;
    }
    #contact-form .form-head  {
        font-size: 20px;
    }
    #contact-form .submit_button-sec {
        padding-top: 2px;
    }
}
/* (Responsive) Get Started Section CSS End */