/*Autonomous Services page */
.half-fluid .left-half,
.half-fluid .right-half {
    left: 50%;
    margin-left: -50vw;
    max-width: 100vw;
    position: relative;
    right: 50%;
    width: 100vw;
    padding: 0px;
}

.half-fluid .image {
    background-image: url("../images/contact.jpg");
    background-size: cover;
    background-position: center;
    min-height: 400px;
    height: 100%;
}
.social-icon1{color: rgb(22, 22, 22);box-shadow: -1px 1px 20px 4px #0000001a;margin: 20px 0;padding: 20px;border-radius: 7px;font-size: 20px;background: white;}
.social-icon1 li{list-style: none;display: flex;gap: 10px;align-items: center;margin: 14px 0;}
.social-icon1 li a{
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgb(8, 8, 8);
    text-decoration: none;
}

.subtitle{margin: 23px 0;background: rgb(13 110 253 / 10%);display: flex;align-items: center;justify-content: space-between;padding: 0 20px;}
.subtitle h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: auto;
    text-align: left;
    white-space: nowrap;
    padding-bottom: 13px;
    position: relative;
}

.subtitle h2:before {
    background-color: #0dcaf0;
    content: '';
    display: block;
    height: 3px;
    width: 90px;
    margin-bottom: 5px;
}

.subtitle h2:after {
    background-color: #0dcaf0;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 90px;
    margin-bottom: 0;
}
.bggrey{
    background: rgb(13 110 253 / 4%);
}
.imga{

margin: 9px;
}
.imga img{
    
width: 85px;
    
height: 85px;
    
margin: 9px;
}
.contactform{box-shadow: 1px 10px 20px 4px #0000001a;padding: 21px;border-radius: 8px;background: white;}
.contactform .input-group{

border: 1px solid #cdcdcd;

border-radius: 10px;
}
.contactform .input-group input {
    line-height: 1.5;
    color: #55595c;
    background-color: white;
    background-clip: padding-box;
    border: 0px solid #cdcdcd;
    border-radius: 9px;
}
.contactform .input-group .input-group-text{
    padding: 1rem 1rem;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2;
    color: #084298;
    text-align: center;
    white-space: nowrap;
    background-color: rgb(13 110 253 / 13%);
    border: 0px solid rgba(13, 110, 253, 0.25);
}

.send {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    padding: 14px 45px;
    border-radius: 4px;
    color: white;
    background: #2e3092;
    transition: background 0.3s;
    border: 0px;
  }
  
  .send svg {
    flex-shrink: 0;
    margin-left: 5px;
    fill: currentColor;
  }
  
  .send:hover {
    background: #0ab8f6;
  }
@media screen and (max-width: 768px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .services h2 {
        font-size: 34px;
        margin-bottom: 5px;
    }

    .services .text-services {
        font-size: 14px;
        line-height: 1.7;
    }

    .cards {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }
}


@media (min-width: 992px) {
    .half-fluid .left-half {
        padding-left: 0 !important;
        position: absolute;
        left: 0;
        right: 50%;
        margin-left: auto;
        width: auto;
    }

    .half-fluid .right-half {
        padding-right: 0 !important;
        position: absolute;
        right: 0;
        left: 50%;
        margin-left: auto;
        width: auto;
    }
}