@import url('https://fonts.googleapis.com/css2?family=Acme&family=Poppins:wght@400;500;600;700;800;900&display=swap');

body {
    overflow-x: hidden;
    font-size: 16px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a {
    color: inherit;
    display: inline-block;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 0;
    margin-bottom: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

img {
    width: 100%;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

.auto-container {
    margin: 0px 64px;
}

section {
    position: relative;
    overflow-x: hidden;
}

@media screen and (max-width:1100px) {
    .auto-container {
        margin: 0px 32px;
    }
}

@media screen and (max-width:1023px) {
    .auto-container {
        margin: 0px 24px;
    }
}

@media screen and (max-width:600px) {
    .auto-container {
        margin: 0px 16px;
    }
}

.form-control:focus {
    box-shadow: none;
}

.circular-content {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
}

.circular-move {
    position: absolute;
    padding: 0 16px;
}

.circular-pane {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#topscroll {
    position: fixed;
    right: 2%;
    bottom: 8%;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    text-align: center;
    z-index: 10;
    cursor: pointer;
    display: none;
    line-height: 40px;
    font-size: 16px;
    color: var(--white);
}

.object-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.object-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-brand {
    width: 330px;
}

.carousel-item {
    height: 80vh;
}

.social-media li:not(:last-child) a {
    margin-right: 16px;
}

.top-nav,
.bottom-nav {
    height: 50%;
}

.mydropdown,
.mydropdown-2,
.mydropdown-3 {
    position: relative;
    user-select: none;
}

.drop-menu,
.drop-menu-2,
.drop-menu-3 {
    display: none;
    position: absolute;
    width: 100%;
    min-width: max-content;
    background-color: white;
    z-index: 2;
}

.drop-menu a,
.drop-menu button {
    transition: all ease 0.5s;
    padding: 6px 12px;
    color: var(--secondary);
    background-color: transparent;
    border: 0;
}

.drop-menu li a:hover {
    color: dodgerblue;
}

.drop-menu li button:hover {
    padding-left: 18px;
    cursor: pointer;
}

.drop-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-pills li a {
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
}

.font-500 {
    font-weight: 500;
}

@media screen and (min-width:992px) {
    .drop-menu {
        top: 102%;
        left: 0;
    }

    .drop-menu-2,
    .drop-menu-3 {
        top: 0;
        left: 100%;
    }

    .mydropdown:hover .drop-menu,
    .mydropdown-2:hover .drop-menu-2,
    .mydropdown-3:hover .drop-menu-3 {
        display: block;
    }
}

/* change */
.about img {
    height: 400px;
    width: 400px;
}

.about-img img {
    height: 360px;
    width: 360px;
    border-radius: 30% 70% 86% 14% / 30% 50% 50% 70%;
    transition: all .5s ease;
}

.about-img:hover img {
    border-radius: 68% 32% 62% 38% / 54% 48% 52% 46%;
}

.about-img2 {
    height: 360px;
}

.about-para {
    column-count: 3;
    column-gap: 40px;
    column-rule: 1px solid lightblue;
}

.icon-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
}

.icon-list li i {
    position: absolute;
    top: 4px;
    left: 8px;
    color: var(--logo);
}

.footer-title {
    font-size: 20px;
    font-weight: 500;
}

.footer-links a:hover,
.social-media a:hover {
    color: dodgerblue;
}

.bg-title {
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}

.hidepara {
    display: none;
}

.testi-slider .slick-slide {
    padding: 8px;
}

.industry-slider .slick-slide {
    padding: 12px;
}

.testi-box {
    padding: 12px;
    border: 1px solid var(--light);
    border-radius: 8px;
}

.industry-image {
    height: 262px;
    /* height: 262px; */
    overflow: hidden;
}

.industry-image img {
    transition: all ease 1s;
}

.industry-box:hover img {
    transform: scale(1.1);
}

.industry-detail p {
    font-size: 14px;
    color: var(--secondary);
}

.industry-detail a {
    font-size: 14px;
    color: var(--primary);
}

.services-img {
    width: 350px;
    height: 350px;
}

.dots {
    position: relative;
}

.dots:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
    background-color: #ff9800;
    border-radius: 50% 50% 0 50%;
    width: 10px;
    height: 10px;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-50px, 0, 0);
        transform: translate3d(-50px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-50px, 0, 0);
        transform: translate3d(-50px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50px, 0, 0);
        transform: translate3d(50px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50px, 0, 0);
        transform: translate3d(50px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate3d(0, 40px, 0);
        transform: translate3d(0, 40px, 0);
    }

    to {
        visibility: visible;
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

.circle-img {
    width: 300px;
    height: 300px;
    resize: both;
}

.text-underline {
    text-decoration: underline;
}

::placeholder {
    font-size: 14px;
}

input.form-control {
    height: 50px;
}

label.btn {
    height: 50px;
    line-height: 50px;
    padding: 0 16px !important;
    outline: 1px solid var(--primary);
}

.list li {
    list-style-type: disc;
}

.list li:not(:last-child) {
    margin-bottom: 12px;
}

.circular {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.circular svg {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

#circleOffset {
    stroke-dasharray: 1256.63706144;
    stroke-dashoffset: 1130.4;
}

.step {
    cursor: pointer;
    fill: #03a9f4;
}

.step.active {
    fill: var(--orange);
}

.circular-list {
    width: auto;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}

.circular-list li img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 6px 0px rgb(0 0 0 / 30%);
}

.circular-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.carousel-item .carousel-caption .h2 {
    opacity: 0;
    transition: all 1s ease;
}

.carousel-item.active .carousel-caption .h2 {
    opacity: 1;
    animation: fadeInRight .5s;
}

input::-webkit-inner-spin-button {
    display: none;
}

.list-column {
    column-count: 2;
    column-gap: 40px;
}

.list-column-3 {
    column-count: 3;
    column-gap: 40px;
}

@media screen and (max-width:1210px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
}

@media screen and (max-width:1100px) {
    .navbar-brand {
        width: 270px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 15px;
        padding: .5rem .8rem;
    }

    .carousel-item {
        height: 80vh;
    }

    .carousel-caption {
        width: 60%;
        padding: 8px 8px 8px 48px;
    }

    .carousel-caption .h2 {
        font-size: 24px;
    }
}

@media screen and (max-width:991px) {

    .top-nav,
    .bottom-nav {
        height: 100%;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 16px;
    }

    .about-para {
        column-count: 2;
    }

    .carousel-item {
        height: 50vh;
    }

    .navbar-brand {
        width: 330px;
    }

    .drop-menu,
    .drop-menu-2,
    .drop-menu-3 {
        position: static;
    }

    .drop-menu.active,
    .drop-menu-2.active,
    .drop-menu-3.active {
        display: block;
    }

    .drop-menu.shadow {
        padding: 8px;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.05);
    }

    .drop-btn i.fa-angle-right {
        transform: rotate(90deg);
    }

    .about-img img {
        margin-top: 20px;
        height: 280px;
        width: 280px;
    }

    .carousel-caption {
        width: 70%;
        padding: 8px 8px 8px 40px;
    }

    .carousel-caption .h2 {
        font-size: 20px;
    }

    .list-column,
    .list-column-3 {
        column-count: 1;
    }

    .circular-list li img {
        width: 190px;
        height: 190px;
    }

    .circular {
        height: 300px;
    }

    .circular-content {
        height: 350px;
    }
}

@media screen and (max-width:600px) {
    .social-media.border-left {
        border-left: none !important;
    }

    .navbar-brand {
        width: 100%;
    }

    .navbar-brand img {
        width: 290px;
    }

    .navbar-collapse.show {
        position: absolute;
        background: white;
        z-index: 99;
        width: 100vw;
        height: max-content;
    }
    .nav-item{
        background-color: white;
    }

    .carousel-item {
        height: 40vh;
    }

    .about-para {
        column-count: unset;
    }

    .title.h4,
    .bg-title.h4 {
        font-size: 1.2rem !important;
    }

    .carousel-caption {
        width: 100%;
        padding: 8px;
        left: 0;
        bottom: 0;
        height: auto;
        background: rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    .carousel-indicators {
        display: none;
    }

    .carousel-caption .h2 {
        font-size: 15px;
    }

    .carousel-caption .h2 .h1 {
        font-size: 20px;
    }

    .circular-content {
        height: 500px;
    }

}

.Enquiry_Count {
    position: relative;
    display: inline-block;
    top: -13px;
    right: -24px;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    background: #005570;
    color: rgb(255 255 255);
    z-index: 1;
    font-family: inherit;
    font-size: 10px;
    line-height: 248%;
    text-align: center;
}

.Enquiry_Count span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: .8;
    z-index: -1;
    animation: pluseAnimate 1s ease-out infinite;
}

.navbar-collapse{
    height: 100%;
}

@keyframes pluseAnimate {
    100% {
        opacity: 0;
        transform: scale(2);
    }
}


.warning_text {
    transition: all ease 1s;
    display: none;
    overflow: hidden;
    height: 20px;
    font-size: 14px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: rgb(228, 88, 45);
    padding: 0px 0px;
    border-radius: 10px;
}

.warning_text.show {
    display: inline-block;
    height: 31px;
    font-size: 14px;
    background-color: #fff4f4;
    border: 1px solid #ffcaca;
    color: rgb(228, 88, 45);
    padding: 4px 8px;
    margin-top: 4px;
}

.loading_screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(21px);
    background-color: #00000081;
    z-index: -1;
}

