:root {
    --themecolor1: #ffffff;
    --themecolor2: #3d3d3d;
    --themecolor3: #392e1f;
    --themecolor4: #401B60;
    --themecolor5: #a59b65;
    --themecolor6: #878787;
    --themecolor7: #b7b7b7;
    --themecolor8: #d7d7d7;
    --text-colordark: #333333;
    --font-face1: "Open Sans";
    --font-face2: "'Poppins', sans-serif";
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #fbc232;
}

.header {
    position: absolute;
    width: 100%;
    z-index: 1;
}

.fn-w2 {
    font-weight: 300;
}

.fn-w3 {
    font-weight: 500;
}

.fn-w4 {
    font-weight: 600;
}

.fn-w800 {
    font-weight: 800;
}

.fn-12 {
    font-size: 12px;
}

.fn-14 {
    font-size: 14px;
}

.fn-16 {
    font-size: 16px;
}

.fn-18 {
    font-size: 18px;
}

.fn-20 {
    font-size: 20px;
}

.fn-22 {
    font-size: 22px;
}

.fn-24 {
    font-size: 24px;
}

.fn-25 {
    font-size: 25px;
}

.fn-28 {
    font-size: 28px;
}

.fn-30 {
    font-size: 30px;
}

.fn-32 {
    font-size: 32px;
}

.fn-34 {
    font-size: 34px;
}

.fn-36 {
    font-size: 36px;
}

.fs-38 {
    font-size: 38px;
}

.fn-40 {
    font-size: 40px;
}

.fs-44 {
    font-size: 44px;
}

.fn-50 {
    font-size: 50px;
}

.line-h1 {
    line-height: 24px;
}

.line-h2 {
    line-height: 28px;
}

.line-h3 {
    line-height: 30px;
}

.line-h4 {
    line-height: 36px;
}

.line-h5 {
    line-height: 40px;
}

.line-h6 {
    line-height: 48px;
}

.themecolor4 {
    color: #401B60;
}

.themebg4 {
    background: #401B60;
}

.redcolor {
    color: #FF0606;
}

.themecolorlightg {
    color: #040404;
}

.color-lightb {
    color: #57A5D5;
}

.letter-spacing1 {
    letter-spacing: 1px;
}

.textup {
    text-transform: uppercase;
}

.my_header {
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 222;
}

.header_container {
    padding: 30px 15px;
    transition: 0.5s;
}

.logo_container {
    width: 300px;
}

.menu_container {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
}

.fixed_logo {
    display: none;
}

.menu_container .menu_list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu_container .menu_list li {
    margin-right: 30px;
}

.menu_container .menu_list li:last-child {
    margin-right: 0;
}

.menu_container .menu_list li a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.menu_container .menu_list li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fbc232 !important;
    bottom: -3px;
    transition: 0.3s;
    left: 0;
    transform: scalex(0);
}

.menu_container .menu_list li a:hover::before {
    transform: scalex(1);
}

.my_header .menu_container .menu_list .menu_dropdown li a::before {
    background-color: #747e73;
}

.menu_container .menu_list li.drop {
    display: flex;
    fill: #fff;
    align-items: center;
    position: relative;
}

.menu_container .menu_list li.drop svg {
    height: 20px;
    width: 20px;
    margin-left: 2px;
}

.menu_dropdown {
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    background-color: #fff;
    padding: 15px 0;
    top: 50px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 5px 10px #6a7569;
}

.menu_container .menu_list li.drop:hover .menu_dropdown {
    opacity: 1;
    top: 28px;
    visibility: visible;
}

.menu_container .menu_list .menu_dropdown ul li a {
    color: #000;
    fill: #000;
    font-size: 16px;
    white-space: nowrap;
    padding: 5px 20px;
    transition: 0.3s;
}

.menu_container .menu_list .menu_dropdown ul li a:hover {
    background-color: #717b70;
    color: #fff;
}

.list-style-none {
    list-style: none !important;
}

.menu_container .menu_list li a:hover {
    color: #fbc232;
}

.menu_container .menu_list li.active a {
    color: #fbc232;
}

.footer-list li a.active {
    color: #fbc232;
}

.menu_container .menu_list li.active a::before {
    transform: scalex(1);
}

.my_header.fixed .menu_container .menu_list li.active a::before,
.my_header .menu_container .menu_list li.active a::before {
    background-color: #fbc232;
}


/* fixed */

.my_header.fixed {
    background-color: #401b60;
}

.fixed .header_container {
    padding: 5px 15px;
    transition: 0.5s;
}

.my_header.fixed .default_logo {
    display: none;
}

.my_header.fixed .fixed_logo {
    display: block;
}

.my_header.fixed .menu_container .menu_list li.drop {
    fill: #717b70;
}

.my_header.fixed .menu_container .menu_list li a::before {
    background-color: #747e73;
}


/* svg{ max-height: 30px; max-width: 30px;} */

#navtoggle {
    width: 34px;
    height: 26px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: translatey(-50%) rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
}

#navtoggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 50%;
    background: #fff;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#navtoggle span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
}

#navtoggle span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
}

