:root {
    --home-banner-height: 100vh;
}

.company-logo-target {
    background: #6eb7ff;
    height: var(--home-banner-height);
    overflow: hidden;
}

.company-logo-target img.main_object1 {
    position: absolute;
    height: auto;
    width: 51%;
    bottom: -40px;
    left: 0;
    animation-name: motion-left-hand;
    animation-duration: 3600ms;
    animation-direction: linear;
    animation-timing-function: ease-in-out;
    transform-style: preserve-3d;
    -webkit-animation-name: motion-left-hand;
    -webkit-animation-duration: 3600ms;
    -webkit-animation-direction: linear;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-transform-style: preserve-3d;
    z-index: 2;
}

@-webkit-keyframes motion-left-hand {
    0% {
        left: -50%;
        transform: rotateZ(-45deg);
    }
    100% {
        left: 0;
        transform: rotateZ(0deg);
    }
}

.company-logo-target img.main_object2 {
    position: absolute;
    height: auto;
    width: 51%;
    bottom: 180px;
    bottom: 12vw;
    right: 0;
    animation-name: motion-right-hand;
    animation-duration: 3600ms;
    animation-direction: linear;
    animation-timing-function: ease-in-out;
    transform-style: preserve-3d;
    -webkit-animation-name: motion-right-hand;
    -webkit-animation-duration: 3600ms;
    -webkit-animation-direction: linear;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-transform-style: preserve-3d;
    z-index: 2;
}

@-webkit-keyframes motion-right-hand {
    0% {
        right: -50%;
        transform: rotateZ(45deg);
    }
    100% {
        right: 0;
        transform: rotateZ(0deg);
    }
}

.company-logo-target.show_element img.main_object1 {
    left: -100%;
    opacity: 0;
}

.company-logo-target.show_element img.main_object2 {
    right: -100%;
    opacity: 0;
}

.company-logo-target .content {
    padding: 300px 0;
}

.company-logo-target h1 {
    font-size: 24rem;
    color: #fff;
    font-weight: 400;
    font-family: sans-serif;
    margin-bottom: 50px;
    letter-spacing: -2px;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.company-logo-target h1 .text {
    display: inline;
}

.company-logo-target h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .4px;
}

.company-logo-target p {
    color: #fff;
    font-weight: 400;
    position: relative;
    z-index: 3;
    opacity: .8;
    letter-spacing: .4px;
    margin-bottom: 70px;
}

.company-logo-target .btn {
    position: relative;
    background: #fff;
    padding: 14px 40px 12px;
    padding: 20px 44px;
    border-radius: 100px;
    box-shadow: 0 0 100px #0080ff99;
    width: fit-content;
    display: none;
    font-size: 4rem;
    z-index: 10;
}

.company-logo-target .back {
    left: auto;
    right: 15%;
    position: absolute;
    bottom: 80px;
}

.company-logo-target .service-wrap {
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 100px;
}

.company-logo-target .services {
    width: 100%;
    /* height: var(--home-banner-height); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-top: 100px; */
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s ease, visibility 2s ease;
}

.company-logo-target.show_element .services {
    transition: opacity 3s ease, visibility 3s ease;
}

.company-logo-target .services>* {
    flex-grow: 1;
}

.company-logo-target .circle--rotate {
    border-radius: 50%;
    border: 1px #fff solid;
    width: 500px !important;
    height: 500px !important;
    margin: 0 auto 0;
    position: relative;
    transform: rotate(0deg);
    z-index: 0;
    padding: 0;
}

.company-logo-target .circle--rotate>li {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    z-index: 10;
    visibility: hidden;
}