.loading_screen {
    transition: all ease 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: -101;
    opacity: 0;
}

.modal {
    z-index: 100;
}

.modal-backdrop {
    z-index: 99;
}

.loading_screen.show {
    z-index: 101;
    opacity: 1;
}

.loader {
    margin: 0 auto;
    width: 60px;
    height: 50px;
    text-align: center;
    font-size: 10px;
}

.loader>div {
    height: 100%;
    width: 8px;
    display: inline-block;
    float: left;
    margin-left: 2px;
    -webkit-animation: delay 0.8s infinite ease-in-out;
    animation: delay 0.8s infinite ease-in-out;
}

.loader .bar1 {
    background-color: #fd7e14;
}

.loader .bar2 {
    background-color: #fd7e14;
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.loader .bar3 {
    background-color: #fd7e14;
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.loader .bar4 {
    background-color: #fd7e14;
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.loader .bar5 {
    background-color: #fd7e14;
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.loader .bar6 {
    background-color: #fd7e14;
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

@-webkit-keyframes delay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.05);
    }

    20% {
        -webkit-transform: scaleY(1);
    }
}

@keyframes delay {

    0%,
    40%,
    100% {
        transform: scaleY(0.05);
        -webkit-transform: scaleY(0.05);
    }

    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

.notification_area {
    transition: all ease 1s;
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 101;
}

.notification_area p {
    background-color: #fd7e14;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification_area.show {
    bottom: 0%;
}

.custom-list li{
    list-style: outside !important;
    font-weight: bolder;
}