#navtoggle span:nth-child(1),
#navtoggle span:nth-child(2) {
    top: 0px;
}

#navtoggle span:nth-child(3),
#navtoggle span:nth-child(4) {
    top: 11px;
}

#navtoggle span:nth-child(5),
#navtoggle span:nth-child(6) {
    top: 22px;
}

#navtoggle.active span:nth-child(1),
#navtoggle.active span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#navtoggle.active span:nth-child(2),
#navtoggle.active span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#navtoggle.active span:nth-child(1) {
    left: 5px;
    top: 12px;
}

#navtoggle.active span:nth-child(2) {
    left: calc(50% - 5px);
    top: 12px;
}

#navtoggle.active span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

#navtoggle.active span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

#navtoggle.active span:nth-child(5) {
    left: 5px;
    top: 22px;
}

#navtoggle.active span:nth-child(6) {
    left: calc(50% - 5px);
    top: 22px;
}

.sub_menu {
    display: none;
    position: absolute;
    right: 30px;
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.sub_menu::after,
.sub_menu::before {
    content: '';
    position: absolute;
    background: #fff;
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translate(-50%);
    transform-origin: 50% 50%;
    transition: 0.3s;
    border-radius: 5px;
    left: 50%;
}

.sub_menu::before {
    transform: translate(-50%) rotate(90deg);
}

.sub_menu.active::before {
    transform: translate(-50%) rotate(0deg) !important;
}

p {
    font-size: 16px;
    font-weight: 300;
}

.parallax-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 100%;
    min-height: 807px;
}

.parallax-item h2 {
    font-size: 38px;
    font-weight: bold;
}

.parallax-item:first-child {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.40)), url("../images/home-banner.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.parallax-item:nth-child(2) {
    background: #fff;
}

.parallax-item:nth-child(3) {
    background: #fff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax Effect for DIV 3 */
    min-height: 600px;
}

.parallax-item:nth-child(4) {
    background: #F1F1F1;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax Effect for DIV 4 */
}

.parallax-item:nth-child(5) {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax Effect for DIV 5 */
}

.parallax-item:nth-child(6) {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax Effect for DIV 6 */
    /* min-height: 468px; */
}

.banner .down-arrow {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
}

.banner .down-arrow svg {
    width: 144px;
    height: 48px;
    fill: #fff;
    background: #FBC232;
    padding: 13px 14px;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
}

.banner {
    position: relative;
}

.hvr-sweep-to-right {
    background: #fff;
    overflow: auto;
    border: 0px solid #000;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
    border-radius: 5px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #401B60;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: #fff;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.hotel-img-scale {
    overflow: hidden;
}

.hotel-img-scale img:hover {
    transform: scale(1.1);
}

.hotel-img-scale img {
    transition: all 0.5s;
}

.btn-hover {
    font-size: 17px;
    font-weight: 600;
    color: #401B60;
    cursor: pointer;
    margin: 0;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    padding: 17px 35px;
}

.btn-hover:hover {
    background-position: 99.5% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    color: #fff;
}

.btn-hover:focus {
    outline: none;
}

.color-2 {
    color: #fff;
}

