/* Contact Title */
.contact-hero-section {
    background: url('../img/contact-banner-curve.png');
    min-height: 85vh;
    background-size: cover;

}

.contact-title {
    padding: 50px 0 50px;
    background: transparent;
    position: relative;
    margin-top: -119px;
    /*clip-path: polygon(0% 0%, 44% 0%, 54% 10%, 101% 10%, 100% 100%, 76% 100%, 64% 91%, 0% 91%);*/
}

.contact-title::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 30px;
    left: 0;
    top: 0;
    background: url('../img/Subtract.png') no-repeat;
}

.contact-title h1 {
    color: #303030;
    font-size: 96px;
    font-weight: 500;
    line-height: 1;
    /*position: absolute;
    top:-75px;*/

}

/* Contact Form*/
.contact-main {
    /*background: #303030;*/
    padding: 50px 0 115px;
    background: url("../img/contact-bg-curve.png") no-repeat;
    margin-bottom: 100px;
}

/*.contact-main .row {
    width: 75%;
}*/

.contact-main p {
    color: #FFF;
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    width: 80%;
    /*margin: 0 auto;*/
    line-height: 1.35;
}

.contact-form {
    padding-top: 60px;
}

.contact-main .form-control {
    line-height: 1;
    text-align: center;
    height: 50px;
}

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

textarea.form-control {
    min-height: 150px;
    height: 150px;
}

.contact-form button {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #FBB030;
    background: rgba(251, 176, 48, 0.60);
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.contact-form button:hover {
    border-radius: 10px;
    border: 2px solid #FBB030;
    background: linear-gradient(90deg, #FBB030 109.05%, rgba(251, 176, 48, 0.60) 114.79%);
}

.btn-check:focus + .btn, .btn:focus {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: none;
    outline: 0;
    box-shadow: none;
}

label {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px !important;
}

.form-button button {
    border-radius: 10px;
    border: 2px solid #009D9D;
    background: rgba(0, 157, 157, 0.60);
    width: 250px;
    color: #FFF;
    text-align: center;
    font-family: var(--primary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

label.error {
    font-size: 14px;
    color: #fbb030;
    margin-top: 5px;
    margin-bottom: 0 !important;
}

.product-btn.active {
    background-color: #fbb030;
    border-color: #fbb030;
    color: white;
}

.product-label-box {
    width: 25%;
    margin: 0 auto;
}

.product-label-box label {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.product-label-box input {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* The container */
.product-label-box label {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.product-label-box label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.product-label-box label:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.product-label-box label input:checked ~ .checkmark {
    background-color: #009d9d;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.product-label-box label input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.product-label-box label .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}