.company-logo-target .circle--rotate>li .icon {
    visibility: visible;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    font-size: 20px;
    color: #ffffff;
    border-radius: 50%;
    background-color: #000000;
    height: 14%;
    width: 14%;
    margin: -7% auto;
    transition: all 500ms ease;
    box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-target .circle--rotate>li svg {
    height: max(2.5vw, 20px);
    width: max(2.5vw, 20px);
}

.company-logo-target .circle--rotate>li svg path {
    fill: #000;
}

.company-logo-target .circle--rotate>li i {
    color: #ffffff;
    font-size: 24px;
    margin: auto;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: table;
}

.company-logo-target .circle--rotate>li i::before {
    display: table-cell;
    vertical-align: middle;
}

.company-logo-target .circle--rotate>li img {
    margin: auto;
}

.company-logo-target .circle--slider {
    position: relative;
}

.company-logo-target .circle--slider .rotate--circle {
    margin: 0 auto;
}

.company-logo-target .circle--slider .circle--rotate>li div {
    position: relative;
    overflow: visible;
    background-color: #ffffffb5;
    backdrop-filter: blur(4px);
}

.company-logo-target .circle--slider .circle--rotate>li div span {
    transform: rotate(0deg);
    transition: all 2s;
    opacity: 0;
}

.company-logo-target .circle--slider .circle--rotate>li.active div {
    font-size: 20px;
    background-color: var(--primary-color);
    transition: all 1s;
}

.company-logo-target .circle--slider .circle--rotate>li.active svg path {
    fill: #fff;
}

.company-logo-target .circle--slider .circle--rotate>li.active div span {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-45deg);
    z-index: -1;
    opacity: 1;
}

.company-logo-target .circle--slider .circle--rotate>li.active div span:before {
    position: absolute;
    height: 1px;
    top: -50%;
    right: 140%;
    bottom: 0;
    margin: auto;
    content: "";
    width: 30%;
    height: 30%;
    filter: blur(3px);
    opacity: 0.7;
    border: 6px solid #F48E2A;
    z-index: -1;
}

.company-logo-target .circle--slider .circle--rotate>li.active div span:after {
    position: absolute;
    height: 1px;
    top: 100%;
    left: 130%;
    bottom: 0;
    margin: auto;
    content: "";
    width: 40%;
    height: 40%;
    border-radius: 50%;
    opacity: 0.7;
    border: 8px solid #FE9290;
    z-index: 5;
}

.company-logo-target .circle--slider .count2 li:nth-child(2) {
    transform: rotate(180deg);
}

.company-logo-target .circle--slider .count3 li:nth-child(2) {
    transform: rotate(120deg);
}

.company-logo-target .circle--slider .count3 li:nth-child(3) {
    transform: rotate(240deg);
}

.company-logo-target .circle--slider .count4 li:nth-child(2) {
    transform: rotate(90deg);
}

.company-logo-target .circle--slider .count4 li:nth-child(3) {
    transform: rotate(180deg);
}

.company-logo-target .circle--slider .count4 li:nth-child(4) {
    transform: rotate(270deg);
}

.company-logo-target .circle--slider .count5 li:nth-child(2) {
    transform: rotate(72deg);
}

.company-logo-target .circle--slider .count5 li:nth-child(3) {
    transform: rotate(144deg);
}

.company-logo-target .circle--slider .count5 li:nth-child(4) {
    transform: rotate(216deg);
}

.company-logo-target .circle--slider .count5 li:nth-child(5) {
    transform: rotate(-72deg);
}

.company-logo-target .circle--slider .count6 li:nth-child(2) {
    transform: rotate(60deg);
}

.company-logo-target .circle--slider .count6 li:nth-child(3) {
    transform: rotate(120deg);
}

.company-logo-target .circle--slider .count6 li:nth-child(4) {
    transform: rotate(180deg);
}

.company-logo-target .circle--slider .count6 li:nth-child(5) {
    transform: rotate(240deg);
}

.company-logo-target .circle--slider .count6 li:nth-child(6) {
    transform: rotate(-60deg);
}

.company-logo-target .circle--slider .count7 li:nth-child(2) {
    transform: rotate(51.5deg);
}

.company-logo-target .circle--slider .count7 li:nth-child(3) {
    transform: rotate(103deg);
}

