        .main-services > .row > .col {
    margin-bottom: 24px;
}

.main-services .tp-post__thumbnail a img {
    aspect-ratio: 3/2;
    border-radius: 12px;
    object-fit: cover;
}

.main-services .tp-col__image {
    height: fit-content;
}

.main-services .tp-col__content {
    height: 100%;
}

.main-services .tp-post__content {
    padding-top: 15px;
}

.icon-services {
    width: 72px;
    min-width: 72px;
    height: 72px;
    background-color: var(--tp-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.icon-services img {
    width: 32px;
    height: 32px;
}


.main-services .tp-post-item {
    position: relative;
    height: 100%;
    background-color: var(--tp-bg-section);
    padding: 20px;
    border-radius: 12px;
    margin: 0;
    transition: all .4s;
    z-index: 1;
}

.main-services .tp-post-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 100%;
    background-color: var(--tp-primary);
    border-radius: 12px;
    transform-origin: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
    z-index: -1;
}

.main-services .tp-post-item:hover::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: all .4s;
}

.main-services .tp-title {
    margin-bottom: 10px;
}

.main-services .tp-post-item:hover .icon-services {
    background-color: #000;
    transition: all .4s;
}

.main-services .tp-post-item:hover .icon-services img {
    animation: jello 1s;
}

.main-services .tp-post-item:hover .tp-title a,
.main-services .tp-post-item:hover .tp-body{
    color: #fff !important;
    transition: all .4s;
}

.main-services .tp-btn_c:has(a) {
    margin-top: 120px;
}
.main-services .tp-btn_c a {
    width: 100%;
    border-radius: 8px;
    color: #000;
    gap: 6px;
    background-color: #fff;
}

.main-services .tp-btn_c a:hover {
    color: #fff;
    transition: all .4s;
}

.main-services .tp-btn_c a::before {
    background-color: #000;
}

.main-services .tp-btn_c a::after {
    background-color: #0b0d174d;
}



.services-contact__info {
    border-top: 1px solid #ffffff1a;
    border-bottom: 1px solid #ffffff1a;
}
.services-contact__info-office .tp-feature__heading {
    margin-bottom: 30px;
}

.services-contact__info-office:first-child {
    border-right: 1px solid #ffffff1a;
}

.form-services {
    margin-left: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--tp-primary);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 60px 30px;
}

.form-services form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-services form > .bp_form_field {
    width: calc(50% - 10px);
}


.form-services form input.form-control,
.form-services form textarea.form-control{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    line-height: 1;
    padding: 20px 25px;
    width: 100%;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.7);
    outline: none;
    box-shadow: none !important;
    transition: all .4s;
}

.form-services form textarea.form-control {
    min-height: 150px;
}

.form-services form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-services form input.form-control:hover,
.form-services form textarea.form-control:hover {
    border-color: #fff;
    transition: all .4s;
}

.form-services .tp-btn-submit {
    width: 100% !important;
}

.form-services .tp-btn-submit button {
    position: relative;
    width: 100%;
    padding: 16px 20px;
    background-color: var(--tp-primary) !important;
    border-radius: 6px;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 600;
    transform: none !important;
    overflow: hidden;
    z-index: 1;
}

.form-services .tp-btn-submit button::before {
    content: "";
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.form-services .tp-btn-submit button::after {
    content: "";
    background-color: rgba(11, 13, 23, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
}

.form-services .tp-btn-submit button i {
    transform: rotate(-45deg);
}

.form-services .tp-btn-submit button:hover::before {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
    transition-delay: 200ms;
}

.form-services .tp-btn-submit button:hover::after {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}


@media (max-width: 1200px) {
    .form-services form > .bp_form_field {
        width: 100%;
    }
    
    .services-contact__info-office:first-child {
        border-right: none;
    }
}

@media (max-width: 991px) {
    .form-services {
        margin-left: 0;
        padding: 30px;
    }
    
    .main-services .tp-post-item:hover .tp-title a, .main-services .tp-post-item:hover .tp-body {
        color: initial !important;
        transition: all .4s;
    }
    
    .main-services .tp-btn_c:has(a) {
        margin-top: 30px;
    }
}