.btn-hover.color-1 {
    background-image: linear-gradient(to right, #fff, #fff, #401b60, #401b60);
}

.btn-hover.color-2 {
    background-image: linear-gradient(to right, #401B60, #401B60, #000, #000);
}


/*--------------------Animations code--------------------*/

.left,
.right,
.top {
    position: relative;
    overflow: hidden;
}

.left img,
.right img,
.top img {
    transition: 1s;
    transition-delay: 0.5s;
    transform: scale(1.3);
    opacity: 0;
}

.left.aos-animate img,
.right.aos-animate img,
.top.aos-animate img {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.top.aos-animate::before,
.right.aos-animate::before,
.left.aos-animate::before {
    animation-duration: 1.5s;
    animation-iteration-count: 1;
}

.left::before,
.right::before,
.top::before {
    content: '';
    height: 100%;
    width: 100%;
    transition: 1s;
    background: #401B60;
    position: absolute;
    z-index: 9;
}


/*left*/

.left::before {
    top: 0;
    left: -100%;
}

.left.aos-animate::before {
    animation-name: left;
}

.welcome-content {
    margin: 36px 0;
}

.hotel-img-scale::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 88%;
    width: 88%;
    background: #cccccc;
    z-index: -1;
}

.hotel-img-scale.leftbordernone {
    padding: 0px;
}

.hotel-img-scale.leftbordernone::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 88%;
    width: 88%;
    display: none;
    background: #cccccc;
    z-index: -1;
}

.hotel-img-scale {
    padding: 15px;
}

.serviceBox {
    color: #401B60;
    background: linear-gradient(to left, #401B60 30%, transparent 30%);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 45px 45px 45px;
    border-radius: 40px;
    position: relative;
    transition: 0.15s;
    z-index: 1;
    width: 82%;
    margin: auto;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='28' ry='28' stroke='%23333' stroke-width='3' stroke-dasharray='4%2c 9' stroke-dashoffset='0' stroke-linecap='round'/%3e%3c/svg%3e");
    border-radius: 28px;
}

.serviceBox::after {
    content: "";
    background: linear-gradient(to left, #401B60 30%, transparent 30%);
    width: calc(100% - 50%);
    height: calc(101% - 0px);
    border-radius: 40px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.6);
    transform: translateX(0%) translateY(-50%);
    position: absolute;
    top: 50%;
    z-index: -1;
    color: #401B60;
    background: linear-gradient(to left, #401B60 100%, transparent 100%);
    background-image: linear-gradient(to left, rgb(64, 27, 96) 100%, transparent 100%);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 35px 30px 35px;
    border-radius: 31px;
    transition: 0.15s;
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: ease;
    z-index: -2;
    margin: auto;
    right: -2px;
}

.serviceBox::before {
    content: "";
    background: rgba(255, 255, 255, 1);
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 40px;
    box-shadow: -2px 10px 14px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.serviceBox .service-icon {
    font-size: 45px;
    margin: 0 0 10px;
}

.serviceBox .title {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.serviceBox .description {
    color: #777;
    font-size: 14px;
    line-height: 25px;
    margin: 0;
    font-weight: 500;
}

.serviceBox.pink::after {
    background: linear-gradient(to left, #5F2F88 100%, transparent 100%);
    background-image: linear-gradient(to left, rgb(95, 47, 136) 100%, transparent 100%);
}

.serviceBox.yellow::after {
    background: linear-gradient(to left, #FBC232 100%, transparent 100%);
    background-image: linear-gradient(to left, rgb(251, 194, 50) 100%, transparent 100%);
}

@keyframes left {
    0% {
        left: -100%;
    }
    50% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}


/*right*/

.right::before {
    top: 0;
    right: -100%;
}

.right.aos-animate::before {
    animation-name: right;
}

@keyframes right {
    0% {
        right: -100%;
    }
    50% {
        right: 0;
    }
    100% {
        right: 100%;
    }
}


/*top*/

.top::before {
    left: 0;
    bottom: -100%;
}

.top.aos-animate::before {
    animation-name: top;
}

@keyframes top {
    0% {
        bottom: -100%;
    }
    50% {
        bottom: 0;
    }
    100% {
        bottom: 100%;
    }
}


/*--------------------Animations code end--------------------*/

/* .industry { */
    /* padding: 30px 0; */
/* } */

.industry .service-icon {
    background: #401B60;
    height: 70px;
    width: 70px;
    position: relative;
    border-radius: 50%;
    text-align: center;
    float: left;
    display: flex;
}

.industry .service-icon img {
    margin: auto;
    width: 32px;
    height: 30px;
}

.industry .service-icon::after {
    content: '';
    position: absolute;
    border: 2px dotted #fff;
    height: 89%;
    width: 89%;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    border-radius: 50%;
    top: 0;
    bottom: 0;
}

.industry .service-icon.red {
    background: #F35958;
}

.industry .service-icon.blue {
    background: #02A2DD;
}

.industry .service-icon.purple {
    background: #9F84C4;
}

.industry .service-icon.darkCyan {
    background: #008B8B;
}

.industry .service-icon.strongcyan {
    background: #1ABC9C;
}

.industry .service-icon i {
    font-size: 30px;
    color: #fff;
    line-height: 70px;
}

.industry .service-content {
    margin-left: 95px;
}

.industry .service-content h3 {
    color: #401B60;
    font-size: 19px;
    font-weight: 500;
    margin-top: 0;
}

.industry .service-content p {
    color: #000000;
}

.industry .read {
    color: #61D3E2;
    text-decoration: none;
}

.industry .read i {
    font-size: 16px;
    margin-left: 10px;
}

.productive {
    background-image: url("../images/productive.svg");
    background-repeat: no-repeat;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-color: linear-gradient(80deg, rgba(5, 77, 115, 1) 0%, rgba(0, 124, 189, 1) 0%, rgba(5, 77, 115, 1) 72%);
}

.productive::after {
    content: "";
    background: rgba(64, 27, 96, 0.74);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.productivcontact {
  background-image: url("../images/productive.svg");
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-color: linear-gradient(80deg, rgba(5, 77, 115, 1) 0%, rgba(0, 124, 189, 1) 0%, rgba(5, 77, 115, 1) 72%);
}
.productivcontact::after {
    content: "";
    background: rgba(64, 27, 96, 0.74);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.zindex {
    z-index: 1;
}

.industry .service-icon:hover {
    background: #5e2e87;
}

address span {
    font-weight: 500;
}

address b {
    color: var(--themecolor4);
}

.footer-list.menulefttoright li {
    display: inline-block;
    color: #000000;
}

.footer-list.menulefttoright li a {
    text-decoration: none;
}

.menu-space {
    padding: 0 14px 0 18px;
    color: #000000;
    font-size: 12px;
    font-weight: normal;
}

.icon {
    height: 20px;
    width: 20px;
    vertical-align: middle;
    display: inline-block;
    margin: 0 5px;
    fill: #401b60;
}

.width-50 {
    width: 50%;
}

.businesscantent {
    padding: 90px 0;
}

.parallax-item.innrebanner {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.40)), url("../images/our-approach.jpg");
    background-size: cover;
    background-attachment: local;
    background-position: center;
    min-height: 500px;
}
.parallax-item.innreservicebanner {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.40)), url("../images/our-service.jpg");
    background-size: cover;
    background-attachment: local;
    background-position: center;
    min-height: 500px;
}
.parallax-item.innrecontactimgbanner {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)), url("../images/lets-connect.jpg");
    background-size: cover;
    background-attachment: local;
    background-position: center;
    min-height: 500px;
}
.parallax-item.innreprivacybanner {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.40)), url("../images/privacy-policy.jpg");
    background-size: cover;
    background-attachment: local;
    background-position: center;
    min-height: 500px;
}
.innrebannertext {
    padding-top: 12%;
}

.ourapproach::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 100%;
    width: 28%;
    background: #401B60;
    z-index: -1;
}