.company-logo-target .circle--slider .count7 li:nth-child(4) {
    transform: rotate(154.5deg);
}

.company-logo-target .circle--slider .count7 li:nth-child(5) {
    transform: rotate(206deg);
}

.company-logo-target .circle--slider .count7 li:nth-child(6) {
    transform: rotate(-103deg);
}

.company-logo-target .circle--slider .count7 li:nth-child(7) {
    transform: rotate(-51.5deg);
}

.company-logo-target .circle--slider .count8 li:nth-child(2) {
    transform: rotate(45deg);
}

.company-logo-target .circle--slider .count8 li:nth-child(3) {
    transform: rotate(90deg);
}

.company-logo-target .circle--slider .count8 li:nth-child(4) {
    transform: rotate(135deg);
}

.company-logo-target .circle--slider .count8 li:nth-child(5) {
    transform: rotate(180deg);
}

.company-logo-target .circle--slider .count8 li:nth-child(6) {
    transform: rotate(-135deg);
}

.company-logo-target .circle--slider .count8 li:nth-child(7) {
    transform: rotate(-90deg);
}

.company-logo-target .circle--slider .count8 li:nth-child(8) {
    transform: rotate(-45deg);
}

.company-logo-target .circle--slider .count9 li:nth-child(2) {
    transform: rotate(40deg);
}

.company-logo-target .circle--slider .count9 li:nth-child(3) {
    transform: rotate(80deg);
}

.company-logo-target .circle--slider .count9 li:nth-child(4) {
    transform: rotate(120deg);
}

.company-logo-target .circle--slider .count9 li:nth-child(5) {
    transform: rotate(160deg);
}

.company-logo-target .circle--slider .count9 li:nth-child(6) {
    transform: rotate(-160deg);
}

.company-logo-target .circle--slider .count9 li:nth-child(7) {
    transform: rotate(-120deg);
}

.company-logo-target .circle--slider .count9 li:nth-child(8) {
    transform: rotate(-80deg);
}

.company-logo-target .circle--slider .count9 li:nth-child(9) {
    transform: rotate(-40deg);
}

.company-logo-target .circle--slider .count10 li:nth-child(2) {
    transform: rotate(36deg);
}

.company-logo-target .circle--slider .count10 li:nth-child(3) {
    transform: rotate(72deg);
}

.company-logo-target .circle--slider .count10 li:nth-child(4) {
    transform: rotate(108deg);
}

.company-logo-target .circle--slider .count10 li:nth-child(5) {
    transform: rotate(144deg);
}

.company-logo-target .circle--slider .count10 li:nth-child(6) {
    transform: rotate(-180deg);
}

.company-logo-target .circle--slider .count10 li:nth-child(7) {
    transform: rotate(-144deg);
}

.company-logo-target .circle--slider .count10 li:nth-child(8) {
    transform: rotate(-108deg);
}

.company-logo-target .circle--slider .count10 li:nth-child(9) {
    transform: rotate(-72deg);
}

.company-logo-target .circle--slider .count10 li:nth-child(10) {
    transform: rotate(-36deg);
}

.company-logo-target .circle--slider .animate-wrapper {
    width: 350px !important;
    height: 350px !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
}

.company-logo-target .circle--slider .animate-title {
    color: #fff;
}

.company-logo-target .circle--slider .animate-img {
    width: 25%;
    height: 25%;
    border-radius: 50%;
    overflow: hidden;
}

