body {
    overflow-x: hidden;
    /* height: 400vh; */
}

h1 {
    font-size: 36px !important;
}

.padding-div {
    overflow-x: hidden;
    padding: 0 3.5rem;
}

.banner {
    background-image: url('../img/services/breadcrumb.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;

    height: 400px;
    position: relative;

}

.banner > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.banner .my-breadcrumb {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    border : 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 15px 20px;
}

.banner .my-breadcrumb li {
    position: relative;
}

.banner .my-breadcrumb li:not(:first-child)::before {
    content: '>';
    /* margin-right: 20px; */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    font-size: 22px;
}

.banner .my-breadcrumb li a {
    color: var(--primary-color);
    text-decoration: none;
}



.get-container {
    display: flex;
    gap: 20px;
    margin: 60px 0;
}

.get-container > div {
    background-color: #f6f3fe;
    /* gap: 20px; */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 14px -5px #606060;
    border: 2px solid var(--primary-color);
}

.get-container > .get-quote {
    flex-basis: 60%;
    position: relative;
}

.get-container > .get-in-touch {
    flex-basis: 40%;
}



.get-quote .rocket-img {
    position: absolute;
    right: 0;
    top: -10%;
    z-index: 1;
    animation: rocket 2s ease-in-out infinite alternate;
}

@keyframes rocket {
    0% {
        transform: translateY(15px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.get-quote form {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.get-quote form > div {
    margin: 12px 0;
}

.get-quote form > div:first-child {
    display: flex;
    gap: 10px;
}

.get-quote form > div:first-child > div {
    flex-basis: 50%;
}

.get-quote form label {
    font-size: 15px;
}

.get-quote form input, .get-quote form textarea {
    border: 1px solid var(--primary-color);
}




.get-in-touch .contact-info {
    margin: 20px 0 30px;
}

.get-in-touch .contact-info .info {
    padding: 15px 0;
    border-bottom: 1px solid #000;
}

.get-in-touch .contact-info .info .icons-span {
    color: #fff;
    background-color: #795aef;
    width: 40px;
    height: 40px;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.get-in-touch iframe {
    width: 100%;
    height: 20rem;
}









footer {
    margin-top: 200px;
}



@media (max-width: 1024px) {

    .get-container {
        flex-direction: column;
    }

    footer {
        margin-top: 120px;
    }
}

@media (max-width: 768px) {
    .banner > img {
        display: none;
    }
}

@media (max-width: 425px) {

    .padding-div {
        /* padding: 0 10px !important; */
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .get-quote .rocket-img {
        top: -18%;
    }

    .get-quote form > div:first-child {
        flex-direction: column;
    }
}

@media (max-width: 375px) {
    .banner .my-breadcrumb {
        flex-direction: column;
    }

    .banner .my-breadcrumb li:not(:first-child)::before {
        display: none;
    }
}