.ourapproach {
    position: relative;
}


/*--------------------our approach--------------------*/

.arountcercile {
    position: relative;
}

.circleinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 465px;
    height: 465px;
    border-radius: 50%;
    background: linear-gradient(0deg, rgba(64, 27, 96, 0.44), rgba(64, 27, 96, 0.44)), url("../images/our-strategy-page-header.svg");
    border: 10px solid #F1F1F1;
    background-position: center;
}

.white-background-with-blue {
    width: 100%;
    height: 1280px;
    background: #F1F1F1 url("../images/white-background-with-blue.png") no-repeat;
    background-size: cover;
    padding: 96px 0;
    background-position: center;
}

.circleinner::after {
    content: '';
    border-radius: 50%;
    position: absolute;
    border: 10px solid white;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    box-shadow: 0px 0px 3px -2px #666;
}

.circleinner::before {
    content: '';
    border-radius: 50%;
    position: absolute;
    border: 3px dashed #107DC7;
    top: -35px;
    left: -35px;
    right: -35px;
    bottom: -35px;
}

#arc,
#arc::before {
    display: block;
    box-sizing: border-box;
    border-radius: 100%;
    width: 581px;
    height: 601px;
    position: absolute;
    background-color: transparent;
    padding: 0;
    margin: 0;
    transform: rotate(90deg);
    top: 0;
}

#arc {
    border: solid #222B5F 7px;
    clip: rect(0px, 626px, 297px, 0px);
    margin: 25px;
    position: absolute;
    top: -93px;
    left: -90px;
}

.tabcontent {
    animation: fadeEffect 1s;
    /* Fading effect takes 1 second */
}


/* Style the tab */


/* Style the buttons that are used to open the tab content */

.tab button {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0s;
    position: relative;
}


/* Create an active/current tablink class */

.tab button.active {
    background-color: #fbc232;
}


/* Style the tab content */

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 0px solid #ccc;
    border-top: none;
    margin: auto;
}

.tab {
    position: absolute;
    top: -191px;
    left: 224px;
    width: 53%;
}

.tablinks {
    background-color: #401B60;
    border-radius: 50%;
    width: 105px;
    height: 105px;
    color: #FFF;
}

.tablinks::after {
    content: '';
    position: absolute;
    top: 95%;
    left: 88px;
    margin-left: -50px;
    width: 0;
    height: 0;
    border-top: solid 27px #401b60;
    border-left: solid 15px transparent;
    border-right: solid 15px transparent;
    z-index: 11;
}

.tablinks.active::after {
    border-top: solid 27px #fbc232;
}

.tablinks::before {
    content: '';
    position: absolute;
    top: 123%;
    left: 88px;
    margin-left: -43px;
    width: 18px;
    height: 18px;
    z-index: 11;
    background-color: #401B60;
    border-radius: 50%;
}

.tablinks.active::before {
    background-color: #fbc232;
}

.tab-icon {
    background: #fff;
    border-radius: 50%;
    margin: auto;
    vertical-align: middle;
    display: flex;
    padding: 12px;
    width: 65px;
    height: 65px;
}

.div-1 {
    padding-left: 130px;
    padding-right: 0%;
}

.tablinks.active~.div-1 h2 {
    color: #fbc232;
}

.padding-top {
    padding-top: 145px;
}

.tablinks.active .icon-bell {
    filter: invert(66%) sepia(118%) saturate(355%) hue-rotate(346deg) brightness(121%) contrast(97%)
}

.first-tab.sec-tab {
    top: 217px;
    position: absolute;
    left: 294px;
    width: 100%;
}

.first-tab.sec-tab.three-tab {
    top: 538px;
    position: absolute;
    left: 294px;
    width: 100%;
}

.first-tab.sec-tab .tablinks {
    transform: rotate(50deg);
}

.first-tab {
    left: -49px;
    position: absolute;
    top: -2px;
}

.first-tab.sec-tab .icon-bell {
    transform: rotate(-45deg);
}

.first-tab.sec-tab.three-tab .icon-bell {
    transform: rotate(-118deg);
}

.first-tab.sec-tab.three-tab .tablinks {
    transform: rotate(120deg);
}

.first-tab.sec-tab.three-tab.four-tab {
    top: 743px;
    position: absolute;
    left: -42px;
    width: 100%;
}