.company-logo-target .circle--slider .animate-img .animate-img__in {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    background-repeat: no-repeat;
    z-index: 3;
    transform: rotate3d(0, 0, 0, 0deg) scale(0.85);
    transition: 0.55s ease-in-out;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.company-logo-target .circle--slider .animate:nth-child(1) .animate-img .animate-img__in {
    background-color: #03A9F4;
    background-repeat: no-repeat;
    background-position: 56% 168%;
    background-size: 130%;
}

.company-logo-target .circle--slider .animate:nth-child(2) .animate-img .animate-img__in {
    background-color: #017ebc;
    background-repeat: no-repeat;
    background-position: 56% 168%;
    background-size: 130%;
}

.company-logo-target .circle--slider .animate:nth-child(3) .animate-img .animate-img__in {
    background: lightgreen;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150%;
}

.company-logo-target .circle--slider .animate:nth-child(4) .animate-img .animate-img__in {
    background-color: #efea7a;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.company-logo-target .circle--slider .animate-img .animate-img__in::before {
    content: '';
    background: #00000085;
    backdrop-filter: blur(3px);
    left: -3px;
    top: -3px;
    position: absolute;
    height: 103%;
    width: 103%;
    border-radius: 50%;
}

.company-logo-target .circle--slider .animate:nth-child(1) .animate-img .animate-img__in::before {
    background: linear-gradient(45deg, #009688a8, #00bcd4a1);
}

.company-logo-target .circle--slider .animate:nth-child(2) .animate-img .animate-img__in::before {
    background: linear-gradient(45deg, #ff1010a3, #00ff22b0);
}

.company-logo-target .circle--slider .animate:nth-child(3) .animate-img .animate-img__in::before {
    background: linear-gradient(45deg, #e91e63ad, #03a9f496);
}

.company-logo-target .circle--slider .animate:nth-child(4) .animate-img .animate-img__in::before {
    background: linear-gradient(45deg, #ff5722b3, #ffc10773);
}

.company-logo-target .circle--slider .animate-more {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s 0.4s;
    min-width: 131px;
    overflow: hidden;
    text-align: center;
    z-index: 30;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 15px;
    height: auto;
    transform: scale(0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.company-logo-target .circle--slider .animate-more p {
    opacity: 1;
    margin-bottom: 0;
}

.company-logo-target .circle--slider .animate.active .animate-more {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.company-logo-target .circle--slider .animate.active .animate-img .animate-img__in {
    opacity: 1;
    transform: scale(1);
}

.company-logo-target .circle--slider .prev,
.company-logo-target .circle--slider .next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    height: 62px;
    width: 87px;
    text-align: center;
    cursor: pointer;
}

.company-logo-target .circle--slider .prev span,
.company-logo-target .circle--slider .next span {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    opacity: .5;
    transition: all .3s;
}

.company-logo-target .circle--slider .prev:hover span,
.company-logo-target .circle--slider .next:hover span {
    opacity: 1;
}

.company-logo-target .circle--slider .prev {
    left: 0px;
}

.company-logo-target .circle--slider .next {
    right: 0px;
}

.section_home-work {
    background: #062843;
    padding: 0px 0 100px;
}

.section_home-work .heading {
    color: #fff;
    font-size: 120px;
    font-weight: 400;
}

.section_home-work .content {
    color: #fff;
    font-size: 20px;
}

.home-work_wrapper {
    height: 600vh;
}

.padding-section-home-work-title {
    padding-top: 7rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.padding-global {
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
    position: relative;
}

.home-work_title-container {
    z-index: 2;
    opacity: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: -1.4rem;
    padding-top: 0;
    display: flex;
    position: relative;
    top: auto;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.home-work_title-grid-left {
    width: 100vw;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    justify-content: end;
    justify-items: end;
}

.home-work_title-grid-right {
    z-index: 1;
    width: 100vw;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    opacity: 1;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    justify-content: start;
    justify-items: end;
    position: relative;
}

.heading-style-scroller-outlined-first-right {
    margin-left: 1rem;
    font-family: Bebas Neue, sans-serif;
    font-size: 16rem;
    font-weight: 400;
    line-height: 1;
    display: block;
}

.heading-style-scroller-outlined {
    font-family: Bebas Neue, sans-serif;
    font-size: 16rem;
    font-weight: 400;
    line-height: 1;
}

.heading-style-h1 {
    font-family: Bebas Neue, sans-serif;
    font-size: 8rem;
    font-weight: 400;
    line-height: 1;
}

.heading-style-h1.is-scroller {
    flex: none;
    font-size: 16rem;
    line-height: 1;
}

.home-work_list {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    overflow: hidden;
}

.home-work_item {
    height: 100vh;
    border-top: 1px solid rgba(247, 247, 247, .4);
    flex: none;
    position: relative;
    overflow: hidden;
}

.home-work_top {
    height: 50px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    margin-top: 20px;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.home-work_project-title-link {
    color: var(--off-white);
    text-decoration: none;
}

.heading-style-h5 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 20px;
    color: #fff;
}

.text-style-allcaps {
    text-transform: uppercase;
}

.w-dyn-hide,
.w-dyn-bind-empty,
.w-condition-invisible {
    display: none!important;
}

.project-service-tag_branding {
    color: rgba(247, 247, 247, .4);
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: 600;
}

.project-service-tag_branding-and-websites {
    color: var(--white-smoke);
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: 600;
}

.project-service-tag-link-alt {
    color: var(--white-smoke);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
}

.home-work_image-wrapper {
    width: 100%;
    height: 100%;
    flex: none;
}

.home-work_image {
    width: 100%;
    height: 100%;
    transform-origin: 100% 0;
    object-fit: cover;
    border-radius: .3125rem;
    margin-bottom: 1px;
    overflow: hidden;
    transform: scale(1);
}

.section_home-work img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.section_home-work .button {
    border: 1px solid #fff;
    color: #fff;
    padding: 18px 50px 14px;
    font-size: 16px;
    background: transparent;
    width: fit-content;
    margin: 100px auto 0;
    border-radius: 100px;
    display: block;
    opacity: .8;
    transition: all .3s;
}

.section_home-work .button:hover {
    opacity: 1;
    transform: translateY(-10px);
}

.project-service-tag_branding-and-websites {
    color: #f7f7f766;
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: 600;
}

.project-service-tag-link-alt {
    color: #f7f7f766;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
}

.service-tags-forward-slash-alt {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.home-page-layout .section3 {
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.home-page-layout .section3 .bg-img {
    position: absolute;
    bottom: -40px;
    left: -50px;
    z-index: 1;
}

.home-page-layout .section3>* {
    position: relative;
    z-index: 2;
}

.home-page-layout .section3 .our-expertise {
    margin-top: 40px;
}

@media screen and (min-width: 992px) {
    html {
        --bar-height: 72px;
    }
    .home-work_top {
        height: var(--bar-height);
    }
    .home-work_image-wrapper {
        height: calc(100vh - var(--bar-height));
    }
}


/* For Desktop Start*/

@media (max-width: 2561px) {
    .company-logo-target h1 {
        font-size: 18rem;
    }
    .company-logo-target .content {
        padding: 200px 0;
    }
    .company-logo-target .btn {
        font-size: 3.4rem;
    }
}

@media (max-width: 1921px) {
    .company-logo-target h1 {
        font-size: 10rem;
    }
    .company-logo-target .content {
        padding: 150px 0;
    }
    .company-logo-target .btn {
        padding: 14px 40px 12px;
        font-size: 2rem;
    }
}

@media (max-width: 1025px) {
    .company-logo-target h1 {
        font-size: 8rem;
    }
    .company-logo-target {
        padding: 120px 0;
    }
}

@media (max-width: 769px) {
    .company-logo-target {
        padding: 120px 20px;
    }
}

@media (max-width: 480px) {
    .home-work_list {
        height: auto;
    }
    .heading-style-h5 {
        font-size: 16px;
        margin-bottom: 0;
        text-underline-offset: 14px;
    }
    .home-work_top {
        flex-direction: column;
        margin-bottom: 20px;
        margin-top: 50px;
        height: auto;
    }
    .home-work_project-title-link {
        width: 100%;
    }
    .service-tags-wrapper {
        width: 100%;
        text-align: left;
        margin-top: 20px;
    }
    .project-service-tag-link-alt {
        font-size: 16px
    }
    .home-work_item {
        height: auto;
        margin-bottom: 50px;
    }
    .home-work_image-wrapper {
        height: 300px;
    }
    .section_home-work .button {
        margin-top: 0;
    }
    .padding-section-home-work-title {
        padding-top: 5rem;
    }
}


/* For Desktop End*/


/* For Tablet Start*/

@media (max-device-width:1025px) {
     :root {
        --home-banner-height: 700px;
    }
    .company-logo-target .content {
        padding: 0 0;
    }
    .company-logo-target {
        padding: 120px 0;
    }
    .company-logo-target .circle--rotate {
        width: 400px !important;
        height: 400px !important;
    }
    .company-logo-target .circle--slider .animate-wrapper {
        width: 280px !important;
        height: 280px !important;
    }
}

@media (max-device-width:769px) {
     :root {
        --home-banner-height: 620px;
    }
    .company-logo-target .content {
        padding: 0 0;
    }
    .company-logo-target {
        padding: 120px 20px;
    }
    .company-logo-target h1 .text {
        margin-top: 16px;
    }
    .company-logo-target .btn {
        padding: 2vw 5vw 1.4vw;
        font-size: 3rem;
    }
    .company-logo-target .circle--slider .prev span,
    .company-logo-target .circle--slider .next span {
        writing-mode: horizontal-tb;
        font-size: 14px;
    }
    .company-logo-target .circle--slider .prev {
        left: 0px;
        top: auto;
        bottom: -30px;
    }
    .company-logo-target .circle--slider .next {
        right: 0px;
        top: auto;
        bottom: -30px;
    }
    .company-logo-target .back {
        top: 100px;
        bottom: auto;
        right: 20px;
    }
    .home-page-layout .section3 {
        padding-bottom: 120px;
    }
    .home-page-layout .section3 .our-expertise {
        margin-top: 0;
        text-align: center;
    }
}

@media (max-device-width:481px) {
     :root {
        --home-banner-height: 420px;
    }
    .company-logo-target h1 {
        font-size: 24px;
        letter-spacing: .6px;
        width: 100%;
        margin-bottom: 30px;
    }
    .company-logo-target {
        padding: 100px 20px;
    }
    .company-logo-target p {
        margin-bottom: 34px;
    }
    .company-logo-target img.main_object1 {
        bottom: -18px;
    }
    .company-logo-target .service-wrap {
        padding-top: 80px;
    }
    .company-logo-target .circle--rotate {
        width: 280px !important;
        height: 280px !important;
    }
    .company-logo-target .circle--slider .animate-wrapper {
        width: 200px !important;
        height: 200px !important;
    }
    .company-logo-target .circle--slider .animate-more {
        padding: 14px;
    }
    .company-logo-target h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .company-logo-target p {
        font-size: 12px;
    }
    .home-page-layout .section3 {
        padding-bottom: 100px;
    }
    .home-page-layout .section3 p {
        text-align: center;
    }
    .home-page-layout .section3 .our-expertise {
        margin-top: 0px;
    }
    .section_home-work {
        padding: 0 10px 50px;
    }
}

@media (max-device-width:321px) {
     :root {
        --home-banner-height: 380px;
    }
    .company-logo-target h1 {
        font-size: 18px;
        margin-bottom: 24px;
    }
    .company-logo-target img.main_object1 {
        bottom: -10px;
    }
    .company-logo-target .circle--rotate {
        width: 250px !important;
        height: 250px !important;
    }
    .company-logo-target .circle--slider .animate-wrapper {
        width: 170px !important;
        height: 170px !important;
    }
    .company-logo-target .circle--slider .prev {
        left: 0px;
        top: auto;
        bottom: -50px;
    }
    .company-logo-target .circle--slider .next {
        right: 0px;
        top: auto;
        bottom: -50px;
    }
    .company-logo-target p {
        font-size: 10px;
    }
}


/* For Tablet End */