/*--global---styles-------*/
.move-up {
    transform: translateY(50px);
    transition: all 0.5s linear;
}
.animation-move-up {
    transform: translateY(0);
}


.sections-heading {
    font-size: 2rem;
    margin: 2rem auto;
    color: var(--main-color);
    text-align: center;
    text-transform: capitalize;
}

.sections-p {
    margin-bottom: -1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    color: var(--black-color);
}

/*-----------main-section-styling-----*/
.main-section {
    /* width: 100%;
    height: 80vh; */
    position: relative;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.main-section .swiper {
    height: 100%;
    width: 100%;
}

.main-section .swiper-slide {
    height: 100%;
    width: 100%;
}

.main-section-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 2rem;
}

.main-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 39rem;
}

.main-left > h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--main-color);
}

.main-left > p {
    font-size: 1rem;
    color: var(--dark-black);
    line-height: 1.5;
}

.rank-wrapper {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
}

.rank-wrapper > p {
    color: var(--main-color);
    font-size: 1rem;
    line-height: 1.4;
}

.main-left > a {
    width: fit-content;
    padding: 1rem 2rem;
    background-color: var(--main-color);
    border: none;
    outline: none;
    border-radius: 0.4rem;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.main-left > a:hover .main-btn-arrow-wrapper span:first-child {
    width: 2rem;
}

.main-left > a > span:first-child {
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 600;
}

.main-btn-arrow-wrapper {
    display: flex;
    align-content: center;
    justify-content: center;
    margin-top: 0.7rem;
}

.main-btn-arrow-wrapper span:first-child {
    height: 2px;
    width: 1.5rem;
    background-color: var(--white-color);
    display: block;
    transition: all 0.3s linear;
    margin-top: 0.999px;
}

.main-btn-arrow-wrapper span:last-child {
    height: 0.7rem;
    width: 0.7em;
    border-top: 2px solid var(--white-color);
    border-right: 2px solid var(--white-color);
    transform: rotate(40deg);
    display: block;
    margin-top: -3px;
    margin-left: -0.555rem;
}
.award-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.award-wrapper {
    display: flex;
    align-content: center;
    justify-content: start;
    gap: 0.8rem;
}

.main-right {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 50%;
}

.main-right img {
   height: 550px;
    width: 550px;
    object-fit: contain;
    animation: image-animation 10s linear infinite alternate;
}

@keyframes image-animation {
    0% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(25px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(-25px);
    }
    100% {
        transform: translateY(0px);
    }
}

/*---------media-queries-for-main-section----*/
@media screen and (max-width: 1600px) {
    .main-left {
        padding-left: 2rem;
    }
}

@media screen and (max-width: 1300px) {
    .main-section-content {
        gap: 0.5rem;
    }

    .main-left {
        padding-left: 2rem;
    }
}

@media screen and (max-width: 1000px) {
    .main-section {
        height: auto;
    }

    .main-section-content {
        flex-direction: column;
        gap: 0rem;
    }

    .main-left {
        width: 80%;
        margin: 0px auto;
        padding-left: 0px;
        padding-top: 2rem;
    }

    .rank-wrapper {
        justify-content: start;
    }
    .main-right {
        width: 100%;
    }
    .main-right img {
        width: 80%;
    }
}
@media screen and (max-width: 1200px) {
    .main-left > h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    .award-wrapper img {
        height: 4rem;
        width: 4rem;
        object-fit: cover;
    }
}
@media screen and (max-width: 650px) {
    .main-section-content {
        gap: 0rem;
    }

    .main-left {
        width: 99%;
        align-content: center;
        justify-content: center;
    }

    .main-left > h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .main-left > * {
        text-align: center;
        margin: 0px auto;
    }

    .rank-wrapper {
        gap: 0.5rem;
    }

    .award-wrapper {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .main-right img {
        width: 300px;
        height: auto;
    }
    .award-wrapper img {
        height: 4rem;
        width: 4rem;
        object-fit: cover;
    }
}

/*-----------brand-section-styling-----*/
.brand-section {
    width: 100%;
    margin-top: 3rem;
}

.brand-content {
    width: 100%;
    overflow: hidden;
}

.brand-content .swiper {
    width: 120rem;
    margin: 0px auto;
}

.brand-content .swiper-slide {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-content img {
    height: 6rem;
    width: 6rem;
}
/*-----------our---services--section--styling----*/

.our-services-section {
    width: 100%;
    margin-top: 5rem;
    background-image: url('../images/serv_back.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.our-services-content {
    width: 80rem;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.our-service {
    padding: 1.9rem;
    height: 16rem;
    width: 18.8rem;
    background: #EEE;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    justify-content: center;
    box-shadow: 0 0 2px 2px rgba(35, 40, 105, 0.08);
    border-radius: 25px;
    border: 1px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.our-service .small_circle {
    background: rgba(255, 110, 12, 0.14);
    width: 154px;
    height: 155px;
    position: absolute;
    border-radius: 50%;
    top: -35px;
    right: -57px;
}
.our-service .svg {
    position: absolute;
    bottom: 9px;
    right: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}
.our-service:hover .svg {
    opacity: 1;
}
.our-service:hover .small_circle{
    background: rgba(255, 255, 255, 0.14);
}
.our-service:hover {
    border: 1px solid var(--main-color);
    background: linear-gradient(180deg, #FF8C3E 0%, #FF6E0C 100%);
}

.our-service:hover > h2 {
    color: #fff;
}

.our-service > h2 {
    font-size: 1.6rem;
    line-height: 1.27;
    color: var(--main-color);
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 3.5rem;
}
/* .our-service > img {
    height: 5rem;
    width: 4rem;
} */
.service-items {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1rem;
    margin-left: 0.7rem;
    margin-top: 1rem;
}

.service-items > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.service-items div > p {
    font-size: .85rem;
    font-weight: 500;
    color: var(--black-color);
}
.service-items img {
    height: 1.8rem;
    width: 1.8rem;
}
/* .our-service > a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    cursor: pointer;
    gap: 1rem;
    background-color: transparent;
    margin-top: auto;
    text-decoration: none;
}

.our-service > a > span {
    color: var(--gray-color);
    font-size: 1rem;
    font-weight: 600;
}

.our-service > a:hover > span {
    color: var(--main-color);
}

.our-service > a:hover path {
    fill: var(--main-color);
} */

/*------media-queries-for-our-services-section----*/
@media screen and (max-width: 1300px) {
    .our-services-content {
        width: 99%;
    }
}

@media screen and (max-width: 425px) {
    .our-service {
        width: 97%;
    }
}

/*-----unique-section-styling----*/
.unique-section {
    width: 100%;
    margin-top: 5rem;
}

.unique-wrapper {
    width: 48rem;
    margin: 0px auto;
}

.unique-section-content {
    width: 100%;
    margin: 0px auto;
}

.unique-section-content .swiper {
    width: 100%;
    height: 20rem;
}

.unique-section-content .swiper-slide {
    width: 100%;
}

.unique-section-content .swiper-slide-active .unique-section-item {
    background-color: var(--main-light);
    opacity: 1;
    transform: scale(1);
}

.unique-section-item {
    width: 100%;
    display: flex;
    height: 8rem;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    border-radius: 6rem;
    margin: 2rem auto;
    opacity: 0.5;
    position: relative;
    transform: scale(0.9);
    background-color: var(--main-light);
    padding: 0px 1rem;
}

.unique-section-item img {
    display: block;
    margin-left: 1rem;
    margin-top: 0rem;
    height: 6rem;
    width: 6rem;
}
.unique-section-item h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 19.4px;
    line-height: 1.5;
    color: #1B1C19;
}
.unique-section-item p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    color: #1B1C19;
}
/*--------------media-queries-for-unique-section---*/
/* @media screen and (max-width: 1150px) {
    .unique-wrapper {
        width: 99%;
    }
} */

@media screen and (max-width: 992px) {
    .unique-wrapper {
        width: 99%;
    }
    .unique-section-content .swiper {
        width: 100%;
        height: 32rem;
    }

    .unique-section-item {
        height: 15rem;
        /* flex-direction: column; */
        display: block;
        border-radius: 2rem;
        width: 56%;
        margin: 1rem auto;
    }

    .unique-section-item img {

        margin-left: auto;
        margin-right: auto;
        padding-top: 13px;
    }
    .unique-section-item h2 {
        margin-top: 1rem;
    }

    .unique-section-item > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .unique-section-item > div > p {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .unique-section-content .swiper {
        height: 38rem;
    }
    .unique-section-item h2 {
        font-size: 17.4px;
    }

    .unique-section-item {
        height: 18rem;
        border-radius: 0.5rem;
        width: 80%;
        margin: 1rem auto;
    }
}

/* @media screen and (max-width: 350px) {
    .unique-section-content .swiper {
        height: 55rem;
    }

    .unique-section-item {
        height: 27rem;
        border-radius: 0.5rem;
    }
} */

/*----steps--section--styling----*/
.steps-section {
    width: 100%;
    margin-top: 4rem;
    padding: 1rem 0;
    background: url("../images/struture.png"),var(--steps-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.steps-section h3 {
   color: var(--black-color);
    font-size: 2.1rem;
    width: 40rem;
    text-align: center;
    margin: 1rem auto;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.steps-content {
    /* width: 90rem; */
    margin: 1rem auto;
    text-align: center;

}

.steps {
        /* height: 28rem; */
        display: inline-block;
        position: relative;
       width: 17.3rem;
        padding: 0.7rem;
        /* margin: 1rem; */
}


.steps-item {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    text-align: center;
}

.steps-item p {
    color: #FAFAFA;
    font-weight: 700;
    font-size: 1.3rem;
}

.steps-item span {
    color: #FAFAFA;
}



/*---------media-queries-for-step-section----*/
@media screen and (max-width: 1452px) {
    .steps-content {
        width: 100%;
    }
}
@media screen and (max-width: 992px) {
    .steps-section h3 {
        width: 98%;
        text-align: center;
        font-size: 2rem;
    }
}


@media screen and (max-width: 1155px) {
    .steps-section {
        background-position:center;
    }

}
/*-------------work-section--styling---*/
.work-section {
    width: 100%;
    margin-top: 5rem;
}

.work-content {
    width: 60rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0px auto;
}

.work-item {
    height: 11rem;
    width: 11rem;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.11);
    border-radius: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
}
.work-item img {
    height: 3.5rem;
    width: 3.5rem;
}
.work-item > p {
    font-size: 1rem;
    font-weight: 550;
    text-align: center;
    text-transform: capitalize;
}

/*---media--queries-for-work-section---*/
@media screen and (max-width: 1300px) {
    .work-content {
        width: 99%;
    }
}

/* ---projects---section--styling---*/
.projects-section {
    padding: 3rem 0;
    width: 100%;
    background: url("public/images/struture.png"),var(--steps-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.projects-left {
    display: flex;
    align-items: start;
    width: 31rem;
    justify-content: start;
    flex-direction: column;
    gap: 0.3rem;
    padding: 10px;
}

.projects-left > div {
    flex-direction: column;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 0rem;
}

.projects-left > div h2 {
    font-size: 3rem;
    color: var(--black-color);
    text-transform: capitalize;
    font-weight: 600;
    line-height: 1.5;
}

.projects-left > div h2:last-child {
    color: var(--white-color);
    margin-top: -0.5rem;
}

.projects-left > p {
    font-size: 1rem;
    color: var(--white-color);
}

.projects-right {
    width: 34rem;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    gap: 1rem;
}

.projects-item {
    height: 6rem;
    width: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 0.4rem;
    background-color: var(--white-color);
}
.projects-item img {
    height: 2rem;
    width: 2rem;
}
.projects-item > div h2 {
    font-size: 1.78rem;
    font-weight: 600;
    line-height: 1.5;
}

.projects-item > div p {
    font-size: 0.96rem;
    font-weight: 500;
    margin-top: -0.5rem;
    text-transform: capitalize;
}

.projects-right > div:first-child {
    margin-left: 2rem;
}

.projects-right > div:nth-child(2) {
    margin-left: 1rem;
}

/*----media--queries-for-projects-section---*/
@media screen and (max-width: 1400px) {
    .projects-section {
        gap: 1rem;
    }
}
@media screen and (max-width: 1200px) {
    .projects-right > div:first-child {
        margin-left: .5rem;
    }
    .projects-right > div:nth-child(2) {
        margin-left: 0rem;
    }
}


@media screen and (max-width: 992px) {
     .projects-right > div:first-child {
       margin-left: 2rem;
    }
    .projects-right > div:nth-child(2) {
        margin-left: 1rem;
    }
    .projects-section {
        gap: 2rem;
        flex-direction: column;
    }

    .projects-left {
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .projects-left > div {
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 700px) {

    .projects-left {
        width: 99%;
    }

    .projects-left > div h2 {
        font-size: 3rem;
        line-height: 4rem;
    }

    .projects-right {
        width: 99%;
        align-items: center;
        justify-content: center;
    }

    .projects-right > div:first-child {
        margin-left: 0rem;
    }

    .projects-right > div:nth-child(2) {
        margin-left: 0rem;
    }


}

/*------------comments---section----styling-----*/
.comments-section {
    width: 100%;
    margin-top: 5rem;
}

.comments-section > p {
    width: 40rem;
    margin: 0.5rem auto;
    text-align: center;
    font-size: 1rem;
}

.comments-content {
    /* width: 73rem; */
    margin: 2rem auto;
    overflow: hidden;
}

.comments-content .swiper-button-next {
    right: -5.5rem;
    color: var(--main-color);
}

.comments-content .swiper-button-prev {
    left: -5.5rem;
    color: var(--main-color);
}

.comments-content .swiper {
    height: 20rem;
    width: 42rem;
    margin: 0px auto;
}

.comments-content .swiper-slide {
    background-color: var(--steps-color);
    border-radius: 18rem;
}

.comment-wrapper {
    text-align: center;
    padding: 0px 2.1rem;
}

.comment-wrapper > img {
    height: 4rem;
    width: 4rem;
    object-fit: cover;
    margin-top: 1rem;
}

.comment-wrapper > h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black-color);
}

.comment-wrapper > span {
    font-size: .9rem;
    color: var(--white-color);
}

.comment-wrapper > p {
    color: var(--black-color);
    text-align: center;
    font-size: .8rem;
    line-height: 1.5rem;
    font-weight: 500;
    margin-top: .4rem;
}

/*-----------media-queries-for-comments-section---*/
@media screen and (max-width: 1200px) {
    .comments-content {
        width: 99%;
    }

    .comments-content .swiper {
        height: 19rem;
        width: 40rem;
        /* margin: 0px auto; */
    }

    .comments-content .swiper-slide {
        border-radius: 2rem;
    }

    .comment-wrapper {
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 992px) {

    .comments-content .swiper {
        height: 30rem;
        width: 29rem;
        /* margin: 0px auto; */
    }


}

@media screen and (max-width: 767px) {

    .comments-content .swiper-button-next {
        display: none;
    }

    .comments-content .swiper-button-prev {
        display: none;
    }
    .comments-section > p {
        width: 99%;
    }

    .comments-content .swiper {
        height: 24rem;
        width: 25rem;
    }
}


@media screen and (max-width: 525px) {
    .comments-content .swiper {
        height: 26rem;
        width: 21rem;
    }

    .comment-wrapper {
        padding: 0 1rem;
    }

    .comment-wrapper > p {
        font-size: 0.95555rem;
        line-height: 1.2rem;
    }
}

@media screen and (max-width: 450px) {
    .comments-content .swiper {
        height: 27rem;
        width: 18rem;
    }

    .comment-wrapper {
        padding: 0 1rem;
        gap: 0.3rem;
    }

    .comment-wrapper > p {
        font-size: 0.9rem;
        line-height: 1.2rem;
        margin-top: 0.5rem;
    }
}

/*----blogs---section--styling---starts---*/
.blogs-section {
    padding: 4rem 0;
    width: 100%;
    margin-top: 5rem;
    background-color: #F8F8F8;
}

.blogs-wrapper {
    width: 70rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0px auto;
}

.blogs-item {
    width: 16rem;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    position: relative;
    gap: 1rem;
}

.blogs-item:before {
    content: attr(data-blog-type);
    position: absolute;
    top: 1rem;
    right: 1rem;
    text-transform: uppercase;
    padding: 0.3rem;
    background-color: var(--white-color);
    border-radius: 3px;
    color: var(--black-color);
    font-size: 0.88888rem;
    font-weight: 550;
    font-family: var(--poppins-font);
}

.blogs-item > img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    display: block;
}

.blogs-item > h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black-color);
    text-transform: capitalize;
    line-height: 1.5;
}

.blogs-item > p {
    color: var(--black-gray);
    text-transform: capitalize;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    opacity: 0.7;
}

/*------------media-queries-for-blogs-section--*/
@media screen and (max-width: 1150px) {
    .blogs-wrapper {
        width: 99%;
        flex-wrap: wrap;
        gap: 3rem;
    }
}

/*---------contact-section-styling----*/
.contact-section {
    width: 58rem;
    box-shadow: 0 0 3px 3px rgba(21, 23, 27, 0.2);
    display: flex;
    padding: 3rem;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    margin: 0 auto;
    margin-top: 5rem;
    padding-right: 0;
}

.contact-left {
    width: 25rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 2rem;
}

.contact-left > h2 {
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 600;
    line-height: 1.5;
}

.contact-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-inputs div {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-inputs input {
    height: 3rem;
    width: 12rem;
    background: rgba(0, 0, 0, 0.04);
    border: none;
    font-size: 0.9555rem;
    padding-left: 0.5rem;
    outline: none;
    position: relative;
}

.contact-inputs p {
    font-size: 0.899rem;
    font-weight: 550;
    text-transform: capitalize;
}

.contact-textarea {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-textarea textarea {
    height: 9rem;
    width: 25rem;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.04);
    padding: 1rem;
}

.contact-textarea p {
    font-size: 0.899rem;
    font-weight: 550;
    text-transform: capitalize;
}

.contact-left > button {
    height: 3rem;
    width: 10rem;
    border-radius: 3rem;
    font-size: 0.8666rem;
    text-transform: capitalize;
    font-weight: 550;
    border: none;
    outline: none;
    color: var(--white-color);
    margin-left: auto;
    margin-right: auto;
    background-color: var(--main-color);
    cursor: pointer;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 2rem;
}
.contact-right-item img{
    height: 1.3rem;
    width: 1.3rem;
}
.contact-right > p {
    color: var(--main-color);
}

.contact-right > h1 {
    font-size: 2rem;
    color: var(--black-color);
    line-height: 1.4;
    text-align: left;
    text-transform: capitalize;
    font-weight: 700;
}

.contact-right > div {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
}

.contact-right > div p {
    color: var(--form-color);
    font-weight: 550;
    font-size: 1rem;
}
.form-icons img {
    height: 3rem;
    width: 3rem;
}
/*----------media-queries-for-contact-section--*/
/* @media screen and (max-width: 1150px) {
    .contact-section {
        width: 97%;
        gap: 1rem;
    }
} */

@media screen and (max-width: 992px) {
    .contact-section {
        flex-direction: column;
        gap: 5rem;
        width: 42rem;
        padding-right: 3rem;
    }

    .contact-right, .contact-left {
        align-items: center;
        justify-content: center;
        border-left: none;
        padding-left: 0;
        width: 100%;
    }

    .contact-right > h1 {
        width: 40rem;
        font-size: 2.5rem;
        text-align: center;
    }

    .contact-left > h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 767px) {
    .contact-right > h1 {
        font-size: 2rem;
        width: 99%;
    }

    .contact-left {
        width: 80%;
        display: block;
    }
    .contact-right {
        width: 80%;
    }
    .contact-left > h2 {
        font-size: 1.8rem;
    }

    .contact-section {
        width: 90%;
        padding: 3rem 0rem;
    }

    .contact-inputs {
        flex-direction: column;
    }

    .contact-inputs input {
        width: 100%;
        display: block;
    }
    .contact-textarea {
        margin-top: 14px;
        margin-bottom: 1rem;
    }
    .contact-textarea textarea {
        width: 100%;
        display: block;
    }
    .contact-left > button {
        display: block;
    }
    .contact-inputs div {
        display: block;
        width: 100%;
    }
}


.get_quote_sec {
    background: #FF934A;
    border-radius: 24px;
    position: relative;
    height: 190px;
    padding: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    overflow: hidden;
    width: 58rem;
    margin-left: auto;
    margin-right: auto;
}

.get_quote_sec .first {
    display: block;
    background-color: transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    height: 114px;
    width: 114px;
    border: 19px solid #FFFFFF20;
    position: absolute;
    top: 26%;
    left: -5%;
}

.get_quote_sec .second {
    display: block;
    background-color: transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    height: 114px;
    width: 114px;
    border: 11px solid #FFFFFF20;
    position: absolute;
    top: -64px;
    left: 50%;
}

.get_quote_sec .third {
    display: block;
    background-color: transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    height: 80px;
    width: 80px;
    border: 14px solid #FFFFFF20;
    position: absolute;
    top: 33%;
    right: -4%;
}

.get_quote_sec h5 {
     font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    width: 50%;
}
.get_quote_sec p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    width: 86%;
}

.get_quote_sec a{
    width: 181px;
    height: 59px;
    background: linear-gradient(96.13deg, #FF6703 -7.28%, #CC5100 115.84%);
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 27px;
    color: #FFFFFF;
}


@media only screen and (max-width:1200px) {

    .get_quote_sec h5 {
        width: 80%;
    }


}

@media only screen and (max-width:992px) {


    .get_quote_sec {
        height: auto;
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    .get_quote_sec p,.get_quote_sec h5 {
        width: 100%;
    }
    .get_quote_sec a {
        margin-top: 1rem;
    }

}