.first-tab.sec-tab.three-tab.four-tab .icon-bell {
    transform: rotate(0deg);
}

.first-tab.sec-tab.three-tab.four-tab .tablinks {
    transform: rotate(180deg);
}

.small-tab {
    margin: auto;
    color: #fff;
    display: flex;
    height: 100%;
    padding: 20px 5%;
    text-align: center;
    border: 0px solid;
    outline: none;
    position: relative;
    z-index: 2;
}

.maintab {
    background: #E8E8E8;
}

.tab-pane::before {
    display: block;
    content: " ";
    margin-top: -285px;
    height: 285px;
    visibility: hidden;
    pointer-events: none;
}


/* Go from zero to full opacity */

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.nav-tabs .nav-link {
    margin-bottom: 0px;
    background: 0 0;
    border: 0px solid transparent;
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
    color: #401B60;
    padding: 9% 14%;
    text-align: center;
    line-height: 1;
    height: 100%;
    font-size: 22px;
}

.maintab li {
    width: 25%;
    position: relative;
    border-right: 1px solid #BBB
}

.maintab li:last-child {
    border: none !important;
}

.nav-tabs {
    border-bottom: 0px solid #dee2e6;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #FBC232;
}

.nav-link.active .bottam-tabicon {
    filter: invert(91%) sepia(1228%) saturate(1246%) hue-rotate(322deg) brightness(99999%) contrast(97%)
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    margin-left: 0;
    width: 0;
    height: 0;
    border-top: solid 19px #fbc232;
    border-left: solid 15px transparent;
    border-right: solid 15px transparent;
    z-index: 11;
    right: 0;
    margin: auto;
}

.innerpagesulli li::after {
    content: '';
    position: absolute;
    top: 5px;
    left: -31px;
    margin-left: 0;
    width: 16px;
    height: 17px;
    background: url(../images/lipoint.png);
}

.innerpagesulli li {
    margin-bottom: 10px;
    position: relative;
    list-style: none;
}

.innerpagesulli.bluedot li::after {
    background: url(../images/lipoint-2.png);
}

h2 {
    font-size: 42px;
    font-weight: bold;
}

.tabslink {
    font-size: 18px;
}

.slider-nav-thumbnails .slick-slide {
    opacity: 0.5;
}

.slick-dots .slick-active button {
    opacity: 1;
    color: #FBC232;
}

.slick-dots .slick-active {
    opacity: 1;
    color: #FBC232;
}

