/* ==== 
 ---------forms styles start ---------
 ==== */
 .contact-form-7 input {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border: none;
    outline: none;
    background-color: var(--white);
    border: 1px solid var(--theme-border-color);
    margin-bottom: 30px;
}
.contact-form-7 input::placeholder {
    color: var(--body-font-color);
}
.input::placeholder {
    color: var(--body-font-color);
}
.contact-form-7 .search {
    background-color: var(--white);
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: none;
}
.search form {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.search input {
    margin-top: 0px;
    display: block;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 30px;
    border: 2px solid var(--theme-border-color);
    outline: none;
    background-color: transparent;
    color: var(--body-font-color);
    font-weight: 500;
    border-radius: 40px;
}
.search input:focus {
    border: 2px solid var(--theme-primary-color);
}  
.search input::placeholder {
    font-weight: 500;
}
.search .button {
    border: none;
    outline: none;
    padding-left: 40px;
    padding-left: 40px;
    border-radius: 30px;
    margin-top: 40px;
    border: 0px solid transparent !important;
}
.search .button:hover {
    border: 0px solid transparent !important;
    outline: none !important;
    box-shadow: none !important;
    color: var(--white);
}
.search .close {
    position: absolute;
    top: 10%;
    right: 20%;
}
.search .close i {
    font-size: 40px;
}
.contact-form-7 select {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 30px;
    border-radius: 0px;
    padding: 7px 20px;
    padding-right: 60px;
    border: 1px solid var(--theme-border-color);
    outline: none;
    height: auto;
    line-height: inherit !important;
    font-size: 17px;
}
.contact-form-7 select::after {
    content: "\ea86";
    border: none;
    transform: rotate(0deg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    margin: 0px;
    height: auto;
    width: auto;
    font-size: 18px;
    color: var(--theme-primary-color);
}
.contact-form-7 select .open::after {
    transform: rotate(0deg);
}
.contact-form-7 textarea {
    width: 100%;
    display: block;
    padding: 12px 20px;
    border: 1px solid var(--theme-border-color);
    outline: none;
    height: 150px;
    resize: none;
    margin-bottom: 42px;
  }
.contact-form-7 textarea::placeholder {
    color: var(--body-font-color);
}
.contact-form-7 input[type="submit"],
.contact-form-7 button[type="submit"]{
    border: none;
    outline: none;
    display: block;
    width: 100%;
    background-color: var(--theme-primary-color);
    text-align: center;
    border-radius: 0px;
    padding: 20px 30px;
    color: var(--white);
    border-radius: 5px;
    transition: all 0.4s ease-in;
    
}
.contact-form-7 input[type="submit"]:hover,
.contact-form-7 button[type="submit"] {
    color: var(--white);
    background-color: var(--theme-secondary-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.contact-form-7 p {
    margin-bottom: 0;
}
/* ==== 
--------- (3.4) forms styles end ---------
==== */