/* Web Titles */

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    row-gap: 25px;
    padding-bottom: 25px;
}

.title h2 {line-height: 1.6;}

/* Web Btns */

.web-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.web-btn a , .web-btn input {
    position: relative;
    overflow: hidden;
    padding: 10px 30px;
    background-color: var(--primary-color);
}

.web-btn a span{
    color: var(--white-color);
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.web-btn a::before, .web-btn a:after{
    position: absolute;
    content: '';
    width: 50%;
    height: 100%;
    top: 0;
    z-index: 0;
    background-color: var(--btn-bg);
    transition: all .3s ease-in-out;
}

.web-btn a::before{
    left: 0;
    transform: translateX(-101%);
}
.web-btn a::after{
    right: 0;
    transform: translateX(101%);
}
.web-btn a:hover::before {
    transform: translateX(0%);
}
.web-btn a:hover:after {
    transform: translateX(0%);
}

.web-btn a span i{
    transition: all .3s ease-in-out;
}

.web-btn a:hover span i {
    padding-left: 10px;
}

.web-btn input::before, .web-btn input:after{
    position: absolute;
    content: '';
    width: 50%;
    height: 100%;
    top: 0;
    z-index: 0;
    background-color: var(--btn-bg);
    transition: all .3s ease-in-out;
}

.web-btn input::before{
    left: 0;
    transform: translateX(-101%);
}
.web-btn input::after{
    right: 0;
    transform: translateX(101%);
}
.web-btn input:hover::before {
    transform: translateX(0%);
}
.web-btn input:hover:after {
    transform: translateX(0%);
}


.wpcf7-form span {
    width: 100%;
}

.wpcf7-form span input,textarea {
    border: 1px solid rgb(197 197 197);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
}

.wpcf7-form span input::placeholder,.wpcf7-form span textarea::placeholder {
    color: var(--primary-color);
}

.wpcf7-form p label {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.wpcf7-form span textarea {
    height: 100px;
    border: 1px solid rgb(197 197 197);
}

.wpcf7-form span input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    accent-color: var(--primary-color);
    border-radius: 0px;
    outline: none;
}

.wpcf7-form .web-btn input[type="submit"]{
    color: var(--white-color);
}


.web-btn a button {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white-color);
    transition: all .5s ease;
    position: relative;
    z-index: 1;
}