.slick-prev {
    position: absolute;
    top: 46%;
    left: -10px;
    font-size: 40px;
    z-index: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.slick-next {
    position: absolute;
    top: 46%;
    right: -10px;
    z-index: 1;
    font-size: 40px;
    cursor: pointer;
    transform: translateY(-50%);
}

.sliderovertext {
    position: absolute;
    top: 50%;
    left: 0px;
    padding: 0 30px;
    color: #fff;
    transform: translateY(-50%);
    z-index: 1;
}

.imagesoverly {
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.slick-dots li {
    width: auto !important;
    padding: 0 10px;
    position: relative;
    color: #BFBFBF;
    cursor: pointer;
    font-size: 18px;
}

.slick-dots li::after {
    border: 1px solid #BFBFBF;
    content: "";
    position: absolute;
    right: -2px;
    height: 18px;
    top: 5px;
}

.tablinksslider {
    font-size: 20px;
    margin-bottom: 24px;
    display: block;
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    color: #BFBFBF;
    font-weight: 600;
}

.tablinksslider.is-active span {
    color: #fff;
}

.tablinksslider::before {
    content: '';
    position: absolute;
    left: 0;
    height: 86%;
    border-left: 4px solid #707070;
    top: 0;
    bottom: 0;
    margin: auto;
}

.tablinksslider.is-active::before {
    border-left: 4px solid #FBC232;
}

.padding-y-b {
    padding: 80px 0px;
}

.slick-dots li:last-child::after {
    display: none;
}

.formbox {
    border: 1px solid #401B60;
    border-radius: 3px;
    padding-top: 5px;
    padding: 30px;
}


/*validation css start*/

.field-validation-error {
    bottom: 0px !important;
    color: #b50007;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    left: 15px;
}

.input-validation-errorimage {
    background: url("/Content/images/error.png") no-repeat scroll right 15px center !important;
    border-bottom: 1px solid #b50007 !important;
    transition: all 0s ease-in-out 0s;
}

.validimage {
    background: url("/Content/images/success.png") no-repeat scroll right 15px center !important;
    /*border: 1px solid #ced4da !important;*/
    transition: all 0s ease-in-out 0s;
}

.input-validation-error {
    border: 1px solid #b50007 !important;
    transition: all 0s ease-in-out 0s;
}

.valid {
    border-bottom: 1px solid #ced4da !important;
    transition: all 0s ease-in-out 0s;
}

.sameheight {
    height: 89px;
    margin-bottom: 0px !important;
    position: relative;
}

.field {
    position: relative;
    margin-bottom: 15px;
}

.field label::before {
    content: attr(title1);
    position: absolute;
    top: 18px;
    left: 15px;
    color: #BEBEBE;
    transition: 300ms all;
	font-weight: normal;
}

.h-55 {
    height: 55px;
}

.field input,
.field textarea {
    box-shadow: 0 0 0;
    color: #00000;
    border: 1px solid #A1A1A1;
}

.field input:focus {
    outline: 0;
    box-shadow: 0 0 0;
}

.field input:valid+label::before {
    content: attr(data-title1);
}

.field input:focus+label::before {
    color: #fff;
}

.label-before,
.field input:focus+label::before,
.field input:valid+label::before {
    line-height: 20px;
    font-size: 15px;
    top: -10px;
    background: #fff;
    padding: 0 6px;
    color: #BEBEBE;
    left: 9px;
}

.field label {
    cursor: text;
}

.form-control-placeholder {
    position: absolute;
    top: 0px;
    padding: 11px 0 0 0;
    transition: all 200ms;
    font-size: 16px;
    color: #fff;
    opacity: 1;
    font-weight: 500;
    left: 15px;
}

.fieldnew {
    position: relative;
    margin-bottom: 15px;
}

.fieldnew label::before {
    content: attr(title1);
    position: absolute;
    top: 15px;
    left: 41px;
    color: #666;
    transition: 300ms all;
}

.fieldnew input,
.field textarea {
    box-shadow: 0 0 0;
    border: 1px solid #A1A1A1;
}

.fieldnew input:focus {
    outline: 0;
    box-shadow: 0 0 0;
}

.fieldnew input:valid+label::before {
    content: attr(data-title1);
}

.fieldnew input:focus+label::before {
    color: #666;
}

.label-before,
.fieldnew input:focus+label::before,
.fieldnew input:valid+label::before {
    line-height: 20px;
    font-size: 15px;
    top: -10px;
    background: #fff;
    padding: 0 6px;
    color: #666;
    left: 9px;
}

.fieldnew label {
    cursor: text;
}

.form-control-placeholder {
    position: absolute;
    top: 0px;
    padding: 11px 0 0 0;
    transition: all 200ms;
    font-size: 16px;
    color: #666;
    opacity: 1;
    font-weight: 500;
    left: 15px;
}

.field textarea:focus {
    outline: 0;
    box-shadow: 0 0 0;
    color: #BEBEBE;
}

.field textarea:valid+label::before {
    content: attr(data-title1);
}

.field textarea:focus+label::before {
    color: #666;
}

.label-before,
.field textarea:focus+label::before,
.field textarea:valid+label::before {
    line-height: 20px;
    font-size: 15px;
    top: -10px;
    background: #fff;
    padding: 0 6px;
    left: 9px;
}

.fieldnew textarea:focus {
    outline: 0;
    box-shadow: 0 0 0;
}

.fieldnew textarea {
    outline: 0;
    box-shadow: 0 0 0;
}

.fieldnew textarea:valid+label::before {
    content: attr(data-title1);
}

.fieldnew textarea:focus+label::before {
    color: #666;
}

.label-before,
.fieldnew textarea:focus+label::before,
.fieldnew textarea:valid+label::before {
    line-height: 20px;
    font-size: 15px;
    top: -10px;
    /*background: linear-gradient(#f7fafb, #ffffff);*/
    padding: 0 6px;
    color: #666;
    left: 9px;
}

.form-group.col-md-12 {
	width: 100%;
}
.addressblock img{
	width:40px;
}
.addressblock p{
	color:#444444;
}
.iotblockpara {
	position: relative;
}
.iotblockpara::after {
	content: "";
	position: absolute;
	background: rgba(0,0,0,0.35);
	height: 100%;
	width: 100%;
	z-index: 1;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.iotblockparatext{position:absolute;
bottom: 40px; width:100%;z-index:11;
}
.iotblockparatext h3{
font-weight: 600;
font-size: 32px;
}

.iotblockparatext p {
font-size: 20px;
font-weight: 500;
}


.tab h2.tablinks1.active {
  color: #fbc232;
}
.tablinks1{
  cursor: pointer;
}
.solutiontxt{
  font-size: 18px;
  font-weight: 400;
}

@media only screen and (max-width: 990px) {
    .serviceBox {
        margin: 0 0 30px;
    }
    .serviceBox.d-flex.align-items-start.flex-column.h-100 {
        height: auto !important;
    }
}

@media screen and (max-width: 768px) {
    .parallax-item h2 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width:1600px) {
    .menu_container .menu_list li {
        margin-right: 36px;
    }
    .parallax-item:first-child {
        min-height: 90vh;
    }
    .parallax-item.innrebanner {
        min-height: auto;
    }
	.parallax-item.innreservicebanner{
		min-height:auto;
	}
	parallax-item.innrecontactimgbanner {
		min-height:auto;
	}
	parallax-item.innreprivacybanner {
		min-height:auto;
	}
	
    .welcome-content {
        margin: 0px 0;
    }
    .parallax-item,
    .parallax-item:nth-child(3) {
        min-height: auto;
        padding: 68px 0
    }
	
}

@media only screen and (max-width:1440px) {
    .logo_container {
        width: 230px;
    }
    .mob-w {
        width: 100%;
    }
}

@media only screen and (max-width:1366px) {
    .menu_container .menu_list li {
        margin-right: 30px;
    }
    .menu_container .menu_list li a {
        font-size: 16px;
    }
    .menu_container .menu_list li.drop svg {
        height: 17px;
        width: 17px;
        margin-left: 0px;
    }
    .tablinksslider {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width:1280px) {
    .menu_container .menu_list li {
        margin-right: 20px;
    }
    .serviceBox {
        width: 96%;
    }
    .fs-38 {
        font-size: 31px;
    }
}

@media only screen and (max-width:1199px) {
    .menu_container .menu_list li {
        margin-right: 20px;
    }
    .logo_container {
        width: 166px;
    }
    .parallax-item {
        padding: 50px 0;
    }
    .circleinner {
        width: 275px;
        height: 275px;
    }
    .div-1 {
        padding-right: 0%;
    }
    #arc,
    #arc::before {
        width: 374px;
        height: 374px;
    }
    .tab {
        position: absolute;
        top: -184px;
        left: 73px;
        width: 69%;
    }
    .first-tab.sec-tab {
        top: 155px;
        left: 255px;
    }
    .first-tab.sec-tab.three-tab {
        top: 393px;
        left: 254px;
    }
    .first-tab.sec-tab.three-tab.four-tab {
        top: 537px;
        left: -6px;
    }
    #arc {
        clip: rect(0px, 377px, 213px, 0px);
        top: -75px;
        left: -73px;
    }
    .first-tab {
        left: -11px;
        position: absolute;
        top: -2px;
    }
}

@media only screen and (max-width:999px) {
    .menu_container .menu_list {
        flex-direction: column;
        position: fixed;
        left: -150%;
        width: 100%;
        background: #401B60;
        height: 100vh;
        top: 0;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
    }
    .menu_container .menu_list.active {
        left: 0 !important;
    }
    .menu_container .menu_list li {
        margin-right: 0;
        margin-top: 15px;
    }
    .menu_container .menu_list li:first-child {
        margin-top: 0;
    }
    .menu_container .menu_list li.drop {
        flex-direction: column;
    }
    .menu_dropdown {
        opacity: 1;
        visibility: visible;
        display: none;
        position: relative;
        left: unset;
        transform: unset;
        top: unset;
        transition: unset;
        margin-top: 11px;
        box-shadow: unset;
    }
    .menu_container .menu_list li.drop svg {
        display: none;
    }
    .menu_container .menu_list li.drop {
        width: 100%;
        justify-content: center;
    }
    .my_header.fixed .menu_container .menu_list li a {
        color: #fff;
    }
    .my_header.fixed .menu_container .menu_list .menu_dropdown li a {
        color: #717b70;
        fill: #717b70;
    }
    .my_header.fixed .menu_container .menu_list .menu_dropdown li a:hover {
        color: #fff;
        fill: #fff;
        top: unset;
    }
    .menu_container .menu_list li.drop:hover .menu_dropdown {
        top: unset;
    }
    .my_header.fixed #navtoggle.active span {
        background: #fff;
    }
    #navtoggle,
    .sub_menu {
        display: block;
    }
    .header_container {
        padding: 20px 30px;
    }
    .parallax-item {
        padding: 50px 0;
    }
    .tab {
        width: 58%;
    }
    .ourapproach::after {
        opacity: 0;
    }
    .fn-24 {
        font-size: 18px;
    }
}

@media only screen and (max-width:767px) {
    .header_container {
        padding: 15px 15px;
    }
    .my_header.fixed .logo_container {
        width: 140px;
    }
    .sub_menu {
        right: 15px;
    }
    .parallax-item {
        padding: 50px 0;
    }
    .fs-38 {
        font-size: 23px;
    }
    .fn-40 {
        font-size: 26px;
    }
    .width-50 {
        width: 100%;
    }
    .fn-24 {
        font-size: 19px;
    }
    .fixed .header_container {
        padding: 18px 15px;
        transition: 0.5s;
    }
    .btn {
        padding: 15px 22px;
        font-size: 15px;
    }
    .industry .service-icon {
        height: 48px;
        width: 48px;
    }
    .industry .service-icon img {
        width: 55%;
    }
    .industry .service-content {
        margin-left: 63px;
    }
    .industry {
        padding: 15px 0;
    }
    .businesscantent {
        padding: 15px 0;
    }
    /* tab responsive */
    .tab button {
        padding: 5px 5px;
    }
    .tab-icon {
        display: flex;
        padding: 10px;
        width: 100%;
        height: 100%;
    }
    .tablinks::before {
        top: 127%;
        left: 65px;
        margin-left: -43px;
        width: 12px;
        height: 12px;
    }
    .tablinks {
        width: 58px;
        height: 59px;
    }
    .tablinks::after {
        content: '';
        position: absolute;
        top: 93%;
        left: 19px;
        margin-left: 0px;
        width: 0;
        height: 0;
        border-top: solid 15px #401b60;
        border-left: solid 10px transparent;
        border-right: solid 10px transparent;
        z-index: 11;
    }
    .tablinks.active::after {
        border-top: solid 15px #fbc232;
    }
    .tab p {
        display: none;
    }
    .circleinner {
        width: 175px;
        height: 175px;
    }
    .div-1 {
        padding-left: 66px;
        padding-right: 0;
    }
    #arc,
    #arc::before {
        width: 253px;
        height: 253px;
    }
    .tab {
        position: absolute;
        top: -114px;
        left: 50px;
        width: 90%;
    }
    .first-tab.sec-tab {
        top: 103px;
        left: 169px;
    }
    .first-tab.sec-tab.three-tab {
        top: 239px;
        left: 172px;
    }
    .first-tab.sec-tab.three-tab.four-tab {
        top: 347px;
        left: -6px;
    }
    #arc {
        clip: rect(0px, 376px, 145px, 0px);
        top: -63px;
        left: -61px;
    }
    .fn-22 {
        font-size: 16px;
    }
    .text-white.tabslink {
        font-size: 10px;
        font-weight: 500;
    }
    .small-tab p {
        font-size: 9px;
        font-weight: 300;
        margin-bottom: 0;
    }
    .tabcontent {
        padding: 3px 0px;
    }
    .padding-top {
        padding-top: 75px;
    }
    .white-background-with-blue {
        height: 869px;
    }
    .nav-tabs .nav-link {
        padding: 3%;
        font-size: 12px;
    }
    .bottam-tabicon {
        width: 30px;
    }
    .tabslink {
        font-size: 15px;
    }
    .slick-prev {
        left: 5px;
    }
    .slick-next {
        right: 5px;
    }
    .slick-prev img {
        width: 14px;
    }
    .slick-next img {
        width: 14px;
    }
    .sliderovertext {
        padding: 0 24px;
    }
	.iotblockparatext h3{
		font-weight: 600;
		font-size: 24px;
	}

	.iotblockparatext p {
		font-size: 14px;
		font-weight: 500;
	}

}

@media only screen and (max-width:575px) {
    .h3,
    h3 {
        font-size: calc(1rem + .6vw);
    }
    .tablinksslider {
        font-size: 15px;
        font-weight: 500;
    }
    .padding-y-b {
        padding: 50px 0px;
    }
    .slick-dots li {
        padding: 0 7px;
        font-size: 15px;
    }
    .slick-dots li::after {
        border: 1px solid #BFBFBF;
        content: "";
        position: absolute;
        right: -2px;
        height: 13px;
        top: 5px;
    }
    .div-1 {
        padding-left: 10px;
        padding-right: 2%;
    }
    .tab-icon {
        padding: 5px;
    }
    .tablinks {
        width: 45px;
        height: 44px;
    }
    .tablinks::after {
        left: 14px;
    }
    .tab {
        top: -95px;
        left: 50px;
        width: 48%;
    }
    .fn-22 {
        font-size: 12px;
        margin-bottom: 0;
    }
    .first-tab.sec-tab {
        left: 165px;
    }
    .first-tab.sec-tab.three-tab {
        top: 239px;
        left: 161px;
    }
    .first-tab.sec-tab.three-tab.four-tab {
        top: 323px;
        left: 5px;
    }
    .circleinner::after {
        border: 5px solid white;
        top: -11px;
        left: -11px;
        right: -11px;
        bottom: -11px;
    }
    .circleinner::before {
        border: 2px dashed #107DC7;
        top: -18px;
        left: -18px;
        right: -18px;
        bottom: -18px;
    }
    .arountcercile {
        position: relative;
        float: left;
        width: 92%;
    }
    .div-1 {
        padding-left: 51px;
        padding-right: 0%;
        font-size: 12px;
    }
    .first-tab {
        left: -8px;
        position: absolute;
        top: 0px;
    }
    .white-background-with-blue {
        padding: 53px 0;
    }
    .tab-pane::before {
        display: block;
        content: " ";
        margin-top: -185px;
        height: 185px;
        visibility: hidden;
        pointer-events: none;
    }
    .padding-top {
        padding-top: 46px;
    }
}

@media only screen and (max-width:444px) {
    .img-w {
        width: 80%;
    }
    .tabslink {
        font-size: 14px;
    }
}

@media only screen and (max-width:379px) {
    .fn-22 {
        font-size: 14px;
        margin-bottom: 0;
    }
    .circleinner {
        width: 163px;
        height: 163px;
    }
    .circleinner::after {
        border: 4px solid white;
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
    #arc {
        clip: rect(0px, 376px, 117px, 0px);
        top: -42px;
        left: -44px;
    }
    .first-tab {
        top: 14px;
    }
    .first-tab.sec-tab {
        left: 133px;
    }
    .first-tab.sec-tab.three-tab {
        top: 224px;
        left: 131px;
    }
    .first-tab.sec-tab.three-tab.four-tab {
        top: 296px;
        left: 5px;
    }
    #arc,
    #arc::before {
        width: 207px;
        height: 198px;
    }
    .div-1 {
        padding-left: 49px;
    }
    .tabslink {
        font-size: 10px;
    }
}