/* =============================================================
   ============================================================= */

/*sectitle-wrapper*/

.sectitle-wrapper {  margin: 0;  padding: 0 0 30px 0; }

.sectitle-wrapper .short-title {	font-size: 12px;	font-weight: 800;
	text-transform: uppercase;	letter-spacing: 0.18em;	color: #ec7323;
	margin-bottom: 14px;	display: flex;	align-items: center;	gap: 10px;	justify-content: center; }

 .sectitle-wrapper .short-title::before {    content: '';    width: 28px;    height: 2px;    background: #ec7323; } 
    
.sectitle-wrapper .usa-title {margin-bottom: 15px;    font-family: Montserrat;    font-weight: 700;   
 font-size: clamp(28px, 3.2vw, 34px); line-height: clamp(34px, 3.8vw, 41px);  
 letter-spacing: 0%;    text-align: center;}

.sectitle-wrapper .white_color { color:#fff !important; }

.sectitle-wrapper .usa-title span { color: #ff6b00; }
.sectitle-wrapper .usa-subtitle {     max-width: 900px;    margin: 0 auto;    font-weight: 500;
    font-size: 16px;    line-height: 24px;    letter-spacing: 0%;    text-align: center;    color:#09195b; }

/*sectitle-wrapper*/





/* ── HEADER ──────────── */
/**/

/******** Header ********/

.header-height {
    margin: 0;
    padding: 0;
    height: 122px;
    display: none;
}

/*header.white-bg{top:-51px;transition:all 0.3s ease;}*/

header.white-bg {
    top: 0px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.55s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
    z-index: 99999;
}

header.white-bg .main-navbar-wrap .main-navbar .navbar-nav > li > a {
    color: #000;
    font-size: 15px;
    font-weight: 700;
}

header.white-bg .main-navbar-wrap .main-navbar .navbar-nav > li > a:hover {
    color: var(--orange-color);
}

header.white-bg .main-navbar-wrap .main-navbar .navbar-nav > li > a:hover .fa {
    color: #fff;
}

header.white-bg .main-navbar-wrap .main-navbar .navbar-nav > li > a .fa {
    color:#000;
}


/* ── Homepage: transparent header on load, white sticky on scroll ── */
/* NOTE: :not(.white-bg) ensures these transparent rules lose to header.white-bg when JS adds the class on scroll */
body.page-home header.arobit_desktop_view:not(.white-bg),
body.page-home header.arobit_desktop_view:not(.white-bg) .main-navbar-wrap,
body.page-home header.arobit_desktop_view:not(.white-bg) .main-navbar-wrap .main-navbar { background: transparent; box-shadow: none; }
body.page-home header.arobit_desktop_view .top-review-bar { display: none; }
body.page-home header.arobit_desktop_view:not(.white-bg) .color_logo { display: none; }
body.page-home header.arobit_desktop_view:not(.white-bg) .white_logo { display: block; }
body.page-home header.arobit_desktop_view:not(.white-bg) .main-navbar .navbar-nav > li > a { color: #fff; }
/* Homepage scrolled: reveal color logo, dark nav links */
body.page-home header.white-bg .color_logo { display: block; }
body.page-home header.white-bg .white_logo { display: none; }

#share_btn {
    font-size: var(--font-size-20);
    display: none;
    position: absolute;
    right: 15px;
    top: 13px;
    z-index: 999;
    color: #202122 !important;
    cursor: pointer;
}
#estimate-mobile-btn {
    position: absolute;
    right: 15px;
    top: 8px;
    z-index: 999;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50px;
    display: none;
}
#estimate-mobile-btn .fas {
    margin: 0 4px 0 0;
    font-size: var(--font-size-16);
}

.top-review-bar {
    width: 100%;
    background: #162d42;
    padding: 6px 0;
    display: none;
}

.top-review-bar .container {
    max-width: 1200px;
    width: 100%;
}

.header_social {
    display: inline-block;
}
.header_contact {
    display: inline-block;
    color: #fff;
    font-size: var(--font-size-20);
}
.header_contact li {
    padding: 0 25px;
    position: relative;
    display: inline-flex;
    align-items: center;
}
.header_contact li:last-child {
    border: none;
}
.header_social li a {
    width: 33px;
    height: 33px;
    background: #0d0d0e;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    margin: 1px;
    color: #fff;
    font-size: var(--font-size-16);
}
.header_social li:last-child a {
    margin-right: 0;
}
.header_social li a span {
    font-size: 0;
}
.top-review-bar p {
    margin: 0 10px 0 0;
    color: var(--white-color);
}

.top-review-bar a {
    color: #fff;
}

.top-review-bar .top-left-part a {
    font-size: var(--font-size-13);
    color: #fff;
}

.top-review-bar .top-right-part {
    font-size: var(--font-size-13);
    color: #fff;
}

.top-review-bar .top-right-part .head-top-requet-btn {
    animation: changeBackgroundColor 7s infinite;
}

header.white-bg .top-review-bar {
    width: 100%;
    background: #162d42;
    padding: 6px 0;
    display: block;
}

@keyframes changeBackgroundColor {
    0% {
        background-color: var(--blue-dark-color);
    }

    50% {
        background-color: var(--blue-light-color);
    }
}

.header_contact li:first-child {
    padding-left: 0;
}
.header_contact li:first-child:before {
    content: "";
    width: 1px;
    height: 8px;
    background: #fff;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.header_contact li a {
    font-size: var(--font-size-13);
}
.header_contact li i {
    color: #ec7323;
    font-size: var(--font-size-24);
    margin-right: 10px;
}
.header_social li a:hover {
    background: #fff;
    color: #000;
}
.main-navbar-wrap {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-navbar-wrap.selected {
    background: var(--white-color);
}

.main-navbar-wrap.selected .main-navbar .navbar .navbar-header a .color_logo {
    display: block;
}
.main-navbar-wrap.selected .main-navbar .navbar .navbar-header a .white_logo {
    display: none;
}

.main-navbar-wrap.selected .navbar-nav > li > a {
    color:#000;
    font-size: 15px;
}

.main-navbar-wrap.selected .accessible-megamenu-top-nav-item a .fa {
    color: var(--blue-light-color);
    font-size: var(--font-size-16);
    font-weight: bold;
}

.navbar-header {
	padding: 8px 0;
	display: flex;
	align-items: center;
	position:relative;
}


.navbar-header a {
    display: inline-block;
}

/*.main-navbar {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    background: #fff;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
*/

.main-navbar {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    background: #fff0;
    /* box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3); */
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-navbar-wrap.fullwidth {
    max-width: 100%;
    border-radius: 0;
    background-color: #fff;
}

.main-navbar-wrap.fullwidth .main-navbar {
    box-shadow: none;
}

nav.navbar {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: static;
	padding: 0 15px;
	min-height: inherit;
	border: 0;
}


.navbar-header img {
	width: 170px;
}

.navbar-nav {
    flex-direction: row;
    align-items: center;
}
.main-navbar .navbar-nav > li {
    padding: 0 9px;
    line-height: 88px;
    position: relative;
    display: inline-block;
}

.main-navbar .navbar-nav > li.megamenumain {
    position: static;
}

/*.main-navbar .navbar-nav > li.megamenumain .branding-outreach .sub-menu-wrap {  }*/

.main-navbar .navbar-nav > li:last-child {
    padding-right: 0;
    line-height: inherit;
    display: inline-flex;
    vertical-align: middle;
}
.main-navbar .navbar-nav > li:last-child a {
    line-height: 1;
}
.main-navbar .navbar-nav > li:first-child {
    padding-left: 0;
}

.main-navbar .navbar-nav > li > a {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 700;
}
.main-navbar .navbar-nav > li > a:hover {
    color: var(--orange-color);
}
.main-navbar .navbar-nav > li > a:hover .fa {
    color: #fff;
}

/*.main-navbar .navbar-nav > li.active > a {color:var(--white-color);}*/

.estimate_btn {
    /* background: linear-gradient(to right, rgb(2 12 111) 0, rgb(2 120 193) 100%); */
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0;
    padding: 14px 15px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
}

header.white-bg .estimate_btn {
    background: #ec7323 !important;
    color: #fff !important;
}

header .main-navbar-wrap.selected .estimate_btn {
    background: #ec7323 !important;
    color: #fff !important;
}

.estimate_btn .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.estimate_btn:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.estimate_btn:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    margin: 0;
    padding: 12px 30px 12px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
    position: relative;
}

/*.estimate_btn*/

.main-navbar-wrap .navbar .megamenu .estimate_btn:hover {
    background: linear-gradient(to right, rgb(0 23 255) 0, rgb(1 60 96) 100%);
    transition: all 0.3s;
}

.sub-menu-normal {
    display: none;
    position: absolute;
    top: 99%;
    background-color: #fff;
    width: 260px;
    left: 0;
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
    -webkit-box-shadow: 0px 6px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 6px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0px 6px 10px 0 rgba(0, 0, 0, 0.15);
}
.sub-menu-normal > li {
    display: block;
    line-height: 1;
    padding: 12px 20px 12px 35px;
}

.sub-menu-normal > li > a {
	color: #202122;
	position: relative;
	padding-left: 0;
}

.sub-menu-normal > li > a::before {
	content: "\f105";
	color: #202122;
	font-family: "FontAwesome";
	font-size: var(--font-size-16);
	font-weight: 600;
	position: absolute;
	left: -12px;
	top: 0px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sub-menu-normal > li > a:hover,
.sub-menu-normal > li > a:focus {
    color: var(--blue-light-color);
    padding-left: 0;
}


/*.sub-menu-normal > li > a:hover:before,*/
/*.sub-menu-normal > li > a:focus:before {*/
/*    left: 5px;*/
/*    color: var(--blue-light-color);*/
/*}*/

.sub-menu-normal > li > a:hover::before, .sub-menu-normal > li > a:focus::before {
	left: -9px;
	color: var(--blue-light-color);
}

/* .main-navbar .navbar-nav > li:hover .sub-menu-normal{display: block;} */

.sub-menu-wrap {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    box-shadow:none !important; }

.sub-menu {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.mainmenuicon {
    padding-right: 0;
    background: #b8bed7;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 32px -10px rgb(176 176 209);
}

.mainmenuicon img {
    height: 35px;
    width: 35px;
    object-fit: contain !important;
    /* filter: brightness(0) invert(1); */
}

/*.main-navbar-wrap .sub-menu-wrap .sub-menu li:hover .mainmenuicon img {*/
/*    filter: brightness(0) invert(1);*/
/*}*/

.main-navbar-wrap .sub-menu-wrap .sub-menu li ul li span img {
    width: 30px;
    object-fit: contain;
}

.mainmenuicon svg {
    width: 60px;
    height: 60px;
    fill: #202122;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mainmenuicon svg * {
    fill: #202122;
}

.sub-menu > li > a {
    display: flex;
    align-items: center;
    color: #202122;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 10px 12px 15px;
    transition: inherit;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
}

.sub-level2 {
    padding: 10px 20px;
}
.sub-level2 > li {
    display: block;
    padding: 10px 0;
    line-height: 1.3;
}
.submenuicon {
    padding-right: 15px;
}
.submenuicon svg {
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sub-level2 > li > a {
	color: #222;
	font-size: 15px;
	display: flex;
	align-items: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


.sub-level2 > li > a:hover {
    color: var(--blue-light-color);
}
.sub-level2 > li > a .submenuicon svg * {
    fill: #202122;
}
.sub-level2 > li > a:hover .submenuicon svg * {
    fill: #ec7323;
}
.megactasection {
    background-color: #202122;
    padding: 25px 25px;
    display: flex;
}
.megactapwrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.megatext {
    display: inline-flex;
    align-items: center;
}
.megatext .big {
    font-size: var(--font-size-32);
    font-weight: 600;
    color: #fff;
    padding-right: 10px;
}
.megatext span {
    font-size: var(--font-size-32);
    color: #ec7323;
    font-weight: normal;
    padding: 0 5px;
}
.megatext a {
    font-size: var(--medium-20);
    font-weight: 500;
}
.megactasection .or {
    color: #fff;
    font-size: var(--font-size-20);
    font-weight: 500;
}
.megactasection .btn-custome {
    border: 0;
    padding: 23px 35px;
    font-size: var(--font-size-20);
}

.cd-primary-nav .see-all a {
    color: #e56f22;
}
.cd-primary-nav a .icon {
    width: 22px;
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}
.cd-primary-nav a .icon svg * {
    fill: #fff;
}
.cd-primary-nav a:hover .icon svg * {
    fill: #ec7323;
}
.cd-primary-nav a.estimate_btn:hover {
    color: #e97223 !important;
    padding: 2px 10px;
    background: #fff !important;
}



/**/

/**/

.main-navbar-wrap .sub-menu-wrap .sub-menu {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
}

.main-navbar-wrap .sub-menu-wrap .sub-menu li {
    width: 100%;
}

/**/

/******** Megamenu ********/
.accessible-megamenu {
    position: static;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.accessible-megamenu h2,
.accessible-megamenu h3,
.accessible-megamenu h4 {
    font-size: 1em;
    display: inline;
    margin: 0;
    padding: 0;
    line-height: inherit;
}
.accessible-megamenu .accessible-megamenu-top-nav-item {
    position: relative;
}
.accessible-megamenu :focus {
}
.accessible-megamenu .accessible-megamenu-top-nav-item a .fa {
    color: var(--white-color);
    font-size: var(--font-size-16);
    font-weight: bold;
}

.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded] {
    position: relative;
    text-decoration: none;
    z-index: inherit;
}
.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded]:hover,
.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded]:focus {
    outline-offset: -1px;
}
.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded]:hover,
.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded]:focus,
.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded].open {
    margin-left: 0;
    z-index: 1002;
}
.accessible-megamenu .accessible-megamenu-top-nav-item a[aria-expanded].open {
    padding-bottom: 2px;
}
.accessible-megamenu .accessible-megamenu-top-nav-item:first-child a[aria-expanded] {
    border-bottom-left-radius: 3px;
}
.accessible-megamenu .accessible-megamenu-top-nav-item:first-child a[aria-expanded].open {
    border-bottom-left-radius: 0px;
    border-left: 1px solid #b3b3b3;
    border-left-color: rgba(0, 0, 0, 0.3);
    left: -1px;
    margin-right: -1px;
}
.accessible-megamenu .accessible-megamenu-panel {
    position: absolute;
    display: block;
    left: 0;
    margin: 0;
    line-height: normal;
    cursor: default;
    visibility: hidden;
    top: -9999em;
    max-height: 0px;
    
}

.accessible-megamenu .accessible-megamenu-panel.open {
    visibility: visible;
    top: 88px;
    max-height: 600px;
    /*height:100%;*/
    background: #f9fbff !important;
    opacity: 1;
    z-index: 1001;
    /*-webkit-transition: opacity 250ms ease, max-height 500ms ease, visibility 0s linear 0s, top 0s linear 0s;*/
    /*-moz-transition: opacity 250ms ease, max-height 500ms ease, visibility 0s linear 0s, top 0s linear 0s;*/
    /*-ms-transition: opacity 250ms ease, max-height 500ms ease, visibility 0s linear 0s, top 0s linear 0s;*/
    /*-o-transition: opacity 250ms ease, max-height 500ms ease, visibility 0s linear 0s, top 0s linear 0s;*/
    /*transition: opacity 250ms ease, max-height 500ms ease, visibility 0s linear 0s, top 0s linear 0s;*/
}

/*--------//////////////////////////*/

/*----*/




.arobit_desktop_view .main-navbar-wrap .main-navbar .navbar .megamenu ul.navbar-nav 
.megamenumain.accessible-megamenu-top-nav-item .full-width-submenu-style.accessible-megamenu-panel { background: #f9fbff !important;
   padding: 34px 0 34px 0; transition: all 0.3s;  position: absolute;
    top:70px;  visibility: hidden; opacity:0; z-index:-1; }



.arobit_desktop_view .main-navbar-wrap .main-navbar .navbar .megamenu ul.navbar-nav 
.megamenumain.accessible-megamenu-top-nav-item.active .full-width-submenu-style.accessible-megamenu-panel.open {
    display: block;
    background: #f9fbff !important;
    /*transition: max-height 0.1s;*/
    position: absolute;
    top:85px;
    transition: all 0.3s;
     visibility: visible;
     opacity:1;
}


.arobit_desktop_view .main-navbar-wrap .main-navbar .navbar .megamenu ul.navbar-nav 
.megamenumain.accessible-megamenu-top-nav-item .full-width-submenu-style.accessible-megamenu-panel ul.sub-menu a {position:relative;padding-right: 60px;padding: 19px 0 0 18px;}

.arobit_desktop_view .main-navbar-wrap .main-navbar .navbar .megamenu ul.navbar-nav 
.megamenumain.accessible-megamenu-top-nav-item .full-width-submenu-style.accessible-megamenu-panel ul.sub-menu a span {position: absolute;right: 8px;top: 8px;}

.arobit_desktop_view .main-navbar-wrap .main-navbar .navbar .megamenu ul.navbar-nav 
.megamenumain.accessible-megamenu-top-nav-item .full-width-submenu-style.accessible-megamenu-panel ul.sub-menu ul li a {
    padding-left: 0 !important;
    padding: 0;
}


/*.arobit_desktop_view .main-navbar-wrap .main-navbar .navbar .megamenu ul.navbar-nav */
/*.megamenumain.accessible-megamenu-top-nav-item .full-width-submenu-style.accessible-megamenu-panel ul.sub-menu li { height:430px; }*/



.arobit_desktop_view .main-navbar-wrap .main-navbar .navbar .megamenu ul.navbar-nav 
.megamenumain.accessible-megamenu-top-nav-item .full-width-submenu-style.accessible-megamenu-panel ul.sub-menu li ul li { height:auto; }


.arobit_desktop_view .main-navbar-wrap .sub-menu-wrap .sub-menu {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    background:#f9fbff !important;
}




/*--------///////////////*/





/*.accessible-megamenu .accessible-megamenu-panel a {*/
/*}*/

.accessible-megamenu .accessible-megamenu-panel.cols-4 {
    width: 100%;
}
.accessible-megamenu .accessible-megamenu-panel.cols-4 > ol > li {
    width: 22%;
}
.accessible-megamenu .accessible-megamenu-panel.cols-4b {
    width: 878px;
    left: -6.462em;
    border-top-left-radius: 3px;
}
.accessible-megamenu .accessible-megamenu-panel.cols-4b > ol > li {
    width: 22%;
}
.accessible-megamenu .accessible-megamenu-panel.cols-3 {
    width: 724px;
}
.accessible-megamenu .accessible-megamenu-panel.cols-3 > ol > li {
    width: 30%;
}
.accessible-megamenu .accessible-megamenu-panel.cols-1 {
    width: 615px;
}
.accessible-megamenu .accessible-megamenu-panel.cols-1 > ol > li {
    width: auto;
}
.accessible-megamenu .accessible-megamenu-panel ol {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.accessible-megamenu .accessible-megamenu-panel ol > li {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}
.accessible-megamenu .accessible-megamenu-panel > ol > li {
    float: left;
    display: block;
    margin-right: 1em;
    margin-bottom: 1em;
    padding-left: 1em;
    border-left: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: inset 1px 0 0 #fff;
}
.accessible-megamenu .accessible-megamenu-panel > ol > li:first-of-type {
    padding-left: 0;
    border-left: none;
    box-shadow: none;
}
.accessible-megamenu .accessible-megamenu-panel > p {
    color: #454545;
    font-size: var(--font-size-16);
    line-height: 1.1em;
}
.accessible-megamenu .accessible-megamenu-panel > ol > li > h3 > a {
    font-weight: bold;
    color: #454545;
    font-size: 1.2em;
    margin-bottom: 6px;
    padding-top: 0.4em;
    padding-bottom: 0;
    line-height: 1.1em;
}
.accessible-megamenu .accessible-megamenu-panel ol ol > li > a {
    width: auto;
    text-indent: -2.333em;
    padding-left: 2.333em;
}
.accessible-megamenu .accessible-megamenu-panel a:hover,
.accessible-megamenu .accessible-megamenu-panel a:focus {
}
.accessible-megamenu .accessible-megamenu-panel > ol > li > h3 > a:hover,
.accessible-megamenu .accessible-megamenu-panel > ol > li > h3 > a:focus {
}
.accessible-megamenu .accessible-megamenu-panel hr {
    border-width: 1px 0px;
    border-style: solid;
    border-top-color: rgba(0, 0, 0, 0.3);
    border-bottom-color: #fff;
}

.top-left-part a {
    display: flex;
    align-items: center;
}
.top-left-part a:hover {
    opacity: 0.8;
    color: #fff;
}
.top-left-part .star {
    line-height: 1;
    padding: 0 10px;
}
.top-left-part .star + strong {
    padding-right: 5px;
    font-weight: 600;
}
.top-right-part span {
    color: #fff;
}
.top-right-part .or {
    padding: 0 10px;
}
.top-right-part a {
    margin-left: 10px;
}

.top-right-part .head-top-requet-btn {
    padding: 6px 15px 6px 10px;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 30px;
}

.top-right-part .head-top-requet-btn img {
    margin-right: 10px;
    border-radius: 30px;
}
.top-right-part .head-top-requet-btn:hover {
    background-color: #ec7323;
    color: #fff;
}

.get_quote {
    position: fixed;
    right: -50px;
    top: 200px;
    background: #ec7323;
    z-index: 1001;
    font-size: var(--font-size-20);
    color: #fff !important;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
    letter-spacing: 1px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    cursor: pointer;
}
.get_quote:hover,
.get_quote:focus {
    background: #343535;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

/*----*/

/*----*/

header .main-navbar-wrap .main-navbar .navbar .navbar-header a .color_logo {
    display: none;
}
header.white-bg .main-navbar-wrap .main-navbar .navbar .navbar-header a .color_logo {
    display: block;
}

header .main-navbar-wrap .main-navbar .navbar .navbar-header a .white_logo {
    display: block;
}
header.white-bg .main-navbar-wrap .main-navbar .navbar .navbar-header a .white_logo {
    display: none;
}

/*----*/

/*----*/

.head-call-back-sidebar-background {
    z-index: 999999;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(27, 32, 34, 0.8);
    opacity: 0;
    visibility: hidden;
}

.head-call-back-sidebar-background::after {
    content: "";
    width: 34px;
    height: 31px;
    background: url(../media/header/close-btn.webp) no-repeat center center;
    background-size: 20px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99999;
    margin: 14px 14px 0 0;
    display: none;
}

.head-call-back-sidebar-background.open {
    opacity: 1;
    visibility: visible;
}

.head-call-back-sidebar-background {
    z-index: 999999;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(27, 32, 34, 0.8);
    opacity: 0;
    visibility: hidden;
}

.head-call-back-sidebar-background {
    cursor: url(../media/header/close-btn.webp), auto;
    cursor-size: 32px;
}

.head-call-back-sidebar-background.open {
    opacity: 1;
    visibility: visible;
}

.head-call-back-sidebar {
    position: fixed;
    left: -430px;
    top: 0;
    bottom: 0;
    width: 500px;
    height: 100%;
    z-index: 99999999;
    background-color: #fff;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.head-call-back-sidebar.open {
    left: 0;
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
    background: #f9f9f9;
}

.head-call-back-box img {
    width: 120px;
    border-radius: 100%;
    height: 120px;
    object-fit: cover;
}


.head-call-form-section {
    margin-top: 16px;
}

.head-call-back-content-title {
    font-size: 18px;
    font-weight: 500;
    color: #ec7323;
}

.head-call-back-content p {
    margin-bottom: 0;
}

.head-call-form-section {
    margin-top: 20px;
    background: #f9f9f9;
    padding: 23px 10px;
}

.head-call-form-section .form-group label {
    display: block;
    margin: 0;
}

.head-call-back-sidebar .close {
    position: absolute;
    right: 30px;
    top: 30px;
}

.head-call-back-sidebar .bootstrap-select > .dropdown-toggle {
    font-size: 14px;
    padding: 11px 15px;
    color: #6a6d6f;
}

.head-call-back-sidebar-main .head-call-back-box {    background: linear-gradient(135deg, #05124c 0%, #0a2573 60%, #1a3a8f 100%);
    padding: 14px 18px 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
} 

.head-call-back-content h6 {
	margin: 0;
	padding: 0 0 10px 0;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	line-height: 26px;
	color: #fff;
	font-weight: 700;
}

.head-call-back-content-title {
    font-size: 18px;
    font-weight: 500;
    color: #ec7323;
}

.head-call-back-sidebar-main .head-call-back-content p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    text-align: left;
}



/**/


.head-call-back-sidebar .left-footer-tect {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: absolute;
    bottom: -41px;
    left: 0;
    padding: 20px;
}


.head-call-form-section form .form-group {
    margin: 6px 0;
}

/*.head-call-form-section form .form-group input[type="text"] {*/
/*    margin: 0;*/
/*    padding: 10px 20px 10px 10px;*/
/*    font-size: 15px;*/
/*    color: #7c7c7c;*/
/*    line-height: 22px;*/
/*    font-weight: 500;*/
/*    width: 100%;*/
/*    border: 0;*/
/*    border-bottom:1px solid #7c7c7c;*/
/*    border-radius: 0;*/
/*}*/
.head-call-form-section form .form-group .inputsec01 {    display: block !important;    width: 100% !important;
    padding: 13px 14px 13px 14px !important;    font-size: 14.5px !important;    color: #1a1a2e !important;
    background: #ffffff !important;    border: 1.5px solid #dde3f2 !important;    border-radius: 10px !important;
    outline: none !important;    transition: border-color 0.2s, box-shadow 0.2s !important;    box-sizing: border-box !important;
    font-family: inherit !important;    -webkit-appearance: none !important;    appearance: none !important;
    line-height: 1.4 !important; }

.head-call-form-section form .form-group .inputsec01:placeholder {
    outline: 0;
    box-shadow: none;
}
.head-call-form-section form .form-group .inputsec01:focus {
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid #001ad1;
}

.head-call-form-section form .form-group .iti {  position: relative;    display: inline-block;    width: 100%; }

.head-call-form-section form .form-group .iti .iti__search-input-wrapper .iti__search-input { height:35px; }

.head-call-form-section form .form-group .phonenumber { padding-left:80px !important; }

.head-call-form-section form .form-group input[type="text"] {    display: block !important;    width: 100% !important;
    padding: 13px 14px 13px 14px !important;    font-size: 14.5px !important;    color: #1a1a2e !important;
    background: #ffffff !important;    border: 1.5px solid #dde3f2 !important;    border-radius: 10px !important;
    outline: none !important;    transition: border-color 0.2s, box-shadow 0.2s !important;    box-sizing: border-box !important;
    font-family: inherit !important;    -webkit-appearance: none !important;    appearance: none !important;
    line-height: 1.4 !important; }

.head-call-form-section form .form-group input[type="text"]:placeholder {
    outline: 0;
    box-shadow: none;
}
.head-call-form-section form .form-group input[type="text"]:focus {
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid #001ad1;
}

.head-call-form-section form .form-group input[type="email"] {
    display: block !important;    width: 100% !important;
    padding: 13px 14px 13px 14px !important;    font-size: 14.5px !important;    color: #1a1a2e !important;
    background: #ffffff !important;    border: 1.5px solid #dde3f2 !important;    border-radius: 10px !important;
    outline: none !important;    transition: border-color 0.2s, box-shadow 0.2s !important;    box-sizing: border-box !important;
    font-family: inherit !important;    -webkit-appearance: none !important;    appearance: none !important;
    line-height: 1.4 !important;
}

.head-call-form-section form .form-group input[type="email"]:placeholder {
    outline: 0;
    box-shadow: none;
}
.head-call-form-section form .form-group input[type="email"]:focus {
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid #001ad1;
}

.head-call-form-section form .form-group select {
   display: block !important;    width: 100% !important;
    padding: 13px 14px 13px 14px !important;    font-size: 14.5px !important;    color: #1a1a2e !important;
    background: #ffffff !important;    border: 1.5px solid #dde3f2 !important;    border-radius: 10px !important;
    outline: none !important;    transition: border-color 0.2s, box-shadow 0.2s !important;    box-sizing: border-box !important;
    font-family: inherit !important;    -webkit-appearance: none !important;    appearance: none !important;
    line-height: 1.4 !important; }
    
.head-call-form-section form .form-group .selectbd_arrow { position: relative; }

.head-call-form-section form .form-group .selectbd_arrow:after {    content: "\f107";    position: absolute;    right: 8px;
    top: 50%; font-size:20px;  z-index:1;  transform: translateY(-50%); font-family: "FontAwesome"; }


.head-call-form-section form .form-group select:placeholder {  outline: 0;  box-shadow: none; }
.head-call-form-section form .form-group select:focus {    outline: 0;    box-shadow: none;    border-bottom: 1px solid #001ad1; }

.head-call-form-section form .form-group textarea {
   display: block !important;    width: 100% !important;
    padding: 13px 14px 13px 14px !important;    font-size: 14.5px !important;    color: #1a1a2e !important;
    background: #ffffff !important;    border: 1.5px solid #dde3f2 !important;    border-radius: 10px !important;
    outline: none !important;    transition: border-color 0.2s, box-shadow 0.2s !important;    box-sizing: border-box !important;
    font-family: inherit !important;    -webkit-appearance: none !important;    appearance: none !important;
    line-height: 1.4 !important;
}

.head-call-form-section form .form-group textarea:placeholder {
    outline: 0;
    box-shadow: none;
}
.head-call-form-section form .form-group textarea:focus {
    outline: 0;
    box-shadow: none;
    border-bottom: 1px solid #001ad1;
}

.head-call-form-section form .form-group .btn-custome {
    background: var(--blue-light-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 20px 0 0 0;
    padding: 14px 20px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    border: 0;
}

.head-call-form-section form .form-group .btn-custome:hover {
    background: var(--orange-color) !important;
}

/*----*/

/*-- responsive-mob-menu --*/

.responsive_menu.responsiv-header {
    background: #fff;
}

.responsive_menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #05124c00;
    padding: 10px 0;
    background: rgb(4, 109, 156);
    background: linear-gradient(0deg, rgba(4, 109, 156, 0) 6%, rgba(22, 22, 22, 0.51) 59%);
}

.mob-view-logo {
    margin: 0;
    padding: 0;
    width: auto;
}

.mob-view-logo a {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.mob-view-logo a img {
    width: 140px;
    object-fit: contain;
}

.responsive_menu .mob-view-logo a .color_logo {
    display: none;
}
.responsive_menu .mob-view-logo a .white_logo {
    display: block;
}

.responsive_menu.responsiv-header .mob-view-logo a .color_logo {
    display: block;
}
.responsive_menu.responsiv-header .mob-view-logo a .white_logo {
    display: none;
}

.responsive_menu.responsiv-header .button::before {
    background: #05124c;
}

.responsive_menu.responsiv-header .button::after {
    position: absolute;
    top: 13px;
    right: 0;
    display: block;
    height: 2px;
    width: 32px;
    border-top: 2px solid #05124c;
    border-bottom: 2px solid #05124c;
    content: "";
    margin: 1px 0;
    padding: 3px 0;
}

.responsive_menu.responsiv-header .button.menu-opened::before {
    top: 15px;
    background: #05124c;
    width: 32px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.responsive_menu.responsiv-header .button.menu-opened::after {
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: 14px;
    border: 0;
    height: 2px;
    width: 32px;
    background: #05124c;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    padding: 0;
}

.responsive_menu.responsiv-header .responsive_bd .icon {
    display: inline-block;
    width: 3em;
    /* height: 2em; */
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    color: #05124c;
}

.responsive_menu .responsive_bd .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.responsive_bd,
.responsive_bd ul,
.responsive_bd ul li,
.responsive_bd ul li a,
.responsive_bd #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.responsive_bd:after,
.responsive_bd > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.responsive_bd #head-mobile {
    display: none;
}

.responsive_bd {
    background: transparent;
}

.responsive_bd > ul > li {
    float: left;
}
.responsive_bd > ul > li > a {
    padding: 17px;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #ddd;
    font-weight: 700;
}

.responsive_bd > ul > li:hover > a,
.responsive_bd ul li.active a {
    color: #fff;
    background: #040c33;
}

.responsive_bd > ul > li:hover,
.responsive_bd ul li.active:hover,
.responsive_bd ul li.active,
.responsive_bd ul li.has-sub.active:hover {
    background: #040c33 !important;

    -webkit-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    transition: background 0.3s ease;
    color: #000;
}

.responsive_bd > ul > li.has-sub > a {
    padding-right: 30px;
}

.responsive_bd > ul > li.has-sub > a:after {
    position: absolute;
    top: 22px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #ddd;
    content: "";
}

.responsive_bd > ul > li.has-sub > a:before {
    position: absolute;
    top: 19px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    content: "";
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.responsive_bd > ul > li.has-sub:hover > a:before {
    top: 23px;
    height: 0;
}
.responsive_bd ul ul {
    position: absolute;
    left: -9999px;
}
.responsive_bd ul ul li {
    height: 0;
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    background: #333;
    transition: all 0.25s ease;
}

.responsive_bd li:hover > ul {
    left: auto;
}

.responsive_bd li:hover > ul > li {
    height: 35px;
}

.responsive_bd ul ul ul {
    margin-left: 100%;
    top: 0;
}
.responsive_bd ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 11px 15px;
    width: 170px;
    font-size: 12px;
    text-decoration: none;
    color: #ddd;
    font-weight: 400;
}
.responsive_bd ul ul li:last-child > a,
.responsive_bd ul ul li.last-item > a {
    border-bottom: 0;
}
.responsive_bd ul ul li:hover > a,
.responsive_bd ul ul li a:hover {
    color: #fff;
}
.responsive_bd ul ul li.has-sub > a:after {
    position: absolute;
    top: 16px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #ddd;
    content: "";
}
.responsive_bd ul ul li.has-sub > a:before {
    position: absolute;
    top: 13px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    content: "";
    -webkit-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.responsive_bd ul ul > li.has-sub:hover > a:before {
    top: 17px;
    height: 0;
}
.responsive_bd ul ul li.has-sub:hover,
.responsive_bd ul li.has-sub ul li.has-sub ul li:hover {
    background: #363636;
}
.responsive_bd ul ul ul li.active a {
    border-left: 1px solid #333;
}
.responsive_bd > ul > li.has-sub > ul > li.active > a,
.responsive_bd > ul ul > li.has-sub > ul > li.active > a {
    border-top: 1px solid #333;
}

/*///////////////////////*/

.responsive_bd .icon {
    display: inline-block;
    width: 3em;
    /* height: 2em; */
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.responsive_bd .wave {
    animation: waveIn 1.2s infinite ease-out;
    transform-origin: 50% 50%;
}

.responsive_bd .wave-sm {
    animation-delay: 0.3s;
}

.responsive_bd .wave-md {
    animation-delay: 0.45s;
}

.responsive_bd .wave-lg {
    animation-delay: 0.6s;
}

@keyframes waveIn {
    from {
        opacity: 0;
        transform: scale(0.3) translate(-20px, 10px);
    }

    50% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*-- responsive-mob-menu --*/


/*--befound_first--*/

.befound_first {margin:0;padding:60px 0;background: #03124b;}
.befound_first .left_img {	margin: 0;	padding: 0;	position: sticky; 	top: 90px;
}
.befound_first .left_img img {  }

.befound_first .right_block { margin:0; padding:0; }
.befound_first .orange { color:#F5820A; }

.befound_first .right_block h2 {margin: 0;padding: 0 0 19px 0;text-align: left;color: #fff;  
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px); }
.befound_first .right_block p {margin: 0;padding: 0 0 6px 0;font-size: 18px;line-height: 28px;color: #ffffff;font-weight: 500;}

.befound_first .right_block .trust-heading {margin:0;padding:0;text-align: center;font-size: 16px;font-weight: 700;color: #fff;position: relative;}

.befound_first .right_block .trust-heading {margin: 10px 0 0 0;padding: 0;position:relative;font-size: 20px;line-height: 26px;color: #fff;}
.befound_first .right_block .trust-heading:after {    content: "";    margin: 0;    padding: 0;
    position: absolute;    left: 0;    top: 15px;
    width: 100%;    height: 1px;    background: #f2f2f28a;  }
    

.befound_first .right_block .trust-heading .text {margin:0;padding: 2px 20px;background: #03124b;position: relative;z-index: 1;}

.befound_first .right_block .listblock {margin:0;padding: 20px 0 0 0; }

.befound_first .right_block .listblock .itemblock {margin:0;padding: 8px 8px;display: flex;border: 1.4px solid #ec7323;
border-radius: 8px;display: flex;align-items:start; flex-wrap: wrap; height:100%; }

.befound_first .right_block .listblock .itemblock .feature-icon {margin:0;padding:0;width: 40px;}
.befound_first .right_block .listblock .itemblock .feature-icon svg {color: #ec7323; }

.befound_first .right_block .listblock .itemblock .text {margin:0;padding: 0 0 0 12px;width: 76%;}
.befound_first .right_block .listblock .itemblock .text h3 {margin:0;padding:0;font-size: 16px;font-weight: 700;color: #fff;line-height: 1.2;margin-bottom: 2px;}
.befound_first .right_block .listblock .itemblock .text p {margin:0;padding:0;font-size: 14px;line-height: 20px;color: #9aa3c7;}


/*--befound_first--*/


/*-------------*/

/*how-weapproach-sec*/

.how-weapproach-agency { margin: 0; padding: 60px 0; background: #f5f5f5; }

.how-weapproach-agency .title { margin:0; padding:0 0 15px 0; text-align:center;  }

.how-weapproach-agency .title h2 {  font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);  text-align: center;
    font-weight: 700;    width: 80%;    margin: 0 auto;    color: #000000; }
.how-weapproach-agency .title h2 span {  color: #ff6900; }


.how-weapproach-agency .title p {    color: #000000;    width: 86%;    margin: 0 auto;    padding: 0;
    font-size: var(--font-size-16);    line-height: 26px;    font-weight: 400; text-align: center; }

.how-weapproach-agency .title:before { display:none; }

.how-weapproach-agency .secBd-wrapper { margin:0; padding:0; }

.how-weapproach-agency .secBd-wrapper .repeat_itemrow {   display: flex;
    margin: 15px 0;  padding: 20px 20px;    background: #fff;    border-radius: 6px;
    position: sticky;    z-index: 88;    top:128px; box-shadow: 0px -3px 10px 0px rgba(0, 0, 0, 0.5); }


.how-weapproach-agency .secBd-wrapper .repeat_itemrow:nth-child(odd) { background: #fff;  }

.how-weapproach-agency .repeat_itemrow .left_text {margin:0;padding:0 15px 0 0;width: 65%;}

.how-weapproach-agency .repeat_itemrow .left_text .itemtitle {margin:0;padding: 0 0 8px 0;font-size:28px;line-height: 32px;color: #091440;font-weight: 600;}

/*.notjust-an-agency .repeat_itemrow .left_text p {    margin: 0;    padding: 0;    font-size: 18px;*/
/*    line-height: 26px;    font-weight: 400; }*/

.how-weapproach-agency .repeat_itemrow .left_text p { margin: 0; padding: 0; font-size: 16px;   line-height: 29px; font-weight: 400; }

.how-weapproach-agency .repeat_itemrow .left_text .shorttitle {margin:0;padding: 20px 0 0 0;font-size: 16px;line-height: 22px;color: #091440; font-weight: bold;}

.how-weapproach-agency .repeat_itemrow .left_text .shorttitle span {margin:0;padding:0; display: inline-block;color: #ec7323; }

.how-weapproach-agency .repeat_itemrow .rightimage {margin:0;padding:0;width: 35%;}
.how-weapproach-agency .repeat_itemrow .rightimage img { width:100%; }

.how-weapproach-agency .repeat_itemrow .left_text ul { margin:0; padding:10px 0 0 0; }

.how-weapproach-agency .repeat_itemrow .left_text ul li {    margin: 0;    padding: 3px 0 3px 16px;
    display: block;    position: relative; }
    
.how-weapproach-agency .repeat_itemrow .left_text ul li span {    margin: 0;    padding: 0;    font-size: 14px;    line-height: 21px;
    color: #000;    font-weight: 500; }

.how-weapproach-agency .repeat_itemrow .left_text ul li:after {    background-color: #484848;    content: " ";    display: block;
    height: 10px;    width: 10px;    border-radius: 50px;    position: absolute;    left: 0;
    top:9px; }

/*how-weapproach-sec*/




/*--- responsive-mediaquery ----*/

@media screen and (max-width: 1024px) {
    
}

/*--- responsive-mediaquery ----*/

.mobile_menu {
    display: none;
    margin: 0;
    padding: 0;
    height: 64px;
}

.mobile_menu.responsiv-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;

    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.55s ease-out;
}



}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}




.mobile_menu .container {
    height: 100%;
}

.mobile_menu .menu-bd {
	display: flex;
	min-height: 64px;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.mobile_menu .icon {
    display: inline-block;
    width: 3em;
    /*! height: 2em; */
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    color: #000;
}

.mobile_menu .wave {
    animation: waveIn 1.2s infinite ease-out;
    transform-origin: 50% 50%;
}

.mobile_menu .wave-sm {
    animation-delay: 0.3s;
}

.mobile_menu .wave-md {
    animation-delay: 0.45s;
}

.mobile_menu .wave-lg {
    animation-delay: 0.6s;
}

@keyframes waveIn {
    from {
        opacity: 0;
        transform: scale(0.3) translate(-20px, 10px);
    }

    50% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*------------------new-mobile-menu--------------------*/










/*old-section-copy-mob-header*/

.cd-nav-trigger {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.cd-nav-trigger,
.cd-search-trigger {
    overflow: hidden;
    white-space: nowrap;
    color: transparent;
    z-index: 999;
    height: 28px;
}

.cd-nav-trigger span,
.cd-nav-trigger span::after,
.cd-nav-trigger span::before {
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 32px;
    background: #202122;
}

.cd-nav-trigger span {
    position: relative;
    -webkit-transition: background 0.3s 0.3s;
    -moz-transition: background 0.3s 0.3s;
    transition: background 0.3s 0.3s;
}

.cd-nav-trigger span::after,
.cd-nav-trigger span::before {
    content: "";
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    right: 0;
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition: -webkit-transform 0.3s 0.3s;
    -moz-transition: -moz-transform 0.3s 0.3s;
    transition: transform 0.3s 0.3s;
}

.cd-nav-trigger span::before {
    top: -9px;
}

.cd-nav-trigger span::after {
    top: 8px;
}

.cd-nav-trigger.nav-is-visible span {
    background: rgba(46, 50, 51, 0);
}

.cd-nav-trigger.nav-is-visible span::after,
.cd-nav-trigger.nav-is-visible span::before {
    background: #202122;
}

.cd-nav-trigger.nav-is-visible span::before {
    -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
    transform: translateX(4px) translateY(-3px) rotate(45deg);
}

.cd-nav-trigger.nav-is-visible span::after {
    -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
    transform: translateX(4px) translateY(2px) rotate(-45deg);
}

@media only screen and (min-width: 1170px) {
    .cd-nav-trigger {
        display: none;
    }
}

#cd-primary-nav {
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: -10;
}

.cd-primary-nav,
.cd-primary-nav ul {
    position: fixed;
    top: 64px;
    left: 0;
    height: 100%;
    width: 260px;
    background: #05124c;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 999999999;

    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: all 0.5s ease;
    /*box-shadow: 0 0px 18px -11px rgb(50, 67, 145);*/
}

.cd-primary-nav a i {
    margin-right: 5px;
    line-height: 20px;
}

.cd-primary-nav a,
.cd-primary-nav ul a {
    display: block;
    font-size: 13px;
    line-height: 40px;
    padding: 0 19px;
    margin: 0 5px;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform, opacity;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
}

.cd-primary-nav li a:hover {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.cd-primary-nav a.estimate_btn {
    text-align: center;
    background: #e97223;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    margin: 15px auto 0;
    max-width: 230px;
    border: none;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    padding: 2px 10px;
}


.cd-primary-nav ul.is-hidden,
.cd-primary-nav.is-hidden {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}

.cd-primary-nav ul.moves-out > li > a,
.cd-primary-nav.moves-out > li > a {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
}

.cd-primary-nav .see-all a {
    color: #fff;
}

.cd-primary-nav a .icon {
    width: 22px;
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}


@media only screen and (max-width: 1169px) {
    .nav-on-left .cd-primary-nav,
    .nav-on-left .cd-primary-nav ul {
        right: auto;
        left: 0;
    }
}

.cd-primary-nav .cd-nav-gallery .cd-nav-item,
.cd-primary-nav .cd-nav-icons .cd-nav-item {
    height: 80px;
    line-height: 80px;
}

.cd-primary-nav .cd-nav-gallery .cd-nav-item h3,
.cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
    overflow: hidden;
    text-overflow: ellipsis;
}

.cd-primary-nav .cd-nav-gallery .cd-nav-item {
    padding-left: 90px;
}

.cd-primary-nav .cd-nav-gallery .cd-nav-item img {
    position: absolute;
    display: block;
    height: 40px;
    width: auto;
    left: 20px;
    top: 50%;
    margin-top: -20px;
}

.cd-primary-nav .cd-nav-icons .cd-nav-item {
    padding-left: 75px;
}

.cd-primary-nav .cd-nav-icons .cd-nav-item p {
    color: #2e3233;
    font-size: 1.3rem;
    display: none;
}

.cd-primary-nav .cd-nav-icons .cd-nav-item::before {
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px 40px;
}

@media only screen and (max-width: 1169px) {
    .cd-primary-nav {
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        transition: all 0.5s ease;
        -webkit-transform: translateX(-260px);
        -moz-transform: translateX(-260px);
        -ms-transform: translateX(-260px);
        -o-transform: translateX(-260px);
        transform: translateX(-260px);
        width: 260px;
    }
    .cd-primary-nav.nav-is-visible {
        -moz-transition: all 0.5s ease;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        z-index: 9999 !important;
    }
    .nav-is-visible main {
        transform: translateX(260px);
    }
    main {
        transition: all 0.5s ease;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-primary-nav {
        position: static;
        padding: 0 150px 0 0;
        height: auto;
        width: auto;
        float: right;
        overflow: visible;
        background: 0 0;
    }
    .cd-primary-nav::after {
        clear: both;
        content: "";
        display: table;
    }
    .cd-primary-nav.moves-out > li > a {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    .cd-primary-nav ul {
        position: static;
        height: auto;
        width: auto;
        background: 0 0;
        overflow: visible;
        z-index: 3;
    }
    .cd-primary-nav ul.is-hidden {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .cd-primary-nav ul.moves-out > li > a {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    .cd-primary-nav > li {
        float: left;
        margin-left: 3em;
    }
    .cd-primary-nav > li > a {
        position: relative;
        display: inline-block;
        height: 80px;
        line-height: 80px;
        padding: 0 10px;
        color: #2e3233;
        overflow: visible;
        border-bottom: none;
        -webkit-transition: color 0.3s, box-shadow 0.3s;
        -moz-transition: color 0.3s, box-shadow 0.3s;
        transition: color 0.3s, box-shadow 0.3s;
    }
    .cd-primary-nav > li > a:hover {
        color: #69aa6f;
    }
    .cd-primary-nav > li > a.selected {
        color: #69aa6f;
        box-shadow: inset 0 -2px 0 #69aa6f;
    }
    .cd-primary-nav .go-back,
    .cd-primary-nav .see-all {
        display: none;
    }
    .cd-primary-nav .cd-nav-gallery,
    .cd-primary-nav .cd-nav-icons,
    .cd-primary-nav .cd-secondary-nav {
        position: absolute;
        top: 80px;
        width: 100vw;
        background: #fff;
        padding: 48px 64px 130px;
        box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
        -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
        transition: opacity 0.3s 0s, visibility 0s 0s;
    }
    .cd-primary-nav .cd-nav-gallery::after,
    .cd-primary-nav .cd-nav-icons::after,
    .cd-primary-nav .cd-secondary-nav::after {
        clear: both;
        content: "";
        display: table;
    }
    .cd-primary-nav .cd-nav-gallery.is-hidden,
    .cd-primary-nav .cd-nav-icons.is-hidden,
    .cd-primary-nav .cd-secondary-nav.is-hidden {
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
        -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
        transition: opacity 0.3s 0s, visibility 0s 0.3s;
    }
    .cd-primary-nav .cd-nav-gallery > .see-all,
    .cd-primary-nav .cd-nav-icons > .see-all,
    .cd-primary-nav .cd-secondary-nav > .see-all {
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        height: 80px;
        width: 100%;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    .cd-primary-nav .cd-nav-gallery > .see-all a,
    .cd-primary-nav .cd-nav-icons > .see-all a,
    .cd-primary-nav .cd-secondary-nav > .see-all a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        font-size: 2.2rem;
        font-weight: 700;
        text-align: center;
        line-height: 80px;
        border-top: 1px solid #e2e3df;
        border-bottom: none;
        margin: 0;
        padding: 0;
        -webkit-transition: color 0.2s, background 0.2s, border 0.2s;
        -moz-transition: color 0.2s, background 0.2s, border 0.2s;
        transition: color 0.2s, background 0.2s, border 0.2s;
    }
    .cd-primary-nav .cd-nav-gallery > .see-all a:hover,
    .cd-primary-nav .cd-nav-icons > .see-all a:hover,
    .cd-primary-nav .cd-secondary-nav > .see-all a:hover {
        background: #2e3233;
        border-color: #2e3233;
        color: #fff;
    }
    .cd-primary-nav .cd-secondary-nav > li {
        height: 340px;
        width: 23%;
        float: left;
        margin-right: 2.66%;
        border-right: 1px solid #e2e3df;
        overflow: hidden;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .cd-primary-nav .cd-secondary-nav > li:nth-child(4n + 2) {
        margin-right: 0;
        border-right: none;
    }
    .cd-primary-nav .cd-secondary-nav > li > a {
        color: #69aa6f;
        font-weight: 700;
        font-size: 1.6rem;
        margin-bottom: 0.6em;
    }
    .cd-primary-nav .cd-secondary-nav a {
        height: 30px;
        line-height: 30px;
        padding: 0 18% 0 0;
        color: #2e3233;
        border-bottom: none;
        font-size: 1.4rem;
    }
    .cd-primary-nav .cd-secondary-nav a:hover {
        color: #69aa6f;
    }
    .cd-primary-nav .cd-secondary-nav ul {
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }
    .cd-primary-nav .cd-secondary-nav ul ul {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
    .cd-primary-nav .cd-secondary-nav ul ul.is-hidden {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
    .cd-primary-nav .cd-secondary-nav ul ul .go-back {
        display: block;
    }
    .cd-primary-nav .cd-secondary-nav ul ul .go-back a {
        color: transparent;
    }
    .cd-primary-nav .cd-secondary-nav ul ul .see-all {
        display: block;
    }
    .cd-primary-nav .cd-secondary-nav .moves-out > li > a {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    .cd-primary-nav .cd-nav-gallery li {
        width: 22%;
        float: left;
        margin: 0 4% 40px 0;
    }
    .cd-primary-nav .cd-nav-gallery li:nth-child(4n + 2) {
        margin-right: 0;
    }
    .cd-primary-nav .cd-nav-gallery .cd-nav-item {
        border-bottom: none;
        padding: 0;
        height: auto;
        line-height: 1.2;
    }
    .cd-primary-nav .cd-nav-gallery .cd-nav-item img {
        position: static;
        margin-top: 0;
        height: auto;
        width: 100%;
        margin-bottom: 0.6em;
    }
    .cd-primary-nav .cd-nav-gallery .cd-nav-item h3 {
        color: #69aa6f;
        font-weight: 700;
        padding: 0 0.4em;
    }
    .cd-primary-nav .cd-nav-icons li {
        width: 32%;
        float: left;
        margin: 0 2% 20px 0;
    }
    .cd-primary-nav .cd-nav-icons li:nth-child(3n + 2) {
        margin-right: 0;
    }
    .cd-primary-nav .cd-nav-icons .cd-nav-item {
        border-bottom: none;
        height: 80px;
        line-height: 1.2;
        padding: 24px 0 0 85px;
        position: relative;
    }
    .cd-primary-nav .cd-nav-icons .cd-nav-item:hover {
        background: #f6f6f5;
    }
    .cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
        color: #69aa6f;
        font-weight: 700;
    }
    .cd-primary-nav .cd-nav-icons .cd-nav-item p {
        display: block;
    }
    .cd-primary-nav .cd-nav-icons .cd-nav-item::before {
        left: 25px;
    }
}

.go-back a,
.has-children > a {
    position: relative;
}

.go-back a::after,
.go-back a::before,
.has-children > a::after,
.has-children > a::before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    display: inline-block;
    height: 2px;
    width: 10px;
    background: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.go-back a::before,
.has-children > a::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.go-back a::after,
.has-children > a::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media only screen and (min-width: 1170px) {
    .go-back a::after,
    .go-back a::before,
    .has-children > a::after,
    .has-children > a::before {
        background: #c9cbc4;
    }
    .go-back a:hover::after,
    .go-back a:hover::before,
    .has-children > a:hover::after,
    .has-children > a:hover::before {
        background: #69aa6f;
    }
}

.has-children > a {
    padding-right: 40px;
}

.has-children > a::after,
.has-children > a::before {
    right: 20px;
    -webkit-transform-origin: 9px 50%;
    -moz-transform-origin: 9px 50%;
    -ms-transform-origin: 9px 50%;
    -o-transform-origin: 9px 50%;
    transform-origin: 9px 50%;
}

.cd-primary-nav .go-back a {
    padding-left: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.14);
    margin: 5px 5px;
}

.cd-primary-nav .go-back a::after,
.cd-primary-nav .go-back a::before {
    left: 20px;
    -webkit-transform-origin: 1px 50%;
    -moz-transform-origin: 1px 50%;
    -ms-transform-origin: 1px 50%;
    -o-transform-origin: 1px 50%;
    transform-origin: 1px 50%;
}

@media only screen and (min-width: 1170px) {
    .has-children > a::after,
    .has-children > a::before {
        right: 15%;
    }
    .cd-primary-nav > .has-children > a {
        padding-right: 30px !important;
    }
    .cd-primary-nav > .has-children > a::after,
    .cd-primary-nav > .has-children > a::before {
        width: 9px;
        -webkit-transform-origin: 50% 50%;
        -moz-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
        -o-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        background: #c9cbc4;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transition: width 0.3s, -webkit-transform 0.3s;
        -moz-transition: width 0.3s, -moz-transform 0.3s;
        transition: width 0.3s, transform 0.3s;
    }
    .cd-primary-nav > .has-children > a::before {
        right: 12px;
    }
    .cd-primary-nav > .has-children > a::after {
        right: 7px;
    }
    .cd-primary-nav > .has-children > a.selected::after,
    .cd-primary-nav > .has-children > a.selected::before {
        width: 14px;
    }
    .cd-primary-nav > .has-children > a.selected::before {
        -webkit-transform: translateX(5px) rotate(-45deg);
        -moz-transform: translateX(5px) rotate(-45deg);
        -ms-transform: translateX(5px) rotate(-45deg);
        -o-transform: translateX(5px) rotate(-45deg);
        transform: translateX(5px) rotate(-45deg);
    }
    .cd-primary-nav > .has-children > a.selected::after {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .cd-secondary-nav > .has-children > a::after,
    .cd-secondary-nav > .has-children > a::before {
        display: none;
    }
    .cd-primary-nav .go-back a {
        padding-left: 20px;
    }
    .cd-primary-nav .go-back a::after,
    .cd-primary-nav .go-back a::before {
        left: 1px;
    }
}

.cd-overlay {
    position: fixed;
    z-index: 2;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    background-color: rgba(105, 170, 111, 0.8);
    visibility: hidden;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}

.cd-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}

@media only screen and (max-width: 1169px) {
    .cd-overlay.is-visible {
        -webkit-transform: translateX(-260px);
        -moz-transform: translateX(-260px);
        -ms-transform: translateX(-260px);
        -o-transform: translateX(-260px);
        transform: translateX(-260px);
    }
    .nav-on-left .cd-overlay.is-visible {
        -webkit-transform: translateX(260px);
        -moz-transform: translateX(260px);
        -ms-transform: translateX(260px);
        -o-transform: translateX(260px);
        transform: translateX(260px);
    }
    .cd-overlay.is-visible.search-is-visible,
    .nav-on-left .cd-overlay.is-visible.search-is-visible {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table td,
.table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table .table {
    background-color: #fff;
}

.table-sm td,
.table-sm th {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
}

.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 2px;
}

.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
    border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > td,
.table-primary > th {
    background-color: #b8daff;
}

.table-hover .table-primary:hover {
    background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
    background-color: #9fcdff;
}

.table-secondary,
.table-secondary > td,
.table-secondary > th {
    background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
    background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
    background-color: #c8cbcf;
}

.table-success,
.table-success > td,
.table-success > th {
    background-color: #c3e6cb;
}

.table-hover .table-success:hover {
    background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
    background-color: #b1dfbb;
}

.table-info,
.table-info > td,
.table-info > th {
    background-color: #bee5eb;
}

.table-hover .table-info:hover {
    background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
    background-color: #abdde5;
}

.table-warning,
.table-warning > td,
.table-warning > th {
    background-color: #ffeeba;
}

.table-hover .table-warning:hover {
    background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
    background-color: #ffe8a1;
}

.table-danger,
.table-danger > td,
.table-danger > th {
    background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
    background-color: #f1b0b7;
}

.table-light,
.table-light > td,
.table-light > th {
    background-color: #fdfdfe;
}

.table-hover .table-light:hover {
    background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
    background-color: #ececf6;
}

.table-dark,
.table-dark > td,
.table-dark > th {
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
    background-color: #b9bbbe;
}

.table-active,
.table-active > td,
.table-active > th {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table-dark {
    color: #fff;
    background-color: #212529;
}

.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #32383e;
}

.table-dark.table-bordered {
    border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-sm > .table-bordered {
        border: 0;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-md > .table-bordered {
        border: 0;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-lg > .table-bordered {
        border: 0;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-xl > .table-bordered {
        border: 0;
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
    border: 0;
}

@media screen and (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%;
}

.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5;
}

.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
    padding-right: 0;
    padding-left: 0;
}

.form-control-sm {
    height: calc(1.8125rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.form-control-lg {
    height: calc(2.875rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

select.form-control[multiple],
select.form-control[size] {
    height: auto;
}

textarea.form-control {
    height: auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-text {
    display: block;
    margin-top: 0.25rem;
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
    color: #6c757d;
}

.form-check-label {
    margin-bottom: 0;
}

.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #28a745;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(40, 167, 69, 0.9);
    border-radius: 0.25rem;
}

.custom-select.is-valid,
.form-control.is-valid,
.was-validated .custom-select:valid,
.was-validated .form-control:valid {
    border-color: #28a745;
}

.custom-select.is-valid:focus,
.form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip {
    display: block;
}

.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip,
.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip {
    display: block;
}

.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
    color: #28a745;
}

.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip,
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip {
    display: block;
}

.custom-control-input.is-valid ~ .custom-control-label,
.was-validated .custom-control-input:valid ~ .custom-control-label {
    color: #28a745;
}

.custom-control-input.is-valid ~ .custom-control-label::before,
.was-validated .custom-control-input:valid ~ .custom-control-label::before {
    background-color: #71dd8a;
}

.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip,
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip {
    display: block;
}

.custom-control-input.is-valid:checked ~ .custom-control-label::before,
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
    background-color: #34ce57;
}

.custom-control-input.is-valid:focus ~ .custom-control-label::before,
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.custom-file-input.is-valid ~ .custom-file-label,
.was-validated .custom-file-input:valid ~ .custom-file-label {
    border-color: #28a745;
}

.custom-file-input.is-valid ~ .custom-file-label::after,
.was-validated .custom-file-input:valid ~ .custom-file-label::after {
    border-color: inherit;
}

.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip,
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip {
    display: block;
}

.custom-file-input.is-valid:focus ~ .custom-file-label,
.was-validated .custom-file-input:valid:focus ~ .custom-file-label {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 0.25rem;
}

.custom-select.is-invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
}

.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip {
    display: block;
}

.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip,
.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip {
    display: block;
}

.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
    color: #dc3545;
}

.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip,
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip {
    display: block;
}

.custom-control-input.is-invalid ~ .custom-control-label,
.was-validated .custom-control-input:invalid ~ .custom-control-label {
    color: #dc3545;
}

.custom-control-input.is-invalid ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid ~ .custom-control-label::before {
    background-color: #efa2a9;
}

.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip,
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip {
    display: block;
}

.custom-control-input.is-invalid:checked ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before {
    background-color: #e4606d;
}

.custom-control-input.is-invalid:focus ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.custom-file-input.is-invalid ~ .custom-file-label,
.was-validated .custom-file-input:invalid ~ .custom-file-label {
    border-color: #dc3545;
}

.custom-file-input.is-invalid ~ .custom-file-label::after,
.was-validated .custom-file-input:invalid ~ .custom-file-label::after {
    border-color: inherit;
}

.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip,
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip {
    display: block;
}

.custom-file-input.is-invalid:focus ~ .custom-file-label,
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
}

.form-inline .form-check {
    width: 100%;
}

@media (min-width: 576px) {
    .form-inline label {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0;
    }
    .form-inline .form-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0;
    }
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .form-inline .form-control-plaintext {
        display: inline-block;
    }
    .form-inline .custom-select,
    .form-inline .input-group {
        width: auto;
    }
    .form-inline .form-check {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0;
    }
    .form-inline .form-check-input {
        position: relative;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0;
    }
    .form-inline .custom-control {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .form-inline .custom-control-label {
        margin-bottom: 0;
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:focus,
.btn:hover {
    text-decoration: none;
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
    opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-secondary.focus,
.btn-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success.focus,
.btn-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}

.btn-info.focus,
.btn-info:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-warning.focus,
.btn-warning:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-danger.focus,
.btn-danger:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.btn-light.focus,
.btn-light:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark.focus,
.btn-dark:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
    color: #007bff;
    background-color: transparent;
    background-image: none;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
    color: #6c757d;
    background-color: transparent;
    background-image: none;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success.focus,
.btn-outline-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info.focus,
.btn-outline-info:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
    color: #ffc107;
    background-color: transparent;
    background-image: none;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning.focus,
.btn-outline-warning:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger.focus,
.btn-outline-danger:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light.focus,
.btn-outline-light:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    background-color: transparent;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent;
}

.btn-link.focus,
.btn-link:focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none;
}

.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d;
    pointer-events: none;
}

.btn-group-lg > .btn,
.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.btn-group-sm > .btn,
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: 0.5rem;
}

input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].btn-block {
    width: 100%;
}

.fade {
    transition: opacity 0.15s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

.dropdown,
.dropleft,
.dropright,
.dropup {
    position: relative;
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropright .dropdown-toggle::after {
    vertical-align: 0;
}

.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropleft .dropdown-toggle::after {
    display: none;
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropleft .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="top"] {
    right: auto;
    bottom: auto;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #ec7323;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #6c757d;
    background-color: transparent;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap;
}

.dropdown-item-text {
    display: block;
    padding: 0.25rem 1.5rem;
    color: #212529;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group-vertical > .btn,
.btn-group > .btn {
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.btn-group-vertical > .btn:hover,
.btn-group > .btn:hover {
    z-index: 1;
}

.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus {
    z-index: 1;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
    margin-left: -1px;
}

.btn-toolbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.btn-toolbar .input-group {
    width: auto;
}

.btn-group > .btn:first-child {
    margin-left: 0;
}

.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after {
    margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
    margin-right: 0;
}

.btn-group-sm > .btn + .dropdown-toggle-split,
.btn-sm + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.btn-group-lg > .btn + .dropdown-toggle-split,
.btn-lg + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.btn-group-vertical {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
    width: 100%;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0;
}

.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group > .custom-file + .custom-file,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .form-control,
.input-group > .custom-select + .custom-file,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .form-control,
.input-group > .form-control + .custom-file,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .form-control {
    margin-left: -1px;
}

.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
.input-group > .custom-select:focus,
.input-group > .form-control:focus {
    z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
    z-index: 4;
}

.input-group > .custom-select:not(:last-child),
.input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .custom-file {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-append,
.input-group-prepend {
    display: -ms-flexbox;
    display: flex;
}

.input-group-append .btn,
.input-group-prepend .btn {
    position: relative;
    z-index: 2;
}

.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .input-group-text,
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .input-group-text {
    margin-left: -1px;
}

.input-group-prepend {
    margin-right: -1px;
}

.input-group-append {
    margin-left: -1px;
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.input-group-text input[type="checkbox"],
.input-group-text input[type="radio"] {
    margin-top: 0;
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .input-group-text {
    height: calc(2.875rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
    height: calc(1.8125rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child),
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}

.custom-control-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:active ~ .custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
}

.custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #e9ecef;
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #dee2e6;
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #007bff;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #007bff;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5);
}

.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef;
}

.custom-select::-ms-expand {
    opacity: 0;
}

.custom-select-sm {
    height: calc(1.8125rem + 2px);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 75%;
}

.custom-select-lg {
    height: calc(2.875rem + 2px);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 125%;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input:focus ~ .custom-file-label::after {
    border-color: #80bdff;
}

.custom-file-input:disabled ~ .custom-file-label {
    background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Browse";
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 2.25rem;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: 1px solid #ced4da;
    border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
    width: 100%;
    padding-left: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-range:focus {
    outline: 0;
}

.custom-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-moz-focus-outer {
    border: 0;
}

.custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
    .custom-range::-webkit-slider-thumb {
        transition: none;
    }
}

.custom-range::-webkit-slider-thumb:active {
    background-color: #b3d7ff;
}

.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
    .custom-range::-moz-range-thumb {
        transition: none;
    }
}

.custom-range::-moz-range-thumb:active {
    background-color: #b3d7ff;
}

.custom-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}

.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
    .custom-range::-ms-thumb {
        transition: none;
    }
}

.custom-range::-ms-thumb:active {
    background-color: #b3d7ff;
}

.custom-range::-ms-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
    background-color: #dee2e6;
    border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dee2e6;
    border-radius: 1rem;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
    .custom-control-label::before,
    .custom-file-label,
    .custom-select {
        transition: none;
    }
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}

.nav-link:focus,
.nav-link:hover {
    text-decoration: none;
}

.nav-link.disabled {
    color: #6c757d;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav-pills .nav-link {
    border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #007bff;
}

.nav-fill .nav-item {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none;
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none;
}

.navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}

@media (max-width: 575.98px) {
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-sm .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-sm .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-md .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-md .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-xl .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-xl .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-xl .navbar-toggler {
        display: none;
    }
}

.navbar-expand {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.navbar-expand .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.navbar-expand .navbar-toggler {
    display: none;
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
    color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
    color: #fff;
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
    color: #fff;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
    color: #fff;
}

.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
    color: #fff;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.card > hr {
    margin-right: 0;
    margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px);
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    .card-deck .card {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}

.card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-group > .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .card-group > .card {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }
    .card-group > .card:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group > .card:first-child .card-header,
    .card-group > .card:first-child .card-img-top {
        border-top-right-radius: 0;
    }
    .card-group > .card:first-child .card-footer,
    .card-group > .card:first-child .card-img-bottom {
        border-bottom-right-radius: 0;
    }
    .card-group > .card:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group > .card:last-child .card-header,
    .card-group > .card:last-child .card-img-top {
        border-top-left-radius: 0;
    }
    .card-group > .card:last-child .card-footer,
    .card-group > .card:last-child .card-img-bottom {
        border-bottom-left-radius: 0;
    }
    .card-group > .card:only-child {
        border-radius: 0.25rem;
    }
    .card-group > .card:only-child .card-header,
    .card-group > .card:only-child .card-img-top {
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }
    .card-group > .card:only-child .card-footer,
    .card-group > .card:only-child .card-img-bottom {
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
        border-radius: 0;
    }
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top {
        border-radius: 0;
    }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

.accordion .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
    border-radius: 0;
}

.accordion .card:not(:first-of-type) .card-header:first-child {
    border-radius: 0;
}

.accordion .card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion .card:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}


@media (min-width: 576px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}


@media screen and (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.media-body {
    -ms-flex: 1;
    flex: 1;
}

.list-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.list-group-item:focus,
.list-group-item:hover {
    z-index: 1;
    text-decoration: none;
}

.list-group-item.disabled,
.list-group-item:disabled {
    color: #6c757d;
    background-color: #fff;
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
    border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0;
}

.list-group-item-primary {
    color: #004085;
    background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
    color: #004085;
    background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #004085;
    border-color: #004085;
}

.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
    color: #383d41;
    background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #383d41;
    border-color: #383d41;
}

.list-group-item-success {
    color: #155724;
    background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
    color: #155724;
    background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #155724;
    border-color: #155724;
}

.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
    color: #0c5460;
    background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460;
}

.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
    color: #856404;
    background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404;
}

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
    color: #721c24;
    background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24;
}

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
    color: #818182;
    background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182;
}

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
    color: #1b1e21;
    background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10050;
    display: none;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - (0.5rem * 2));
    content: "";
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
    margin-left: 0.25rem;
}

.modal-footer > :not(:last-child) {
    margin-right: 0.25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }
    .modal-dialog-centered::before {
        height: calc(100vh - (1.75rem * 2));
    }
    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}

.popover-header {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
    display: none;
}

.popover-body {
    padding: 0.5rem 0.75rem;
    color: #212529;
}

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
    .carousel-item-next,
    .carousel-item-prev,
    .carousel-item.active {
        transition: none;
    }
}

.carousel-item-next,
.carousel-item-prev {
    position: absolute;
    top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-item-next.carousel-item-left,
    .carousel-item-prev.carousel-item-right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.active.carousel-item-right,
.carousel-item-next {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .active.carousel-item-right,
    .carousel-item-next {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.active.carousel-item-left,
.carousel-item-prev {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .active.carousel-item-left,
    .carousel-item-prev {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.6s;
    transition-property: opacity;
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-prev,
    .carousel-fade .carousel-item-next,
    .carousel-fade .carousel-item-prev,
    .carousel-fade .carousel-item.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators li {
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: "";
}

.carousel-indicators .active {
    background-color: #fff;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.bg-primary {
    background-color: #007bff !important;
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
    background-color: #0062cc !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
    background-color: #545b62 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
    background-color: #1e7e34 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
    background-color: #117a8b !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
    background-color: #d39e00 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
    background-color: #bd2130 !important;
}

.bg-light {
    background-color: #f3f5f9 !important;
}

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
    background-color: #dae0e5 !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
    background-color: #1d2124 !important;
}

.bg-white {
    background-color: #fff !important;
    margin-top: 100px;
}

.bg-transparent {
    background-color: transparent !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
    border-left: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-right-0 {
    border-right: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left-0 {
    border-left: 0 !important;
}

.border-primary {
    border-color: #007bff !important;
}

.border-secondary {
    border-color: #6c757d !important;
}

.border-success {
    border-color: #28a745 !important;
}

.border-info {
    border-color: #17a2b8 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

.border-danger {
    border-color: #dc3545 !important;
}

.border-light {
    border-color: #f8f9fa !important;
}

.border-dark {
    border-color: #343a40 !important;
}

.border-white {
    border-color: #fff !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}

.rounded-right {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-block {
        display: block !important;
    }
    .d-sm-table {
        display: table !important;
    }
    .d-sm-table-row {
        display: table-row !important;
    }
    .d-sm-table-cell {
        display: table-cell !important;
    }
    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-table {
        display: table !important;
    }
    .d-md-table-row {
        display: table-row !important;
    }
    .d-md-table-cell {
        display: table-cell !important;
    }
    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-table {
        display: table !important;
    }
    .d-lg-table-row {
        display: table-row !important;
    }
    .d-lg-table-cell {
        display: table-cell !important;
    }
    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }
    .d-xl-inline {
        display: inline !important;
    }
    .d-xl-inline-block {
        display: inline-block !important;
    }
    .d-xl-block {
        display: block !important;
    }
    .d-xl-table {
        display: table !important;
    }
    .d-xl-table-row {
        display: table-row !important;
    }
    .d-xl-table-cell {
        display: table-cell !important;
    }
    .d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }
    .d-print-inline {
        display: inline !important;
    }
    .d-print-inline-block {
        display: inline-block !important;
    }
    .d-print-block {
        display: block !important;
    }
    .d-print-table {
        display: table !important;
    }
    .d-print-table-row {
        display: table-row !important;
    }
    .d-print-table-cell {
        display: table-cell !important;
    }
    .d-print-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-print-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-21by9::before {
    padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive-4by3::before {
    padding-top: 75%;
}

.embed-responsive-1by1::before {
    padding-top: 100%;
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
}

@media (min-width: 576px) {
    .float-sm-left {
        float: left !important;
    }
    .float-sm-right {
        float: right !important;
    }
    .float-sm-none {
        float: none !important;
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float: left !important;
    }
    .float-md-right {
        float: right !important;
    }
    .float-md-none {
        float: none !important;
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float: left !important;
    }
    .float-lg-right {
        float: right !important;
    }
    .float-lg-none {
        float: none !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important;
    }
    .float-xl-right {
        float: right !important;
    }
    .float-xl-none {
        float: none !important;
    }
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }
    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }
    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }
    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }
    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }
    .m-sm-1 {
        margin: 0.25rem !important;
    }
    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }
    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }
    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }
    .m-sm-2 {
        margin: 0.5rem !important;
    }
    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }
    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }
    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }
    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }
    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }
    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.5rem !important;
    }
    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }
    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }
    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }
    .m-sm-5 {
        margin: 3rem !important;
    }
    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }
    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }
    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }
    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }
    .p-sm-0 {
        padding: 0 !important;
    }
    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }
    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }
    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }
    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }
    .p-sm-1 {
        padding: 0.25rem !important;
    }
    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }
    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }
    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }
    .p-sm-2 {
        padding: 0.5rem !important;
    }
    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }
    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }
    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }
    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }
    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }
    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.5rem !important;
    }
    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }
    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }
    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }
    .p-sm-5 {
        padding: 3rem !important;
    }
    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }
    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }
    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }
    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }
    .m-sm-auto {
        margin: auto !important;
    }
    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }
    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }
    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }
    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }
    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }
    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }
    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }
    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }
    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }
    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }
    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }
    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }
    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }
    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }
    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }
    .m-md-4 {
        margin: 1.5rem !important;
    }
    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }
    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }
    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }
    .m-md-5 {
        margin: 3rem !important;
    }
    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }
    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }
    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }
    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }
    .p-md-0 {
        padding: 0 !important;
    }
    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }
    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }
    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }
    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }
    .p-md-1 {
        padding: 0.25rem !important;
    }
    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }
    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }
    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }
    .p-md-2 {
        padding: 0.5rem !important;
    }
    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }
    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }
    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }
    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }
    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }
    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }
    .p-md-4 {
        padding: 1.5rem !important;
    }
    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }
    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }
    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }
    .p-md-5 {
        padding: 3rem !important;
    }
    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }
    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }
    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }
    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }
    .m-md-auto {
        margin: auto !important;
    }
    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }
    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }
    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }
    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }
    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }
    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }
    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }
    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }
    .m-lg-1 {
        margin: 0.25rem !important;
    }
    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }
    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }
    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }
    .m-lg-2 {
        margin: 0.5rem !important;
    }
    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }
    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }
    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }
    .m-lg-3 {
        margin: 1rem !important;
    }
    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }
    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }
    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }
    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }
    .m-lg-4 {
        margin: 1.5rem !important;
    }
    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }
    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }
    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }
    .m-lg-5 {
        margin: 3rem !important;
    }
    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }
    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }
    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }
    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }
    .p-lg-0 {
        padding: 0 !important;
    }
    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }
    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }
    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }
    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }
    .p-lg-1 {
        padding: 0.25rem !important;
    }
    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }
    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }
    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }
    .p-lg-2 {
        padding: 0.5rem !important;
    }
    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }
    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }
    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }
    .p-lg-3 {
        padding: 1rem !important;
    }
    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }
    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }
    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }
    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }
    .p-lg-4 {
        padding: 1.5rem !important;
    }
    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }
    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }
    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }
    .p-lg-5 {
        padding: 3rem !important;
    }
    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }
    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }
    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }
    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }
    .m-lg-auto {
        margin: auto !important;
    }
    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }
    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }
    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }
    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }
    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }
    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }
    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }
    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }
    .m-xl-1 {
        margin: 0.25rem !important;
    }
    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }
    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }
    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }
    .m-xl-2 {
        margin: 0.5rem !important;
    }
    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }
    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }
    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }
    .m-xl-3 {
        margin: 1rem !important;
    }
    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }
    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }
    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }
    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }
    .m-xl-4 {
        margin: 1.5rem !important;
    }
    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }
    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }
    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }
    .m-xl-5 {
        margin: 3rem !important;
    }
    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }
    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }
    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }
    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }
    .p-xl-0 {
        padding: 0 !important;
    }
    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }
    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }
    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }
    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }
    .p-xl-1 {
        padding: 0.25rem !important;
    }
    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }
    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }
    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }
    .p-xl-2 {
        padding: 0.5rem !important;
    }
    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }
    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }
    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }
    .p-xl-3 {
        padding: 1rem !important;
    }
    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }
    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }
    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }
    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }
    .p-xl-4 {
        padding: 1.5rem !important;
    }
    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }
    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }
    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }
    .p-xl-5 {
        padding: 3rem !important;
    }
    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }
    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }
    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }
    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }
    .m-xl-auto {
        margin: auto !important;
    }
    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }
    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }
    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }
    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}

.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }
    .text-sm-right {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }
    .text-md-right {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }
    .text-lg-right {
        text-align: right !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }
    .text-xl-right {
        text-align: right !important;
    }
    .text-xl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #007bff !important;
}

a.text-primary:focus,
a.text-primary:hover {
    color: #0062cc !important;
}

.text-secondary {
    color: #6c757d !important;
}

a.text-secondary:focus,
a.text-secondary:hover {
    color: #545b62 !important;
}

.text-success {
    color: #28a745 !important;
}

a.text-success:focus,
a.text-success:hover {
    color: #1e7e34 !important;
}

.text-info {
    color: #17a2b8 !important;
}

a.text-info:focus,
a.text-info:hover {
    color: #117a8b !important;
}

.text-warning {
    color: #ffc107 !important;
}

a.text-warning:focus,
a.text-warning:hover {
    color: #d39e00 !important;
}

.text-danger {
    color: #dc3545 !important;
}

a.text-danger:focus,
a.text-danger:hover {
    color: #bd2130 !important;
}

.text-light {
    color: #f8f9fa !important;
}

a.text-light:focus,
a.text-light:hover {
    color: #dae0e5 !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:focus,
a.text-dark:hover {
    color: #1d2124 !important;
}

.text-body {
    color: #212529 !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

@media print {
    *,
    ::after,
    ::before {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    a:not(.btn) {
        text-decoration: underline;
    }
    abbr[title]::after {
        content: " (" attr(title) ")";
    }
    pre {
        white-space: pre-wrap !important;
    }
    blockquote,
    pre {
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    img,
    tr {
        page-break-inside: avoid;
    }
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    @page {
        size: a3;
    }
    body {
        min-width: 992px !important;
    }
    .container {
        min-width: 992px !important;
    }
    .navbar {
        display: none;
    }
    .badge {
        border: 1px solid #000;
    }
    .table {
        border-collapse: collapse !important;
    }
    .table td,
    .table th {
        background-color: #fff !important;
    }
    .table-bordered td,
    .table-bordered th {
        border: 1px solid #dee2e6 !important;
    }
    .table-dark {
        color: inherit;
    }
    .table-dark tbody + tbody,
    .table-dark td,
    .table-dark th,
    .table-dark thead th {
        border-color: #dee2e6;
    }
    .table .thead-dark th {
        color: inherit;
        border-color: #dee2e6;
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: 0;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    transform-box: fill-box;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
    animation-duration: 0.75s;
}

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0);
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom;
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform-origin: left center;
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        transform: scale(0.1) translate3d(2000px, 0, 0);
        transform-origin: right center;
    }
}

.zoomOutRight {
    animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutUp {
    animation-name: zoomOutUp;
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translateZ(0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

.float-bob {
    animation-name: float-bob;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes float-bob {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes float-bob {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.slideInZoom {
    animation-name: slideInZoom;
    animation-timing-function: linear;
    -webkit-animation-name: slideInZoom;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: slideInZoom;
    -moz-animation-timing-function: linear;
    -ms-animation-name: slideInZoom;
    -ms-animation-timing-function: linear;
    -o-animation-name: slideInZoom;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes slideInZoom {
    0% {
        -webkit-transform: translateX(-200px) scale(0);
        transform: translateX(-200px) scale(0);
    }
    100% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

.twentytwenty-vertical .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before {
    width: 9999px;
    height: 3px;
    top: 50%;
    margin-top: -1.5px;
}

.twentytwenty-after-label,
.twentytwenty-before-label,
.twentytwenty-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.twentytwenty-after-label,
.twentytwenty-before-label,
.twentytwenty-overlay {
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.twentytwenty-after-label,
.twentytwenty-before-label {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity;
}

.twentytwenty-after-label:before,
.twentytwenty-before-label:before {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.twentytwenty-after-label:before,
.twentytwenty-before-label:before {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    line-height: 38px;
    padding: 0 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before,
.twentytwenty-horizontal .twentytwenty-before-label:before {
    top: 50%;
    margin-top: -19px;
}

.twentytwenty-vertical .twentytwenty-after-label:before,
.twentytwenty-vertical .twentytwenty-before-label:before {
    left: 50%;
    margin-left: -45px;
    text-align: center;
    width: 90px;
}

.twentytwenty-down-arrow,
.twentytwenty-left-arrow,
.twentytwenty-right-arrow,
.twentytwenty-up-arrow {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
    top: 50%;
    margin-top: -6px;
}

.twentytwenty-down-arrow,
.twentytwenty-up-arrow {
    left: 50%;
    margin-left: -6px;
}

.twentytwenty-container {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    z-index: 0;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.twentytwenty-container img {
    max-width: 100%;
    position: absolute;
    top: 0;
    display: block;
}

.twentytwenty-container.active .twentytwenty-overlay,
.twentytwenty-container.active:hover.twentytwenty-overlay {
    background: rgba(0, 0, 0, 0);
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active:hover.twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active:hover.twentytwenty-overlay .twentytwenty-before-label {
    opacity: 0;
}

.twentytwenty-container * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.twentytwenty-before-label {
    opacity: 0;
}

.twentytwenty-overlay {
    -webkit-transition-property: background;
    -moz-transition-property: background;
    transition-property: background;
    background: rgba(0, 0, 0, 0);
    z-index: 25;
}

.twentytwenty-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
    opacity: 1;
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
    opacity: 1;
}

.twentytwenty-before {
    z-index: 20;
}

.twentytwenty-after {
    z-index: 10;
}

.twentytwenty-handle {
    height: 38px;
    width: 38px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -22px;
    margin-top: -22px;
    border: 3px solid #fff;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    -webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
    z-index: 40;
    cursor: pointer;
}

.twentytwenty-left-arrow {
    border-right: 6px solid #ec7323;
    left: 50%;
    margin-left: -17px;
}

.twentytwenty-right-arrow {
    border-left: 6px solid #ec7323;
    right: 50%;
    margin-right: -17px;
}

.twentytwenty-up-arrow {
    border-bottom: 6px solid #fff;
    top: 50%;
    margin-top: -17px;
}

.twentytwenty-down-arrow {
    border-top: 6px solid #fff;
    bottom: 50%;
    margin-bottom: -17px;
}

/*------------------new-mobile-menu--------------------*/

.head-call-back-sidebar-main {
    position: relative;
}

/**/
/*-- new-css --*/


/*digital-arobit-new-header-css*/

/*ul.sub-menu.full-width-submenu-style.clearfix {*/
/*    background: #000 !important;*/
/*}*/


.full-width-submenu-style ul li {
    box-shadow: 0 0px 14px -11px rgba(0,0,0, 0.5) !important;
    margin: 0 10px !important;
    background: #fff;
    border-radius: 10px;
}
    
.full-width-submenu-style h4 {
    margin: 0;
    padding: 0;
    font-size: 38px;
    text-align: center;
    display: block;
    line-height: 53px;
    color: #05124c;
}

.full-width-submenu-style p {
	margin: 0;
	padding: 10px 0 121px 0;
	font-size: 16px;
	color: #000;
	line-height: 22px;
	font-weight: 600;
	text-align: center;
}

/*.full-width-submenu-style .add-img { width:100%; height:250px; }*/

.full-width-submenu-style .add-img {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 0;
}



.full-width-submenu-style img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.full-width-submenu-style li ul{ box-shadow:none !important; }
.full-width-submenu-style li ul li { margin: 0 !important;  box-shadow: none !important; }

.full-width-submenu-style ul li.item-rightlast {
	box-shadow: none !important;
	padding: 34px 10px 20px 10px;
	position: relative;
	border-radius: 4px;
	background-repeat: no-repeat !important;
	background-size: 60% !important;
	background-position: center bottom 14px !important;
}

.full-width-submenu-style ul li.item-rightlast .animate_btn {
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 23px 0 0 0;
    padding: 12px 33px !important;
    font-size: 28px!important;
    color: var(--white-color)!important;
    position: relative;
    transition: all 0.6s;
    font-weight: 600;
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%);
    border: 0;
}


.full-width-submenu-style ul li.item-rightlast .animate_btn .icon-arrow {
   
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color)!important;
    position: absolute;
    left: 0;
    top: 50% !important;
    transform: translatey(-50%) !important;
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
     border: 0;
}

.full-width-submenu-style ul li.item-rightlast .animate_btn:hover .icon-arrow {
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50% !imprtant;
    transform: translatey(-50%) !imprtant;
    opacity: 1;
    visibility: visible;
    transition: all 0.6s
}

.full-width-submenu-style ul li.item-rightlast .animate_btn:hover {
    background: transparent!important;
    box-shadow: 0 3px 10px 0 #fff0;
    border-radius: 50px;
    padding:12px 33px 12px 0;
    color:#000 !important;
    border: 0;
}


/*////////////////////////////////////////////////////////////////*/

/*-- new
/* =====================================================================
   SERVICES MEGA MENU
   Full-width panel triggered by .has-megamenu li hover.
   6-column grid layout. No inline styles anywhere.
   ===================================================================== */

/* The nav item itself — position:static so panel can go full-width */
.has-megamenu {
    position: static !important;
}

/* The full-width panel */
.megamenu-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 3px solid #ec7323;
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
    z-index: 9999;
}

.has-megamenu:hover .megamenu-panel {
    display: block;
}

/* Inner grid — 6 equal columns */
.megamenu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 10px;
}

/* Column heading chip */
.megamenu-col .col-heading {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: #182355;
    padding: 7px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.megamenu-col .col-heading .fa {
    color: #ec7323;
    font-size: 13px;
}

/* Column link list */
/*.megamenu-col ul {*/
/*    list-style: none;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*small-scroll*/

.megamenu-col ul {
    
    box-sizing: border-box; -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box; -o-box-sizing: border-box;
    -ms-box-sizing: border-box; scrollbar-width: thin; scrollbar-color: #152777 #fff;
    
    list-style: none;
    margin: 0;
    padding: 0;
    height: 250px;
    overflow-y: auto;
}

.megamenu-col ul li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    padding: 6px 10px 6px 18px;
    position: relative;
    line-height: 1.35;
    transition: color 0.15s, padding-left 0.15s, border-left-color 0.15s;
    border-left: 2px solid transparent;
}

.megamenu-col ul li a::before {
    content: '\f105';
    font-family: FontAwesome;
    position: absolute;
    left: 5px;
    top: 7px;
    font-size: 12px;
    color: #ccc;
    transition: color 0.15s;
}

.megamenu-col ul li a:hover {
    color: #ec7323;
    padding-left: 22px;
    border-left-color: #ec7323;
}

.megamenu-col ul li a:hover::before {
    color: #ec7323;
}

/* Bottom CTA bar */
.megamenu-cta-bar {
    background: #182355;
    padding: 12px 0;
}

.megamenu-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.megamenu-cta-bar p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.megamenu-cta-bar p span {
    color: #ec7323;
    font-weight: 700;
}

.mm-cta-btn {
    background: #ec7323;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: 50px;
    white-space: nowrap;
    transition: background 0.2s;
    display: inline-block;
}

.mm-cta-btn:hover {
    background: #cf6018;
    color: #fff !important;
}

/* Simple dropdown for Company, Industries, Contact */
.has-dropdown {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 99%;
    left: 0;
    background: #fff;
    width: 240px;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid #ec7323;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    list-style: none;
    margin: 0;
}

.has-dropdown:hover .nav-dropdown {
    display: block;
}

.nav-dropdown li a {
    display: block;
    padding: 9px 20px 9px 32px;
    color: #202122;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.15s;
}

.nav-dropdown li a::before {
    content: '\f105';
    font-family: FontAwesome;
    position: absolute;
    left: 16px;
    top: 10px;
    color: #ccc;
    font-size: 13px;
    transition: color 0.15s;
}

.nav-dropdown li a:hover {
    color: #ec7323;
}

.nav-dropdown li a:hover::before {
    color: #ec7323;
}

/* ---- End Mega Menu ---- */


/* ── FOOTER ─────────────────────────────────────────────────── */
   
/*********** Footer ********/
footer {
    background: #f3f5f9;
    padding-top: 60px;
}


/*.footer-container {
    background:var(--blue-dark-color);
    padding: 35px 0 0;
    width: 100%;
}*/

.footer-container {
    background: var(--bg-light-color);
    padding: 35px 0 0;
    width: 100%;
}

.main-content-block {
    margin-top: -95px;
    padding-top: 0;
    margin-bottom: 50px;
    margin-left: 0px;
}

.main-content-block {
    margin-top: -95px;
    padding-top: 0;
    margin-bottom: 50px;
    margin-left: 0px;
    padding-top: 11px;
}

.email_block {
    width: 100%;
    float: left;
    border-radius: 5px;
    background: rgba(62, 93, 122, .23);
    border: 1px solid rgba(0, 170, 248, .13);
    padding: 12px 15px;
    margin-bottom: 15px;
    color: #fff;
    transition: all 0.3s;
}

.email_block:hover {
    background: rgb(10 25 94);
}
.email_block a {
    color: #fff;
}

.email_block a:hover { color:var(--blue-darklight); }

.email_block h4 {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.3px;
    margin-bottom: 2px;
}

.email_block p b {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.3px;
    margin-bottom: 2px;
}

.email_block p {
    margin-bottom: 0;
    color: #fff;
}


.links {
    padding-bottom: 0;
}

.links_menu {
    float: left;
    width: 50%;
}
.link_new ul li {
    padding: 4px 0;
}

.link_new ul li a {
    font-size: 14px;
}

.links span {
    padding-right: 10px;
}

.links_menu {
    float: left;
    width: 50%;
}

.footer_form_bg {
    border-radius: 10px;
    margin-top: -120px;
    border: 8px solid rgba(0, 0, 0, 0.17);
}

.footer_form {
    background-color: #fff;
    border-radius: 6px;
    padding: 25px 20px 20px;
}

.footer_form label {
    font-weight: 400;
    margin-bottom: 4px;
}

.footer_form input, .footer_form textarea {
    background-color: transparent;
    border: none;
    width: 100%;
    font-size: 1rem;
    margin: 0 0 20px;
    padding: 0;
    outline: 0;
    border-bottom: 1px solid #7b97a4;
    border-radius: 0;
}

.errormessage {
    color: #ff0000;
    font-size: 13px;
}
.btn-custome:hover {
    background: linear-gradient(to right, rgb(2 12 111) 0, rgb(2 126 208) 100%) !important;
}

.footer_form select {
    border: none;
    outline: 0;
    border-bottom: 1px solid #7b97a4;
    border-radius: 0;
    box-shadow: none;
    padding: 6px 0;
    margin: 0 0 20px;
    background-color: transparent;
    width: 100%;
}

/**/


.footer_bottom {
    background-color: var(--bg-light-color);
    padding: 40px 0 25px;
    border-top: 1px solid #ffffff12;
}

.f_logo { width: 170px;	margin-bottom: 8px; }

.footer_bottom .footerTitle {
    color: #a6a9ab;
    font-size: 14px;
    letter-spacing: 1.4px;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.footer_bottom .career a {
    font-size: 15px;
    color: #fff;
    letter-spacing: .6px;
}

.footer_bottom .career i {
    color: #20b1dd;
}
.footer_bottom .career span {
    margin-left: 10px;
}

.client-logos ul { padding: 40px 0 0 0; display:flex; align-items:center; justify-content:center; }

.footer_bottom .footerTitle {
    color: #a6a9ab;
    font-size: 14px;
    letter-spacing: 1.4px;
    margin: 0 0 5px;
    text-transform: uppercase;
    padding: 0 0 6px 0;
}
.social_footer ul li {
    border: 1px solid #454545;
    width: 29px;
    height: 29px;
    overflow: hidden;
    border-radius: 5px;
    padding: 5px 9px 6px 7px !important;
    margin: 0 1px;
}

.footer_bottom .client-logos li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 25px;
}

.footer_bottom .client-logos li img {
    opacity: .4;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.footer_bottom .copyright_new {
    padding-top: 24px;
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .45px;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.social_footer ul { display:flex; align-items:center; justify-content:center; }

.social_footer ul li { display:flex; align-items:center; justify-content:center; }


footer .footer-container .links { margin: 0; padding: 0; }
footer .footer-container .links h5 {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: var(--font-size-24);
    color: var(--white-color);
    line-height:30px;
    font-weight:500;
    }
footer .footer-container .links .links_menu {margin: 0;padding: 0;display: flex;align-items: start;justify-content: start;width: 100%;}
footer .footer-container .links .links_menu ul {margin: 0;padding: 0;width: 50%;}
footer .footer-container .links .links_menu li {margin: 0;padding: 5px 0;width: 100%;display: block;}
footer .footer-container .links .links_menu li a {margin: 0;padding: 0;font-size: 14px; 
    line-height: 22px;color:var(--white-color); transition:all 0.3s; }

footer .footer-container .links .links_menu li a:hover { color:#b0baff; }

footer .footer-container .links .links_menu li a span {margin: 0;padding: 0 4px 0 0;font-size: 18px;}


/*footer .footer-container .btn-custome {
    background: linear-gradient(to right, rgb(2 12 111) 0, rgb(2 126 208) 100%) !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%) !important;
    border-radius: 30px !important;
    border-color: #293270 !important;
    transition: 0.4s ease all;
    padding: 15px 30px;
    font-size: 16px;
    margin-top: 10px;

    color:var(--white-color);
}*/

footer .footer-container .btn-custome {
    background: var(--orange-color) !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%) !important;
    border-radius: 30px !important;
    /* border-color: #293270 !important; */
    transition: 0.4s ease all;
    padding: 13px 22px;
    font-size: 16px;
    margin-top: 10px;
    color: var(--white-color);
    font-weight: 500;
}

footer .footer-container .text-right-btn {
    display: flex;
    align-items: center;
    justify-content: end;
} 


footer .footer-container .btn-custome:hover {
     background: var(--blue-dark-color) !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%) !important;
    color:var(--white-color);

}


/*********** Top Scroll Arrow ********/
.scroll-top{bottom:35px;color:#fff !important;display:none;font-size:26px;padding:12px 9px;position:fixed;left:20px;height:52px;text-align:center;width:52px;background:#ec7323;border-radius:6px;overflow:hidden;-webkit-box-shadow:0 2px 6px 0 rgba(0,0,0,.4);box-shadow:0 2px 6px 0 rgba(0,0,0,.4);z-index:990;-webkit-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease;-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;cursor:pointer;}
.scroll-top:after{content:'';width:2px;height:25px;background:#fff;position:absolute;left:50%;bottom:-50px;-webkit-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;margin-left: -2px;}
.scroll-top:hover:after{bottom:8px;}
.scroll-top:hover:before{top:-8px;position:relative;color:#fff;font-size:30px;}
.scroll-top:before{-webkit-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;position:relative;top:0;left:-1px;}
.scroll-top:hover{-webkit-box-shadow:0 25px 55px 0 rgba(0, 0, 0, 0.21), 0 16px 28px 0 rgba(0, 0, 0, 0.22);box-shadow:0 25px 55px 0 rgba(0, 0, 0, 0.21), 0 16px 28px 0 rgba(0, 0, 0, 0.22);}


/************/

.whatsapp-info-icon {
	/* width: 50px; */
	/* height: 50px; */
	position: fixed;
	bottom: 100px;
	right: 20px;
	z-index: 9999;
	border-radius: 100%;
	/* background-color: #293270; */
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -60px auto 20px;
	-webkit-box-shadow: 0 0 14px -4px rgb(41 50 112/83%);
	-moz-box-shadow: 0 3px 10px 0 rgba(0,0,0,.15);
	box-shadow: -1px 4px 33px -4px rgba(0, 0, 0, 0.83);
}


.whatsapp-info-icon svg {
	width: 50px;
	height: 50px;
}









/* ── CUSTOM STYLES ──────────────────────────────────────────── */
/**/
:root {
    /* color variables */

    --blue-dark-color: #293270;
    --blue-darklight-color: #293270;
    --blue-light-color: #293270;
    --blue-color: #293270;

    --orange-color: #ec7323;
    --orange-light-color: #ff6500;

    --black-color: #000;
    --white-color: #fff;
    --ass-color: #3b3c3d;
    --dark-ass-color: #3b3c3d;

    --bg-blue-dark-color: #191a32;
    --bg-light-color: #05124c;

    --bg-white-color: #fff;
    --bg-black-color: #000;
    /*---light-ass-coor:#f8f8f8;*/
    --light-ass-color: #f8f8f8;
}

:root {
    /* Font size variables */
    --font-size-13: 13px;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-18: 18px;

    --font-size-20: 20px;
    --font-size-24: 24px;

    --font-size-32: 32px;
    --font-size-52: 52px;
    --font-size-80: 80px;
    --font-size-90: 90px;
    --font-size-100: 100px;
}

/**/

/*homepage_onload_wrapper*/

.homepage_onload_wrapper.homepage-popup-mpdal {
    display: none !important;
}

/*homepage_onload_wrapper*/

/*.index-skeleton {*/
/*    display: none !important;*/
/*}*/

/**/
.d_none {
    display: none;
}
/**/

/*-- responsive_menu --*/

.responsive_menu {
    display: none;
}

header.arobit_desktop_view {
    display: block;
}

/*-- responsive_menu --*/

/*-- new-responsive_menu --*/
.abspl-responsive-menu {
    display: none;
}
/*-- new-responsive_menu --*/

/*title*/

.title {
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

.title h2 {
    margin: 0;
    padding: 0;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: var(--black-color);
    font-weight: 700;
}

.title span {
    font-size: var(--small-16);
    /*font-weight: 500;*/
    color: var(--orange-color);
}

.title p {
    font-size: var(--small-16);
}

.title mark {
    margin: 0;
    padding: 0;
    background: transparent;
}
.title:before {
    display:none !important;
    position: absolute;
    left: 0;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

/*title*/

/*--button_style--*/

.animate_btn {
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 23px 0 0 0;
    padding: 12px 22px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    display: inline-block;
}

.animate_btn .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color) !important;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.animate_btn:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.animate_btn:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    padding: 12px 30px 10px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
}

/*--button_style--*/

/*-- home-banner --*/

/******** Banner ********/
/*.banner_home {
    margin: 0;
    position: relative;
    z-index: 9;
    min-height: 100%;
    overflow: hidden;
    height: 688px;
    width: 100%;
}*/

.banner_home {
    margin: 0;
    position: relative;
    z-index: 9;
    min-height: 100%;
    overflow: hidden;
    /* height: 688px; */
    width: 100%;
    /*     aspect-ratio: 2 / 1;*/
    height: 100vh;
}

.banner_home .video {
    width: 100%;
    height: 100vh;
}

.banner_home .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.banner_home .tenc-intro-main__wrapper {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    z-index: 999;*/
/*    background: linear-gradient(to bottom right, #49432c2e 1%, #40281200 25%, #2e1d0d47 36%, #00377614 50%) 100% 100%, linear-gradient(to bottom left, #2c2c4940 1%, #40281266 25%, #2e1d0d36 40%, #000c3024 60%) 0 100%,*/
/*        linear-gradient(to top left, #2c454963 1%, #40281245 25%, #10101000 33%, #00153b30 45%) 0 0, linear-gradient(to top right, #49432c1f 1%, #40281229 25%, #2e1d0d66 40%, #00303929 60%) 100% 0;*/
/*    padding: 0 0 122px 0;*/
/*}*/

.banner_home .tenc-intro-main__wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 999;
    /* background: linear-gradient(to bottom right, #49432c2e 1%, #40281200 25%, #2e1d0d47 36%, #00377614 50%) 100% 100%, linear-gradient(to bottom left, #2c2c4940 1%, #40281266 25%, #2e1d0d36 40%, #000c3024 60%) 0 100%,
        linear-gradient(to top left, #2c454963 1%, #40281245 25%, #10101000 33%, #00153b30 45%) 0 0, linear-gradient(to top right, #49432c1f 1%, #40281229 25%, #2e1d0d66 40%, #00303929 60%) 100% 0; */
    background: #0000008c;
    padding: 0 0 122px 0;
}

.banner_home .tenc-intro-main__wrapper span {
    font-size: var(--extra-extra-large-40);
    color: var(--white-color);
    margin: 0 0 30px;
    display: block;
}

/*.banner_home .tenc-intro-main__wrapper span i {     font-family: montserrat, sans-serif; }*/

.banner_home .tenc-intro-main__wrapper mark {
    background-color: transparent;
}

.banner_home .tenc-intro-main__wrapper span {
    font-size: 50px;
    line-height: 60px;
    font-family: montserrat, sans-serif;
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
    margin: 0 auto;
    padding: 150px 0 0 0;
    width: 100%;
    letter-spacing: 0.5px;
    font-family: "Playfair Display", serif;
    text-shadow: 8px 6px 4px rgba(0, 0, 0, 0.5);
}

/*-- home-banner --*/

/*arobit-digitalbanner*/

.arobit-digitalbanner {
    margin: 0;
    padding: 0;
    background: var(--bg-light-color);
    padding-top:128px;
    padding-bottom:120px;
}

.arobit-digitalbanner .row {
    align-items: center;
}

.arobit-digitalbanner .left-block {
    margin: 0;
    padding: 0;
}

.arobit-digitalbanner .left-block span {
    margin: 0;
    padding: 0 0 8px 0;
    display: block;
    font-size: 24px;
    color: #ec7323;
    font-weight: 600;
    line-height: 30px;
}

.arobit-digitalbanner .left-block h1 {
    margin: 0;
    padding: 0;
    font-size: 48px;
    line-height: 64px;
    color: #fff;
    font-weight: 600;
}

.arobit-digitalbanner .right-block {
    margin: 0;
    padding: 0;
}

.arobit-digitalbanner .right-block img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 0;
    position: relative;
}

/*arobit-digitalbanner*/

/******** Brand Logo ********/
.brand-logo {
    position: relative;
    z-index: 9;
    background: var(--white-color);
    padding: 60px 0;
}

.brand-logo .brands_logo {
    padding-top: 0 !important;
}

.brands_logo {
    width: 100%;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    padding: 20px 0 0 0;
}

.brand-logo h1 {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 36px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.brand-logo p {
	margin: 0 auto;
	padding: 0;
	font-size: var(--font-size-18);
	line-height: 29px;
	color: var(--dark-ass-color);
	font-weight: 400;
	width: 76%;
	text-align: center;
}


.brands_logo {
    visibility: visible;
    opacity: 1;
}

.brand-logo .brands_logo .slick-track .item {
    width: 100%;
    height: auto;
    padding: 12px;
    margin: 0 0;
    border: 4px solid #fff;
    border-top: 0;
    border-bottom: 0;
}

.brand-logo .brands_logo .slick-track .item .brand_logo img {
    filter: grayscale(100%);
    display: block;
    margin: 0 auto;
    transition: all 0.3s;
}


.brand-logo .brands_logo .slick-track .item img {
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s;
    height: 98px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 10px 10px;
    border-radius: 6px;
}

/*.brand-logo .brands_logo .slick-track .item img {*/
/*    max-width: 100%;*/
/*    object-fit: contain;*/
/*    transition: all 0.3s;*/
/*    height: 74px;*/
/*    margin: 0 auto;*/
/*}*/

/*.brand-logo .brands_logo .slick-track .item:hover img { filter: grayscale(0); }*/

.brand_logo .slick-slide {
    padding: 10px 20px;
}

.brand_logo .owl-nav {
    display: none;
}

/**/
section.brand-logo.logo2 {
    padding: 0 0 60px 0 !important;
}
section.brand-logo.logo2 .item img {
    filter: grayscale(0) !important;
}

/******** Brand Logo ********/

/******** About ********/

.home_about {
    padding: 80px 0 60px 0;
    position: relative;
    background: var(--light-ass-color);
}
.about-bg-section {
    position: absolute;
    left: 0;
    top: -74px;
    bottom: 0;
    height: calc(100% + 74px);
    width: 25.0133%;
    background-repeat: no-repeat;
    background-size: cover;
}

.home_about .row {
    flex-direction: row-reverse;
}

.home_about h2 mark {
    display: inline-block;
    background: transparent;
}
.home_about h2 mark {
    display: inline-block;
    background: transparent;
    color: var(--blue-light-color);
}

.home_about .title {
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home_about .title h2 {
    margin: 0;
    padding: 0;
    font-family: montserrat, sans-serif;
    font-size: 38px;
    line-height: 45px;
    color: #000;
    font-weight: 700;
    width: 100%;
}

/*////////////////////////////////////////*/

.home_about .title .button {
    margin: 0;
    padding: 0;
}

.home_about .title .button a {
    /* background: linear-gradient(to right, rgb(2 12 111) 0, rgb(2 120 193) 100%); */
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0;
    padding: 10px 22px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
}

.home_about .title .button a .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.home_about .title .button a:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.home_about .title .button a:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    margin: 0;
    padding: 10px 30px 10px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
    position: relative;
}

/*////////////////////////////////////////*/

.home_about .item p {
    margin: 0 auto;
    padding: 0 0 12px 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.home_about .about-text-block span {
    margin: 0 auto;
    padding: 0 0 12px 0;
    font-size: 24px;
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 500;
    text-align: left;
    display: block;
}

.home_about .item-right {
    padding: 0;
    margin: 0;
}

.home_about .item-right img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

/*.home_about .item-right:hover {*/
/*    box-shadow: 8px 8px 0 0 5px 5px 6px 0 rgb(0 47 78 / 25%);*/
/*    -webkit-box-shadow: 5px 5px 6px 0 rgb(0 47 78 / 25%);*/
/*    -o-box-shadow: 5px 5px 6px 0 rgb(0 47 78 / 25%);*/
/*    -ms-box-shadow: 5px 5px 6px 0 rgb(0 47 78 / 25%);*/
/*    -moz-box-shadow: 5px 5px 6px 0 rgb(0 47 78 / 25%);*/
/*}*/

.home_about .about-text-block .button {
    margin-top: 20px;
    display: none;
}

.home_about .about-text-block .button a {
    /* background: linear-gradient(to right, rgb(2 12 111) 0, rgb(2 120 193) 100%); */
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0;
    padding: 10px 22px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
}

.home_about .about-text-block .button a .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.home_about .about-text-block .button a:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.home_about .about-text-block .button a:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    margin: 0;
    padding: 10px 30px 10px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
    position: relative;
}

/******** about ********/

/*---Work------------------------------------------------------------------------------*/

.counter-section {
    margin: 0;
    padding: 60px 0;
    /*   background:var(--white-color); */
    background: linear-gradient(279.09deg, #182355 49%, #182357 50%, #182355 57.85%, #5b6ec5 75.6%, #33407afc 95.5%);
    /*bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    position: absolute;
    right: 0;
    top: 0;*/
}
.counter-section {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.counter-section .title {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.counter-section .title:before {
    display: none;
}

.counter-section .title h2 {
    color: #d8dadf;
    padding-bottom: 10px;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    text-align: left;
    font-family: "Montserrat", sans-serif;
    /* opacity: 0.4; */
    letter-spacing: 3px;
    margin: 0;
    padding: 0;
    font-weight: 800;
    text-transform: capitalize;
    width: 62%;
}

.counter-section .title h3 {
    margin: 0;
    padding: 0 0 0 30px;
    font-size: var(--font-size-18);
    line-height: 33px;
    color: #fff;
    opacity: 1;
    font-style: italic;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    width: 47%;
}

.counter-section .title p {
    margin: 0;
    padding: 0 0 0 30px;
    font-size: var(--font-size-18);
    line-height: 33px;
    color: #fff;
    opacity: 1;
    font-style: italic;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    width: 47%;
}

.counter-section .col_left {
    margin: 0;
    padding: 0;
}
.counter-section .col_left .bd_block {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.counter-section .col_left .bd_block a {
    align-items: center;
    border: 1px solid #dadfe3;
    color: #000;
    display: flex;
    font-size: 22px;
    font-weight: 600;
    margin: 10px;
    min-height: 100px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    width: 46.1%;
    box-shadow: 1px 1px 2px 1px rgb(0 0 0 / 38%);
    border-radius: 0px;
    position: relative;
    justify-content: center;
    background: #fff;
    transition: all 0.3s;
    line-height: 28px;
}
.counter-section .col_left .bd_block a:hover {
    color: var(--white-color);
    background: #027ecf;
    border: 1px solid #027ecf;
}

.counter-section .col_left .bd_block a .fa {
    position: absolute;
    right: 8px;
    bottom: 6px;
    transform: rotate(39deg);
    font-size: 20px;
    color: #293270;
    transition: all 0.3s;
}

.counter-section .col_left .bd_block a:hover .fa {
    transform: rotate(0deg);
    color: var(--white-color);
}

.counter-section .col-right {
    margin: 0;
    padding: 0;
}

.counter-section .col-right .bd {
    padding-top: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.counter-section .col-right .bd .item {
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.counter-section .col-right .bd .item .top {
    margin: 0;
    padding: 0;
    display: block;
}
.counter-section .col-right .bd .item .top .icon {
    margin: 0 22px 0 0;
    padding: 0 15px 0 0;
    display: flex;
    width: 80px;
    height: 80px;
    background: #ff6500;
    align-items: center;
    justify-content: center;
    border-radius: 24px 28px 30px 59px;
    box-shadow: 3px 3px 0 0 rgb(255 101 0 / 75%);
}
.counter-section .col-right .bd .item .top .icon img {
    width: 40px;
    object-fit: contain;
    position: relative;
    left: 7px;
    top: -5px;
    filter: grayscale(100%);
}

.counter-section .col-right .bd .item .count-no {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0 0 4px 0;
    font-size: 30px;
    color: #ffffff;
    line-height: 38px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    flex-wrap: wrap;
}

.counter-section .col-right .bd .item .count-no span.text {
    margin: 0;
    padding: 0 0 0 6px;
    display: inline-block;
    font-size: 22px;
    line-height: 28px;
    color: #fff;
}
.counter-section .col-right .bd .item .text-bd {
    padding: 0;
    margin: 0;
    position: relative;
}

.counter-section .col-right .bd .item h4 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    color: #fff;
    line-height: 30px;
}

.counter-section .col-right .bd .item .count-no p {
    margin: 0;
    padding: 0 0 0 6px;
    font-size: 28px;
    color: #ffffff;
    line-height: 38px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    display: flex;
    align-items: center;
    display: inline-block;
    width: auto !important;
    min-height: auto !important;
}

.counter-section .col-right .bd .item .count-no p span {
    display: inline-block;
    font-size: 20px;
    margin: 0;
    padding: 0 0 0 6px;
}

.counter-section .col-right .bd .item p {
    margin: 0;
    padding: 4px 0 0 0;
    font-size: var(--font-size-18);
    line-height: 29px;
    color: #fff;
    font-weight: 400;
    width: 100%;
    text-align: left;
    position: relative;
    min-height: auto;
}

.counter-section .col-right .bd .item .button_block {
    margin: -45px 0 0 0;
    padding: 12px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: end;
    border-bottom: 2px solid #ffffff;
    border-radius: 0 0 28px 0;
    display: none;
}
.counter-section .col-right .bd .item .button_block a {
    margin: 0;
    padding: 0;
    border-bottom: 0 !important;
    border: 2px solid #ffffff;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.counter-section .col-right .bd .item .button_block a .fa {
    font-size: 27px;
    color: var(--orange-light-color);
}

.counter-section .col-right .bd .item .button_block:hover a .fa {
    font-size: 27px;
    color: var(--orange-light-color);
    -webkit-animation: downarrow 0.6s infinite alternate ease-in-out;
}

/*----Work----*/

/******** Services w-done********/

.service_desk {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.service_desk .title {
    text-align: left;
    margin: 0 0 60px 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.service_desk .title h2 {
    color: var(--blue-dark-color);
    padding-bottom: 10px;
    font-size: clamp(28px, 3.2vw, 34px);
    line-height: clamp(34px, 3.8vw, 41px);
    text-align: right;
    font-family: "Montserrat", sans-serif;
    opacity: 0.4;
    letter-spacing: 3px;
    width: 54%;
    margin: 0;
    padding: 0 60px 0 0;
    font-weight: 900;
}

.service_desk .title p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 40px;
    color: var(--blue-dark-color);
    opacity: 1;
    font-style: italic;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    width: 45%;
    line-height: 35px;
}

.service_desk .title p strong {
    font-weight: bolder;
    color: var(--blue-dark-color);
    font-weight: 600;
}

.service_desk .title:before {
    /* position: absolute;
    left:0;
    width: 140px;
   
    background: linear-gradient(to right, rgb(122 141 255) 0%, rgb(77 183 255) 25%, rgb(171 198 250) 50%, 
        rgb(163 177 255) 75%, rgb(119 144 255) 100%);*/
    display: none;
}

.service_desk .services-tabs {
    margin: 2px 2px 40px 40px;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    padding: 0;
    position: relative;
    box-shadow: 6px 0px 12px 7px rgb(0 0 0 / 18%);
    border-radius: 8px;
}

.service_desk .services-tabs .left_block {
    margin: 0 0 0 -35px;
    padding: 45px 0 20px 35px;
    width: 35%;
    background: var(--bg-light-color);
    position: relative;
    left: 0;
    top: -30px;
    /* height: 100%; */
    box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.service_desk .services-tabs .left_block .nav {
    margin: 0 -20px 0 0;
    padding: 0;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    position: relative;
    border: 0;
}

.service_desk .services-tabs .left_block .nav button.nav-link {
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 6px;
    background: transparent;
    outline: 0;
    text-align: left;
    transition: all 0.3s;
    /*border-top:0;
    border-bottom:0;*/
    border: 0;
}

.service_desk .services-tabs .left_block .nav button.nav-link h3 {
    background: transparent;
    color: var(--white-color);
    margin: 0;
    font-size: var(--font-size-18);
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.16px;
    display: inline-block;
    padding: 20px 40px 20px 20px;
    text-align: start;
    margin-top: 5px;
    transition: all.4s;
    border: 0;
    border-radius: 0;
    text-align: left;
}

.service_desk .services-tabs .left_block .nav button.nav-link.active {
    background: var(--white-color);
    margin: 0;
    display: block;
    padding: 0;
    width: 100%;
    margin-top: 0;
    transition: all.4s;
    border: 0;
    border-radius: 6px;
    text-align: left;
    /*border-top: 1px solid #fff;*/
    border: 0;
}

.service_desk .services-tabs .left_block .nav button.nav-link:hover {
    background: var(--white-color);
    border-top: 0;
}
.service_desk .services-tabs .left_block .nav button.nav-link:hover h3 {
    color: var(--bg-light-color);
}
.service_desk .services-tabs .left_block .nav button.nav-link.active h3 {
    color: var(--bg-light-color);
}

.service_desk .services-tabs .right_block {
    margin: 0;
    padding: 30px 20px 20px 56px;
    width: 65%; /* height: 100%; */
}
.service_desk .services-tabs .right_block .tab-content {
    margin: 0;
    padding: 0;
}
.service_desk .services-tabs .right_block .tab-content .tab-pane {
    margin: 0;
    padding: 0;
}
.service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd {
    margin: 0;
    padding: 0;
}
.service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text {
    margin: 0;
    padding: 0;
}
.service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text h3 {
    margin: 0;
    padding: 0 0 20px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-32);
    line-height: 42px;
    color: var(--blue-dark-color);
    font-weight: 700;
}

.service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
}

.service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block {
    margin: 0;
    padding: 0;
}

.service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul {
    margin: 0;
    padding: 10px 0;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
}

.service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li {
    margin: 0 0 0 0px;
    padding: 4px 10px 4px 22px;
    width: 50%;
    position: relative;
}

.service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li:before {
    background-color: #005eb8;
    content: " ";
    display: block;
    height: 10px;
    margin-left: -24px;
    transform: translateY(14px);
    width: 10px;
    border-radius: 50px;
    margin-top: 0;
    position: relative;
    top: 4px;
    left: 0;
}

.service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li a {
    margin: 0 auto;
    padding: 0 0 0 0px;
    font-size: 16px;
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 500;
    transition: all 0.3s;
}

.service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li a:hover {
    color: var(--blue-light-color);
}

.service_desk .services-tabs .right_block .button_block {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
}
.service_desk .services-tabs .right_block .button_block a {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-16);
    color: var(--blue-color);
    line-height: 22px;
    font-weight: 600;
    display: inline-block;
}

.service_desk .services-tabs .right_block .button_block a .fa {
    margin: 0;
    padding: 0 0 0 15px;
    font-size: 18px;
    line-height: 15px;
}
.service_desk .services-tabs .right_block .button_block a:hover {
    opacity: 0.9;
}

.service_desk .services-tabs .right_block .button_block a:hover .fa {
    -webkit-animation: downarrow 0.6s infinite alternate ease-in-out;
}

@-webkit-keyframes downarrow {
    0% {
        -webkit-transform: translateY(0);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: translatex(-0.4em);
        opacity: 0.9;
    }
}

/*service_desk-w-done*/

/*-----------------------------------//////////////////------------------------------------------*/

/******** industry_serv-tab w-done********/

.industry_serv-tab .title {
    text-align: left;
    margin: 0 0 80px 0;
    padding: 0 0 30px 0;
    display: block;
    align-items: center;
}

.industry_serv-tab .title::before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    display: block;
}

.industry_serv-tab .title h2 {
    color: var(--blue-dark-color);
    padding-bottom: 10px;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    text-align: center;
    font-family: montserrat, sans-serif;
    opacity: 1;
    letter-spacing: 0.1px;
    width: 100%;
    margin: 0;
    padding: 0 60px 0 0;
    font-weight: 700;
}

.industry_serv-tab .title p {
    margin: 0 auto;
    padding: 15px 0 0;
    font-size: 16px;
    line-height: 22px;
    color: var(--blue-dark-color);
    opacity: 1;
    font-style: normal;
    font-weight: 400;
    font-family: montserrat, sans-serif;
    text-align: center;
    width: 80%;
}

/*industry_serv-tab*/

/******************************** home_industry_block DONE----*=====================================
==========================================================================***************************************/

.home_industry_block {
    margin: 0;
    padding: 60px 0;
    width: 100%;
    background: #05124c;
}

.home_industry_block .title {
    text-align: center;
    padding-bottom: 29px;
    margin-bottom: 18px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 45px;
}

.home_industry_block .title:before {
    display: block;
}

.home_industry_block .title h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #fff;
    font-weight: 700;
    width: 70%;
}

.home_industry_block .title p {
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.home_industry_block .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.home_industry_block .background_images {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
.home_industry_block .background_images .industrybg_img {
    width: 100%;
    height: 100%;
}
.home_industry_block .background_images .industrybg_img .slick-list {
    height: 100%;
}

.home_industry_block .background_images .industrybg_img .slick-list .slick-track {
    height: 100%;
}

.home_industry_block .background_images .industrybg_img .item {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
.home_industry_block .background_images .industrybg_img .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_industry_block .slider_bd {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.home_industry_block .slider_bd .industry_slider {
    height: 100%;
}
.home_industry_block .slider_bd .industry_slider .slick-list {
    height: 100%;
}
.home_industry_block .slider_bd .industry_slider .slick-list .slick-track {
    height: 100%;
}

.home_industry_block .slider_bd .industry_slider {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

.home_industry_block .slider_bd .industry_slider .slick-prev {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    font-size: 0;
    border: 0;
    width: 40px;
    height: 40px;
    background: #0000;
}

.home_industry_block .slider_bd .industry_slider .slick-prev:after {
    content: "\f060 ";
    width: auto;
    height: auto;
    background: transparent;
    position: absolute;
    left: 10px;
    top: 0;
    font-size: 30px;
    color: #05124c;
    font-family: "FontAwesome";
}

.home_industry_block .slider_bd .industry_slider .slick-next {
    margin: 0;
    padding: 0 5px 0 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    font-size: 0;
    color: transparent;
    border: 0;
    background: #0000;
    width: 40px;
    height: 40px;
}

.home_industry_block .slider_bd .industry_slider .slick-next:after {
    content: "\f061 ";
    width: auto;
    height: auto;
    background: transparent;
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 30px;
    color: #05124c;
    font-family: "FontAwesome";
}

.home_industry_block .slider_bd .industry_slider .slick-next:after:hover {
    opacity: 0.5 !important;
}

.home_industry_block .slider_bd .industry_slider .item_slider {
    margin: 15px;
    padding: 40px 25px 40px 25px;
    width: 100%;
    height: 500px;
    background: #f4f5f9;
    border-right: 1px solid #ffffff26;
    display: flex;
    align-items: end;
    position: relative;
    transition: all 0.3s;
    border-radius: 10px;
}

.home_industry_block .slider_bd .industry_slider .item_slider.item.slick-slide.slick-active.slick-center {
    background-color: #ec7323;
    /* background-image: linear-gradient(81deg, #020822 0%, #033158 100%); */
    box-shadow: 0 0 12px -2px rgb(255 255 255 / 50%);
}

.home_industry_block .slider_bd .industry_slider .item_slider a.homepage-slide-content {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: start;
    justify-content: start;
    transition: all 0.3s;
    cursor: default;
}

.home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content {
    margin: 0 0 0 0;
    padding: 0;
    transition: all 0.3s;
    min-height: auto;
    height: auto;
    display: inline-block;
}

.home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content .text p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 29px;
    color: #444;
    font-weight: 400;
    /* background: #f2f2f2; */
}

.home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content .learn-more-link {
    margin: 11px 0 0 0;
    padding: 0;
    position: relative;
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content .learn-more-link span.learn-more-link-text {
    margin: 0;
    padding: 0 8px 0 0;
    font-size: var(--font-size-20);
    font-weight: 600;
    color: var(--orange-light-color);
}

.home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content .learn-more-link span.arrow {
    margin: 0;
    padding: 0 4px;
    font-size: var(--font-size-20);
    font-weight: 600;
    color: var(--orange-light-color);
    position: absolute;
    right: 13px;
    line-height: 26px;
    display: inline-block;
}

.home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content .learn-more-link span.arrow .fa {
    font-size: var(--font-size-20);
    font-weight: 600;
    color: var(--orange-light-color);
    padding: 0 4px;
}

/**/

/*industry-css-new*/

.home_industry_block .slider_bd .homepage-slide-content .homepage-slide-hidden-content .top-sec {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home_industry_block .slider_bd .homepage-slide-content .homepage-slide-hidden-content .top-sec h3 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 32px;
    color: #032c51;
    font-weight: 800;
    width: calc(100% - 100px);
}

.home_industry_block .slider_bd .homepage-slide-content .homepage-slide-hidden-content .top-sec span {
    margin: 0;
    padding: 0;
    width: 100px;
    height: 100px;
    display: block;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px 1px rgb(113 125 173);
    /* border: 2px solid #022346; */
}

.home_industry_block .slider_bd .homepage-slide-content .homepage-slide-hidden-content .top-sec span img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

.home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content .text {
    margin: 0;
    padding: 36px 0 0 0;
}

.home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content .text h4 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 26px;
    color: #2c2c2c;
}

.home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content .text ul {
    margin: 0;
    padding: 16px 0 0 0;
}

.home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content .text ul li {
    margin: 0;
    padding: 0 0 9px 25px;
    display: block;
    font-size: 16px;
    color: #383838;
    font-weight: 500;
    position: relative;
}

.home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content .text ul li:after {
    content: "\f00c";
    width: 23px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50px;
    font-family: "FontAwesome";
    font-size: 18px;
    font-weight: 100;
}

.home_industry_block .slider_bd .industry_slider .item_slider.item.slick-slide.slick-active.slick-center .homepage-slide-content .homepage-slide-hidden-content .top-sec h3 {
    color: #fff;
    font-weight: 800;
    width: calc(100% - 100px);
}

.home_industry_block .slider_bd .industry_slider .item_slider.item.slick-slide.slick-active.slick-center .industry_slider .homepage-slide-content .homepage-slide-hidden-content .text h4 {
    color: #fff;
}

.home_industry_block .slider_bd .industry_slider .item_slider.item.slick-slide.slick-active.slick-center .industry_slider .homepage-slide-content .homepage-slide-hidden-content .text ul li {
    color: #fff;
}

.home_industry_block .slider_bd .industry_slider .item_slider.item.slick-slide.slick-active.slick-center .homepage-slide-content .homepage-slide-hidden-content .text ul li:after {
    color: #fff;
}

.home_industry_block .slider_bd .industry_slider .item_slider.item.slick-slide.slick-active.slick-center .homepage-slide-content .homepage-slide-hidden-content .text h4 {
    color: #efefef;
}

.home_industry_block .slider_bd .industry_slider .item_slider.item.slick-slide.slick-active.slick-center .homepage-slide-content .homepage-slide-hidden-content .text ul li {
    color: #ffffff;
}

/*SLIDER-DOT*/

.home_industry_block .slider_bd .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;
}

.home_industry_block .slider_bd .slick-dots li button {
    margin: 0 5px;
    padding: 0;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50px;
    font-size: 0;
    border: 0;
}

.home_industry_block .slider_bd .slick-dots li.slick-active button {
    width: 14px;
    height: 14px;
    background: #ec7323;
    border: 0;
}

/*----home_industry_block----*/

/*--home_industry_clients01--*/

.home_industry_clients01 {
    margin: 0;
    padding: 60px 0;
    width: 100%;
    background: #fff;
}

.home_industry_clients01 .title {
    text-align: center;
    padding-bottom: 29px;
    margin-bottom: 18px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 45px;
}

.home_industry_clients01 .title h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    width: 70%;
}

.home_industry_clients01 .title p {
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
    color: #7d7d7d;
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.home_industry_clients01 .title::before {
    position: absolute;
    left: 50%;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translatex(-50%);
}

.home_industry_clients01 .slider_bd {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.home_industry_clients01 .slider_bd .item_slider {
    margin: 0;
    padding: 0 10px;
}
.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content {
    margin: 10px;
    padding: 24px;
    background: #fff;
    display: block;
    border-radius: 11px;
    box-shadow: 0 2px 19px -5px rgba(110, 123, 129, 0.2);
    position: relative;
}

.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .heading-badge {
    margin: 0;
    padding: 12px 23px;
    position: absolute;
    left: 0;
    top: 0;
    background: #f5851f;
    font-size: 20px;
    color: #fff;
    border-radius: 16px 0 16px 0;
    font-weight: 500;
}

.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .homepage-slide-hidden-content {
    position: relative;
    padding-bottom: 180px;
}

.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .text-sec {
    margin: 0;
    padding: 0;
    padding-top: 68px;
}
.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .text-sec h3 {
    margin: 0;
    padding: 0 0 4px 0;
    font-size: 22px;
    line-height: 24px;
    color: #05124c;
}
.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .text-sec p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 22px;
    color: #444;
    font-weight: 500;
}

.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .text-sec h4 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 25px;
    color: #05124c;
    padding-top: 26px;
    font-weight: 600;
}

.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .text-sec ul {
    margin: 0;
    padding: 10px 0 0 0;
}
.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .text-sec ul li {
    margin: 0;
    padding: 6px 0 6px 24px;
    font-size: 16px;
    line-height: 22px;
    color: #313131;
    display: block;
    font-weight: 500;
    position: relative;
}

.home_industry_clients01 .slider_bd .homepage-slide-content .homepage-slide-hidden-content .top-sec {
    margin: 0;
    padding: 0;
}

.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .text-sec ul li::before {
    content: "\f046" !important;
    background-color: transparent !important;
    width: 18px !important;
    height: 18px !important;
    padding-right: 8px !important;
    background-repeat: no-repeat !important;
    top: 8px !important;
    position: absolute !important;
    left: 0 !important;
    font-family: "FontAwesome";
    font-size: 16px;
    color: #05124c;
}

.home_industry_clients01 .slider_bd .slick-prev {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    font-size: 0;
    border: 0;
    width: 40px;
    height: 40px;
    background: #0000;
}

.home_industry_clients01 .slider_bd .slick-prev::after {
    content: "\f104";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    color: #dfdfdf;
    font-family: FontAwesome;
    width: 40px;
    height: 40px;
    background: #0000003d;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #05124cba;
}

.home_industry_clients01 .slider_bd .slick-next {
    margin: 0;
    padding: 0 5px 0 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    font-size: 0;
    color: transparent;
    border: 0;
    background: #0000;
    width: 40px;
    height: 40px;
}

.home_industry_clients01 .slider_bd .slick-next::after {
    content: "\f105";
    width: auto;
    height: auto;
    background: 0 0;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 30px;
    color: #05124cba;
    font-family: FontAwesome;
    width: 40px;
    height: 40px;
    background: #0000003d;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat {
    margin: 0;
    padding: 30px 0 0 0;
    position: absolute;
    left: 0;
    bottom: 0;
}
.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat .card__stat__value {
    margin: 0;
    padding: 0 0 4px 0;
    font-size: 30px;
    line-height: 36px;
    color: #f5851f;
    font-weight: bold;
    display: block;
}

.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 22px;
    color: #606060;
    font-weight: 500;
}

.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat .button-sec {
    margin: 0;
    padding: 15px 0 0 0;
    font-size: 18px;
    color: #057eff;
    line-height: 24px;
    font-weight: 600;
    display: block;
}

.home_industry_clients01 .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat .button-sec .fa {
    font-size: 16px;
    line-height: 22px;
}

/*--home_industry_clients01--*/

/*--H-business-goals01--*/

.H-business-goals01 {
    margin: 0;
    padding: 60px 0;
}
.H-business-goals01 .title {
    padding-bottom: 20px;
    margin-bottom: 70px;
}

.H-business-goals01 .title::before {
    position: absolute;
    left: 50%;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translatex(-50%);
}

.H-business-goals01 .title h2 {
    text-align: center;
}

.H-business-goals01 .left-sec {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.H-business-goals01 .left-sec img {
    width: 25%;
    padding: 20px;
    height: 120px;
    object-fit: contain;
}

.H-business-goals01 .right-sec {
    margin: 0;
    padding: 24px 22px;
    border-radius: 10px;
    background: #05124c; /*! height: 100%; */
}
.H-business-goals01 .right-sec .title-text {
    margin: 0;
    padding: 0;
    font-size: 24px;
    line-height: 33px;
    color: #bfbfbf;
    display: block;
    font-weight: 600;
}
.H-business-goals01 .right-sec .get-proposal-btn {
    margin: 0;
    padding: 0;
}
.H-business-goals01 .right-sec .review {
    margin: 0;
    padding: 10px 0 0 0;
}
.H-business-goals01 .right-sec .review p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}
.H-business-goals01 .right-sec .review .reviewer-name {
    margin: 0;
    padding: 10px 0 0 0;
    font-size: 20px;
    color: #bfcbff;
    line-height: 26px;
    font-weight: 500;
    display: block;
}

.H-business-goals01 .right-sec .get-proposal-btn {
    margin: 16px 0;
    padding: 14px 10px;
    display: block;
    background: #fff;
    font-size: 20px;
    text-align: center;
    line-height: 27px;
    border-radius: 6px;
    font-weight: 500;
    color: #05124c;
}

.H-business-goals01 .marquee-inner {
    margin: 0;
    padding: 40px 0 0 0;
    display: flex;
}

.H-business-goals01 .marquee-inner .fixed-label {
    margin: 0;
    padding: 0;
    width: 20%;
    font-size: 20px;
    color: #05124c;
    line-height: 41px;
    font-weight: 600;
}

.H-business-goals01 .marquee-inner .marquee-container {
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: transparent;
    padding: 10px 0;
}

.H-business-goals01 .marquee-inner .marquee span {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
}

.H-business-goals01 .marquee-inner .marquee:hover {
    animation-play-state: paused;
}

.H-business-goals01 .marquee-inner .marquee span {
    display: inline-block;
    padding-right: 50px;
    font-size: 16px;
    line-height: 22px;
    color: #444;
    font-weight: 500;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/*--H-business-goals01--*/

/*--H-improvethe-business--*/

.H-improvethe-business {
    margin: 0;
    padding: 60px 0;
    background: #f4f4f4;
}
.H-improvethe-business .title {
    padding: 0 0 29px 0;
    margin: 0 0 71px 0;
}
.H-improvethe-business .title h2 {
    color: #07144e;
    text-align: center;
}

.H-improvethe-business .title::before {
    position: absolute;
    left: 50%;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translatex(-50%);
}

.H-improvethe-business .business-tab_bd {
    margin: 0;
    padding: 0;
}
.H-improvethe-business .business-tab_bd .nav-tabs {
    margin: 0;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.H-improvethe-business .business-tab_bd .nav-tabs .nav-item {
    margin: 0;
    padding: 0;
}

.H-improvethe-business .business-tab_bd .nav-tabs .nav-item .nav-link {
    margin: 0 6px;
    padding: 10px 30px;
    font-size: 20px;
    line-height: 28px;
    color: #07144e;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
}

.H-improvethe-business .business-tab_bd .nav-tabs .nav-item .nav-link.active {
    color: #fff;
    background: #05124c;
    border-radius: 46px;
    border: 0;
}

.H-improvethe-business .business-tab_bd .tab-content {
    margin: 0;
    padding: 30px 0 0 0;
}

.H-improvethe-business .business-tab_bd .tab-content .tab-pane {
    margin: 0;
    padding: 24px 24px;
    border-radius: 6px;
}
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper {
    margin: 0;
    padding: 30px 36px;
    background: #05124c;
    border-radius: 10px;
    overflow: hidden;
}

.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .item-rowbg {
    margin: 0;
    padding: 0;
    position: relative;
}

.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .item-rowbg::after {
    content: "";
    width: 600px;
    height: 500px;
    background: #ffffff26;
    position: absolute;
    right: -122px;
    top: 50%;
    border-radius: 100%;
    transform: translatey(-50%);
    z-index: 1;
}

.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .item-rowbg .itemBD {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text {
    margin: 0;
    padding: 0 41px 0 0;
    width: 65%;
}

.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text .title-text {
    margin: 0;
    padding: 0 0 15px 0;
    font-size: 25px;
    line-height: 38px;
    font-weight: 600;
    display: block;
    color: #fff;
}

.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 36px;
    color: #eaeaea;
    font-weight: 400;
    display: block;
}

.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text .explore-seobtn {
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    display: inline-block;
    color: #f5851f;
    display: flex;
    align-items: center;
}
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text .explore-seobtn .fa {
    padding: 3px 0 0 6px;
}

.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .right-sec {
    margin: 0;
    padding: 0;
    width: 34%;
}
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .right-sec ul {
    margin: 0;
    padding: 0;
}
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .right-sec ul li {
    margin: 0;
    padding: 6px 0;
    display: block;
}
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .right-sec ul li a {
    margin: 0;
    padding: 7px 10px;
    display: block;
    background: #ffc39c;
    font-size: 18px;
    color: #05124c;
    line-height: 23px;
    font-weight: 600;
    overflow: hidden;
    border-radius: 3px;
}

/*--howwe-doItSec--*/

/*-----------------------------------------------------------------------------------------------------------------------*/

/*--howwe-doItSec--*/

.howwe-doItSec {
    margin: 0;
    padding: 60px 0;
    background: #f4f4f4;
}
.howwe-doItSec .title {
    padding: 0 0 29px 0;
    margin: 0 0 71px 0;
}

.howwe-doItSec .title h2 {
    color: #07144e;
    text-align: center;
}

.howwe-doItSec .title::before {
    position: absolute;
    left: 50%;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translatex(-50%);
}

.howwe-doItSec .business-tab_bd {
    margin: 0;
    padding: 0;
}
.howwe-doItSec .business-tab_bd .nav-tabs {
    margin: 0;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.howwe-doItSec .business-tab_bd .nav-tabs .nav-item {
    margin: 0;
    padding: 0;
}
.howwe-doItSec .business-tab_bd .nav-tabs .nav-item .nav-link {
    margin: 0;
    padding: 21px 31px;
    font-size: 22px;
    line-height: 28px;
    color: #07144e;
    font-weight: 600;
    border: 0;
    cursor: pointer;
}
.howwe-doItSec .business-tab_bd .nav-tabs .nav-item .nav-link.active {
    background: transparent;
    color: #f5851f;
    background: #e6e6e6e5;
    border-radius: 4px;
}

.howwe-doItSec .business-tab_bd .tab-content {
    margin: 0;
    padding: 30px 0 0 0;
}

.howwe-doItSec .business-tab_bd .tab-content .tab-pane {
    margin: 0;
    padding: 24px 24px;
    border-radius: 6px;
}
.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper {
    margin: 0;
    padding: 0;
}

.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text {
    margin: 0;
    padding: 0;
}

.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text .title-text {
    margin: 0;
    padding: 0 0 15px 0;
    font-size: 30px;
    line-height: 38px;
    color: #000;
    font-weight: 600;
    display: block;
}

.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text p {
    margin: 0;
    padding: 0;
    font-size: 22px;
    line-height: 36px;
    color: #848484;
    font-weight: 400;
    display: block;
}
.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text .explore-seobtn {
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    display: inline-block;
    color: #f5851f;
    display: flex;
    align-items: center;
}
.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text .explore-seobtn .fa {
    padding: 3px 0 0 6px;
}

/*--howwe-doItSec--*/

/*********** Why Choose ********/

.why-choose-box {
    margin: 0;
    padding: 60px 0 90px 0;
    background: var(--bg-light-color);
}

.why-choose-box .title {
    text-align: center;
    padding-bottom: 28px;
    margin-bottom: 55px;
}

.why-choose-box .title h2 {
    margin: 0;
    padding: 0 0 20px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: var(--white-color);
    font-weight: 700;
}

.why-choose-box .title p {
    width: 65%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 28px;
    color: var(--light-ass-color);
    font-weight: 400;
    text-align: center;
}

.why-choose-box .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(122 141 255) 0%, rgb(77 183 255) 25%, rgb(171 198 250) 50%, rgb(163 177 255) 75%, rgb(119 144 255) 100%);
}

.why-choose-box .item {
    background: var(--white-color);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
}

.why-choose-box .row .item-col:nth-child(odd) {
    position: relative;
    top: 37px;
    transition: all 0.3s;
}

.why-choose-box:hover .row .item-col:nth-child(odd) {
    position: relative;
    top: 0;
}

.why-choose-box .row .item-col:nth-child(even) {
    position: relative;
    top: 0;
    transition: all 0.3s;
}

.why-choose-box:hover .row .item-col:nth-child(even) {
    position: relative;
    top: 37px;
}

.why-choose-box .row .item-col {
    margin-bottom: 0;
}

.why-choose-box .item .text-center {
    margin: 0 auto;
    padding-bottom: 10px;
}

.why-choose-box .item .text-center img {
    width: 60px;
    object-fit: contain;
}

.why-choose-box .item h5 {
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-20);
    line-height: 33px;
    color: var(--blue-dark-color);
    font-weight: 700;
}

.why-choose-box .item p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
}

/*why-choose-box*/

/*********** Process ********/

.crm-system-dev {
    margin: 0;
    padding: 60px 0;
}

.crm-system-dev .home-ourcrm-step {
    display: none;
}

.crm-system-dev .title {
    text-align: center;
    padding-bottom: 29px;
    margin-bottom: 18px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 45px;
}

.crm-system-dev .title h2 strong {
    color: var(--blue-dark-color);
    padding-bottom: 10px;
    position: relative;
    font-size: var(--font-size-52);
    line-height: 62px;
    font-weight: 900;
    /*    background: url(../media/home/circle.png) no-repeat center center;*/
    background-size: 100% 100%;
}
.crm-system-dev .title h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 70%;
}

/*.crm-system-dev mark {
    color: var(--blue-light-color);
}*/

.crm-system-dev .title p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.crm-system-dev .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.crm-system-dev .process-box .process-box-icon {
    width: 105px;
    height: 92px;
    position: relative;
    top: 0;
    left: -11px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    margin: 0 0 20px;
    transition: all 0.3s;
    background: #1e2559;
    border-radius: 0 0 53px 0;
    /* border: 2px solid #fff; */
    /* border-top: 0; */
    border-left: 0;
}

.crm-system-dev .process-box .process-box-icon img {
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    width: 50px;
}

.crm-system-dev .process-box:hover .process-box-icon {
    background: #2b3893;
}

.crm-system-dev .process-box:hover .process-box-icon img {
    max-width: 100%;
    object-fit: contain;
    filter: none;
}

.crm-system-dev .process-box .bd {
    position: relative;
    z-index: 5;
}

/*
.crm-system-dev .process-box-icon:before {
    content: "";
    width: 150%;
    height: 150%;
    background: #dddfe1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-30%, -30%);
    opacity: 0.3;
    transition: all 0.3s ease;
    background: rgb(0, 40, 174);
    background: linear-gradient(90deg, rgba(0, 40, 174, 1) 0%, rgba(22, 45, 66, 1) 100%);
    opacity: 1;
    transition: all 0.3s;
}

.crm-system-dev .process-box:hover .process-box-icon:before {
   background: #000;
    opacity: 1;
    transition: all 0.6s;
}*/

.crm-system-dev .process-box {
    width: 100%;
    /* border: 1px solid #dddfe1; */
    border-radius: 10px;
    padding: 0 10px 10px 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
    background: #fff;
}

.crm-system-dev .process-box:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--bg-light-color);
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
    z-index: -1;
}

.crm-system-dev .process-box:hover:before {
    content: "";
    width: 30%;
    height: 30%;

    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.crm-system-dev .col-item {
    margin-bottom: 30px;
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
}

.crm-system-dev .col-item:before {
    content: "";
    width: 40px;
    height: 1px;
    background: #05124c;
    position: absolute;
    right: -20px;
    top: 60px;
    z-index: 1;
}

.crm-system-dev .col-item:nth-child(4) .fa {
    top: auto;
    bottom: -24px;
    left: 41px;
    transform: rotate(90deg);
}

.crm-system-dev .col-item:nth-child(4):before {
    left: 50px;
    top: auto;
    bottom: -38px;
    width: 1px;
    height: 56px;
}

.crm-system-dev .col-item:nth-child(5) .fa {
    transform: rotate(180deg);
}
.crm-system-dev .col-item:nth-child(6) .fa {
    transform: rotate(180deg);
}

.crm-system-dev .col-item:nth-child(7):before {
    display: none;
}
.crm-system-dev .col-item:nth-child(7) .fa {
    display: none;
}

.crm-system-dev .col-item i {
    background: #05124c;
    color: #ffffff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: 50px;
    z-index: 11;
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
}

.crm-system-dev .process-box h4 {
    font-size: var(--font-size-16);
    color: #fff;
    margin: 10px 0;
    transition: all 0.3s;
    line-height: 25px;
}

.crm-system-dev .process-box:hover h4 {
    color: #000;
}

.crm-system-dev .process-box h3 {
    font-size: var(--font-size-16);
    color: #fff;
    margin: 10px 0;
    transition: all 0.3s;
    line-height: 25px;
}

.crm-system-dev .process-box:hover h3 {
    color: #000;
}


.crm-system-dev .process-box ul {
    margin: 0;
    padding: 0;
}

.crm-system-dev .process-box li {
    width: 100%;
    font-size: var(--small-16);
    color: #d0d0d0;
    font-weight: 500;
    margin: 8px 0;
    line-height: 22px;
    display: block;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s;
}

.crm-system-dev .process-box:hover ul li {
    color: #000;
}

.crm-system-dev .process-box li:after {
    content: "\f105";
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50px;
    font-family: "FontAwesome";
    font-size: 18px;
    font-weight: 600;
}

.crm-system-dev .process-box li > i {
    font-size: 12px;
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    color: #6a6d6f;
    border-radius: 0;
    margin-right: 5px;
    align-items: flex-start;
    line-height: 1.5;
}

.crm-system-dev .process-box:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-color: #fff;
    position: relative;
    z-index: 1;
}

.crm-system-dev .process-items {
    padding-right: 20px;
    padding-left: 20px;
    position: relative;
    padding-bottom: 41px;
}

/*crm-system-dev*/

/*********** Testimonials **********/

.testimonials_block {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.testimonials_block .title {
    margin: 0 0 49px 0;
    padding: 0 0 13px 0;
    width: 100%;
}
/*.testimonials_block .title:before { display:none; }*/

.testimonials_block .title:before {
    position: absolute;
    left: 0;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(160 160 243) 0%, rgb(72 153 208) 25%, rgb(107 128 170) 50%, rgb(85 100 183) 75%, rgb(58 74 144) 100%);
}
.testimonials_block .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #ffffff;
    font-weight: 700;
}

/*.testimonials_block .title h2 {margin: 0;padding: 0;width:100%;font-family: 'Montserrat', sans-serif;font-size:var(--font-size-52);line-height:62px;color: #ffffff;}*/

.testimonials_block .item_col {
    margin: 12px;
    padding: 0;
}
/*.testimonials_block .item_col.slick-center {  width:80% !important; }*/

.testimonials_block .item_col .item_bd {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.5);
    justify-content: space-between;
    min-height: 334px;
}

.testimonials_block .item_col .item_bd .left_block {
    margin: 0;
    padding: 20px 20px 20px 30px;
    width: 73%;
}
/*.testimonials_block .item_col .item_bd .left_block h3 {margin: 0;padding: 0 0 15px 0;font-family: 'Montserrat', sans-serif;font-size: var(--font-size-32);line-height: 42px;
    color:var(--blue-dark-color);font-weight: 800;}*/
.testimonials_block .item_col .item_bd .left_block h3 {
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 42px;
    color: var(--blue-dark-color);
    font-weight: 700;
}

.testimonials_block .item_col .item_bd .left_block span.st4_nm {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-18);
    color: var(--orange-light-color);
    line-height: 24px;
    font-weight: 500;
    display: block;
}

.testimonials_block .item_col .item_bd .left_block p.designation {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-20);
    line-height: 40px;
    color: var(--black-color);
    opacity: 1;
    font-style: italic;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.testimonials_block .item_col .item_bd .left_block .item_desk {
    margin: 0;
    padding: 6px 0 0 0;
    position: relative;
}

.testimonials_block .item_col .item_bd .left_block .item_desk:before {
    content: "\f10d";
    display: inline-block;
    float: left;
    width: 30px;
    height: 26px;
    /*    background-image: url(//www.adlift.com/in/wp-content/themes/adlift-india/css/../img/quote.png);*/
    margin-right: 0px;
    position: relative;
    margin-top: -10px;
    font-family: "FontAwesome";
    font-size: 26px;
    color: var(--orange-color);
}

.testimonials_block .item_col .item_bd .left_block .item_desk p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
}

.testimonials_block .item_col .item_bd .right_block {
    margin: 0;
    padding: 0;
    width: 300px;
}
.testimonials_block .item_col .item_bd .right_block .itm_img {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    transition: all 0.3s;
}

.testimonials_block .item_col .item_bd .right_block .itm_img .youtube_button {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s;
}
.testimonials_block .item_col .item_bd .right_block .itm_img .youtube_button .fa {
    font-size: 54px;
    color: #ff0000;
    box-shadow: 0px 0px 54px 19px rgb(255 255 255 / 62%);
    line-height: 32px;
    border-radius: 23px;
    background: #fff;
}
.testimonials_block .item_col .item_bd .right_block .itm_img:hover .youtube_button .fa {
    color: #de0101;
}

.testimonials_block .item_col .item_bd .right_block .itm_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials_block .testi-slider {
    position: relative;
}

.testimonials_block .testi-slider .slick-prev {
    background: var(--light-ass-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    outline: 0 !important;
    border: 0 !important;
    box-shadow: unset !important;
    font-size: 0 !important;
    border-radius: 50%;
    left: auto;
    top: -110px;
    position: absolute;
    right: 180px;
    transition: all 0.3s;
}

.testimonials_block .testi-slider .slick-prev:after {
    content: "\f060 ";
    width: auto;
    height: auto;
    background: transparent;
    /* position: absolute; */
    left: 10px;
    top: 0;
    font-size: 25px;
    color: #182355;
    font-family: "FontAwesome";
    line-height: 30px;
    font-weight: 100;
    transition: all 0.3s;
}

.testimonials_block .testi-slider .slick-prev:hover {
    opacity: 0.8;
}

.testimonials_block .testi-slider .slick-next {
    background: var(--light-ass-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    outline: 0 !important;
    border: 0 !important;
    box-shadow: unset !important;
    font-size: 0 !important;
    border-radius: 50%;
    position: absolute;
    top: -110px;
    right: 100px;
    transition: all 0.3s;
}

.testimonials_block .testi-slider .slick-next:after {
    content: "\f061 ";
    width: auto;
    height: auto;
    background: transparent;
    /* position: absolute; */
    right: 10px;
    top: 0;
    font-size: 25px;
    color: #182355;
    font-family: "FontAwesome";
}

.testimonials_block .testi-slider .slick-next:hover {
    opacity: 0.8;
}

.testimonials_block .user-photo {
    width: 48px;
    height: 48px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.testimonials_block .slick-slide img {
    display: block;
}

.testimonials_block .user-text {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 65px);
}

.testimonials_block .user-text h3 {
    font-size: var(--medium-20);
    margin-bottom: 2px;
    color: var(--blue-light-color);
    font-weight: 600;
}

.testimonials_block .user-text h4 {
    font-size: var(--extra-small-13);
    margin: 0;
    font-weight: 600;
}

.testimonials_block .user-card p {
    margin-top: 15px;
    font-size: var(--small-16);
    line-height: 24px;
    color: var(--black-color);
}

.testimonials_block .rating {
    position: absolute;
    left: 15px;
    bottom: 15px;
}
.testimonials_block .rating i {
    color: #e97c16;
    font-size: 15px;
}

.slick-arrow {
    position: absolute;
    left: 0;
    top: 48%;
    font-size: 23px !important;
    cursor: pointer;
    color: #747979;
    background: #ebeef5;
    padding: 7px 8px;
    border-radius: 2px;
    z-index: 9;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonials_block .testi-slider i.fa.fa-angle-left {
    left: -10px;
}

.testimonials_block .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: -10px;
}
.testimonials_block .slick-dots li {
    padding: 4px;
}
.testimonials_block .slick-dots li.slick-active button {
    background: var(--orange-color);
}
.testimonials_block .slick-dots li button {
    width: 12px;
    height: 12px;
    background: var(--blue-light-color);
    border: 0;
    font-size: 0;
    border-radius: 20px;
}

/*popup-video*/

.popup-video.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: none;
    overflow: hidden;
    outline: 0;
    cursor: pointer;
}

.popup-video .modal-lg {
    margin: 0 auto;
    padding: 0;
    max-width: 590px;
    height: 400px;
    background: transparent;
}

.popup-video .modal-content {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 400px;
    border: 3px solid #fff;
}

.popup-video .modal-lg .close {
    position: absolute;
    right: -43px;
    top: 95px;
    width: 20px;
    display: block;
    z-index: 99999999;
    background: #fff;
    width: 40px;
    height: 40px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 2px;
}
.popup-video .modal-lg .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #099ccc;
    font-size: 0;
    color: #fff;
}

.popup-video .modal-lg .close span:nth-child(1) {
    transform: rotate(45deg);
}
.popup-video .modal-lg .close span:nth-child(2) {
    transform: rotate(135deg);
}

/*popup-video*/

/*********** Testimonials **********/

/*-- our-solutions_clients --*/

.our-solutions_clients {
    margin: 0;
    padding: 60px 0;
    background: var(--white-color);
}

.our-solutions_clients .title {
    margin: 0 0 12px 0;
    padding: 0 0 26px 0;
    text-align: center;
}
.our-solutions_clients .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    bottom: 0;
}

.our-solutions_clients .title span {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: var(--font-size-18);
    color: var(--orange-color);
    font-weight: 600;
    display: inline-block;
}
/*.our-solutions_clients .title:before { display:none; }*/

.our-solutions_clients .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    text-align: center;
}

.our-solutions_clients .title p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 36px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.our-solutions_clients .ltem_block {
    margin: 0;
    padding: 41px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-solutions_clients .ltem_block .item {
    margin: 4px;
    padding: 0;
    width: auto;
    height: 92px;
    border: 1px solid #0f1f2e4a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.our-solutions_clients .ltem_block .item img {
    max-width: 100%;
    width: 84%;
    height: 99%;
    object-fit: contain;
}

/*-- our-solutions_clients --*/

/*********** portfolio_block ********/

.portfolio_block {
    padding: 60px 0;
    background: var(--light-ass-color);
}

.portfolio_block .title {
    margin: 0;
    padding: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*.portfolio_block .title:before { display:none; }*/

.portfolio_block .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 70%;
}

.portfolio_block .title .button {
    margin: 0;
    padding: 0;
}

.portfolio_block .title .button a {
    /* background: linear-gradient(to right, rgb(2 12 111) 0, rgb(2 120 193) 100%); */
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0;
    padding: 12px 15px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
}

.portfolio_block .title .button a .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.portfolio_block .title .button a:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.portfolio_block .title .button a:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    margin: 0;
    padding: 12px 30px 12px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
    position: relative;
}

/*//////////////////////////////////////*/

/*.portfolio_block .title .button a:hover { color:var(--white-color); 
    background: linear-gradient(to right, rgb(2 120 193) 0,  rgb(2 12 111) 100%);
 }


.portfolio_block .title .button a span.icon-arrow { margin: 0; padding: 0;  }
*/
/*.portfolio_block .title h2 strong {
    position: relative;
    font-size: var(--font-size-52);
    line-height: 62px;
    font-weight: 900;
}*/
.portfolio_block .title h2 strong {
    position: relative;
    font-size: 40px;
    line-height: 53px;
    font-weight: 700;
    /* background: url(../media/home/circle.png) no-repeat center center; */
    background-size: 100% 100%;
}

/*.portfolio_block .title h2 strong::before {
    content: "";
    position: absolute;
    z-index: -8;
    left: 0;
    top: 0;
    background: url(../media/home/circle.png) no-repeat center center;
    background-size: 100% 100%;
    width: 100%;
    height: 66px;
}*/

.portfolio_block .portfolio_slider_bd {
    margin: 0;
    padding: 50px 0 0 87px;
}

.portfolio_block .portfolio_slider_bd .item {
    margin: 0 4px;
    padding: 15px 15px;
}

.portfolio_block .portfolio_slider_bd .item .portfolio-figure {
    margin: 0;
    padding: 0; /* background: #fff; */ /* border-radius: 0; */ /* box-shadow: 0px 4px 10px -1px rgba(0,0,0, 0.5); */
}
.portfolio_block .portfolio_slider_bd .item .portfolio-figure a {
    margin: 0;
    padding: 0;
    cursor: default;
}
.portfolio_block .portfolio_slider_bd .item .portfolio-figure .images {
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 380px;
    border-radius: 10px;
}
.portfolio_block .portfolio_slider_bd .item .portfolio-figure .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.3s;
}

.portfolio_block .portfolio_slider_bd .item:hover .portfolio-figure .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
}

.portfolio_block .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption {
    border-radius: 20px;
    margin: 0;
    padding: 20px;
    background: #f8f8f8;
    box-shadow: 0 2px 10px rgb(0 0 0/20%);
    position: relative;
    margin-top: -32px;
    min-height: 154px;
}

.portfolio_block .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption h3 {
    margin: 0;
    padding: 0 0 9px 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-20);
    line-height: 27px;
    color: var(--blue-dark-color);
    font-weight: 800;
}

.portfolio_block .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
}

.portfolio_block .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption span {
    display: block;
    margin: 0;
    padding: 10px 0px 0 0;
    font-size: var(--font-size-16);
    line-height: 24px;
    font-weight: 600;
    color: var(--orange-light-color);
    transition: all 0.3s;
}

.portfolio_block .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption span:hover {
    opacity: 0.8;
}

.portfolio_block .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption span .fa {
    padding: 0 0 0 4px;
}

.portfolio_block .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption span:hover .fa {
    -webkit-animation: downarrow 0.6s infinite alternate ease-in-out;
    padding: 0 0 0 4px;
}

@-webkit-keyframes downarrow {
    0% {
        -webkit-transform: translateY(0);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: translatex(-0.4em);
        opacity: 0.9;
    }
}

.portfolio_block .portfolio_slider_bd {
    margin-left: calc((100% - 1320px) / 2);
}

.portfolio_block .portfolio_slider_bd .slick-list.draggable {
    padding-left: 0px !important;
}

/***********-- portfolio_block --********/

/*----start-work---------------------------------------------------*/

.full-logo-sec {
    overflow: hidden;
    background: var(--blue-dark-color);
    margin: 0;
    padding: 26px 0;
}

.full-logo-sec .row {
    padding: 0 4px;
}

.full-logo-sec .col-item {
    padding: 8px;
}

.full-logo-sec .logo-box {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: #dfdfdf solid 10px;
    padding: 15px;
}

.full-logo-sec .logo-box img {
    max-height: 100px;
}

.full-logo-sec .middle-logo-wrap {
    padding: 40px 20px;
    align-items: center;
    height: 100%;
}

.full-logo-sec .title {
    text-align: center;
    padding-bottom: 50px;
    margin-bottom: 18px;
}

.full-logo-sec .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #ffffff;
}

.full-logo-sec mark {
    color: var(--blue-light-color);
}

.full-logo-sec .title p {
    margin: 0 auto;
    padding: 12px 0 0 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: #adadad;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.full-logo-sec .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

/*full-logo-sec*/

/*happy-clients*/

.happy-clients {
    margin: 0;
    padding: 60px 0;
    background: #fcf2ee;
    
}

.happy-clients .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.happy-clients .title h2 {
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #0a1643;
    font-weight: 700;
    text-align: center;
}

/*.happy-clients mark {
    color: var(--blue-light-color);
}*/

/*.happy-clients .title p {*/
/*    color: var(--ass-color);*/
/*    margin: 0 auto;*/
/*    width: 65%;*/
/*    text-align: center;*/
/*    margin: 0 auto;*/
/*    padding: 0;*/
/*    font-size: var(--font-size-16);*/
/*    line-height: 26px;*/
/*    color: var(--light-ass-color);*/
/*    font-weight: 400;*/
/*    text-align: center;*/
/*}*/

.happy-clients .title p {
    width: 65%;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #0a1643;
    font-weight: 400;
    text-align: center;
}


.happy-clients .title:before {  position: absolute;
    left: 50%;  width: 140px;   transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%); }

.happy-clients .logo-holder {    margin: 0;    display: none;    background-color: #fff;    border: 4px solid #05124c;
    border-radius: 9px; }

.happy-clients .logo-holder {
    margin: 0;
    display: none;
    background-color: #fff;
    /* box-shadow: 0px 0px 6px 0px #eee; */
    border: 10px solid #fcf2ee;
    border-radius: 24px;
}


.happy-clients .logo-holder img {
    object-fit: contain;
    height: 129px;
    width: 100%;
    padding: 14px 8px;
}

.happy-clients .button-block {
    margin: 0;
    padding: 20px 0 0 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.happy-clients a.button {
    margin: 0;
    padding: 0;
    background: #ec7323;
    box-shadow: 0px 3px 10px 0px rgba(236, 115, 35, 0.2);
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 5px;
    line-height: 1;
    vertical-align: unset;
    font-size: var(--small-16);
    display: inline-flex;
    position: relative;
    border-radius: 50px;
    font-weight: 500;
    text-transform: none;
    transition: all 0.3s;
}

.happy-clients a.button.noContent {
    display: none;
}

.happy-clients a.button:hover {
    background: #fff;
    color: #ec7323 !important;
}

/*happy-clients*/

/*technologies_block*/

/*********** Technologies ********/

.technologies_block {
    margin: 0;
    padding: 60px 0;
    background: var(--white-color);
}

.technologies_block .title {
    padding-bottom: 25px;
    margin-bottom: 60px;
}

.technologies_block .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    text-align: center;
    font-weight: 700;
}
.technologies_block .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}
/*.technologies_block mark {
    color: var(--blue-light-color);
}*/

/*.technologies_block .title p {
    width: 60%;
    color: var(--ass-color);
    text-align: center;
    margin: 0 auto;
}

*/

.technologies_block #technologies_tabs {
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.technologies_block #technologies_tabs li {
    margin: 0;
    padding: 0;
}

.technologies_block #technologies_tabs li a {
    padding: 10px 15px;
    /* border-right: 1px solid #e0e2e3; */
    background: var(--bg-light-color);
    border-radius: 50px;
    margin: 0 4px;
    color: #ffffff;
    font-weight: 500;
}
.technologies_block #technologies_tabs li a:hover,
#technologies_tabs li a.active {
    color: #ffffff;
}

#technologies_tabs li a.active {
    background: var(--orange-color);
}

.technologies_block #technologies_tabs li:last-child {
    border-right: 0;
}
.technologies_block .technologies_icons li {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(221, 223, 225, 0.5);
    border-radius: 10px;
    margin: 5px;
    transition: all 0.5s ease;
}
.technologies_block .technologies_icons li:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.technologies_block .technologies_icons li img {
    margin: 0 auto;
}

/*technologies_block*/

/*----*/

/*faq_block*/

.faqblock_home {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.faqblock_home .title {
    margin: 0 0 35px 0;
    padding: 0px 0 28px 0;
}

.faqblock_home .title:before {
    position: absolute;
    left: 50%;
    width: 98px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}
.faqblock_home .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    text-align: center;
    font-weight: 700;
}

.faqblock_home .bd_block {
    margin: 0 auto;
    padding: 0;
    width: 78%;
}

.faqblock_home .bd_block .accordion {
    margin: 0;
    padding: 0;
}
.faqblock_home .bd_block .accordion .accordion_row {
    margin: 0 0 17px 0;
    padding: 0;
    border: 0; /* border-radius: 4px; */ /* overflow: hidden; */
    /*box-shadow: 0 3px 8px -5px rgba(0, 0, 0, 0.5);*/
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-header {
    margin: 0;
    padding: 16px 18px;
    background: #e8ecf3;
    overflow: hidden;
    border-radius: 6px;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    font-size: 18px;
    color: #05124c;
    font-weight: 600;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button h4 {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    font-size: 18px;
    color: #05124c;
    font-weight: 600;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button h3 {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    font-size: 18px;
    color: #05124c;
    font-weight: 600;
}


.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: #f8f8f8;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse .accordion-body {
    margin: 0;
    padding: 16px 5px;
    /* border: 0; */
    box-shadow: none;
    /* border: 1px solid #d1d1d1; */
    border-top: 0;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse .accordion-body p {
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
    line-height: 29px;
    color: var(--dark-ass-color);
    font-weight: 500;
    text-align: left;
    padding-bottom: 10px;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse .accordion-body ul {
    margin: 0;
    padding: 0 0 0 22px;
    display: flex;
    flex-wrap: wrap;
}
.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse .accordion-body ul li {
    margin: 0 auto;
    padding: 2px 0;
    font-size: var(--font-size-16);
    line-height: 22px;
    color: var(--dark-ass-color);
    font-weight: 400;
    padding-bottom: 7px;
    width: 100%;
    position: relative;
    /*  list-style: decimal; 
    list-style-type: none;*/
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse .accordion-body ul li::before {
    background-color: #005eb8;
    content: " ";
    display: block;
    height: 8px;
    margin-left: -20px;
    transform: translateY(14px);
    width: 8px;
    border-radius: 50px;
    margin-top: 0;
    position: relative;
    top: 3px;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
    color: #fff;
    background: url(../media/faq/down-arrow.png) no-repeat left center;
    background-size: contain;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    background: url(../media/faq/down-arrow.png) no-repeat left center;
    background-size: contain;
}

/*faqblock_home*/

/*==== about-page-start-css ====*/

/*inner-banner-height*/

/*.innerbanner_block.crm-innerbanner_block .banner_text {*/

/*    background-position: 0 100%!important;*/
/*    padding-top: 139px;*/
/*}*/

/*.innerbanner_block.crm-innerbanner_block  .banner_text h1 {*/

/*    font-size: 48px;*/
/*    line-height: 57px;*/

/*}*/

/*.innerbanner_block.crm-innerbanner_block  .banner_text .innr-banner-btn a {*/
/*    box-shadow: 0 3px 10px 0 rgb(36 81 157/19%);*/
/*    border-radius: 50px;*/
/*    transition: all .3s;*/
/*    margin: 0;*/
/*    padding: 8px 20px;*/
/*    font-size: 16px!important;*/
/*    color:#fff;*/
/*    position: relative;*/
/*    transition: all .6s;*/
/*    font-weight: 500;*/
/*    border: 1px solid #ec7323;*/
/*    background-color:var(--orange-color);*/
/*}*/

/*inner-banner-height*/

/*-- innerbanner_block --*/

.innerbanner_block {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-size: cover !important;
    background-position: center right !important;
    background-attachment: fixed !important;
    min-height: 500px;
}

.innerbanner_block .figure {
    height: 450px;
    margin: 0;
    padding: 0;
    width: 100%;
    display: none;
}
.innerbanner_block .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.innerbanner_block .banner_text {
    background: rgb(0 0 0 / 53%);
    margin: 0;
    padding: 87px 0 15px 0;
    position: static;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    height: 100%;
    min-height: 500px;
}

.innerbanner_block .banner_text:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 0;
    width: 0;
    transform: translate(0, -50%);
    background: #022481;
    box-shadow: 0 0 954px 930px rgb(1 13 95 / 48%);
}

.innerbanner_block .banner_text h2 {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 22px;
    color: var(--orange-color);
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
}

.innerbanner_block .banner_text h3 {
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 36px;
    color: var(--white-color);
    font-weight: 700;
    text-transform: capitalize;
}

.innerbanner_block .banner_text h1,
.innerbanner_block .banner_text h2,
.innerbanner_block .banner_text h3 {
    margin: 0;
    padding: 0 0 10px;
    font-family: Montserrat, sans-serif;
    font-size: 42px;
    line-height: 51px;
    color: var(--white-color);
    font-weight: 700;
    width: 100%;
}

.innerbanner_block .banner_text p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 28px;
    color: var(--white-color);
    font-weight: 400;
    text-align: left;
}

.innerbanner_block .banner_text .col_bd {
    margin: 0;
    padding: 0 0 30px;
    text-align: left;
    position: relative;
    z-index: 10;
    width: 70%;
}

.innerbanner_block .banner_text .innr-banner-btn {
    margin: 0;
    padding: 18px 0 0 0;
    width: 100%;
    display: block;
}

.innerbanner_block .banner_text .innr-banner-btn .bd {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.innerbanner_block .banner_text .innr-banner-btn a {
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0;
    padding: 8px 20px 8px 20px;
    font-size: 16px !important;
    color: #ffffff;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    border: 1px solid #ec7323;
    background: var(--orange-color);
}

.innerbanner_block .banner_text .innr-banner-btn a .fa {
    margin: 0;
    padding: 0 0 0 7px;
    transition: all 0.6s;
}

.innerbanner_block .banner_text .innr-banner-btn a:hover {
    background: var(--bg-light-color);
    color: #fff;
    border-color: var(--bg-light-color);
}

.innerbanner_block .banner_text .innr-banner-btn a:hver .fa {
    color: #fff;
}

.innerbanner_block .banner_text .container {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;
    min-height: 500px;
}
.innerbanner_block .banner_text .breadcrumb {
    margin: 0;
    padding: 21px 0 0 0;
}
.innerbanner_block .banner_text ol {
    margin: 0;
    padding: 0;
    text-align: left;
}
.innerbanner_block .banner_text ol li:first-child {
    padding-left: 0;
}
.innerbanner_block .banner_text ol li {
    margin: 0;
    padding: 0 0 0 10px;
    font-size: var(--small-16);
    color: var(--white-color);
    position: relative;
    line-height: 16px;
}

.innerbanner_block .banner_text ol li a {
    display: inline-block;
    transition: all 0.3s;
}

.innerbanner_block .banner_text ol li a:hover {
    color: var(--orange-color);
}

.innerbanner_block .banner_text ol li:last-child {
    color: var(--orange-color);
}

.innerbanner_block .banner_text ol.breadcrumb-item.active {
    margin: 0;
    padding: 0;
    font-size: var(--small-16);
    color: var(--orange-color);
    line-height: 19px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    content: "/";
    -ms-flex-wrap: wrap;
    padding: 0 8px 0 0;
    margin-bottom: 1rem;
    list-style: none;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 14px;
}

/*-- innerbanner_block --*/

/*==== about-page-css ====*/

/*-- meet-the-team-section --*/

.meet-the-team-section {
    margin: 0;
    padding: 0 0 60px 0;
    background: #fff;
}

.meet-the-team-section .meet-the-team-content .title {
    margin: 0 0 23px 0;
    padding: 0 0 10px 0;
}

.meet-the-team-section .meet-the-team-content .title h2 {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 75%;
}

.meet-the-team-section .meet-the-team-content p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.meet-the-team-section .meet-the-team-content a.btn {
    box-shadow: 0px 3px 10px 0px rgba(236, 115, 35, 0.2);
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 5px;
    line-height: 1;
    vertical-align: unset;
    font-size: var(--small-16);
    display: inline-flex;
    position: relative;
    background: linear-gradient(to right, rgb(2 12 111) 0, rgb(2 120 193) 100%);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 30px;
    border: 0;
    transition: all 0.3s;
    margin-top: 15px;
}

.meet-the-team-section .meet-the-team-content a.btn:hover {
    background: linear-gradient(to right, rgb(2 120 193) 0, rgb(2 12 111) 100%);
}

.meet-the-team-section .meet-the-team-image {
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 10px;
}
/*
.meet-the-team-section .meet-the-team-image:before {
    content: "";
    display: block;
    top: 20px;
    right: 20px;
    border: 5px solid #132bac3d;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all 0.3s;
}

.meet-the-team-section:hover .meet-the-team-image:before {
    content: "";
    display: block;
    top: 20px;
    right: 20px;
    border: 5px solid #132bac3d;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}*/

.meet-the-team-section .meet-the-team-image img {
    border: 5px solid var(--blue-light-color);
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.meet-the-team-section .counter-section {
    padding-top: 60px;
    padding-bottom: 0;
}

/*-- meet-the-team-section --*/

/*-- mission-n-vision-section --*/

.mission-n-vision-section {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.mission-n-vision-section .title {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
}

.mission-n-vision-section .title span {
    font-size: var(--small-16);
    font-weight: bold;
    color: var(--orange-color);
}

.mission-n-vision-section .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    text-align: center;
}

.mission-n-vision-section .title p {
    margin: 0 auto;
    padding: 6px 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.mission-n-vision-section .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    margin: 0 auto;
    bottom: 13px;
    height: 6px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translate(-50%);
}

.mission-n-vision-section .bd {
    margin: 0;
    padding: 0;
}
.mission-n-vision-section .bd .row:nth-child(odd) {
    flex-direction: row-reverse;
}
.mission-n-vision-section .bd .col_box {
    margin: 0;
    padding: 0;
    height: 400px;
    width: 100%;
}
.mission-n-vision-section .bd .row:nth-child(odd) .col_box .text {
    background: var(--bg-light-color);
}
.mission-n-vision-section .bd .col_box .text {
    margin: 0;
    padding: 20px 20px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: left;
    background: var(--orange-color);
    box-shadow: 0 0 8px 2px rgb(0 0 0 / 15%);
    border-radius: 20px 0px 20px 20px;
}
.mission-n-vision-section .bd .row:nth-child(odd) .col_box .text {
    border-radius: 20px 20px 20px 0px;
}

.mission-n-vision-section .bd .col_box h3 {
    text-align: left;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    line-height: 42px;
    color: var(--bg-white-color);
    font-weight: 700;
}
.mission-n-vision-section .bd .col_box p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--light-ass-color);
    font-weight: 400;
    text-align: left;
}
.mission-n-vision-section .bd .col_box .figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-n-vision-section .bd .col_box .figure img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    width: 200px;
}

/*-- mission-n-vision-section --*/

/*our-core-value-section*/

.our-core-value-section {
    margin: 0;
    padding: 60px 0;
}

.our-core-value-section .title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 25px;
}

.our-core-value-section .title span {
    font-size: var(--small-16);
    font-weight: bold;
    color: var(--orange-color);
}

.our-core-value-section .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    text-align: center;
}
.our-core-value-section .title p {
    margin: 0 auto;
    padding: 6px 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 68%;
    text-align: center;
}

.our-core-value-section .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    margin: 0 auto;
    bottom: 13px;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translate(-50%);
}

.our-core-value-section .our-core-value-box {
    background-color: var(--bg-white-color);
    border: 1px solid #dddfe1;
    padding: 20px 20px;
    min-height: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 100%;
    text-align: center;
}

.our-core-value-section .rounded10 {
    border-radius: 10px !important;
}

.our-core-value-section .our-core-value-box:hover {
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
}

.our-core-value-section .our-core-value-box:hover .our-core-value-icon {
    background-color: var(--blue-dark-color);
}

.our-core-value-section .our-core-value-box:hover .our-core-value-icon img {
    filter: invert(100%);
}

.our-core-value-section .our-core-value-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border: 1px solid #dddfe1;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
}
.our-core-value-section .our-core-value-box h3 {
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 42px;
    color: var(--blue-dark-color);
    font-weight: 700;
}

.our-core-value-section .our-core-value-box p {
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--black-color);
}

.our-core-value-section .row .mb-30 {
    margin-top: 20px;
}

/*-- our-core-value-section --*/

/*-- why_choose_block --*/

.why_choose_block {
    margin: 0;
    padding: 0 0 60px 0;
}

.why_choose_block .row {
    flex-direction: row-reverse;
}

.why_choose_block .left {
    margin: 0;
    padding: 0;
}

.why_choose_block .left .title {
    margin: 0 0 22px 0;
    padding: 0 0 16px 0;
}

.why_choose_block .left .title h2 {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 75%;
}
.why_choose_block .left p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.why_choose_block .left a.animate_btn {
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 23px 0 0 0;
    padding: 10px 22px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    display: inline-block;
}

.why_choose_block .left a.animate_btn .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.why_choose_block .left a.animate_btn:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.why_choose_block .left a.animate_btn:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    padding: 10px 30px 10px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
}

.why_choose_block .right {
    margin: 0;
    padding: 0;
}

.why_choose_block .right img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/*-- why_choose_block --*/

/*-- web-why-choose-us-ideal --*/

.web-why-choose-us-ideal {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.web-why-choose-us-ideal .title {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
}

.web-why-choose-us-ideal .title span {
    font-size: var(--small-16);
    font-weight: bold;
    color: var(--orange-color);
}

.web-why-choose-us-ideal .title h2 {
    margin: 0 auto;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #ffffff;
    font-weight: 700;
    width: 75%;
    text-align: center;
}
.web-why-choose-us-ideal .title p {
    margin: 0 auto;
    padding: 10px 0;
    width: 68%;

    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--white-color);
    font-weight: 400;
    text-align: center;
}

.web-why-choose-us-ideal .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    margin: 0 auto;
    bottom: 13px;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translate(-50%);
}

.web-why-choose-us-ideal .item_col {
    margin-top: 50px;
}

.web-why-choose-us-ideal .web-why-choose-us-inner-box {
    border: 1px solid #ecedee;
    -webkit-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
    -moz-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
    box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);

    border-radius: 10px;
    padding: 20px 20px 20px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 100%;
}
.web-why-choose-us-ideal .web-why-choose-us-inner-box .web-why-choose-inner-icon {
    width: 90px;
    height: 90px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    line-height: 75px;
    text-align: center;
    margin-top: -57px;
    background-color: #fff;
    float: left;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 4px solid #ffffff;
}

.web-why-choose-us-ideal .web-why-choose-us-inner-box:hover .web-why-choose-inner-icon {
    background: var(--blue-dark-color);
    border: 4px solid #05124c;
}

.web-why-choose-us-ideal .web-why-choose-us-inner-box:hover .web-why-choose-inner-icon img {
    filter: invert(100%);
}

.web-why-choose-us-ideal .web-why-choose-us-inner-box h5 {
    margin: 0;
    padding: 0 0 0 90px;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 34px;
    color: var(--blue-dark-color);
    font-weight: 700;
}

.web-why-choose-us-ideal .web-why-choose-us-inner-box p {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

/*-- web-why-choose-us-ideal --*/

/*-- testimonials_slider --*/

.testimonials_slider {
    margin: 0;
    padding: 0;
}

/*-- testimonials_slider --*/

/*-- about-leadership-section --*/

.about-leadership-section {
    margin: 0;
    padding: 0 0 60px 0;
}

.about-leadership-section .title {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
}

.about-leadership-section .title span {
    font-size: var(--small-16);
    font-weight: bold;
    color: var(--orange-color);
}

.about-leadership-section .title h2 {
    margin: 0 auto;
    padding: 0;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 75%;
    text-align: center;
}
.about-leadership-section .title p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: center;
    width: 70%;
}

.about-leadership-section .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    margin: 0 auto;
    bottom: 13px;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translate(-50%);
}

.about-leadership-section .row:nth-child(odd) .about-leadership-image {
    margin-left: 0;
}

.about-leadership-section .about-leadership-image {
    background-color: var(--ass-color);
    border-radius: 15px;
    margin-left: 20px;
    min-height: 410px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-leadership-section .about-leadership-image img {
    width: 100%;
}

.about-leadership-section .about-leadership-content-wrap {
    position: relative;
}

.about-leadership-section .about-leadership-content-wrap:before {
    content: "";
    display: block;
    position: absolute;
    left: 15px;
    right: -15px;
    top: 0;
    bottom: 0;
    background-color: #f7f7f7;
    border-radius: 15px;
}

.about-leadership-section .about-leadership-content-wrap:after {
    content: "";
    display: block;
    position: absolute;
    width: 38px;
    height: 64px;
    right: -37px;
    top: 50%;
    background: url(../images/about-us/leadership-content-right-corner.png) no-repeat center center;
    margin-top: -32px;
}

.about-leadership-section .about-leadership-content {
    background-color: var(--white-color);
    position: relative;
    padding: 30px 30px;
    border: 1px solid #dddfe1;
    border-radius: 15px;
}

.about-leadership-section .about-leadership-content h4 {
    margin: 0;
    padding: 0 0 4px 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 42px;
    color: var(--blue-dark-color);
    font-weight: 700;
}

/*.about-leadership-section .about-leadership-content .designation {
    font-size:var(--medium-20);
    padding-left: 5px;
    color:var(--orange-light-color);
}*/

.about-leadership-section .about-leadership-title {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-18);
    color: var(--orange-light-color);
    line-height: 24px;
    font-weight: 500;
    display: block;
}

.about-leadership-section .about-leadership-content-wrap p {
    margin: 0 auto;
    padding: 8px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
}

/*-- about-leadership-section --*/

/*-- team_members --*/

.team_members {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-white-color);
}

.team_members .title {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
}

.team_members .title span {
    font-size: var(--small-16);
    font-weight: bold;
    color: var(--orange-color);
}

.team_members .title h2 {
    margin: 0 auto;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 75%;
    text-align: center;
}

.team_members .title p {
    margin: 0 auto;
    padding: 10px 0;
    width: 68%;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: center;
}

.team_members .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    margin: 0 auto;
    bottom: 13px;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translate(-50%);
}

.team_members .col-item {
    padding: 0 8px;
    margin-bottom: 15px;
}

.team_members .item_bd {
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.5); */
    height: 100%;
    display: flex;
    padding: 12px;
    align-items: center;
    transition: all 0.3s;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}
/*.team_members .item_bd:hover {
    background: #f2f4ff;
}*/

.team_members .mangeProfile {
    overflow: hidden;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    /* box-shadow: 0px 0px 4px -1px rgb(0 0 0); */
    margin: 3px;
    padding: 0;
    /* background:url(../media/our_team/portraitBG.svg); */
    /* background-size: 90% 90%; */
    /* background-position: center center; */
    /* background-repeat: no-repeat; */
}

.team_members .mangeProfile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
}

.team_members .management_info {
    /* -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16); */
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    /* box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16); */
    padding: 10px;
    text-align: left;
    margin: 0;
    padding: 10px 0;
    width: 100%;
    text-align: center;
}

.team_members .management_info h4 {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-20);
    line-height: 37px;
    color: var(--blue-dark-color);
    font-weight: 700;
}

.team_members .management_info .designation {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 24px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: center;
}

.team_members .item-team-bd {
    margin: 0;
    padding: 0;
}

/*-- team_members --*/

/*-- our_team_portfolio --*/

/*.ourteam_technologies { margin:0; padding: 0 0 100px 0 ; background:var(--bg-light-color); }*/
.ourteam_technologies {
    margin: 0;
    padding: 0;
    background: var(--bg-light-color);
}

/*-- our_team_portfolio --*/

/*-- howit_works --*/

/*-- howit_works --*/

.howit_works {
    margin: 0;
    padding: 0 0 60px 0;
    background: var(--bg-white-color);
}
.howit_works .item-left {
    margin: 0;
    padding: 0;
}
.howit_works .item-left .title {
    margin: 0;
    padding: 0;
}

.howit_works .item-left .title h2 {
    margin: 0;
    padding: 0;
    padding-bottom: 15px;
    margin-bottom: 25px !important;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 70%;
    display: inline-block;
}

.howit_works .item-left .title::before {
    position: absolute;
    left: 0;
    width: 104px;
    margin: 0 auto;
    bottom: 25px;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.howit_works .item-left p {
    margin: 0 auto;
    padding: 0 0 6px 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.howit_works .item-left a.animate_btn {
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 23px 0 0 0;
    padding: 10px 22px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    display: inline-block;
}

.howit_works .item-left a.animate_btn .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.howit_works .item-left a.animate_btn:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.howit_works .item-left a.animate_btn:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    padding: 10px 30px 10px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
}

.howit_works .item_right {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.howit_works .item_right img {
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
}

/*-- howit_works --*/

/*-- ecosystem_block --*/

.ecosystem_block {
    margin: 0;
    padding: 120px 0 80px 0;
}
.ecosystem_block .title {
    margin: 0 0 16px 0;
    padding: 0 0 17px 0;
    width: 100%;
    position: relative;
}

.ecosystem_block .bd {
    margin: 0 46px 0 0;
    padding: 0;
    background: #fafafa;
    position: relative;
    z-index: 1;
}

.ecosystem_block .bd .left {
    margin: 0;
    padding: 55px 30px 40px 40px;
}

.ecosystem_block .bd .left h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    line-height: 45px;
    color: #000000;
    font-weight: 700;
}
.ecosystem_block .bd .left p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}
.ecosystem_block .bd .left ul {
    margin: 0;
    padding: 10px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.ecosystem_block .bd .left ul li {
    margin: 0 0 0 0px;
    padding: 4px 10px 4px 22px;
    width: 50%;
    position: relative;
}
.ecosystem_block .bd .left ul li:before {
    background-color: #005eb8;
    content: " ";
    display: block;
    height: 8px;
    margin-left: -20px;
    transform: translateY(14px);
    width: 8px;
    border-radius: 50px;
    margin-top: 0;
    position: relative;
    top: 3px;
}
.ecosystem_block .bd .left ul li a {
    margin: 0 auto;
    padding: 0 0 0 0px;
    font-size: var(--font-size-18);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 500;
    transition: all 0.3s;
}

.ecosystem_block .bd .left ul li a:hover {
    color: var(--blue-light-color);
}

.ecosystem_block .bd .right_block {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}
.ecosystem_block .bd .right_block .rt_bd {
    margin: 0;
    padding: 0;
    position: absolute;
    right: -44px;
    top: -44px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
    z-index: 5;
    background: #fff;
}
.ecosystem_block .bd .right_block .rt_bd img {
    width: 100%;
    height: 100%;
}

/*-- ecosystem_block --*/

/*///////////////////////////-----------------------/////////////////////////////////////*/

/******** Services w-done********/

.deployment_and_beyond {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.deployment_and_beyond .title {
    text-align: left;
    margin: 0 0 106px 0;
    padding: 0 0 25px 0;
    display: block;
    align-items: center;
}

.deployment_and_beyond .title h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 70%;
    text-align: center;
}

.deployment_and_beyond .title p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 76%;
    text-align: center;
}

/*.deployment_and_beyond .title p strong {
    font-weight: bolder;
    color: var(--blue-dark-color);
    font-weight: 600;
}*/

.deployment_and_beyond .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translatex(-50%);
}

.deployment_and_beyond .services-tabs {
    margin: 2px 2px 40px 40px;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    padding: 0;
    position: relative;
    box-shadow: 6px 0px 12px 7px rgb(0 0 0 / 18%);
    border-radius: 8px;
}

.deployment_and_beyond .services-tabs .left_block {
    margin: 0 0 0 -35px;
    padding: 45px 0 20px 35px;
    width: 32%;
    background: var(--bg-light-color);
    position: relative;
    left: 0;
    top: -30px;
    /* height: 100%; */
    box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.deployment_and_beyond .services-tabs .left_block .nav {
    margin: 0 -20px 0 0;
    padding: 0;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    position: relative;
    border: 0;
}

.deployment_and_beyond .services-tabs .left_block .nav button.nav-link {
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 6px;
    background: transparent;
    outline: 0;
    text-align: left;
    transition: all 0.3s;
    /*border-top:0;
    border-bottom:0;*/
    border: 0;
}

.deployment_and_beyond .services-tabs .left_block .nav button.nav-link h3 {
    background: transparent;
    color: var(--white-color);
    margin: 0;
    font-size: var(--font-size-18);
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.16px;
    display: inline-block;
    padding: 20px 64px 20px 20px;
    text-align: start;
    margin-top: 5px;
    transition: all 0.3s ease-in-out;
    border: 0;
    border-radius: 0;
    text-align: left;
}

.deployment_and_beyond .services-tabs .left_block .nav button.nav-link.active {
    background: var(--white-color);
    margin: 0;
    display: block;
    padding: 0;
    width: 100%;
    margin-top: 0;
    transition: all.4s;
    border: 0;
    border-radius: 6px;
    text-align: left;
    /*border-top: 1px solid #fff;*/
    border: 0;
    transition: all.4s;
    font-weight: 500;
}

.deployment_and_beyond .services-tabs .left_block .nav button.nav-link:hover {
    background: var(--white-color);
    border-top: 0;
    transition: all.4s;
    font-weight: 500;
}
.deployment_and_beyond .services-tabs .left_block .nav button.nav-link:hover h3 {
    color: var(--bg-light-color);
}
.deployment_and_beyond .services-tabs .left_block .nav button.nav-link.active h3 {
    color: var(--bg-light-color);
}

.deployment_and_beyond .services-tabs .right_block {
    margin: 0;
    padding: 30px 20px 20px 35px;
    width: 70%;
    position: relative;
}

.deployment_and_beyond .services-tabs .right_block .tab-content {
    margin: 0;
    padding: 0;
}
.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane {
    margin: 0;
    padding: 0;
}
.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd {
    margin: 0;
    padding: 0;
}
.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .figure {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
}
.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text {
    margin: 0;
    padding: 12px 0 0 0;
}

.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text h4 {
    margin: 0;
    padding: 12px 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-32);
    line-height: 42px;
    color: var(--blue-dark-color);
    font-weight: 700;
}

.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 33px;
    color: var(--dark-ass-color);
    font-weight: 400;
}

.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block {
    margin: 0;
    padding: 0;
}

.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul {
    margin: 0;
    padding: 10px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li {
    margin: 0 0 0 0px;
    padding: 4px 10px 4px 22px;
    width: 50%;
    position: relative;
}

.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li:before {
    background-color: #005eb8;
    content: " ";
    display: block;
    height: 10px;
    margin-left: -24px;
    transform: translateY(14px);
    width: 10px;
    border-radius: 50px;
    margin-top: 0;
    position: relative;
    top: 4px;
    left: 0;
}

.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li a {
    margin: 0 auto;
    padding: 0 0 0 0px;
    font-size: var(--font-size-18);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 500;
    transition: all 0.3s;
}

.deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li a:hover {
    color: var(--blue-light-color);
}

.deployment_and_beyond .services-tabs .right_block .button_block {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
}
.deployment_and_beyond .services-tabs .right_block .button_block a {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-16);
    color: var(--blue-color);
    line-height: 22px;
    font-weight: 600;
    display: inline-block;
}

.deployment_and_beyond .services-tabs .right_block .button_block a .fa {
    margin: 0;
    padding: 0 0 0 15px;
    font-size: 18px;
    line-height: 15px;
}
.deployment_and_beyond .services-tabs .right_block .button_block a:hover {
    opacity: 0.9;
}

.deployment_and_beyond .services-tabs .right_block .button_block a:hover .fa {
    -webkit-animation: downarrow 0.6s infinite alternate ease-in-out;
}

@-webkit-keyframes downarrow {
    0% {
        -webkit-transform: translateY(0);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: translatex(-0.4em);
        opacity: 0.9;
    }
}

/*service_desk-w-done*/

/*-- callouts_separate_section --*/

.callouts_separate_section {
    margin: 0;
    padding: 0;
}

.callouts_separate_section .item_row {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.callouts_separate_section .left.item {
    width: 60%;
    padding-right: 20px;
}

.callouts_separate_section .item {
    margin: 0;
    padding: 0;
}

.callouts_separate_section .item h5 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    text-align: left;
    font-weight: 600;
    font-style: italic;
}

.callouts_separate_section .item a.animate_btn {
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0;
    padding: 11px 32px;
    font-size: 19px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    display: inline-block;
}

.callouts_separate_section .item a.animate_btn .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 20px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.callouts_separate_section .item a.animate_btn:hover .icon-arrow {
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.callouts_separate_section .item a.animate_btn:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    padding: 11px 40px 11px 30px;
    color: var(--orange-color) !important;
}

/*-- callouts_separate_section --*/

/*-- industry-grade --*/

.industry-grade {
    margin: 0;
    padding: 0 0 60px 0;
    background: var(--bg-white-color);
}
.industry-grade .item-left {
    margin: 0;
    padding: 0;
}

.industry-grade .item-left .title {
    margin: 0 0 20px 0;
    padding: 0 0 18px 0;
}

.industry-grade .item-left .title h2 {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 100%;
    display: inline-block;
}

.industry-grade .item-left p {
    margin: 0 auto;
    padding: 0 0 6px 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.industry-grade .item-left a.animate_btn {
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 23px 0 0 0;
    padding: 10px 30px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    display: inline-block;
}

.industry-grade .item-left a.animate_btn .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.industry-grade .item-left a.animate_btn:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.industry-grade .item-left a.animate_btn:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    padding: 10px 30px 10px 15px;
    font-size: 16px !important;
    color: var(--orange-color) !important;
}

.industry-grade .item_right {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.industry-grade .item_right img {
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
}

/*-- industry-grade --*/

/*-- software_development --*/

.software_development .services-tabs .right_block {
    padding-bottom: 87px;
    position: relative;
}

.software_development .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .button {
    background: #05124c;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0;
    padding: 10px 23px;
    font-size: 16px !important;
    color: #ffffff !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    display: inline-block;
    position: absolute;
    right: 13px;
    bottom: 33px;
}

.software_development .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .button .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.software_development .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .button:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.software_development .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .button:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    padding: 10px 30px 10px 15px;
    font-size: 16px !important;
    color: var(--orange-color) !important;
}

/*-- software_development --*/

/*-- technologies-platforms --*/

.technologies-platforms {
    margin: 0;
    padding: 60px 0;
}

.technologies-platforms .title {
    margin: 0 0 52px 0;
    padding: 0 0 12px 0;
    display: block;
}
.technologies-platforms .title h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 100%;
    text-align: center;
}
.technologies-platforms .title:before {
    position: absolute;
    left: 50%;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    transform: translateX(-50%);
}

/*.technologies-platforms .bd_block {
    margin: 20px 0 0 0;
    padding: 40px 30px;
    background: #899eff;
    border-radius: 10px;
}*/

.technologies-platforms .bd_block {
    margin: 0;
    padding: 0;
}

.technologies-platforms .bd_block .itemcol_row {
    margin: 20px 0 0 0;
    padding: 30px 30px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 0 11px -2px rgba(0, 0, 0, 0.5);
}

.technologies-platforms .bd_block .itemcol_row .row {
    margin-bottom: 20px;
}
.technologies-platforms .bd_block .itemcol_row .row:last-child {
    margin-bottom: 0;
}

.technologies-platforms .bd_block .itemcol_row h3 {
    margin: 0;
    padding: 0 0 9px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    line-height: 38px;
    color: #05124c;
    font-weight: 700;
}

.technologies-platforms .bd_block .itemcol_row .item_row {
    margin: 0;
    padding: 0;
}
.technologies-platforms .bd_block .itemcol_row .item_row h4 {
    margin: 0;
    padding: 0 0 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #05124c;
    font-weight: 600;
    text-transform: uppercase;
}

.technologies-platforms .bd_block .itemcol_row .item_row .item_col {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.technologies-platforms .bd_block .itemcol_row .item_row .item_col .item {
    margin: 1px;
    padding: 0;
    position: relative;
    width: 120px;
    background: #e8e8e8; /* border-right: 1px solid #f8f8f8; */ /* border-bottom: 1px solid #f8f8f8; */
}
.technologies-platforms .bd_block .itemcol_row .item_row .item_col .item .figure {
    margin: 0;
    padding: 6px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.technologies-platforms .bd_block .itemcol_row .item_row .item_col .item .figure img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.technologies-platforms .bd_block .itemcol_row .item_row .item_col .hover-active {
    margin: 0;
    padding: 0;
}
.technologies-platforms .bd_block .itemcol_row .item_row .item_col .hover-active .bd {
    margin: 0;
    padding: 0;
}
.technologies-platforms .bd_block .itemcol_row .item_row .item_col .hover-active .bd .hover_active_row {
    margin: 0;
    padding: 0;
}

.technologies-platforms .bd_block .itemcol_row .item_row .item_col .hover-active .bd .hover_active_row .item {
    margin: 0;
    padding: 0;
}

.technologies-platforms .bd_block .itemcol_row .item_row .item_col .hover-active .bd .hover_active_row .item h4 {
    margin: 0;
    padding: 0;
}

.technologies-platforms .bd_block .itemcol_row .item_row .item_col .hover-active .bd .hover_active_row .item span {
    margin: 0;
    padding: 0;
}

.technologies-platforms .bd_block .itemcol_row .item_row .item_col .hover-active .bd .hover_active_row .item span b {
    margin: 0;
    padding: 0;
}

.technologies-platforms .bd_block .itemcol_row .item_row .item_col .hover-active p {
    margin: 0;
    padding: 0;
}

/*-- technologies-platforms --*/

/*faq_block*/

.faq_block {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.faq_block .title {
    margin: 0 0 35px 0;
    padding: 0 0 12px 0;
}

.faq_block .title:before {
    position: absolute;
    left: 50%;
    width: 60px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}
.faq_block .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    text-align: center;
    font-weight: 700;
}

.faq_block .bd_block {
    margin: 0;
    padding: 0;
}
.faq_block .bd_block .accordion {
    margin: 0;
    padding: 0;
}
.faq_block .bd_block .accordion .accordion_row {
    margin: 0 0 17px 0;
    padding: 0;
    border: 0; /* border-radius: 4px; */ /* overflow: hidden; */
    box-shadow: 0 3px 8px -5px rgba(0, 0, 0, 0.5);
}
.faq_block .bd_block .accordion .accordion_row .accordion-header {
    margin: 0;
    padding: 16px 10px;
    background: #ffffff;
    border: 1px solid #d1d1d1;
}

.faq_block .bd_block .accordion .accordion_row .accordion-header .accordion-button {
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    font-size: 20px;
    color: #05124c;
    font-weight: 500;
}

.faq_block .bd_block .accordion .accordion_row .accordion-collapse {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
}
.faq_block .bd_block .accordion .accordion_row .accordion-collapse .accordion-body {
    margin: 0;
    padding: 10px;
    border: 0;
    box-shadow: none;
    border: 1px solid #d1d1d1;
    border-top: 0;
}
.faq_block .bd_block .accordion .accordion_row .accordion-collapse .accordion-body p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 22px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
    padding-bottom: 7px;
}

.faq_block .bd_block .accordion .accordion_row .accordion-collapse .accordion-body ul {
    margin: 0;
    padding: 4px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
.faq_block .bd_block .accordion .accordion_row .accordion-collapse .accordion-body ul li {
    margin: 0 auto;
    padding: 2px 0;
    font-size: var(--font-size-16);
    line-height: 22px;
    color: var(--dark-ass-color);
    font-weight: 400;
    padding-bottom: 7px;
    width: 100%;
    /* list-style: decimal; */
    list-style-type: none;
}

.faq_block .bd_block .accordion .accordion_row .accordion-header .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
    color: #fff;
    background: url(../media/faq/down-arrow.png) no-repeat left center;
    background-size: contain;
}

.faq_block .bd_block .accordion .accordion_row .accordion-header .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    background: url(../media/faq/down-arrow.png) no-repeat left center;
    background-size: contain;
}

/*faq_block*/

/*contact-form-main*/

.contact-form-main {
    margin: 0;
    padding: 0 0 60px 0;
    background: var(--white-color);
}
.contact-form-main .item_bd {
    margin-top: -100px;
    position: relative;
    z-index: 9;
    padding-bottom: 30px;
}
.contact-form-main .schedule-meeting-main {
    padding-top: 185px;
}

.contact-form-main .schedule-meeting-box {
    background-color: #05124c;
    border-radius: 10px;
}

.contact-form-main .schedule-meeting-img {
    width: 252px;
    height: 252px;
    border-radius: 100%;
    border: 2px solid #dddfe1;
    margin: 0 auto;
    position: relative;
    top: -170px;
}
.schedule-meeting-img:before {
    content: " ";
    top: -2px;
    left: -2px;
    background-color: #fff;
    width: 252px;
    height: 252px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    position: absolute;
    opacity: 0.6;
    -webkit-animation: pulse3 1.8s ease-out;
    animation: pulse3 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse3 {
    0% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(1.05);
        opacity: 0.3;
    }
    50% {
        -webkit-transform: scale(1.1);
        opacity: 0.6;
    }
    75% {
        -webkit-transform: scale(1.15);
        opacity: 0.3;
    }
    100% {
        -webkit-transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes pulse3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0.3;
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0.6;
    }
    75% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        opacity: 0.3;
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

.contact-form-main .schedule-meeting-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
    position: relative;
}

.contact-form-main .schedule-meeting-box .schedule-meeting-content {
    margin-top: -130px;
    padding: 30px 20px;
}
.contact-form-main .schedule-meeting-box .schedule-meeting-content-description {
    min-height: 206px;
    padding: 0 0 20px;
    text-align: center;
}

.contact-form-main .schedule-meeting-box .schedule-meeting-content-description h3 {
    font-size: 24px;
    color: #fff;
    margin: 0;
    font-weight: 500;
    text-align: left;
    line-height: 37px;
}

.contact-form-main .schedule-meeting-box .schedule-meeting-content-description h4 {
    font-size: 20px;
    color: #fff;
    margin: 0;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 29px;
}

.contact-form-main .schedule-meeting-box .schedule-meeting-content-description ul {
    margin: 0;
    padding: 27px 0 0 20px;
}

.contact-form-main .schedule-meeting-box .schedule-meeting-content-description ul li {
    margin: 0;
    padding: 0 0 14px 7px;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    display: block;
    color: #cdcdcd;
    position: relative;
}

.contact-form-main .schedule-meeting-box .schedule-meeting-content-description ul li:before {
    content: "\f058";
    font-size: 18px;
    color: #fff;
    position: absolute;
    left: -19px;
    top: 2px;
    border-radius: 50px;
    font-family: "FontAwesome";
}
.contact-form-main .schedule-meeting-box .schedule-meeting-content-description p {
    margin: 0;
    padding: 6px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 29px;
    color: #ffffff;
    font-weight: 400;
    width: 100%;
}

.contact-form-main .schedule-meeting-box .schedule-meeting-content a {
    background: var(--orange-color) !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%) !important;
    border-radius: 30px !important;
    padding: 13px 22px;
    font-size: 16px;
    margin-top: 10px;
    color: var(--white-color);
    font-weight: 500;
    border: 0 !important;
    outline: 0 !important;
    transition: all 0.3s;
}

.contact-form-main .contact-form-box {
    padding: 40px 25px 20px;
    background-color: #fff !important;
    margin-top: 57px;
    border-radius: 10px;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
}

.contact-form-main .contact-form-box .item_group {
    margin-bottom: 30px;
    position: relative;
}

.contact-form-main .contact-form-box .item_group input:placeholder {
    color: #000;
}

.contact-form-main .contact-form-box .item_group input[type="text"] {
    margin: 0;
    padding: 15px 20px 10px 10px;
    font-size: 16px;
    color: #000;
    line-height: 22px;
    font-weight: 500;
    width: 100%;
}
.contact-form-main .contact-form-box .item_group input[type="email"] {
    margin: 0;
    padding: 15px 20px 10px 10px;
    font-size: 16px;
    color: #000;
    line-height: 22px;
    font-weight: 400;
    width: 100%;
}

.contact-form-main .contact-form-box .item_group label {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #000;
    line-height: 22px;
    font-weight: 00;
}

.contact-form-main .contact-form-box .item_group select {
    margin: 0;
    padding: 15px 20px 10px 10px;
    font-size: 16px;
    color: #000;
    line-height: 22px;
    font-weight: 400;
    width: 100%;
    border-radius: 4px;
    outline: 0;
    border: 1px solid gray !important;
}

.contact-form-main .contact-form-box .item_group select:focus {
    border: 1.5px solid #000 !important;
    outline: 0;
    color: #000;
}

.contact-form-main .contact-form-box .item_group textarea {
    margin: 0;
    padding: 15px 20px 10px 10px;
    font-size: 16px;
    color: #000;
    line-height: 22px;
    font-weight: 500;
    width: 100%;
}

.contact-form-main .contact-form-box .item_group input {
    border: 1px solid gray !important;
    -webkit-transition: 0.5s !important;
    transition: 0.5s !important;
    outline: none !important;

    border-radius: 5px !important;
}

.contact-form-main .contact-form-box .item_group input:hover {
    border: 1px solid black !important;
}

.contact-form-main .contact-form-box .item_group input:focus {
    border: 1.5px solid #000 !important;
    outline: 0;
}

.contact-form-main .contact-form-box .item_group label {
    content: "";
    position: absolute;
    top: 15px;
    left: 20px;
    color: gray;
    font-size: 15px;
    pointer-events: none;
    color: #000;
}

.contact-form-main .contact-form-box .item_group input:focus ~ label,
.contact-form-main .contact-form-box .item_group input:valid ~ label {
    font-size: 13px;
    line-height: 13px;
    top: -9px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    color: #000;
    background-color: #fff;
    padding: 3px;
}

.contact-form-main .contact-form-box .item_group textarea {
    border: 1px solid gray !important;
    -webkit-transition: 0.5s !important;
    transition: 0.5s !important;
    outline: none !important;
    padding: 15px 20px 10px 10px !important;
    border-radius: 5px !important;
}

.contact-form-main .contact-form-box .item_group textarea:hover {
    border: 1px solid black !important;
}

.contact-form-main .contact-form-box .item_group textarea:focus {
    border: 1.5px solid #000 !important;
}

.contact-form-main .contact-form-box .item_group textarea:focus ~ label,
.contact-form-main .contact-form-box .item_group textarea:valid ~ label {
    font-size: 11px;
    top: -9px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    color: #000;
    background-color: #fff;
    padding: 3px;
}

.contact-form-main .contact-form-box .item_group input[type="submit"] {
    background: var(--orange-color) !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%) !important;
    border-radius: 30px !important;
    padding: 13px 22px;
    font-size: 16px;
    margin-top: 10px;
    color: var(--white-color);
    font-weight: 500;
    border: 0 !important;
    outline: 0 !important;
    transition: all 0.3s;
}

.contact-form-main .contact-form-box .item_group input[type="submit"]:hover {
    background: #05124c !important;
}

.contact-form-main .contact-form-box .item_group.text-md-right {
    text-align: right;
}

/*contact-form-main*/

/*contact-info-block*/

.contact-info-block {
    margin: 0;
    padding: 0;
    background: var(--light-ass-color);
}

.contact-info-block .contact-info-box {
    padding: 30px 15px;
    background-color: #fff;
    min-height: 170px;
    border: 1px solid #f6f7f8;
    position: relative;
    margin-top: -32px;
    box-shadow: 0 1px 6px 0px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.contact-info-block .contact-info-icon {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -60px auto 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;

    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
}

.contact-info-block .contact-info-box .tool {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #05124c;
    text-align: center;
}

.contact-info-block .contact-info-box .name,
.contact-info-box .name a {
    color: #ec7323;
    text-align: center;
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.contact-info-block .contact-follow-us-section {
    padding: 30px 0 0;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
}

.contact-info-block .contact-follow-us-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
    font-style: italic;
}

.contact-info-block .contact-follow-us-section .header_social {
    padding: 0 15px 20px 15px;
    width: auto;
}

.contact-info-block .contact-follow-us-section .header_social li {
    margin: 0 13px;
    display: inline-block;
    width: auto;
    border: 0;
}

.contact-info-block .contact-follow-us-section .header_social li a {
    width: 55px;
    height: 55px;
    font-size: 25px;
    background-color: transparent;
    color: #05124c;
    border: 1px solid #e4e6e8;
    margin: 0;
    transition: all 0.3s;
}

.contact-info-block .contact-follow-us-section .header_social li a:hover {
    color: #fff;
    border: 1px solid #e4e6e8;
    background: #05124c;
}

/*contact-info-block*/

/*///////////////////*/

.partners_main_block {
    padding-bottom: 0;
    background: #ffffff;
}

.partners_main_block .bd {
    margin-top: -80px;
    position: relative;
    z-index: 9;
    background: #ffffff;
    padding: 50px 42px;
    /*    box-shadow: 0px 0px 23px -1px rgb(0 0 0 / 27%);*/
    border-radius: 4px;
    padding-bottom: 0;
}

.partners_main_block .title {
    width: 100%;
    text-align: center;
    margin-bottom: 52px;
    padding-bottom: 25px;
}

.partners_main_block .title h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 70%;
}

.partners_main_block .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.partners_main_block .title p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.partners_main_block .card-box {
    -moz-box-shadow: 0 2px 8px 1px rgb(0 0 0 / 5%);
    box-shadow: 0 0px 5px 3px rgb(172 172 172 / 49%);
    background: #f8f8f8;
    padding: 25px;
    position: relative;
    margin-bottom: 20px;
    border-radius: 6px;
}

.partners_main_block .card-box p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.partners_main_block .inner_h3 {
    font-size: 20px;
}

.partners_main_block .list-item li {
    padding: 3px 0;
    display: flex;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.partners_main_block .list-item li i {
    color: #05124c;
    padding-right: 12px;
    padding-top: 3px;
}

/*-- partners_main_block --*/

/*-- career_listing_sec --*/

.career_listing_sec {
    margin: 0;
    padding: 60px 0;
}

.career_listing_sec .title {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
}

.career_listing_sec .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    line-height: 46px;
    color: #000000;
    font-weight: 700;
    text-align: center;
}

.career_listing_sec .title p {
    margin: 0 auto;
    padding: 6px 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 68%;
    text-align: center;
}
.career_listing_sec .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    margin: 0 auto;
    bottom: 13px;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translate(-50%);
}

.carrer_collection_list_wpr {
    margin: 0;
    padding: 0;
}
.carrer_collection_list_wpr .career_item {
    margin: 0 0 30px 0;
    padding: 0;
    position: relative;
}

.carrer_collection_list_wpr .career_item a {
    color: #232425;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 50px;
    text-decoration: none;
    display: block;
    box-shadow: 1px 0px 25px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.carrer_collection_list_wpr .career_item:hover a {
    background-color: #f1f7fa;
    box-shadow: 0 0 30px 10px rgba(52, 108, 136, 0.18);
}

.carrer_collection_list_wpr .career_item .career_item_in {
    margin: 0;
    padding: 0;
}

.carrer_collection_list_wpr .career_item .career_item_in .designation {
    margin: 0;
    padding: 0 0 10px 0;
    display: flex;
    align-items: center;
}

.carrer_collection_list_wpr .career_item .career_item_in .designation .apply_urgent {
    margin: 0 0 0 30px;
    padding: 2px 14px;
    background: var(--orange-color);
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
    color: #fff;
    border-radius: 50px;
}

.carrer_collection_list_wpr .career_item .career_item_in .designation h4 {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 42px;
    color: var(--blue-dark-color);
    font-weight: 700;
}

.carrer_collection_list_wpr .career_item .career_location_wpr {
    margin: 0;
    padding: 0 0 10px 0;
    display: flex;
    align-items: center;
}

.carrer_collection_list_wpr .career_item .career_location_wpr .each_location {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.carrer_collection_list_wpr .career_item .career_location_wpr .divider_text {
    margin: 0;
    padding: 0 16px;
    font-size: 20px;
}

.carrer_collection_list_wpr .career_item .each_location .location_icon_wpr {
    margin: 0;
    padding: 0;
}
.carrer_collection_list_wpr .career_item .each_location .location_icon_wpr .fa {
    margin: 0;
    padding: 0;
}
.carrer_collection_list_wpr .career_item .each_location .location_text {
    margin: 0;
    padding: 0;
}

.carrer_collection_list_wpr .career_item .each_location {
    margin: 0;
    padding: 0;
}
.carrer_collection_list_wpr .career_item .each_location .location_icon_wpr {
    margin: 0;
    padding: 0 6px 0 0;
}
.carrer_collection_list_wpr .career_item .each_location .location_icon_wpr .fa {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 26px;
    color: #05124c;
}
.carrer_collection_list_wpr .career_item .each_location .location_text {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.carrer_collection_list_wpr .career_item .career_short_text {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
}

.carrer_collection_list_wpr .career_item .career_btn {
    margin: 0;
    padding: 7px;
    position: absolute;
    right: 18px;
    top: 20px;
    background: var(--orange-color);
    width: 34px;
    height: 34px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 3px 3px rgb(255 206 157 / 92%);
}

.carrer_collection_list_wpr .career_item .career_btn .fa {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #fff;
}

/*-- career_listing_sec --*/

/*career_details_sec*/

.career_details_sec {
    margin: 0;
    padding: 60px 0;
}

/*career_details_sec*/

/*why_businesses*/

.why_businesses {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.why_businesses .title {
    margin: 0;
    padding: 0 0 14px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.why_businesses .title h2 {
    margin: 0;
    padding: 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #ffffff;
    font-weight: 700;
}

.why_businesses .title:before {
    position: absolute;
    left: 0;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(160 160 243) 0%, rgb(72 153 208) 25%, rgb(107 128 170) 50%, rgb(85 100 183) 75%, rgb(58 74 144) 100%);
}

.why_businesses .title .button {
    margin: 0;
    padding: 0;
    display: block;
    width: auto;
}

.why_businesses .title .button a {
    /* background: linear-gradient(to right, rgb(2 12 111) 0, rgb(2 120 193) 100%); */
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0;
    padding: 12px 28px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    text-transform: capitalize;
}

.why_businesses .title .button a .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.why_businesses .title .button a:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.why_businesses .title .button a:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    margin: 0;
    padding: 12px 30px 12px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
    position: relative;
}

.why_businesses .item_row {
    margin: 0;
    padding: 40px 0 0 0;
    display: flex;
    align-items: start;
}
.why_businesses .item_row .item_col {
    margin: 0;
    padding: 0;
    width: 50%;
}
.why_businesses .item_row .item_col ul {
    margin: 0;
    padding: 0 30px;
}
.why_businesses .item_row .item_col ul li {
    margin: 0;
    padding: 0 0 14px 0px;
    font-size: 18px;
    color: #fff;
    display: block;
    position: relative;
    line-height: 32px;
    font-weight: 400;
}
.why_businesses .item_row .item_col ul li:before {
    content: "\f058";
    position: absolute;
    left: -21px;
    top: 0px;
    border-radius: 50px;
    font-family: "FontAwesome";
    font-size: 18px;
    line-height: 34px;
}

/**/

.why_businesses .button {
    margin: 0;
    padding: 40px 0 0 0;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    display: none;
}

.why_businesses .button a {
    /* background: linear-gradient(to right, rgb(2 12 111) 0, rgb(2 120 193) 100%); */
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0;
    padding: 12px 28px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    text-transform: capitalize;
}

.why_businesses .button a .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.why_businesses .button a:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.why_businesses .button a:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    margin: 0;
    padding: 12px 30px 12px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
    position: relative;
}

/*why_businesses*/

/*-- homepage_onload_popup --*/

.homepage_onload_wrapper {
    display: none;
}

.homepage_onload_wrapper.homepage-popup-mpdal {
    display: block;
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.homepage_onload_popup {
    margin: 0;
    padding: 0;
    position: fixed;
    inset: 0;
    background: #0d0d0dbf;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage_onload_popup .popup_bd {
    max-width: 1275px;
    background: #fff;
    position: relative;
    width: 100%;
    transform: scale(0);
    animation: zoomIn 0.4s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.homepage_onload_popup .popup_bd .closed_button {
    margin: 0;
    padding: 28px 28px 0 0;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    cursor: pointer;
    transition: all 0.3s;
}
.homepage_onload_popup .popup_bd .closed_button img {
    max-width: 100%;
    transition: all 0.3s;
}

.homepage_onload_popup .popup_bd .closed_button:hover img {
    opacity: 0.8;
    transform: rotate(90deg);
}

.homepage_onload_popup .popup_bd .popup_header {
    margin: 0;
    padding: 26px;
    background: #021a57;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.homepage_onload_popup .popup_bd .popup_header .logo {
    margin: 0;
    padding: 0;
    z-index: 9;
}

.homepage_onload_popup .popup_bd .popup_header .logo a {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: auto;
}
.homepage_onload_popup .popup_bd .popup_header .logo img {
    max-width: 100%;
    height: 52px;
    object-fit: contain;
}
.homepage_onload_popup .popup_bd .popup_header p {
    margin: 0;
    padding: 6px 0 0 0;
    font-family: "Maven Pro", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
}

.homepage_onload_popup .popup_bd .item_row {
    margin: 0;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
}
.homepage_onload_popup .popup_bd .item_row .item_col {
    margin: 0;
    padding: 0 30px;
    width: 50%;
    border-right: 3px solid #021a57;
}
.homepage_onload_popup .popup_bd .item_row .item_col:nth-child(2) {
    border-right: 0;
}

.homepage_onload_popup .popup_bd .item_row .item_col .top {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.homepage_onload_popup .popup_bd .item_row .item_col .top a {
    margin: 0;
    padding: 16px 0;
    display: inline-block;
    width: auto;
    text-align: center;
}
.homepage_onload_popup .popup_bd .item_row .item_col .top img {
    max-width: 100%;
    height: 37px;
    object-fit: contain;
}
.homepage_onload_popup .popup_bd .item_row .item_col .top p {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
}

.homepage_onload_popup .popup_bd .item_row .item_col .link_block {
    margin: 0;
    padding: 20px 0;
}
.homepage_onload_popup .popup_bd .item_row .item_col .link_block ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.homepage_onload_popup .popup_bd .item_row .item_col .link_block ul li {
    margin: 8px;
    padding: 0px;
    background: #fff;
    border: 1px solid #021a57;
    border-radius: 8px;
}
.homepage_onload_popup .popup_bd .item_row .item_col .link_block ul li a {
    margin: 4px;
    padding: 12px;
    background: #021a57;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
    border-radius: 8px;
    display: block;
    transition: all 0.3s;
}

.homepage_onload_popup .popup_bd .item_row .item_col .link_block ul li a .fa {
    margin: 0;
    padding: 0 0 0 2px;
    font-size: 18px;
    line-height: 24px;
}

.homepage_onload_popup .popup_bd .item_row .item_col .link_block ul li a:hover {
    color: var(--orange-light-color);
}

.homepage_onload_popup .popup_bd .popup_footer {
    margin: 0 auto;
    padding: 0 60px;
}
.homepage_onload_popup .popup_bd .popup_footer .bd {
    margin: 0;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 3px solid #021a57;
}
.homepage_onload_popup .popup_bd .popup_footer p {
    margin: 0;
    padding: 0 12px 0 0;
    font-size: 34px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0em;
    text-align: left;
    font-family: "Maven Pro", sans-serif;
}
.homepage_onload_popup .popup_bd .popup_footer a {
    margin: 0;
    padding: 0;
}
.homepage_onload_popup .popup_bd .popup_footer a img {
    max-width: 100%;
    height: 37px;
    object-fit: contain;
}

/*-- homepage_onload_popup --*/

/*--howwe-worksection-wrapper--*/

.howwe-worksection-wrapper {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.howwe-worksection-wrapper .item_left {
    margin: 0;
    padding: 0;
}
.howwe-worksection-wrapper .item_left .item_bd .title {
    margin: 0;
    padding: 0 0 0px 0;
}
.howwe-worksection-wrapper .item_left .item_bd .title h2 {
    margin: 0;
    padding: 0;
    padding-bottom: 6px;
    margin-bottom: 14px !important;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    width: 70%;
    display: inline-block;
}

.howwe-worksection-wrapper .item_left .title:before {
    display: none;
}

.howwe-worksection-wrapper .item_left .item_bd {
    margin: 0;
    padding: 60px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.howwe-worksection-wrapper .item_left .item_bd:nth-child(1) {
    padding-top: 0;
}

.howwe-worksection-wrapper .item_left .item_bd .item_col {
    margin: 0;
    padding: 15px;
    width: 50%; /* height: 100%; */
    padding-left: 0;
    padding-right: 30px;
    flex: 0 0 auto;
}

.howwe-worksection-wrapper .item_left .item_bd .item_col .bd {
    margin: 0;
    padding: 20px 15px;
    border: 1px solid #d2d2d2;
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 17%); /* border-radius: 8px; */
    border-top: 5px solid #05124c;
    text-align: center;
    height: 100%;
}

.howwe-worksection-wrapper .item_left .item_bd .item_col .icon {
    margin: 0;
    padding: 0 0 16px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.howwe-worksection-wrapper .item_left .item_bd .item_col .icon img {
    width: 70px;
}

.howwe-worksection-wrapper .item_left .item_bd h4 {
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 42px;
    color: #000000;
    font-weight: 700;
}

.howwe-worksection-wrapper .item_left .item_bd p {
    margin: 0 auto;
    padding: 0 0 9px 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: justify;
}

.howwe-worksection-wrapper .item_left .item_bd ul {
    margin: 0;
    padding: 10px 0 0 0px;
    text-align: left;
}
.howwe-worksection-wrapper .item_left .item_bd ul li {
    padding: 3px 0 3px 0;
    font-size: 15px;
    line-height: 21px;
    color: #000000;
    font-weight: 400;
    text-align: left;
    display: block;
    margin: 0 0 0 19px;
    position: relative;
}

.howwe-worksection-wrapper .item_left .item_bd ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #05124c;
    position: absolute;
    left: -19px;
    top: 11px;
    border-radius: 50px;
    border: 1px solid #767676;
}

.howwe-worksection-wrapper .item_left .item_bd .button_block {
    background: #00000000;
    box-shadow: 0 2px 6px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 20px 0 10px 0;
    padding: 8px 15px;
    font-size: 16px !important;
    color: #05124c !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    display: inline-block;
    border: 1px solid #05124cde;
}

.howwe-worksection-wrapper .item_left .item_bd .button_block .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.howwe-worksection-wrapper .item_left .item_bd .button_block:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.howwe-worksection-wrapper .item_left .item_bd .button_block:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    padding: 8px 15px 8px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
    position: relative;
    border: 1px solid #fff;
}

.howwe-worksection-wrapper .item_right {
    margin: 0;
    padding: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 180px;
    padding: 0 15px;
}

.howwe-worksection-wrapper .item_right h5 {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 24px;
    line-height: 30px;
    color: #05124c;
}
.howwe-worksection-wrapper .item_right .item_list {
    margin: 0;
    padding: 0;
}
.howwe-worksection-wrapper .item_right .item_list ul {
    margin: 0;
    padding: 9px 0 0 0;
}
.howwe-worksection-wrapper .item_right .item_list ul li {
    margin: 0;
    padding: 6px 0 6px 8px;
    display: block;
    border-left: 3px solid #000;
}

.howwe-worksection-wrapper .item_right .item_list ul li.howwework-active-color.active {
    border-left: 3px solid #ff8805;
}

.howwe-worksection-wrapper .item_right .item_list ul li a {
    margin: 0;
    padding: 0;
    display: block;
    box-shadow: none;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.howwe-worksection-wrapper .item_right .item_list ul .howwework-active-color.active a {
    color: var(--orange-light-color);
}

/*--howwework-active-color--*/

/*-- mvp-services-offer-section --*/

.mvp-services-offer-section {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.mvp-services-offer-section .title {
    margin: 0 0 12px 0;
    padding: 0 0 26px 0;
    text-align: center;
}

.mvp-services-offer-section .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    bottom: 0;
}

.mvp-services-offer-section .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    text-align: center;
}
.mvp-services-offer-section .title p {
    margin: 0 auto;
    padding: 6px 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.mvp-services-offer-section .item_row {
    padding-top: 30px;
    margin: 0;
}

.mvp-services-offer-section .row .col-mtb {
    margin-top: 30px;
}

.mvp-services-offer-section .item_box {
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.mvp-services-offer-section .item_box .img_box {
    padding: 0 25px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.mvp-services-offer-section .item_box .img_box img {
    margin: 0;
    padding: 0;
}

.mvp-services-offer-section .item_box .text_box {
    margin: 0;
    padding: 20px 15px 20px;
    background: #fff;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-top: 52px;
    transition: all 0.3s;
}

.mvp-services-offer-section .item_box .text_box h3 {
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 42px;
    color: var(--blue-dark-color);
    font-weight: 700;
    transition: all 0.3s;
}

.mvp-services-offer-section .item_box .text_box p {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--black-color);
    transition: all 0.3s;
}

.mvp-services-offer-section .item_box:hover .text_box {
    background: #05124c;
    transition: all 0.3s;
}

.mvp-services-offer-section .item_box:hover .text_box h3 {
    color: #f8f8f8;
}

.mvp-services-offer-section .item_box:hover .text_box p {
    color: #f8f8f8;
}

/*-- mvp-services-offer-section --*/

/*-- mvp-develop-alter --*/

.mvp-develop-alter {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.mvp-develop-alter .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.mvp-develop-alter .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
}

.mvp-develop-alter .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.mvp-develop-alter .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 65%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--light-ass-color);
    font-weight: 400;
    text-align: center;
}

.mvp-develop-alter .item_bd {
    margin: 0;
    padding: 0;
}

.mvp-develop-alter .item_bd .col-item30 {
    margin-bottom: 30px;
}

.mvp-develop-alter .item_bd .item-box {
    padding: 0;
    border: 1px solid #e4e6e8;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    border-radius: 10px !important;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 0px 5px 2px rgb(71 71 71);
}

.mvp-develop-alter .item_bd .item-box .img_box {
    margin: 0;
    padding: 0;
    margin-bottom: 0;
    border-radius: 10px 10px 0 0 !important;
    overflow: hidden;
    height: 280px;
}

.mvp-develop-alter .item_bd .item-box .img_box img {
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 100%;
    object-fit: cover;
}

.mvp-develop-alter .item_bd .item-box:hover .img_box img {
    transform: scale(1.1);
}

.mvp-develop-alter .item_bd .item-box .text-block {
    margin: 0;
    padding: 15px;
}

.mvp-develop-alter .item_bd .item-box h4 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    color: #05124c;
    line-height: 30px;
    font-weight: 600;
}
.mvp-develop-alter .item_bd .item-box p {
    margin: 0;
    padding: 12px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #525252;
    font-weight: 400;
    width: 100%;
    text-align: left;
}

/*-- mvp-develop-alter --*/

/*-- mvp-benefits-section --*/

.mvp-benefits-section {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}
.mvp-benefits-section .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.mvp-benefits-section .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    text-align: center;
}

.mvp-benefits-section .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 86%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #05124c;
    font-weight: 400;
    text-align: center;
}

.mvp-benefits-section .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.mvp-benefits-section .item_bd {
    margin: 0;
    padding: 0;
}

.mvp-benefits-section .item_bd .item-b30 {
    margin-top: 30px;
}

.mvp-benefits-section .item_bd .item_box {
    border: 1px solid #dddfe1;
    padding: 20px 20px;
    min-height: 310px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    background: #fff;
    height: 100%;
    transition: all 0.3s;
}

.mvp-benefits-section .item_bd .item_box:hover {
    background: #f8f8f8;
}

.mvp-benefits-section .item_bd .item_box .item-img {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border: 1px solid #dddfe1;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.mvp-benefits-section .item_bd .item_box:hover .item-img {
    background: #05124c;
}

.mvp-benefits-section .item_bd .item_box .item-img img {
    width: auto;
    height: 48px;
    object-fit: contain;
    max-width: 100%;
}

.mvp-benefits-section .item_bd .item_box:hover .item-img img {
    filter: brightness(0) invert(1);
}

.mvp-benefits-section .item_bd .item_box .text-box {
    margin: 0;
    padding: 0;
}
.mvp-benefits-section .item_bd .item_box .text-box h5 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    color: #05124c;
    line-height: 30px;
    font-weight: 600;
}

.mvp-benefits-section .item_bd .item_box .text-box p {
    margin: 0;
    padding: 12px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #525252;
    font-weight: 400;
    width: 100%;
    text-align: left;
}

/*-- mvp-benefits-section --*/

/*-- mvp_proven_section --*/

.mvp_proven_section {
    margin: 0;
    padding: 60px 0;
    background: var(--white-color);
}
.mvp_proven_section .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.mvp_proven_section .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    text-align: center;
}

.mvp_proven_section .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 86%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #05124c;
    font-weight: 400;
    text-align: center;
}

.mvp_proven_section .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.mvp_proven_section .item_bd {
    margin: 0;
    padding: 0;
}

.mvp_proven_section .item_bd .item-b30 {
    margin-top: 30px;
}

.mvp_proven_section .item_bd .item_box {
    border: 1px solid #dddfe1;
    padding: 20px 20px;
    min-height: 310px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    background: var(--light-ass-color);
    height: 100%;
    transition: all 0.3s;
}

.mvp_proven_section .item_bd .item_box:hover {
    background: #fff;
}

.mvp_proven_section .item_bd .item_box .item-img {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border: 1px solid #dddfe1;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    background: #fff;
}

.mvp_proven_section .item_bd .item_box:hover .item-img {
    background: #05124c;
}

.mvp_proven_section .item_bd .item_box .item-img img {
    width: auto;
    height: 48px;
    object-fit: contain;
    max-width: 100%;
}

.mvp_proven_section .item_bd .item_box:hover .item-img img {
    filter: brightness(0) invert(1);
}

.mvp_proven_section .item_bd .item_box .text-box {
    margin: 0;
    padding: 0;
}
.mvp_proven_section .item_bd .item_box .text-box h5 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    color: #05124c;
    line-height: 30px;
    font-weight: 600;
}

.mvp_proven_section .item_bd .item_box .text-box p {
    margin: 0;
    padding: 12px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #525252;
    font-weight: 400;
    width: 100%;
    text-align: left;
}

/*-- mvp_proven_section --*/

/*--mvp-why-choose-dev-section--*/

.mvp-why-choose-dev-section {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.mvp-why-choose-dev-section .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.mvp-why-choose-dev-section .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    text-align: center;
}

.mvp-why-choose-dev-section .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 86%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #05124c;
    font-weight: 400;
    text-align: center;
}

.mvp-why-choose-dev-section .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.mvp-why-choose-dev-section .row .col_left {
    position: relative;
    z-index: 1;
}
.mvp-why-choose-dev-section .row .col_right {
    margin-right: 0 !important;
    margin-left: -9% !important;
}

.mvp-why-choose-dev-section .item-left {
}
.mvp-why-choose-dev-section .item-left img {
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px !important;
}

.mvp-why-choose-dev-section .item_right_box {
    padding: 40px 20px 40px 95px;
    background: #05124c;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.mvp-why-choose-dev-section .item_right_box .item_box {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 25px 20px 15px;
    border-radius: 80px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    align-items: center;
    position: relative;
}

.mvp-why-choose-dev-section .item_right_box .item_box .icon_box {
    width: 120px;
    height: 120px;
    -webkit-box-shadow: 0 0px 4px 5px rgb(255 255 255 / 18%);
    -moz-box-shadow: 0 0px 4px 5px rgb(255 255 255 / 18%);
    box-shadow: 0 0px 4px 5px rgb(255 255 255 / 18%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.mvp-why-choose-dev-section .item_right_box .item_box .icon_box img {
    margin: auto;
}

.mvp-why-choose-dev-section .item_right_box .item_box .text-box {
    width: calc(100% - 140px);
    margin-left: 20px;
    padding: 0;
    display: block;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.mvp-why-choose-dev-section .item_right_box .item_box .text-box h6 {
    margin: 0;
    padding: 0 0 6px 0;
    font-size: 20px;
    color: #ffffff;
    line-height: 30px;
    font-weight: 600;
}
.mvp-why-choose-dev-section .item_right_box .item_box .text-box p {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #bcbcbc;
    font-weight: 400;
    width: 100%;
    text-align: left;
}

.mvp-why-choose-dev-section .item_right_box .item_box:hover .text-box h6 {
    padding: 0 0 6px 0;
    font-size: 20px;
    color: #05124c;
    line-height: 30px;
    font-weight: 600;
    transition: all all 0.3s;
}

.mvp-why-choose-dev-section .item_right_box .item_box:hover .text-box p {
    color: #000000;
    transition: all all 0.3s;
}

.mvp-why-choose-dev-section .item_right_box .item_box:hover .icon_box {
    -webkit-box-shadow: 0 0px 4px 5px rgb(5 18 76 / 35%);
    -moz-box-shadow: 0 0px 4px 5px rgb(5 18 76 / 35%);
    box-shadow: 0 0px 4px 5px rgb(5 18 76 / 35%);
    background-color: #05124c;
    transition: all all 0.3s;
}

.mvp-why-choose-dev-section .item_right_box .item_box:hover .icon_box img {
    filter: brightness(0) invert(1);
    transition: all all 0.3s;
}

.mvp-why-choose-dev-section .item_right_box .item_box:after {
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100px;
    transition: all 0.7s;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.mvp-why-choose-dev-section .item_right_box .item_box:hover:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 100px;
    transition: all 0.7s;
    visibility: visible;
    opacity: 1;
    border-radius: 100px;
}

/*--mvp-why-choose-dev-section--*/

/*--ecommerce_alteration-driven--*/

.ecommerce_alteration-driven {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.ecommerce_alteration-driven .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.ecommerce_alteration-driven .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.ecommerce_alteration-driven .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 86%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    text-align: center;
}

.ecommerce_alteration-driven .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.ecommerce_alteration-driven .colmb-30 {
    margin-top: 82px;
}

.ecommerce_alteration-driven .item_box {
    padding: 10px 15px;
    position: relative;
    border-bottom: 5px solid #ecedee;
    -webkit-box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    -moz-box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    border: 0;
    border-bottom: 5px solid transparent;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #818080;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.ecommerce_alteration-driven .item_box .icon_box {
    width: 90px;
    height: 90px;
    -webkit-box-shadow: 0 0px 7px 3px rgb(0 10 54);
    -moz-box-shadow: 0 0px 7px 3px rgb(0 10 54);
    box-shadow: 0 0px 6px 3px rgb(0 10 54);
    border-radius: 100%;
    line-height: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    margin-top: -64px;
}

.ecommerce_alteration-driven .item_box .icon_box img {
    width: 40px;
    height: 50px;
    object-fit: contain;
}

.ecommerce_alteration-driven .item_box .text_box {
    margin: 0;
    padding: 44px 0 30px 0;
    text-align: center;
}

.ecommerce_alteration-driven .item_box .text_box h3 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    color: #ffffff;
    line-height: 34px;
    font-weight: 600;
}

.ecommerce_alteration-driven .item_box .text_box p {
    margin: 0;
    padding: 12px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #c2c2c2;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.ecommerce_alteration-driven .item_box:hover {
    background: #fff;
    transition: all 0.3s;
}

.ecommerce_alteration-driven .item_box:hover .text_box h3 {
    color: #05124c;
}

.ecommerce_alteration-driven .item_box:hover .text_box p {
    padding: 12px 0 0 0;
    color: #404040;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.ecommerce_alteration-driven .item_box:hover .icon_box {
    -webkit-box-shadow: 0 0px 0px 6px rgb(5 18 76);
    -moz-box-shadow: 0 0px 0px 6px rgb(5 18 76);
    box-shadow: 0 0px 0px 6px rgb(5 18 76);
    border-radius: 100%;
    line-height: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*--ecommerce_alteration-driven--*/

/*-- web_whygo_section --*/

.web_whygo_section {
    margin: 0;
    padding: 60px 0;
}

.web_whygo_section .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.web_whygo_section .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    text-align: center;
}

.web_whygo_section .title p {
    color: #000000;
    width: 86%;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    font-weight: 400;
    text-align: center;
}

.web_whygo_section .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.web_whygo_section .left_block {
    margin: 0;
    padding: 0;
}
.web_whygo_section .left_block picture {
    margin: 0;
    padding: 0;
}
.web_whygo_section .left_block picture img {
    width: 100%;
    object-fit: contain;
    max-width: 100%;
}

.web_whygo_section .right_block_wrapper {
    margin: 0;
    padding: 0;
}

.web_whygo_section .right_block_wrapper h3 {
    margin: 0;
    padding: 0 0 20px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-32);
    line-height: 42px;
    color: #000;
    font-weight: 700;
}

.web_whygo_section .right_block_wrapper .right_item {
    margin: 0;
    padding: 0;
}
.web_whygo_section .right_block_wrapper .right_item .item_col {
    position: relative;
    font-size: 14px;
    color: #6a6d6f;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px 0;
}

.web_whygo_section .right_block_wrapper .right_item .item_col .icon {
    margin: 0;
    padding: 0;
    display: flex;
    width: 75px;
    height: 75px;
    background: #e7e7e7;
    align-items: center;
    justify-content: center;
    border-radius: 24px 28px 30px 59px;
    box-shadow: 3px 3px 0px 0px rgb(5 18 76 / 47%);
}

.web_whygo_section .right_block_wrapper .right_item .item_col .icon img {
    width: 31px;
    object-fit: contain;
    height: 30px;
}
.web_whygo_section .right_block_wrapper .right_item .item_col p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 24px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 77%;
    margin-left: 22px;
}

.web_whygo_section .right_block_wrapper .animate_btn:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 95%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

/*-- web_whygo_section --*/

/*-- ecommerce_deliberately --*/

.ecommerce_deliberately {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.ecommerce_deliberately .title {
    margin: 0 0 12px 0;
    padding: 0 0 26px 0;
    text-align: center;
}
.ecommerce_deliberately .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    bottom: 0;
}

.ecommerce_deliberately .title span {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: var(--font-size-18);
    color: var(--orange-color);
    font-weight: 600;
    display: inline-block;
}
/*.our-solutions_clients .title:before { display:none; }*/

.ecommerce_deliberately .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    text-align: center;
}

.ecommerce_deliberately .title p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 36px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.ecommerce_deliberately .ltem_block {
    margin: 0;
    padding: 41px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.ecommerce_deliberately .ltem_block .item {
    margin: 4px;
    padding: 0;
    width: 13%;
    height: 92px;
    border: 1px solid #0f1f2e4a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #fff;
}

.ecommerce_deliberately .ltem_block .item img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*-- ecommerce_deliberately --*/

/*/////////////////////////*/

/*-- web-why-choose-us-ideal --*/

.php-codeigniter-idead-support {
    margin: 0;
    padding: 60px 0;
    background: #ffffff;
}

.php-codeigniter-idead-support .title {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
}

.php-codeigniter-idead-support .title span {
    font-size: var(--small-16);
    font-weight: bold;
    color: var(--orange-color);
}

.php-codeigniter-idead-support .title h2 {
    margin: 0 auto;
    padding: 0;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    width: 75%;
    text-align: center;
}
.php-codeigniter-idead-support .title p {
    margin: 0 auto;
    padding: 10px 0;
    width: 68%;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: #000;
    font-weight: 400;
    text-align: center;
}

.php-codeigniter-idead-support .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    margin: 0 auto;
    bottom: 13px;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translate(-50%);
}

.php-codeigniter-idead-support .item_col {
    margin-top: 50px;
}

.php-codeigniter-idead-support .web-why-choose-us-inner-box {
    border: 1px solid #ecedee;
    -webkit-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
    -moz-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
    box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
    border-radius: 10px;
    padding: 20px 20px 20px;
    background-color: var(--light-ass-color);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 100%;
}
.php-codeigniter-idead-support .web-why-choose-us-inner-box .web-why-choose-inner-icon {
    width: 90px;
    height: 90px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    line-height: 75px;
    text-align: center;
    margin-top: -57px;
    background-color: #fff;
    float: left;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 4px solid #ffffff;
}

.php-codeigniter-idead-support .web-why-choose-us-inner-box:hover .web-why-choose-inner-icon {
    background: #05124c;
    border: 4px solid #fff;

    box-shadow: none;
}

.php-codeigniter-idead-support .web-why-choose-us-inner-box:hover .web-why-choose-inner-icon img {
    filter: invert(100%);
}

.php-codeigniter-idead-support .web-why-choose-us-inner-box h5 {
    margin: 0;
    padding: 0 0 0 90px;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 36px;
    color: var(--blue-dark-color);
    font-weight: 700;
    margin-top: 15px;
}

.php-codeigniter-idead-support .web-why-choose-us-inner-box p {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.php-codeigniter-idead-support .web-why-choose-us-inner-box:hover h5 {
    color: #fff;
}
.php-codeigniter-idead-support .web-why-choose-us-inner-box:hover {
    background-color: #05124c;
}

.php-codeigniter-idead-support .web-why-choose-us-inner-box:hover p {
    color: #fff;
}

/*-- web-why-choose-us-ideal --*/

/*-- iosbuild_apps --*/

.iosbuild_apps {
    margin: 0;
    padding: 60px 0;
}
.iosbuild_apps .item-left {
    margin: 0;
    padding: 0;
}
.iosbuild_apps .item-left .title {
    margin: 0 0 20px 0;
    padding: 0 0 18px 0;
}

.iosbuild_apps .item-left .title h2 {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 100%;
    display: inline-block;
}

.iosbuild_apps .item-left ul {
    margin: 0;
    padding: 16px 0 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.iosbuild_apps .item-left ul li {
    margin: 0 auto;
    padding: 0 0 6px 0;
    font-size: var(--font-size-16);
    line-height: 24px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
    width: 100%;
}

.iosbuild_apps .item-left p {
    margin: 0 auto;
    padding: 0 0 6px 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.iosbuild_apps .item_right {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.iosbuild_apps .item_right img {
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
}

/*-- iosbuild_apps --*/

/*-- ios-benefit-block --*/

.ios-benefit-block {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.ios-benefit-block .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.ios-benefit-block .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.ios-benefit-block .title h2 {
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
}

.ios-benefit-block .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 65%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--light-ass-color);
    font-weight: 400;
    text-align: center;
}

.ios-benefit-block .item_bd {
    margin: 0;
    padding: 60px 0 0 0;
}

.ios-benefit-block .item_bd .item_box {
    padding: 10px 15px;
    position: relative;
    height: 100%;
    border-radius: 10px;
    border: 3px solid #ffffff;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.ios-benefit-block .item_bd .item_box .icon {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    line-height: 100px;
    transition: all 0.3s ease-in-out;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    margin-top: -69px;
    border: 3px solid #05124c;
}

.ios-benefit-block .item_bd .item_box .icon img {
    width: 40px;
    height: 50px;
    object-fit: contain;
}

.ios-benefit-block .item_bd .item_box h4 {
    margin: 0;
    padding: 34px 0 6px 0;
    font-size: 24px;
    color: #ffffff;
    line-height: 34px;
    font-weight: 600;
    text-align: center;
}

.ios-benefit-block .item_bd .item_box:hover {
    background: #fff;
}

.ios-benefit-block .item_bd .item_box:hover h4 {
    color: #05124c;
}

.ios-benefit-block .item_bd .item_box:hover .icon {
    border: 4px solid #05124c;
}

/*-- ios-benefit-block --*/

/*-- iOS-mobileapp-section --*/

.iOS-mobileapp-section {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.iOS-mobileapp-section .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.iOS-mobileapp-section .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.iOS-mobileapp-section .title h2 {
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
}

.iOS-mobileapp-section .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 65%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--light-ass-color);
    font-weight: 400;
    text-align: center;
}

.iOS-mobileapp-section .item-slider-wrapper {
    margin: 0;
    padding: 25px 0 0 0;
}

.iOS-mobileapp-section .item-slider-wrapper .item {
    padding: 10px 15px;
    position: relative;
    height: 100%;
    border-radius: 10px;
    border: 3px solid #ffffff;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    /* transition: all 0.3s; */
    margin-top: 54px;
    margin-left: 10px;
    margin-right: 10px;
    transition: all 0.3s;
}

.iOS-mobileapp-section .item-slider-wrapper .item .icon {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    line-height: 100px;
    transition: all 0.3s ease-in-out;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    margin-top: -66px;
    z-index: 10;
}
.iOS-mobileapp-section .item-slider-wrapper .item .icon img {
    width: 40px;
    height: 50px;
    object-fit: contain;
}

.iOS-mobileapp-section .item-slider-wrapper .item h4 {
    margin: 0;
    padding: 50px 0 25px 0;
    font-size: 22px;
    color: #ffffff;
    line-height: 34px;
    font-weight: 500;
    text-align: center;
}

.iOS-mobileapp-section .item-slider-wrapper .item:hover {
    background: #fff;
}

.iOS-mobileapp-section .item-slider-wrapper .item:hover h4 {
    color: #05124c;
}

.iOS-mobileapp-section .item-slider-wrapper .item:hover .icon {
    border: 4px solid #05124c;
}

/*-- iOS-mobileapp-section --*/

/*--androod-uiux-services--*/

.androod-uiux-services {
    margin: 0;
    padding: 60px 0;
    background: #fff;
}

.androod-uiux-services .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.androod-uiux-services .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.androod-uiux-services .title h2 {
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    text-align: center;
}

.androod-uiux-services .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 65%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #434343;
    font-weight: 400;
    text-align: center;
}

.androod-uiux-services .item_bd {
    margin: 0;
    padding: 0;
}

.androod-uiux-services .item_bd .mar-b30 {
    margin-bottom: 30px;
}

.androod-uiux-services .item_bd .uiux-service-box {
    margin: 0;
    padding: 0;
}
.androod-uiux-services .item_bd .uiux-service-box-image {
    overflow: hidden;
    border-radius: 10px;
    height: 290px;
}

.androod-uiux-services .item_bd .uiux-service-box .uiux-service-box-image img {
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;

    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.androod-uiux-services .item_bd .text_box {
    position: relative;
    padding: 25px 20px;
    margin: -50px 25px 0;
    min-height: 250px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background: #fff;

    transition: all 0.3s;
}

.androod-uiux-services .item_bd .text_box .uiux-service-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: 30px;
    top: -40px;
}

.androod-uiux-services .item_bd .text_box .uiux-service-icon img {
    max-width: 100%;
}

.androod-uiux-services .item_bd .text_box h3 {
    font-size: 24px;
    color: var(--bg-light-color);
    font-weight: 600;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding-right: 110px;

    line-height: 30px;
}

.androod-uiux-services .item_bd .text_box p {
    margin: 0 auto;
    padding: 0 0 6px 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.androod-uiux-services .item_bd .uiux-service-box:hover .text_box {
    background: #05124c;
}

.androod-uiux-services .item_bd .uiux-service-box:hover .text_box h3 {
    color: #fff;
}
.androod-uiux-services .item_bd .uiux-service-box:hover .text_box p {
    color: #fff;
}

/*--androod-uiux-services--*/

/*-- android-app-from-scratch --*/

.android-app-from-scratch {
    margin: 0;
    padding: 60px 0;
}

.android-app-from-scratch .title {
    text-align: center;
    padding-bottom: 29px;
    margin-bottom: 18px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 45px;
}

.android-app-from-scratch .title h2 strong {
    color: var(--blue-dark-color);
    padding-bottom: 10px;
    position: relative;
    font-size: var(--font-size-52);
    line-height: 62px;
    font-weight: 900;
    /*    background: url(../media/home/circle.png) no-repeat center center;*/
    background-size: 100% 100%;
}
.android-app-from-scratch .title h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 70%;
}

.android-app-from-scratch .title p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.android-app-from-scratch .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.android-app-from-scratch .process-box .process-box-icon {
    width: 105px;
    height: 92px;
    position: relative;
    top: 0;
    left: -11px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    margin: 0 0 20px;
    transition: all 0.3s;
    background: var(--blue-light-color);
    border-radius: 0 0 68px 0;
}
.android-app-from-scratch .process-box .process-box-icon img {
    filter: brightness(0) invert(1);
}

.android-app-from-scratch .process-box:hover .process-box-icon {
    border-right: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}

.android-app-from-scratch .process-box .bd {
    position: relative;
    z-index: 5;
}

.android-app-from-scratch .process-box {
    width: 100%;
    border: 1px solid #dddfe1;
    border-radius: 10px;
    padding: 0 10px 10px 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 0;
    position: relative;
}

.android-app-from-scratch .process-box:before {
    content: "";
    width: 200px;
    height: 200px;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--blue-light-color);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    border-radius: 100px;
}

.android-app-from-scratch .process-box:hover:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    visibility: visible;
}

.android-app-from-scratch .col-item {
    margin-bottom: 30px;
}

.android-app-from-scratch .process-box h4 {
    font-size: var(--small-16);
    color: var(--blue-dark-color);
    margin: 10px 0;
    transition: all 0.3s;
}

.android-app-from-scratch .process-box:hover h4 {
    color: var(--white-color);
}

.android-app-from-scratch .process-box ul {
    margin: 0;
    padding: 0;
}

.android-app-from-scratch .process-box li {
    width: 100%;
    font-size: var(--small-16);
    color: var(--black-color);
    font-weight: 500;
    margin: 8px 0;
    line-height: 22px;
    display: block;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s;
}

.android-app-from-scratch .process-box:hover ul li {
    color: var(--white-color);
}

.android-app-from-scratch .process-box li:after {
    content: "\f105";
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50px;
    font-family: "FontAwesome";
    font-size: 18px;
    font-weight: 600;
}

.android-app-from-scratch .process-box li > i {
    font-size: 12px;
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    color: #6a6d6f;
    border-radius: 0;
    margin-right: 5px;
    align-items: flex-start;
    line-height: 1.5;
}

.android-app-from-scratch .process-box:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-color: #fff;
}

.android-app-from-scratch .process-items {
    padding-right: 20px;
    padding-left: 20px;
    position: relative;
    padding-bottom: 41px;
}

/*-- android-app-from-scratch --*/

/*-- virtual_benefits_sec --*/

.virtual_benefits_sec {
    margin: 0;
    padding: 60px 0;
    background: var(--white-color);
}

.virtual_benefits_sec .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.virtual_benefits_sec .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.virtual_benefits_sec .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    text-align: center;
}

.virtual_benefits_sec .title p {
    color: #000000;
    width: 86%;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    font-weight: 400;
    text-align: center;
}

.virtual_benefits_sec .item_bd {
    margin: 0;
    padding: 0;
}
.virtual_benefits_sec .item_bd .ar-why-choose-image {
    margin: 0;
    padding: 0;
}
.virtual_benefits_sec .item_bd .ar-why-choose-image img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.virtual_benefits_sec .item_bd .right-block .mbt-30 {
    margin-top: 90px;
}

.virtual_benefits_sec .item_bd .item_box {
    padding: 10px 15px;
    position: relative;
    border-bottom: 5px solid #ecedee;
    -webkit-box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    -moz-box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    border: 0;
    border-bottom: 5px solid transparent;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #818080;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
    background: #05124c;
    margin-top: 0;
}

.virtual_benefits_sec .item_bd .item_box .why-choose-us-icon {
    width: 90px;
    height: 90px;
    -webkit-box-shadow: 0 0px 7px 3px rgb(0 10 54);
    -moz-box-shadow: 0 0px 7px 3px rgb(0 10 54);
    box-shadow: 0 0px 6px 3px rgb(0 10 54);
    border-radius: 100%;
    line-height: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    margin-top: -64px;
}
.virtual_benefits_sec .item_bd .item_box .why-choose-us-icon img {
    width: 40px;
    height: 50px;
    object-fit: contain;
}

.virtual_benefits_sec .item_bd .item_box .text-box {
    margin: 0;
    padding: 44px 0 30px 0;
    text-align: center;
}

.virtual_benefits_sec .item_bd .item_box .text-box h4 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    color: #ffffff;
    line-height: 34px;
    font-weight: 600;
}
.virtual_benefits_sec .item_bd .item_box .text-box p {
    margin: 0;
    padding: 12px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #c2c2c2;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.virtual_benefits_sec .item_bd .item_box:hover .why-choose-us-icon {
    background: #05124c;
    box-shadow: none;
    border: 4px solid #fff;
}

.virtual_benefits_sec .item_bd .item_box:hover .why-choose-us-icon img {
    filter: invert(100%);
}

/*-- virtual_benefits_sec --*/

/*uiux-dev-fascinates*/

.uiux-dev-fascinates {
    background: var(--light-ass-color);
}

/*uiux-dev-fascinates*/

/*/////////////////*/

/*-- uiuxdev-isoand-block --*/

.uiuxdev-isoand-block {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.uiuxdev-isoand-block .title {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
}
.uiuxdev-isoand-block .title span {
    font-size: var(--small-16);
    font-weight: bold;
    color: var(--orange-color);
}

.uiuxdev-isoand-block .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.uiuxdev-isoand-block .title p {
    margin: 0 auto;
    padding: 6px 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: #e9e9e9;
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.uiuxdev-isoand-block .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    margin: 0 auto;
    bottom: 13px;
    height: 6px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translate(-50%);
}

.uiuxdev-isoand-block .bd {
    margin: 0;
    padding: 0;
}
.uiuxdev-isoand-block .bd .row:nth-child(odd) {
    flex-direction: row-reverse;
}
.uiuxdev-isoand-block .bd .col_box {
    margin: 0;
    padding: 0;
    height: 400px;
    width: 100%;
}
.uiuxdev-isoand-block .bd .row:nth-child(odd) .col_box .text {
    background: #05124c;
}
.uiuxdev-isoand-block .bd .col_box .text {
    margin: 0;
    padding: 20px 20px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: left;
    background: #05124c;
    /* box-shadow: 0 0 8px 2px rgb(0 0 0 / 15%); */
    /* border-radius: 20px 0px 20px 20px; */
}
.uiuxdev-isoand-block .bd .row:nth-child(odd) .col_box .text {
    /* border-radius: 20px 20px 20px 0px; */
}

.uiuxdev-isoand-block .bd .col_box h3 {
    text-align: left;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    line-height: 42px;
    color: var(--bg-white-color);
    font-weight: 700;
}
.uiuxdev-isoand-block .bd .col_box p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--light-ass-color);
    font-weight: 400;
    text-align: left;
}

.uiuxdev-isoand-block .bd .col_box .figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 20px 20px 20px;
    overflow: hidden;
}
.uiuxdev-isoand-block .bd .row:nth-child(odd) .col_box .figure {
    border-radius: 20px 20px 0px 20px;
}

.uiuxdev-isoand-block .bd .row .col_box .figure img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: all 0.3s;
}
.uiuxdev-isoand-block .bd .row:hover .col_box .figure img {
    transform: scale(1.1);
}

/*-- uiuxdev-isoand-block --*/

/*-- uiuxdev-isoand-block --*/

.uiuxdev-application-block {
    margin: 0;
    padding: 60px 0;
    background: var(--white-color);
}

.uiuxdev-application-block .title {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
}
.uiuxdev-application-block .title span {
    font-size: var(--small-16);
    font-weight: bold;
    color: var(--orange-color);
}

.uiuxdev-application-block .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    text-align: center;
}

.uiuxdev-application-block .title p {
    margin: 0 auto;
    padding: 6px 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: #646464;
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.uiuxdev-application-block .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    margin: 0 auto;
    bottom: 13px;
    height: 6px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translate(-50%);
}

.uiuxdev-application-block .bd {
    margin: 0;
    padding: 0;
}
.uiuxdev-application-block .bd .row:nth-child(odd) {
    flex-direction: row-reverse;
}
.uiuxdev-application-block .bd .col_box {
    margin: 0;
    padding: 0;
    height: 400px;
    width: 100%;
}
.uiuxdev-application-block .bd .row:nth-child(odd) .col_box .text {
    background: #ffffff;
}
.uiuxdev-application-block .bd .col_box .text {
    margin: 0;
    padding: 20px 20px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: left;
    background: #ffffff;
    /* box-shadow: 0 0 8px 2px rgb(0 0 0 / 15%); */
    /* border-radius: 20px 0px 20px 20px; */
}
.uiuxdev-application-block .bd .row:nth-child(odd) .col_box .text {
    /* border-radius: 20px 20px 20px 0px; */
}

.uiuxdev-application-block .bd .col_box h3 {
    text-align: left;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    line-height: 42px;
    color: #05124c;
    font-weight: 700;
}
.uiuxdev-application-block .bd .col_box p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #05124c;
    font-weight: 400;
    text-align: left;
}

.uiuxdev-application-block .bd .col_box .figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 20px 20px 20px;
    overflow: hidden;
}

.uiuxdev-application-block .bd .row:nth-child(odd) .col_box .figure {
    border-radius: 20px 20px 0px 20px;
}

.uiuxdev-application-block .bd .col_box .figure img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    width: 100%;
    transition: all 0.3s;
}
.uiuxdev-application-block .bd .row:hover .col_box .figure img {
    transform: scale(1.1);
}

/*-- uiuxdev-isoand-block --*/

/*-- uiux-design-unique-sec --*/

.uiux-design-unique-sec {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.uiux-design-unique-sec .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.uiux-design-unique-sec .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
    width: 80%;
}

.uiux-design-unique-sec .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 65%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--light-ass-color);
    font-weight: 400;
    text-align: center;
}

.uiux-design-unique-sec .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.uiux-design-unique-sec .item_bdwrapper .row {
    padding-bottom: 15px;
    padding-top: 15px;
    transition: all 0.3s;
}

.uiux-design-unique-sec .item_bdwrapper .row:nth-child(odd) {
    flex-direction: row-reverse;
}

.uiux-design-unique-sec .item_bdwrapper .item-img {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.uiux-design-unique-sec .item_bdwrapper .item-img img {
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.uiux-design-unique-sec .item_bdwrapper .row:hover .item-img img {
    transform: scale(1.1);
}

.uiux-design-unique-sec .item_bdwrapper .item-text {
    margin: 0;
    padding: 0;
}

.uiux-design-unique-sec .item_bdwrapper .item-text .number {
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-weight: 300;
    line-height: 55px;
    color: #7a81a0;
}

.uiux-design-unique-sec .item_bdwrapper .item-text h3 {
    margin: 0;
    padding: 0;
    font-size: 30px;
    color: #ffffff;
    line-height: 34px;
    font-weight: 600;
}

.uiux-design-unique-sec .item_bdwrapper .item-text p {
    margin: 0;
    padding: 12px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #c2c2c2;
    font-weight: 400;
    width: 100%;
    text-align: left;
}

/*-- uiux-design-unique-sec --*/

/*--uiux-tools-main--*/

.uiux-tools-main {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.uiux-tools-main .title {
    width: 100%;
    text-align: center;
    margin-bottom: 44px;
    padding-bottom: 34px;
}

.uiux-tools-main .title h2 {
    margin: 0 auto;
    padding: 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    text-align: center;
}
.uiux-tools-main .title p {
    margin: 0 auto;
    padding: 6px 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: #646464;
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.uiux-tools-main .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    margin: 0 auto;
    bottom: 13px;
    height: 6px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translate(-50%);
}

.uiux-tools-main .uiux-tools-box {
    text-align: center;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ecedee;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 5px 10px;
    border-radius: 10px !important;
}

.uiux-tools-main .uiux-tools-box img {
    max-width: 100%;
    object-fit: contain;
}
.uiux-tools-main .mrb30 {
    margin-bottom: 30px;
}

/*--uiux-tools-main--*/

/*--responsive-design-sec--*/

.responsive-design-sec {
    margin: 0;
    padding: 60px 0 0 0;
    background: var(--bg-light-color);
}

.responsive-design-sec .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.responsive-design-sec .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.responsive-design-sec .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
}

.responsive-design-sec .title p {
    margin: 0 auto;
    padding: 0;
    width: 65%;
    text-align: center;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--light-ass-color);
    font-weight: 400;
}

.responsive-design-sec .item_bd {
    margin: 0;
    padding: 42px 0 24px 0;
}

.responsive-design-sec .item_bd .item {
    margin: 0;
    padding: 15px;
    background: #fff;
    height: 100%;
    border-radius: 10px;
}

.responsive-design-sec .item_bd .item .icon {
    width: 90px;
    height: 90px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    line-height: 75px;
    text-align: center;
    margin-top: -57px;
    background-color: #fff;
    float: left;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 4px solid #ffffff;
}

.responsive-design-sec .item_bd .item .icon img {
    max-width: 100%;
}

.responsive-design-sec .item_bd h4 {
    margin: 0;
    padding: 0 0 0 95px;
    font-size: 24px;
    color: #05124c;
    line-height: 34px;
    font-weight: 600;
}

.responsive-design-sec .item_bd p {
    margin: 0;
    padding: 12px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #05124c;
    font-weight: 400;
    width: 100%;
    text-align: left;
}

.responsive-design-sec .item_bd ul {
    margin: 0;
    padding: 0;
}
.responsive-design-sec .item_bd ul li {
    margin: 0;
    padding: 12px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #05124c;
    font-weight: 400;
    width: 100%;
    text-align: left;
    display: flex;
}

.responsive-design-sec .item_bd ul li .fa {
    margin: 0;
    padding: 5px 7px 0 0;
    font-size: 15px;
    color: #05124c;
}

.responsive-design-sec .item_bd .item:hover .icon {
    border-radius: 100%;
    line-height: 75px;
    text-align: center;
    margin-top: -57px;
    background-color: #ffffff;
    float: left;
    transition: all 0.3s ease-in-out;
    border: 4px solid #05124c;
}

.responsive-design-sec .image-figure {
    margin: 0;
    padding: 0;
}
.responsive-design-sec .image-figure img {
    width: 100%;
    object-fit: cover;
}

/*--responsive-design-sec--*/

/*-- responsive-design-functional --*/

.responsive-design-functional {
    margin: 0;
    padding: 60px 0;
    background: #fff;
}

.responsive-design-functional .title {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
}

.responsive-design-functional .title h2 {
    margin: 0 auto;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    width: 60%;
    text-align: center;
}

.responsive-design-functional .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.responsive-design-functional .item_bd {
    margin: 0;
    padding: 0;
}
/*.responsive-design-functional .item_bd .row {display:flex; flex-wrap:wrap;  }*/

.responsive-design-functional .item_bd .col-left {
    position: relative;
    z-index: 1;
}

.responsive-design-functional .item_bd .left_block {
    margin: 0;
    padding: 0;
}

.responsive-design-functional .item_bd .left_block img {
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.responsive-design-functional .item_bd .col-right {
    margin-right: 0 !important;
    margin-left: -9% !important;
}

.responsive-design-functional .item_bd .card-box {
    -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
    background: #fff;
    padding: 25px;
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    z-index: 1;
}

.responsive-design-functional .item_bd .card-box p {
    margin: 0 auto;
    padding: 0 0 6px 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.responsive-design-functional .item_bd .card-box h4 {
    margin: 0;
    padding: 14px 0 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 36px;
    color: var(--blue-dark-color);
    font-weight: 700;
}

.responsive-design-functional .item_bd .card-box ul {
    margin: 0;
    padding: 12px 0 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.responsive-design-functional .item_bd .card-box ul li {
    margin: 0 auto;
    padding: 0 0 6px 0;
    font-size: var(--font-size-16);
    line-height: 24px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
    width: 100%;
}

.responsive-design-functional .item_bd .card-box ul li i {
    padding-right: 4px;
}

/*-- responsive-design-functional --*/

/*-- landing-page-fascinates --*/
.landing-page-fascinates {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}
/*-- landing-page-fascinates --*/

/*----*/

/*faq_block*/

.faqinner_block {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.faqinner_block .title {
    margin: 0 0 35px 0;
    padding: 0px 0 28px 0;
}

.faqinner_block .title:before {
    position: absolute;
    left: 50%;
    width: 98px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}
.faqinner_block .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    text-align: center;
    font-weight: 700;
}

.faqinner_block .bd_block {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.faqinner_block .bd_block .accordion {
    margin: 0;
    padding: 0;
}

.faqinner_block .bd_block .accordion .accordion_row {
    margin: 0 0 17px;
    padding: 0;
    border: 0;
    background: transparent;
}

.faqinner_block .bd_block .accordion .accordion_row .accordion-header {
    margin: 0;
    padding: 16px 18px;
    background: #e8ecf3;
    border-radius: 4px;
}

.faqinner_block .bd_block .accordion .accordion_row .accordion-header .accordion-button {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    font-size: 18px;
    color: #05124c;
    font-weight: 600;
}

.faqinner_block .bd_block .accordion .accordion_row .accordion-collapse {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
}

.faqinner_block .bd_block .accordion .accordion_row .accordion-collapse .accordion-body {
    margin: 0;
    padding: 16px 5px;
    border: 0;
    box-shadow: none;
    border-top: 0;
}

.faqinner_block .bd_block .accordion .accordion_row .accordion-collapse .accordion-body p {
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
    line-height: 27px;
    color: var(--dark-ass-color);
    font-weight: 500;
    text-align: left;
    padding-bottom: 10px;
}

.faqinner_block .bd_block .accordion .accordion_row .accordion-collapse .accordion-body ul {
    margin: 0;
    padding: 4px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
.faqinner_block .bd_block .accordion .accordion_row .accordion-collapse .accordion-body ul li {
    margin: 0 auto;
    padding: 2px 0;
    font-size: var(--font-size-16);
    line-height: 22px;
    color: var(--dark-ass-color);
    font-weight: 400;
    padding-bottom: 7px;
    width: 100%;
    /* list-style: decimal; */
    list-style-type: none;
}

.faqinner_block .bd_block .accordion .accordion_row .accordion-header .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
    color: #fff;
    background: url(../media/faq/down-arrow.png) no-repeat left center;
    background-size: contain;
}

.faqinner_block .bd_block .accordion .accordion_row .accordion-header .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    background: url(../media/faq/down-arrow.png) no-repeat left center;
    background-size: contain;
}

/*//////////////////////*/

.faqinner_block .col_faq-wrapper {
    margin: 0;
    padding: 0;
}
.faqinner_block .col_faq-wrapper .item-lt-wrapper {
    margin: 0;
    padding: 0;
}

.faqinner_block .col_faq-wrapper .item-lt-wrapper .item_bd {
    margin: 0;
    padding: 72px 0 0 0;
}
.faqinner_block .col_faq-wrapper .item-lt-wrapper .item_bd:first-child {
    padding-top: 0;
}

.faqinner_block .col_faq-wrapper .item-lt-wrapper .item_bd h3 {
    margin: 0;
    padding: 0;
    padding-bottom: 6px;
    margin-bottom: 14px !important;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 36px;
    color: #05124c;
    font-weight: 700;
    width: 70%;
    display: inline-block;
}

.faqinner_block .col_faq-wrapper .item-rt-wrapper {
    margin: 0;
    padding: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 180px;
    padding: 0 15px;
}

.faqinner_block .col_faq-wrapper .item-rt-wrapper h5 {
    margin: 0;
    padding: 0 0 19px 0;
    font-size: 32px;
    line-height: 38px;
    color: #05124c;
}

.faqinner_block .col_faq-wrapper .item-rt-wrapper .item_bd {
    margin: 0;
    padding: 0;
}

.faqinner_block .col_faq-wrapper .item-rt-wrapper .item_bd ul {
    margin: 0;
    padding: 9px 0 0 0;
}

.faqinner_block .col_faq-wrapper .item-rt-wrapper .item_bd ul li {
    margin: 0;
    padding: 10px 0 10px 8px;
    display: block;
    border-left: 3px solid #000;
}

.faqinner_block .col_faq-wrapper .item-rt-wrapper .item_bd ul li a {
    margin: 0;
    padding: 0;
    display: block;
    box-shadow: none;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.faqinner_block .col_faq-wrapper .item-rt-wrapper .item_bd ul .faq_active-color.active a {
    color: var(--orange-light-color);
}

.faqinner_block .col_faq-wrapper .item-rt-wrapper .item_bd ul .faq_active-color.active {
    border-left: 3px solid #ff8805;
}

/*faqblock_home*/

/*-- cookies_wrapper --*/
.cookies_wrapper {
    margin: 0;
    padding: 0;
}

.cookies_wrapper .content-wrap {
    background-color: rgba(255, 255, 255, 0.9);
    color: rgb(255, 255, 255);
    margin: 0 0 26px 0;
    padding: 14px 20px;
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 650px;
    display: block;
    z-index: 99999999;
    flex-wrap: nowrap;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(5);
    border: 0.5px solid #d8d8d8;
}

.cookies_wrapper .content-wrap .bd-block {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookies_wrapper .content-wrap .bd-block .text {
    margin: 0;
    padding: 0;
}
.cookies_wrapper .content-wrap .bd-block .text h5 {
    margin: 0;
    padding: 0;
    font-size: 22px;
    color: #000;
    line-height: 26px;
    font-weight: 600;
}

.cookies_wrapper .content-wrap .bd-block .text p {
    margin: 0;
    padding: 5px 0;
    font-size: 15px;
    color: #2c2c2c;
    line-height: 22px;
    font-weight: 500;
}

.cookies_wrapper .content-wrap .bd-block .accept_reject-btn-block {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.cookies_wrapper .content-wrap .bd-block .accept_reject-btn-block .btn-wrap {
    margin: 0;
    padding: 0;
}

.cookies_wrapper .content-wrap .bd-block .accept_reject-btn-block .btn-wrap button {
    /* box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%); */
    border-radius: 50px;
    margin: 0 4px;
    padding: 10px 6px;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    transition: all 0.6s;
    font-weight: 500;
    background: #05124c;
    min-width: 128px;
    border: 0;
    border: 1px solid #05124c;
}
.cookies_wrapper .content-wrap .bd-block .accept_reject-btn-block .btn-wrap button:hover {
    background: #15287d;
    border: 1px solid #15287d;
}

.cookies_wrapper .cookies-policy {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 22px;
    color: #00518d;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid #00518d;
    display: inline-block;
    box-shadow: none;
}

/*.cookies_wrapper p {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    font-size: 15px;*/
/*    line-height: 26px;*/
/*    color: #fff;*/
/*    font-weight: 400;*/
/*    text-align: left;*/
/*}*/

/*.cookies_wrapper .cookies-policy:hover {*/
/*    color: #05124c;*/
/*    border: 0;*/
/*    font-weight: 500;*/
/*}*/

/*.cookies_wrapper .accept-close {*/
/*    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);*/
/*    border-radius: 50px;*/
/*    margin: 0;*/
/*    padding: 8px 20px 8px 20px;*/
/*    font-size: 16px;*/
/*    line-height: 22px;*/
/*    color: #fff;*/
/*    transition: all 0.6s;*/
/*    font-weight: 500;*/
/*    background: #05124c;*/
/*    width: 166px;*/
/*    border: 0;*/
/*}*/

/*.cookies_wrapper .accept-close:hover {*/
/*    color: #05124c;*/
/*    transition: all 0.6s;*/
/*    background: #fff;*/
/*}*/

/*-- cookies_wrapper --*/

/*-- crmdev-tailored --*/

.crmdev-tailored {
    margin: 0;
    padding: 60px 0;
    background: #ecedee;
}
.crmdev-tailored .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.crmdev-tailored .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    text-align: center;
}
.crmdev-tailored .title p {
    color: #000000;
    width: 86%;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    font-weight: 400;
    text-align: center;
}

.crmdev-tailored .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.crmdev-tailored .item_bd {
    margin: 0;
    padding: 0;
    /* background: rgb(4, 109, 156); */
    /* background: linear-gradient(90deg, rgba(4, 109, 156, 1) 3%, rgba(4, 103, 154, 1) 5%, rgba(35, 33, 34, 1) 55%, rgba(189, 92, 29, 1) 100%); */
    border-radius: 10px;
    background: rgb(3, 34, 169);
    background: linear-gradient(274deg, rgba(3, 34, 169, 1) 0%, rgba(5, 18, 76, 1) 84%);
}
.crmdev-tailored .item_bd .row {
    margin: 0;
    padding: 0;
}

.crmdev-tailored .item_bd .row .ma0:nth-child(1),
.crmdev-tailored .item_bd .row .ma0:nth-child(2),
.crmdev-tailored .item_bd .row .ma0:nth-child(3) {
    border-top: 0;
}

.crmdev-tailored .item_bd .row .ma0:nth-child(3n + 1) {
    border-left: 0;
}

.crmdev-tailored .item_bd .ma0 {
    margin: 0;
    padding: 0;
    border: 2px dashed #ddd;
    border-bottom: 0;
    border-right: 0;
}

.crmdev-tailored .item_bd .text {
    padding: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.crmdev-tailored .item_bd .text p {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-20);
    line-height: 36px;
    color: #fff;
    font-weight: 700;
}

/*-- crmdev-tailored --*/

/*-- customized-crm-block --*/

.customized-crm-block {
    margin: 0;
    padding: 60px 0;
    background: #fff;
}

.customized-crm-block .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.customized-crm-block .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    text-align: center;
}
.customized-crm-block .title p {
    color: #000000;
    width: 86%;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    font-weight: 400;
    text-align: center;
}

.customized-crm-block .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.customized-crm-block .item-img {
    position: sticky;
    top: 156px;
}

.customized-crm-block .item_text_box {
    margin: 10px 0;
    padding: 10px 12px;
    background: #ffffff;
    border-radius: 16px;
    /*border-top: 2px #f5851f solid;
    border-right: 2px #f5851f solid; 
    border-left: 2px #05124c solid;
    border-bottom: 2px #05124c solid; */
}
.customized-crm-block .item_text_box .top_sec {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.customized-crm-block .item_text_box .top_sec .icon_box {
    margin: 0;
    padding: 10px;
    width: 60px;
    height: 60px;
    background: #05124c;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customized-crm-block .item_text_box .top_sec .icon_box img {
    /* max-width: 100%; */
    height: 40px;
    object-fit: contain;
    filter: invert(1);
    width: 40px;
}
.customized-crm-block .item_text_box .top_sec h4 {
    margin: 0;
    padding: 0 0 0 10px;
    font-size: var(--font-size-18);
    color: var(--blue-dark-color);
    line-height: 22px;
    /* color: #fff; */
    transition: all 0.3s;
    width: 80%;
}

.customized-crm-block .item_text_box .text-box {
    margin: 0;
    padding: 10px 0 0 0;
}
.customized-crm-block .item_text_box .text-box p {
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    text-align: left;
    color: #424242;
}

/**/

.customized-crm-icon-color .item_text_box .top_sec .icon_box img {
    filter: invert(0) !important;
}

/*-- customized-crm-block --*/

/*-- crmdev_whychoose-sec -*/

.crmdev_whychoose-sec .our-clientsreviews {
    margin: 0;
    padding: 60px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.crmdev_whychoose-sec .our-clientsreviews p {
    margin: 0;
    padding: 0 15px 0 0;
    font-size: 39px;
    color: #e2e7ff;
    line-height: 36px;
    font-style: italic;
}
.crmdev_whychoose-sec .our-clientsreviews .animate_btn {
    margin-top: 0;
}

/*-- crmdev_whychoose-sec --*/

/*-- marking-seo-servic --*/

.marking-seo-servic {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.marking-seo-servic .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.marking-seo-servic .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.marking-seo-servic .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 86%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    text-align: center;
}

.marking-seo-servic .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.marking-seo-servic .item_bd {
    margin: 0;
    padding: 30px 0 0 0;
}
.marking-seo-servic .item_bd .item-left {
    margin: 0;
    padding: 0;
}
.marking-seo-servic .item_bd .item-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.marking-seo-servic .item_bd .item-right {
    margin: 0;
    padding: 0;
}
.marking-seo-servic .item_bd .item-right h2 {
    text-align: left;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 30px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    line-height: 42px;
    color: var(--bg-white-color);
    font-weight: 700;
}

.marking-seo-servic .item_bd .item-right p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: #c9c9c9;
    font-weight: 400;
    text-align: left;
}

/*-- marking-seo-servic --*/

/*--mvp-why-choose-dev-section--*/

.expert-seo-services-sec {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.expert-seo-services-sec .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.expert-seo-services-sec .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    text-align: center;
}

.expert-seo-services-sec .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 86%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #05124c;
    font-weight: 400;
    text-align: center;
}

.expert-seo-services-sec .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.expert-seo-services-sec .row .col_left {
    position: relative;
    z-index: 1;
}
.expert-seo-services-sec .row .col_right {
    margin-right: 0 !important;
    margin-left: -9% !important;
}

.expert-seo-services-sec .item-left {
    margin: 0;
    padding: 0;
}
.expert-seo-services-sec .item-left img {
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px !important;
}

.expert-seo-services-sec .item_right_box {
    padding: 40px 20px 40px 95px;
    background: #05124c;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.expert-seo-services-sec .item_right_box .item_box {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 25px 20px 15px;
    border-radius: 80px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    align-items: center;
    position: relative;
}

.expert-seo-services-sec .item_right_box .item_box .icon_box {
    width: 120px;
    height: 120px;
    -webkit-box-shadow: 0 0px 4px 5px rgb(255 255 255 / 18%);
    -moz-box-shadow: 0 0px 4px 5px rgb(255 255 255 / 18%);
    box-shadow: 0 0px 4px 5px rgb(255 255 255 / 18%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.expert-seo-services-sec .item_right_box .item_box .icon_box img {
    margin: auto;
}

.expert-seo-services-sec .item_right_box .item_box .text-box {
    width: calc(100% - 140px);
    margin-left: 20px;
    padding: 0;
    display: block;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.expert-seo-services-sec .item_right_box .item_box .text-box h6 {
    margin: 0;
    padding: 0 0 6px 0;
    font-size: 20px;
    color: #ffffff;
    line-height: 30px;
    font-weight: 600;
}
.expert-seo-services-sec .item_right_box .item_box .text-box p {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #bcbcbc;
    font-weight: 400;
    width: 100%;
    text-align: left;
}

.expert-seo-services-sec .item_right_box .item_box:hover .text-box h6 {
    padding: 0 0 6px 0;
    font-size: 20px;
    color: #05124c;
    line-height: 30px;
    font-weight: 600;
    transition: all all 0.3s;
}

.expert-seo-services-sec .item_right_box .item_box:hover .text-box p {
    color: #000000;
    transition: all all 0.3s;
}

.expert-seo-services-sec .item_right_box .item_box:hover .icon_box {
    -webkit-box-shadow: 0 0px 4px 5px rgb(5 18 76 / 35%);
    -moz-box-shadow: 0 0px 4px 5px rgb(5 18 76 / 35%);
    box-shadow: 0 0px 4px 5px rgb(5 18 76 / 35%);
    background-color: #05124c;
    transition: all all 0.3s;
}

.expert-seo-services-sec .item_right_box .item_box:hover .icon_box img {
    filter: brightness(0) invert(1);
    transition: all all 0.3s;
}

.expert-seo-services-sec .item_right_box .item_box:after {
    content: "";
    width: 100%;
    height: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100px;
    transition: all 0.7s;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.expert-seo-services-sec .item_right_box .item_box:hover:after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 100px;
    transition: all 0.7s;
    visibility: visible;
    opacity: 1;
    border-radius: 100px;
}

/*--mvp-why-choose-dev-section--*/

/*-- promoting-brand-block --*/

.promoting-brand-block {
    margin: 0;
    padding: 60px 0;
    background: #05124c;
}

.promoting-brand-block .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.promoting-brand-block .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.promoting-brand-block .title p {
    color: var(--ass-color);
    margin: 0 auto;
    width: 86%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #d8d8d8;
    font-weight: 400;
    text-align: center;
}

.promoting-brand-block .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.promoting-brand-block .item-row {
    margin: 0;
    padding: 0;
}

.promoting-brand-block .item-row .mbt-15 {
    margin-top: 30px;
}

.promoting-brand-block .item-row .item {
    border: 1px solid #ecedee;
    -webkit-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
    -moz-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
    box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
    border-radius: 10px;
    padding: 20px 20px 20px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.promoting-brand-block .item-row .item p {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.promoting-brand-block .item-row .item ul {
    margin: 0;
    padding: 25px 0 0 0;
}
.promoting-brand-block .item-row .item ul li {
    margin: 0 auto;
    padding: 0 0 11px 23px;
    font-size: var(--font-size-16);
    line-height: 24px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
    width: 100%;
    position: relative;
    display: block;
}

.promoting-brand-block .item-row .item ul li:after {
    content: "\f1b2";
    width: 20px;
    height: 20px;
    color: #404040;
    font-family: "FontAwesome";
    font-size: 16px;
    line-height: 23px;
    position: absolute;
    left: 0;
    top: 0;
}

.promoting-brand-block .item-row .item span {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 22px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

/*-- promoting-brand-block --*/

/*-- acqui-promoting-analytics --*/

.acqui-promoting-analytics {
    background: #faf6f6;
}

/*-- acqui-promoting-analytics --*/

/*//////////////////////////////////////////////*/

/*--howwe-worksection-wrapper--*/

.pricing_bdwrapper {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.pricing_bdwrapper .item_left {
    margin: 0;
    padding: 0;
}
.pricing_bdwrapper .item_left .item_bd .title {
    margin: 0;
    padding: 0 0 0px 0;
}
.pricing_bdwrapper .item_left .item_bd .title h2 {
    margin: 0;
    padding: 0;
    padding-bottom: 6px;
    margin-bottom: 14px !important;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    width: 70%;
    display: inline-block;
}

.pricing_bdwrapper .item_left .title:before {
    display: none;
}

.pricing_bdwrapper .item_left .item_bd {
    margin: 0;
    padding: 60px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.pricing_bdwrapper .item_left .item_bd:nth-child(1) {
    padding-top: 0;
}

.pricing_bdwrapper .item_left .item_bd .item_col {
    margin: 0;
    padding: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: self-start;
    border: 1px solid #cdcdcd;
    border-radius: 4px;
}

.pricing_bdwrapper .item_left .item_bd .item_col:hover {
    background: #fbfbfb;
}

.pricing_bdwrapper .item_left .item_bd .item_col .bd {
    margin: 0;
    padding: 20px 15px;
    border: 1px solid #d2d2d2;
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 17%); /* border-radius: 8px; */
    border-top: 5px solid #05124c;
    text-align: center;
    height: 100%;
}

.pricing_bdwrapper .item_left .item_bd .item_col .icon {
    margin: 0;
    padding: 0 0 16px 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing_bdwrapper .item_left .item_bd .item_col .icon img {
    width: 70px;
}

.pricing_bdwrapper .item_left .item_bd .item_col .text-bd {
    margin: 0;
    padding: 0;
    width: calc(100% - 120px);
}

.pricing_bdwrapper .item_left .item_bd .item_col .text-bd h4 {
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 42px;
    color: #000000;
    font-weight: 700;
}

.pricing_bdwrapper .item_left .item_bd .item_col .text-bd p {
    margin: 0 auto;
    padding: 0 0 9px 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: justify;
}

.pricing_bdwrapper .item_left .item_bd .item_col .text-bd ul {
    margin: 0;
    padding: 0;
    text-align: left;
}
.pricing_bdwrapper .item_left .item_bd .item_col .text-bd ul li {
    padding: 3px 0 3px 0;
    font-size: 16px;
    line-height: 32px;
    color: #05124c;
    font-weight: 300;
    text-align: left;
    display: inline-block;
    margin: 0 0 0 19px;
    position: relative;
}

.pricing_bdwrapper .item_left .item_bd .item_col .text-bd ul li a {
    padding: 3px 0 3px 0;
    font-size: 16px;
    line-height: 32px;
    color: #0059ad;
    font-weight: 500;
    text-align: left;
    display: inline-block;
    margin: 0;
    position: relative;
}

.pricing_bdwrapper .item_left .item_bd .item_col .text-bd ul li b {
    padding: 3px 0 3px 0;
    font-size: 16px;
    line-height: 32px;
    color: #05124c;
    font-weight: 600;
    text-align: left;
    display: inline-block;
    margin: 0;
    position: relative;
}

.pricing_bdwrapper .item_left .item_bd .item_col .text-bd ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #0026cf;
    position: absolute;
    left: -19px;
    top: 15px;
    border-radius: 50px;
    /* border: 1px solid #767676; */
}

.pricing_bdwrapper .item_left .item_bd .button_block {
    background: #00000000;
    box-shadow: 0 2px 6px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 20px 0 10px 0;
    padding: 8px 20px;
    font-size: 16px !important;
    color: #05124c !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    display: inline-block;
    border: 1px solid #05124cde;
    float: right;
}

.pricing_bdwrapper .item_left .item_bd .button_block .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.pricing_bdwrapper .item_left .item_bd .button_block:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}
.pricing_bdwrapper .item_left .item_bd .button_block:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    padding: 8px 44px 8px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
    position: relative;
    border: 1px solid #fbfbfb;
}

/*
.onboarding_bdwrapper .item_left .item_bd .button_block:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    padding: 8px 15px 8px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
    position: relative;
    border: 1px solid #fff;
}*/

.pricing_bdwrapper .item_right {
    margin: 0;
    padding: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 180px;
    padding: 0 15px;
}

.pricing_bdwrapper .item_right h5 {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 24px;
    line-height: 30px;
    color: #05124c;
}
.pricing_bdwrapper .item_right .item_list {
    margin: 0;
    padding: 0;
}
.pricing_bdwrapper .item_right .item_list ul {
    margin: 0;
    padding: 9px 0 0 0;
}
.pricing_bdwrapper .item_right .item_list ul li {
    margin: 0;
    padding: 10px 0 10px 8px;
    display: block;
    border-left: 3px solid #000;
}

.pricing_bdwrapper .item_right .item_list ul li.howwework-active-color.active {
    border-left: 3px solid #ff8805;
}

.pricing_bdwrapper .item_right .item_list ul li a {
    margin: 0;
    padding: 0;
    display: block;
    box-shadow: none;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.pricing_bdwrapper .item_right .item_list ul .howwework-active-color.active a {
    color: var(--orange-light-color);
}

/*--.pricing_bdwrapper--*/

/*--onboarding_bdwrapper--*/

.onboarding_bdwrapper {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.onboarding_bdwrapper .item_left {
    margin: 0;
    padding: 0;
}
.onboarding_bdwrapper .item_left .item_bd .title {
    margin: 0;
    padding: 0 0 0px 0;
}
.onboarding_bdwrapper .item_left .item_bd .title h2 {
    margin: 0;
    padding: 0;
    padding-bottom: 6px;
    margin-bottom: 14px !important;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
    line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    width: 70%;
    display: inline-block;
}

.onboarding_bdwrapper .item_left .title:before {
    display: none;
}

.onboarding_bdwrapper .item_left .item_bd {
    margin: 0;
    padding: 60px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.onboarding_bdwrapper .item_left .item_bd:nth-child(1) {
    padding-top: 0;
}

.onboarding_bdwrapper .item_left .item_bd .item_col {
    margin: 6px 0;
    padding: 0;
    background: #f8f8f8;
    height: 100%;
    border-radius: 10px;
}

.onboarding_bdwrapper .item_left .item_bd h3 {
    margin: 0;
    padding: 0 0 12px 0;
    font-size: 30px;
    color: #000;
    line-height: 36px;
    font-weight: 600;
}

.onboarding_bdwrapper .item_left .item_bd .item_col:hover {
    background: #fbfbfb;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .bd {
    margin: 0;
    padding: 20px 15px;
    border: 1px solid #d2d2d2;
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 17%); /* border-radius: 8px; */
    border-top: 5px solid #05124c;
    text-align: center;
    height: 100%;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .icon {
    margin: 0;
    padding: 0 0 16px 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.onboarding_bdwrapper .item_left .item_bd .item_col .icon img {
    width: 70px;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .text-bd {
    margin: 0;
    padding: 0;
    width: 100%;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .text-bd h4 {
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 42px;
    color: #000000;
    font-weight: 700;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .text-bd p {
    margin: 0 auto;
    padding: 0 0 9px 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: justify;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .text-bd ul {
    margin: 0;
    padding: 0;
    text-align: left;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .text-bd ul li {
    padding: 3px 0 3px 0;
    font-size: 16px;
    line-height: 32px;
    color: #000;
    font-weight: 300;
    text-align: left;
    display: block;
    margin: 0 0 0 19px;
    position: relative;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .text-bd ul li a {
    padding: 3px 0 3px 0;
    font-size: 16px;
    line-height: 32px;
    color: #0059ad;
    font-weight: 400;
    text-align: left;
    display: inline-block;
    margin: 0;
    position: relative;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .text-bd ul li b {
    padding: 3px 0 3px 0;
    font-size: 16px;
    line-height: 32px;
    color: #05124c;
    font-weight: 600;
    text-align: left;
    display: inline-block;
    margin: 0;
    position: relative;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .text-bd ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    background: #0026cf;
    position: absolute;
    left: -19px;
    top: 15px;
    border-radius: 50px;
    /* border: 1px solid #767676; */
}

.onboarding_bdwrapper .item_left .item_bd .button_block {
    background: #00000000;
    box-shadow: 0 2px 6px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 20px 0 10px 0;
    padding: 8px 20px;
    font-size: 16px !important;
    color: #05124c !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    display: inline-block;
    border: 1px solid #05124cde;
    float: right;
}

.onboarding_bdwrapper .item_left .item_bd .button_block .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.onboarding_bdwrapper .item_left .item_bd .button_block:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}
.onboarding_bdwrapper .item_left .item_bd .button_block:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    padding: 8px 44px 8px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
    position: relative;
    border: 1px solid #fbfbfb;
}

.onboarding_bdwrapper .item_right {
    margin: 0;
    padding: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 180px;
    padding: 0 15px;
}

.onboarding_bdwrapper .item_right h5 {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 24px;
    line-height: 30px;
    color: #05124c;
}
.onboarding_bdwrapper .item_right .item_list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.onboarding_bdwrapper .item_right .item_list ul {
    margin: 0;
    padding: 9px 0 0 0;
}
.onboarding_bdwrapper .item_right .item_list ul li {
    margin: 0;
    padding: 10px 0 10px 8px;
    display: block;
    border-left: 3px solid #000;
}

.onboarding_bdwrapper .item_right .item_list ul li.howwework-active-color.active {
    border-left: 3px solid #ff8805;
}

.onboarding_bdwrapper .item_right .item_list ul li a {
    margin: 0;
    padding: 0;
    display: block;
    box-shadow: none;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.onboarding_bdwrapper .item_right .item_list ul .howwework-active-color.active a {
    color: var(--orange-light-color);
}

/*----onboarding-new----*/

.onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner {
    max-width: 100%;
    overflow-x: auto;
    padding-top: 18px;
    overflow-y: hidden;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner .ct-table {
    /*border: 3px solid #f0f9ff;*/
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner .ct-table .ct-tr .ct-td:first-child,
.onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner .ct-table .ct-tr .ct-th:first-child {
    background-color: var(--bg-light-color);
}

.onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner .ct-table .ct-tr .ct-td:first-child,
.onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner .ct-table .ct-tr .ct-th:first-child {
    vertical-align: middle;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner .ct-table .ct-tr .ct-td,
.onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner .ct-table .ct-tr .ct-th {
    background-clip: padding-box;
    background-color: #fff;
    /*border-bottom: 1px solid #ceeafd;*/
    /*border-right: 3px solid #f0f9ff;*/
    padding: 0;
    position: relative;
    vertical-align: top;
    border: 0;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner .ct-table .ct-criteria-content {
    color: #fff;
    font-size: 14px;
    line-height: 1.71;
    padding: 8px 8px 8px 16px;
    text-align: left;
    vertical-align: middle;
}

.onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner .ct-table .ct-tr .ct-td:after,
.onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner .ct-table .ct-tr .ct-th:after {
    background-color: #ceeafd;
    bottom: -1px;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    right: -3px;
    width: 3px;
}

.onboarding_bdwrapper .item_left .ct-th-content p {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: normal !important;
    margin-bottom: 0 !important;
}

.onboarding_bdwrapper .item_left .ct-th-content {
    color: #222;
    font-size: 20px;
    font-weight: 700;
    height: 100%;
    line-height: normal;
    padding: 25px 16px;
    text-align: center;
}

.onboarding_bdwrapper .item_left .ct-th-content .ct-signature p {
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.08 !important;
    text-align: center;
}

.onboarding_bdwrapper .item_left .ct-th-content .ct-signature {
    background-color: #005eb8;
    bottom: 100%;
    left: 0;
    max-height: 57px;
    overflow-y: hidden;
    padding: 2px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.onboarding_bdwrapper .item_left .ct-td-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    padding: 14px 10px 14px 12px;
}
.onboarding_bdwrapper .item_left .ct-td-content-value p:last-child {
    margin-bottom: 0 !important;
}
.onboarding_bdwrapper .item_left .ct-td-content-value p {
    color: #222 !important;
    font-size: 14px !important;
    line-height: 1.43 !important;
    margin-bottom: 10px !important;
}

.onboarding_bdwrapper .item_left .ct-td-content-value {
    color: #222;
    font-size: 14px;
    line-height: 1.43;
    text-align: center;
}

.onboarding_bdwrapper .item_left .ct-td-content-value p {
    color: #222 !important;
    font-size: 14px !important;
    line-height: 1.43 !important;
    margin-bottom: 10px !important;
}
.onboarding_bdwrapper .item_left .ct-td-content-value img:last-child {
    margin-bottom: 0;
}

.onboarding_bdwrapper .item_left .ct-td-content-value img {
    display: inline-block;
    margin-bottom: 8px;
    vertical-align: middle;
}
.ct-table .ct-tr .ct-td,
.ct-table .ct-tr .ct-th {
    background-clip: padding-box;
    background-color: #fff;
    border-bottom: 1px solid #ceeafd;
    border-right: 3px solid #f0f9ff;
    padding: 0;
    position: relative;
    vertical-align: top;
}

/*----onboarding-new----*/

/*--onboarding_bdwrapper--*/

/*-- industris-health-sec --*/

.industris-health-sec {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.industris-health-sec .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.industris-health-sec .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.industris-health-sec .title h2 {
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
}

.industris-health-sec .title p {
    width: 65%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--light-ass-color);
    font-weight: 400;
    text-align: center;
}

.industris-health-sec .item-bd {
    margin: 0;
    padding: 0;
}
.industris-health-sec .item-bd .item-box {
    margin: 0;
    padding: 0;
    text-align: center;
    border-right: 1px solid #999;
}

.industris-health-sec .item-bd .col-item:last-child .item-box {
    border-right: 0;
}

.industris-health-sec .item-bd .item-box h4 {
    margin: 0;
    padding: 0px 0 15px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 42px;
    color: var(--white-color);
    font-weight: 700;
}

.industris-health-sec .item-bd .item-box p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 29px;
    color: var(--white-color);
    font-weight: 300;
    text-transform: capitalize;
}

/*-- industris-health-sec --*/

/*-- industris-customers-sec --*/

.industris-customers-sec {
    margin: 0;
    padding: 60px 0;
    background: #fff;
}

.industris-customers-sec .title {
    text-align: center;
    padding-bottom: 23px;
    margin-bottom: 45px;
}

.industris-customers-sec .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.industris-customers-sec .title h2 {
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #041043;
    font-weight: 700;
    text-align: center;
}

.industris-customers-sec .title p {
    width: 65%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--light-ass-color);
    font-weight: 400;
    text-align: center;
}

.industris-customers-sec .item-bd {
    margin: 0;
    padding: 0;
}

.industris-customers-sec .item-bd .col-item {
    margin-bottom: 30px;
}

.industris-customers-sec .item-bd .item-box {
    margin: 0;
    padding: 30px 20px;
    box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.industris-customers-sec .item-bd .item-box .icon {
    margin: 0;
    padding: 0;
    width: 90px;
    height: 90px;
}

.industris-customers-sec .item-bd .item-box .icon img {
    max-width: 100%;
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.industris-customers-sec .item-bd .item-box p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    color: #000;
    line-height: 26px;
    text-align: center;
    font-weight: 500;
}

/*-- industris-customers-sec --*/

/*-- industris-companies-sec --*/

.industris-companies-sec {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.industris-companies-sec .title {
    text-align: center;
    padding-bottom: 23px;
    margin-bottom: 45px;
}

.industris-companies-sec .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.industris-companies-sec .title h2 {
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.industris-companies-sec .item-bd {
    margin: 0;
    padding: 0;
}
.industris-companies-sec .item-bd .brands_logo {
    margin: 0;
    padding: 0;
    background: transparent;
}

.industris-companies-sec .item-bd .item {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    margin: 6px 10px 6px 6px;
    /* box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.5); */
    border-radius: 4px;
    background: #fff;
}
.industris-companies-sec .item-bd .item img {
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s;
}

/*-- industris-companies-sec --*/

/*-- industris-why-choose-sec --*/

/*.industris-why-choose-sec {*/
/*    margin: 0;*/
/*    padding: 60px 0;*/
/*    background: #fff;*/
/*}*/

.industris-why-choose-sec {
    margin: 0;
    padding: 60px 0;
    background: #05124c;
}

.industris-why-choose-sec .title {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.industris-why-choose-sec .title:before {
    position: absolute;
    left: 0;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(255 255 255) 0%, rgb(110 141 255) 25%, rgb(162 193 255) 50%, rgb(154 213 255) 75%, rgb(203 213 255) 100%);
}

.industris-why-choose-sec .title h2 {
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #fff;
    font-weight: 700;
    text-align: left;
}

.industris-why-choose-sec .text-bd {
    margin: 0;
    padding: 0;
}
.industris-why-choose-sec .text-bd ul {
    margin: 0;
    padding: 0;
}

.industris-why-choose-sec .text-bd ul li {
    margin: 0 auto;
    padding: 6px 0px 0 18px;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: #f2f2f2;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    display: block;
}

.industris-why-choose-sec .text-bd ul li:before {
    background-color: #fff;
    content: "";
    display: block;
    height: 10px;
    margin-left: -18px;
    transform: translateY(14px);
    width: 10px;
    border-radius: 50px;
    margin-top: 0;
    position: relative;
    top: 4px;
    left: 0;
}

.industris-why-choose-sec .text-bd ul li a {
    margin: 0 auto;
    padding: 0 0 0 0px;
    font-size: var(--font-size-18);
    line-height: 26px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    border-bottom: 1px solid var(--dark-ass-color);
}

.industris-why-choose-sec .text-bd ul li b {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 26px;
    color: #a5d2ff;
}
.industris-why-choose-sec .text-bd ul li strong {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 26px;
    color: #a5d2ff;
}

/*-- industris-why-choose-sec --*/

/*-- industris-healthcare --*/

.industris-healthcare {
    margin: 0;
    padding: 60px 0;
    background: #fff;
}

.industris-healthcare .meet-the-team-content .title {
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
}

.industris-healthcare .meet-the-team-content .title h2 {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 75%;
}

.industris-healthcare .meet-the-team-content p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.industris-healthcare .meet-the-team-image {
    margin: 0;
    padding: 0;
}

.industris-healthcare .meet-the-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/*-- industris-healthcare --*/

/*-- industris-it-solutions --*/

.industris-it-solutions {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.industris-it-solutions .title {
    text-align: center;
    padding-bottom: 23px;
    margin-bottom: 45px;
}

.industris-it-solutions .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.industris-it-solutions .title h2 {
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #041043;
    font-weight: 700;
    text-align: center;
}

.industris-it-solutions .title p {
    width: 65%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #041043;
    font-weight: 400;
    text-align: center;
}

.industris-it-solutions .item-bd {
    margin: 0;
    padding: 15px 0 0 0;
}

.industris-it-solutions .item-bd .col-mb {
    margin-bottom: 30px;
}

.industris-it-solutions .item-bd .item-box {
    margin: 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s;
}

.industris-it-solutions .item-bd .item-box:hover {
    background: #fff;
}

.industris-it-solutions .item-bd .item-box .icon {
    margin: 0;
    padding: 24px 0 24px 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.industris-it-solutions .item-bd .item-box .icon img {
    max-width: 100%;
    width: 60px;
    object-fit: contain;
}
.industris-it-solutions .item-bd .item-box h4 {
    margin: 0;
    padding: 8px 0 10px 0;
    font-size: 20px;
    color: #000;
    line-height: 30px;
    font-weight: 600;
}
.industris-it-solutions .item-bd .item-box h4 a {
    margin: 0;
    padding: 0;
    color: #000;
    font-weight: 600;
}
.industris-it-solutions .item-bd .item-box ul {
    margin: 0;
    padding: 0;
}
.industris-it-solutions .item-bd .item-box ul li {
    padding: 0;
    padding: 6px 0px 0 18px;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    display: block;
}

.industris-it-solutions .item-bd .item-box ul li:before {
    background-color: #005eb8;
    content: "";
    display: block;
    height: 10px;
    margin-left: -18px;
    transform: translateY(14px);
    width: 10px;
    border-radius: 50px;
    margin-top: 0;
    position: relative;
    top: 4px;
    left: 0;
}

/*-- industris-it-solutions --*/

/*-- bringing-innovative-block --*/

.bringing-innovative-block {
    margin: 0;
    padding: 60px 0;
    background: var(--white-color);
}

.bringing-innovative-block .title {
    padding-bottom: 25px;
    margin-bottom: 60px;
}

.bringing-innovative-block .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    text-align: center;
    font-weight: 700;
}
.bringing-innovative-block .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.bringing-innovative-block #technologies_tabs {
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.bringing-innovative-block #technologies_tabs li {
    margin: 0;
    padding: 0;
}

.bringing-innovative-block #technologies_tabs li a {
    padding: 10px 30px;
    background: var(--bg-light-color);
    border-radius: 50px;
    margin: 0 5px;
    color: #ffffff;
    font-weight: 500;
}
.bringing-innovative-block #technologies_tabs li a:hover,
#technologies_tabs li a.active {
    color: #ffffff;
}

.bringing-innovative-block #technologies_tabs li a.active {
    background: var(--orange-color);
}

.bringing-innovative-block #technologies_tabs li:last-child {
    border-right: 0;
}
.bringing-innovative-block .technologies_icons li {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(221, 223, 225, 0.5);
    border-radius: 10px;
    margin: 5px;
    transition: all 0.5s ease;
}
.bringing-innovative-block .technologies_icons li:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.bringing-innovative-block .technologies_icons li img {
    margin: 0 auto;
}

.bringing-innovative-block .tab-content {
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 17px -5px rgba(0, 0, 0, 0.5);
}
.bringing-innovative-block .tab-content .text-bd {
    margin: 0;
    padding: 0;
}
.bringing-innovative-block .tab-content .text-bd p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 36px;
    color: #000000;
    font-weight: 500;
    text-align: left;
}

.bringing-innovative-block .tab-content .text-bd .list-block {
    margin: 0;
    padding: 24px 0 28px 0;
}
.bringing-innovative-block .tab-content .text-bd .list-block h5 {
    margin: 0;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-24);
    line-height: 30px;
    color: #000000;
    font-weight: 700;
}

.bringing-innovative-block .tab-content .text-bd .list-block ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.bringing-innovative-block .tab-content .text-bd .list-block ul li {
    padding: 0px 10px 6px 18px;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    display: block;
    width: 50%;
}

.bringing-innovative-block .tab-content .text-bd .list-block ul li a {
    color: var(--dark-ass-color);
    border-bottom: 1px solid var(--dark-ass-color);
}

.bringing-innovative-block .tab-content .text-bd .list-block ul li:before {
    background-color: var(--dark-ass-color);
    content: "";
    display: block;
    height: 10px;
    margin-left: -18px;
    transform: translateY(14px);
    width: 10px;
    border-radius: 50px;
    margin-top: 0;
    position: relative;
    top: 4px;
    left: 0;
}

/*--bringing-innovative-block--*/

/*-- industris-envisage-benefits --*/

.industris-envisage-benefits {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.industris-envisage-benefits .title {
    padding-bottom: 25px;
    margin-bottom: 60px;
}

.industris-envisage-benefits .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    text-align: center;
    font-weight: 700;
}
.industris-envisage-benefits .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.industris-envisage-benefits .title p {
    font-size: 16px;
    color: #000;
    line-height: 25px;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    padding: 13px 0 0 0;
}

.industris-envisage-benefits .item-bd {
    margin: 0;
    padding: 0;
}

.industris-envisage-benefits .item-bd .col-mb {
    margin-bottom: 30px;
}

.industris-envisage-benefits .item-bd .col-box {
    margin: 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s;
}

/*.industris-envisage-benefits .item-bd .col-box .icon {*/
/*    margin: 0 auto;*/
/*    padding: 24px 0 24px 0;*/
/*    width: 80px;*/
/*    height: 80px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

.industris-envisage-benefits .item-bd .col-box .icon {
    margin: 0;
    padding: 20px 12px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.industris-envisage-benefits .item-bd .col-box .icon img {
    max-width: 100%;
    width: 60px;
    object-fit: contain;
}

.industris-envisage-benefits .item-bd .col-box .text-box {
    margin: 0;
    padding: 0;
}
.industris-envisage-benefits .item-bd .col-box .text-box h5 {
    margin: 0;
    padding: 8px 0 10px 0;
    font-size: 20px;
    color: #000;
    line-height: 30px;
    font-weight: 600;
}
.industris-envisage-benefits .item-bd .col-box .text-box p {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    display: block;
}

/*-- industris-envisage-benefits --*/

/*-- employee-testimonials --*/

.employee-testimonials {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.employee-testimonials .top-block {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.employee-testimonials .top-block .title {
    margin: 0 0 14px 0;
    padding: 0 0 8px 0;
}
.employee-testimonials .top-block .title h3 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    line-height: 46px;
    color: #fff;
    font-weight: 700;
    text-align: left;
}

.employee-testimonials .top-block .right-block {
    margin: 0;
    padding: 0;
    display: flex;
}
.employee-testimonials .top-block .right-block .bg-card {
    margin: 5px;
    padding: 8px 4px;
    width: 274px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 0px 5px 0px rgb(255 255 255 / 50%);
}

.employee-testimonials .top-block .right-block .bg-card img {
    width: 120px !important;
}

.employee-testimonials .top-block .right-block .bg-card.box_second img {
    width: 189px !important;
}

.employee-testimonials .top-block .right-block .bg-card .rating {
    margin: 0;
    padding: 3px 0;
}
.employee-testimonials .top-block .right-block .bg-card .rating .fa {
    font-size: 15px;
    color: #f5851f;
}

.employee-testimonials .top-block .right-block .bg-card .text-success {
    margin: 0;
    padding: 0 0 1px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.employee-testimonials .top-block .right-block .bg-cardspan {
    margin: 0;
    padding: 0;
}

.employee-testimonials .top-block .right-block .bg-card span {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 14px;
    color: #999;
    line-height: 20px;
}

.employee-testimonials .botom_slider-bd {
    margin: 0;
    padding: 40px 0 0 0;
}
.employee-testimonials .botom_slider-bd .item {
    height: 510px;
    margin: 0 10px;
    padding: 20px;
    background: #05124c;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #7f7f7f;
}

.employee-testimonials .botom_slider-bd .item span {
    margin: 0;
    padding: 0;
    font-size: 36px;
    line-height: 42px;
    color: #ffffff;
}

.employee-testimonials .botom_slider-bd .item h3 {
    margin: 0;
    padding: 12px 0;
    font-size: 22px;
    line-height: 26px;
    color: #fff;
}

.employee-testimonials .botom_slider-bd .item p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 25px;
    color: #dadada;
}

.employee-testimonials .botom_slider-bd .item .rating {
    margin: 0;
    padding: 10px 0;
}
.employee-testimonials .botom_slider-bd .item .rating .fa {
    font-size: 16px;
    padding: 0 2px;
    color: #ff7a00;
}

.employee-testimonials .botom_slider-bd .item .content-writer {
    margin: 0;
    padding: 0;
}
.employee-testimonials .botom_slider-bd .item .content-writer img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50px;
    box-shadow: 0 0px 5px 1px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}
.employee-testimonials .botom_slider-bd .item .content-writer h5 {
    margin: 0;
    padding: 10px 0 5px 0;
    font-size: 16px;
    color: #fff;
    line-height: 22px;
}
.employee-testimonials .botom_slider-bd .item .content-writer p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 21px;
    color: #dadada;
}

/*-- employee-testimonials --*/

.employee-testimonials .botom_slider-bd .item.slick-center {
    background: #193b68;
    color: #fff;
    box-shadow: 0 1px 10px rgb(25 59 104 / 40%);
    background: #fff;
}

.employee-testimonials .botom_slider-bd .item.slick-center span {
    margin: 0;
    padding: 0;
    font-size: 36px;
    line-height: 42px;
    color: #ff7a00;
}

.employee-testimonials .botom_slider-bd .item.slick-center h3 {
    color: #000;
}

.employee-testimonials .botom_slider-bd .item.slick-center p {
    color: #000;
}

.employee-testimonials .botom_slider-bd .item.slick-center .content-writer h5 {
    color: #000;
}

/*--employee-testimonials--*/

/*--erp-custom-built-sec--*/

.erp-custom-built-sec {
    margin: 0;
    padding: 60px 0;
    background: #05124c;
    position: relative;
}

.erp-custom-built-sec .title {
    margin: 0 0 36px 0;
    padding: 0 0 26px 0;
    text-align: center;
}

.erp-custom-built-sec .title::before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    bottom: 0;
}

.erp-custom-built-sec .title h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #ffffff;
    font-weight: 700;
    width: 70%;
    text-align: center;
}

.erp-custom-built-sec .title p {
    color: #fff;
    width: 86%;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    font-weight: 400;
    text-align: center;
}

.erp-custom-built-sec .item-bd {
    margin: 0;
    padding: 20px 0 0 0;
}

.erp-custom-built-sec .item-bd .img_block {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    bottom: 0;
}
.erp-custom-built-sec .item-bd .img_block img {
    max-width: 100%;
    object-fit: contain;
    width: 36%;
}

.erp-custom-built-sec .item-bd .text-block {
    margin: 0;
    padding: 0;
}

.erp-custom-built-sec .item-bd .text-block ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
}

.erp-custom-built-sec .item-bd .text-block ul li {
    width: 50%;
    margin: 0;
    padding: 0 27px 10px 21px;
    position: relative;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
}

.erp-custom-built-sec .item-bd .text-block ul li span {
    margin: 0;
    padding: 0 0 6px 0;
    display: block;
    font-size: 20px;
    line-height: 27px;
    color: #fff;
    font-weight: 500;
    text-align: left;
}

.erp-custom-built-sec .item-bd .text-block ul li p {
    margin: 0;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 27px;
    color: #d6d6d6;
    font-weight: 400;
    text-align: left;
}

.erp-custom-built-sec .item-bd .text-block ul li::after {
    content: "\f058";
    width: auto;
    height: auto;
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    color: #ffffff;
    font-family: "FontAwesome";
    font-weight: 300;
}

/*--erp-custom-built-sec--*/

/*-- erp-Why-choose-custom --*/

.erp-Why-choose-custom {
    margin: 0;
    padding: 60px 0;
    background: #fff;
}

.erp-Why-choose-custom .title h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
}

.erp-Why-choose-custom .left-text {
    margin: 0;
    padding: 15px 0 0 0;
}

.erp-Why-choose-custom .left-text p {
    padding: 0 0 6px 0;
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    text-align: left;
}

.erp-Why-choose-custom .rt_block {
    margin: 0;
    padding: 0;
}

/*.erp-Why-choose-custom .rt_block img {*/
/*    max-width: 100%;*/
/*    position: relative;*/
/*    right: -60px;*/
/*    border-radius: 10px;*/
/*}*/

.erp-Why-choose-custom .rt_block img {
    max-width: 100%;
    position: relative;
    right: -60px;
    border-radius: 10px;
    box-shadow: 0 0px 34px -13px rgba(0, 15, 49, 0.23);
}

.erp-Why-choose-custom .rt_block .right-text {
    margin: -56px 0 0 0;
    padding: 0;
    background: #05124c;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    top: 0;
}

.erp-Why-choose-custom .rt_block .right-text p {
    margin: 0;
    padding: 0 0;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    display: block;
    text-decoration: none;
    position: relative;
}

.erp-Why-choose-custom .rt_block .right-text h4 {
    margin: 0;
    padding: 0;
    font-family: montserrat, sans-serif;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    font-weight: 700;
}

.erp-Why-choose-custom .rt_block .right-text ul {
    margin: 0;
    padding: 15px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}

.erp-Why-choose-custom .rt_block .right-text ul li {
    margin: 0;
    padding: 0 0 6px 16px;
    font-size: 16px;
    line-height: 30px;
    color: #d6d6d6;
    font-weight: 500;
    /* display: block; */
    width: 50%;
    text-decoration: none;
    position: relative;
}

.erp-Why-choose-custom .rt_block .right-text ul li::after {
    content: "\f192";
    width: auto;
    height: auto;
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    color: #cecece;
    font-family: "FontAwesome";
    font-weight: 300;
}

/*-- erp-Why-choose-custom --*/

/*--erp-industry-specific--*/

.erp-industry-specific {
    margin: 0;
    padding: 60px 0;
    background: var(--bg-light-color);
}

.erp-industry-specific .top-block {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
}
.erp-industry-specific .top-block h3 {
    margin: 0;
    padding: 0;
    width: 50%;
    font-size: 40px;
    line-height: 48px;
    color: #fff;
    font-weight: 800;
}

.erp-industry-specific .top-block p {
    margin: 0;
    padding: 0 0 0 20px;
    width: 50%;
    font-size: 16px;
    line-height: 27px;
    color: #fff;
    font-weight: 500;
    font-style: italic;
}

.erp-industry-specific .technologies_tabs {
    margin: 0 auto;
    padding: 30px 0 0 0;
    width: 75%;
}

.erp-industry-specific .technologies_tabs .top-block {
    margin: 0;
    padding: 20px 0;
}
.erp-industry-specific .technologies_tabs .top-block ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border: 0;
}
.erp-industry-specific .technologies_tabs .top-block ul li {
    margin: 0;
    padding: 0;
}
.erp-industry-specific .technologies_tabs .top-block ul li a {
    border-radius: 30px;
    padding: 10px 35px;
    background-color: #dfe5f3;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    margin-right: 10px;
    margin-bottom: 15px;
    display: inline-block;
    text-align: center;
}

.erp-industry-specific .technologies_tabs .tab-content .text-bd {
    margin: 0;
    padding: 15px;
}
.erp-industry-specific .technologies_tabs .tab-content .text-bd p {
    color: var(--ass-color);
    margin: 0 auto;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    text-align: center;
}

/*--erp-industry-specific--*/

/*erp-software-deve-block*/

.erp-software-deve-block .row .item_col:last-child .web-why-choose-us-inner-box {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: 0;
}

.erp-software-deve-block .web-why-choose-us-inner-box .web-why-choose-inner-icon img {
    max-width: 100%;
    filter: invert(100%) !important;
    width: 42px;
}

.erp-software-deve-block .web-why-choose-us-inner-box:hover .web-why-choose-inner-icon img {
    max-width: 100%;
    filter: invert(0%) !important;
}

.erp-software-deve-block .item_col .web-why-choose-us-inner-box {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.erp-software-deve-block .web-why-choose-us-inner-box h5 {
    padding-left: 0;
    text-align: center;
    font-size: 21px;
}

.erp-software-deve-block .web-why-choose-us-inner-box p {
    padding-left: 0;
    text-align: center;
}

.erp-software-deve-block .row .item_col:last-child .web-why-choose-us-inner-box span {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    text-align: center;
}

.erp-software-deve-block .row .item_col:last-child .web-why-choose-us-inner-box:hover span {
    font-size: 18px;
    color: #000;
}

.erp-software-deve-block .web-why-choose-us-inner-box {
    background-color: #05124c;
}

.erp-software-deve-block .web-why-choose-us-inner-box .web-why-choose-inner-icon {
    background: #05124c;
    border: 4px solid #fff;
    box-shadow: none;
}

.erp-software-deve-block .web-why-choose-us-inner-box h5 {
    color: #fff;
}

.erp-software-deve-block .web-why-choose-us-inner-box p {
    color: #fff;
}

.erp-software-deve-block .web-why-choose-us-inner-box:hover {
    background-color: var(--light-ass-color);
}

.erp-software-deve-block .web-why-choose-us-inner-box:hover .web-why-choose-inner-icon {
    background-color: #f8f8f8;
}

.erp-software-deve-block .web-why-choose-us-inner-box:hover h5 {
    padding-left: 0;
    text-align: center;
    font-size: 21px;
    color: #05124c;
}

.erp-software-deve-block .web-why-choose-us-inner-box:hover p {
    font-size: var(--font-size-16);
    line-height: 31px;
    color: var(--dark-ass-color);
    font-weight: 400;
    padding-left: 0;
    text-align: center;
}

.erp-software-deve-block .web-why-choose-us-inner-box:hover .web-why-choose-inner-icon img {
    filter: invert(100%);
}

/*erp-software-deve-block*/

/*//////////*/

.personalized-erp-sec .row .item_col:last-child .web-why-choose-us-inner-box {
    border: 1px solid #ecedee;
    -webkit-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
    -moz-box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
    box-shadow: 0 1px 5px 0 rgba(72, 73, 121, 0.15);
    border-radius: 10px;
    padding: 20px 20px 20px;
    background-color: var(--light-ass-color);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.personalized-erp-sec .row .item_col:last-child .web-why-choose-us-inner-box:hover {
    background-color: #05124c;
}

/*//////////*/

/*----*/

.related-blog-sec {
    margin: 0;
    padding: 60px 0;
    background: var(--light-ass-color);
}

.related-blog-sec .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.related-blog-sec .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    text-align: center;
    font-weight: 700;
}

.related-blog-sec .title p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-18);
    line-height: 30px;
    color: var(--dark-ass-color);
    font-weight: 400;
    width: 76%;
    text-align: center;
}
.related-blog-sec .title::before {
    position: absolute;
    left: 50%;
    width: 98px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.related-blog-sec .related-bd {
    margin: 0;
    padding: 0;
}
.related-blog-sec .related-bd .item-bd {
    margin: 0;
    padding: 15px;
    overflow: hidden;
}
.related-blog-sec .related-bd .item-bd a {
    padding: 0;
    margin: 0;
    box-shadow: 0px 1px 15px rgb(0 0 0 / 10%);
    min-height: 400px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.related-blog-sec .related-bd .item-bd a .figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 200px;
}
.related-blog-sec .related-bd .item-bd a .figure img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-blog-sec .related-bd .item-bd a h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 26px;
    color: #05124c;
    font-weight: 600;
}
.related-blog-sec .related-bd .item-bd a p {
    margin: 0;
    padding: 9px 0;
    font-size: 16px;
    color: #444;
    line-height: 26px;
}

.related-blog-sec .related-bd .item-bd a .blog-content {
    margin: 0;
    padding: 20px 15px;
    background: #fff;
}

.related-blog-sec .related-bd .item-bd a .blog-content .botom-text {
    margin: 0;
    padding: 11px 0 0 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.related-blog-sec .related-bd .item-bd a .blog-content .botom-text span {
    margin: 0;
    padding: 0;
    width: 34px;
    height: 34px;
    background: #05124c;
    border-radius: 50px;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
}
.related-blog-sec .related-bd .item-bd a .blog-content .botom-text h4 {
    margin: 0;
    padding: 0 0 0 6px;
    width: 80%;
    font-size: 14px;
    color: #000;
    line-height: 22px;
    font-weight: 500;
}

.related-blog-sec .related-bd .item-bd a .blog-content .botom-text p {
    margin: 0;
    padding: 0 0 0 6px;
    width: 80%;
    font-size: 14px;
    color: #000;
    line-height: 22px;
    font-weight: 500;
}

.related-blog-sec .related-bd .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-blog-sec .related-bd .slick-dots li button {
    margin: 0 5px;
    padding: 0;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50px;
    font-size: 0;
    border: 0;
}
.related-blog-sec .related-bd .slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
    background: #ec7323;
    border: 0;
}

/*--related-blog-sec--*/

/*crm-development-testimonials*/

.crm-development-testimonials .testimonials_block {
    background: var(--light-ass-color);
}

.crm-development-testimonials .testimonials_block .title h2 {
    color: #05124c;
}

.crm-development-testimonials .testimonials_block .testi-slider .slick-prev {
    background: #cac9c9;
}

.crm-development-testimonials .testimonials_block .slick-next {
    background: #cac9c9;
}

/*crm-development-testimonials*/

/*website-redesign-portfolio*/

.website-redesign-portfolio .portfolio_block {
    background: #fff;
}

/*website-redesign-portfolio*/

/*startup_tes*/
.startup_tes .testimonials_block {
    border-bottom: 30px solid #fff;
}
/*startup_tes*/

/*erp-table-shelf*/

.erp-table-shelf {
    margin: 0;
    padding: 60px 0;
    background: #ffffff;
}

.erp-table-shelf .title {
    margin: 0;
    padding: 0 0 0 0;
}
.erp-table-shelf .title h2 {
    margin: 0 0 31px;
    padding: 0 0 10px;
    color: #05124c;
    text-align: center;
}
.erp-table-shelf .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.erp-table-shelf .table_bd {
    margin: 0;
    padding: 16px;
    border-radius: 7px;
    overflow: hidden;
    background: #fff;
}

.erp-table-shelf .table_bd .ct-inner {
    max-width: 100%;
    overflow-x: auto !important;
    padding-top: 0;
    overflow: hidden;
}

.erp-table-shelf .table_bd .ct-table {
    /*border: 3px solid var(--bg-light-color);*/
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}

.erp-table-shelf .table_bd .ct-table .ct-tr .ct-td:first-child,
.erp-table-shelf .table_bd .ct-table .ct-tr .ct-th:first-child {
    background-color: var(--bg-light-color);
}

.erp-table-shelf .table_bd .ct-table .ct-tr .ct-td:first-child,
.erp-table-shelf .table_bd .ct-table .ct-tr .ct-th:first-child {
    vertical-align: middle;
}

.erp-table-shelf .table_bd .ct-table .ct-tr .ct-td,
.ct-table .ct-tr .ct-th {
    background-clip: padding-box;
    background-color: #fff;
    /*border-bottom: 1px solid #ceeafd;*/
    /*border-right: 3px solid #f0f9ff;*/
    padding: 0;
    position: relative;
    vertical-align: top;
    border: 0;
}

.erp-table-shelf .table_bd .ct-criteria-content {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    padding: 8px 8px 8px 16px;
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
}

.erp-table-shelf .table_bd .ct-table .ct-tr .ct-td:after,
.erp-table-shelf .table_bd .ct-table .ct-tr .ct-th:after {
    background-color: #ceeafd;
    bottom: -1px;
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    right: -3px;
    width: 3px;
}

.erp-table-shelf .table_bd .ct-th-content {
    color: #222;
    font-size: 20px;
    font-weight: 700;
    height: 100%;
    line-height: normal;
    padding: 25px 16px;
    text-align: center;
}

.erp-table-shelf .table_bd .ct-th-content p {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: normal !important;
    margin-bottom: 0 !important;
}

.erp-table-shelf .table_bd .ct-td-content-value {
    color: #222;
    font-size: 14px;
    line-height: 1.43;
    text-align: center;
}
.erp-table-shelf .table_bd .ct-td-content-value p {
    color: #222 !important;
    font-size: 16px !important;
    line-height: 24px;
    margin-bottom: 10px !important;
}
.erp-table-shelf .table_bd .ct-td-content-value p:last-child {
    margin-bottom: 0 !important;
}

.erp-table-shelf .table_bd .ct-td-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    padding: 14px 10px 14px 12px;
}

/*erp-table-shelf*/

/*-------*/

/*--responsive-design-sec--*/

.erp-integrations-dev {
    margin: 0;
    padding: 60px 0 0 0;
    background: var(--bg-light-color);
}

.erp-integrations-dev .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.erp-integrations-dev .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.erp-integrations-dev .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
}

.erp-integrations-dev .title p {
    margin: 0 auto;
    padding: 0;
    width: 65%;
    text-align: center;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--light-ass-color);
    font-weight: 400;
}

.erp-integrations-dev .item_bd {
    margin: 0;
    padding: 42px 0 24px 0;
}
.erp-integrations-dev .item_bd .itm-mt {
    margin-top: 61px;
}

.erp-integrations-dev .item_bd .item {
    margin: 0;
    padding: 15px;
    background: #fff;
    height: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.erp-integrations-dev .item_bd .item .icon {
    width: 90px;
    height: 90px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    line-height: 75px;
    text-align: center;
    margin-top: -57px;
    background-color: #fff;
    float: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 4px solid #ffffff;
}

.erp-integrations-dev .item_bd .item .icon img {
    max-width: 100%;
    width: 56px;
    object-fit: contain;
    height: 56px;
}

.erp-integrations-dev .item_bd h4 {
    margin: 0;
    padding: 20px 0 0 0;
    font-size: 22px;
    color: #05124c;
    line-height: 34px;
    font-weight: 600;
    min-height: 128px;
    text-align: center;
}

.erp-integrations-dev .item_bd p {
    margin: 0;
    padding: 12px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #05124c;
    font-weight: 400;
    width: 100%;
    text-align: left;
}

.erp-integrations-dev .item_bd ul {
    margin: 0;
    padding: 0;
}
.erp-integrations-dev .item_bd ul li {
    margin: 0;
    padding: 12px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #05124c;
    font-weight: 400;
    width: 100%;
    text-align: left;
    display: flex;
}

.erp-integrations-dev .item_bd ul li .fa {
    margin: 0;
    padding: 5px 7px 0 0;
    font-size: 15px;
    color: #05124c;
}

.erp-integrations-dev .item_bd .item:hover .icon {
    border-radius: 100%;
    line-height: 75px;
    text-align: center;
    margin-top: -57px;
    background-color: #ffffff;
    float: left;
    transition: all 0.3s ease-in-out;
    border: 4px solid #05124c;
}

.erp-integrations-dev .image-figure {
    margin: 0;
    padding: 0;
}
.erp-integrations-dev .image-figure img {
    width: 100%;
    object-fit: cover;
}

/*--.erp-integrations-dev--*/

/*erp-solutions-industries*/

.erp-solutions-industries {
    padding: 60px 0;
    background: var(--light-ass-color);
}

.erp-solutions-industries .title {
    margin: 0;
    padding: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*.portfolio_block .title:before { display:none; }*/

.erp-solutions-industries .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    width: 70%;
}

.erp-solutions-industries .title .button {
    margin: 0;
    padding: 0;
}

.erp-solutions-industries .title .button a {
    /* background: linear-gradient(to right, rgb(2 12 111) 0, rgb(2 120 193) 100%); */
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0;
    padding: 12px 15px;
    font-size: 16px !important;
    color: var(--white-color) !important;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
}

.erp-solutions-industries .title .button a .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    transition: all 0.6s;
    opacity: 0;
    visibility: hidden;
}

.erp-solutions-industries .title .button a:hover .icon-arrow {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: var(--orange-color);
    position: absolute;
    left: 90%;
    top: 50%;
    transform: translatey(-50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s;
}

.erp-solutions-industries .title .button a:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    margin: 0;
    padding: 12px 30px 12px 0;
    font-size: 16px !important;
    color: var(--orange-color) !important;
    position: relative;
}

.erp-solutions-industries .title h2 strong {
    position: relative;
    font-size: 40px;
    line-height: 53px;
    font-weight: 700;
    /* background: url(../media/home/circle.png) no-repeat center center; */
    background-size: 100% 100%;
}

.erp-solutions-industries .portfolio_slider_bd {
    margin: 0;
    padding: 50px 0 0 87px;
}

.erp-solutions-industries .portfolio_slider_bd .item {
    margin: 0 4px;
    padding: 15px 15px;
}

.erp-solutions-industries .portfolio_slider_bd .item .portfolio-figure {
    margin: 0;
    padding: 0; /* background: #fff; */ /* border-radius: 0; */ /* box-shadow: 0px 4px 10px -1px rgba(0,0,0, 0.5); */
}
.erp-solutions-industries .portfolio_slider_bd .item .portfolio-figure a {
    margin: 0;
    padding: 0;
}
.erp-solutions-industries .portfolio_slider_bd .item .portfolio-figure .images {
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 380px;
    border-radius: 10px;
}
.erp-solutions-industries .portfolio_slider_bd .item .portfolio-figure .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.3s;
}

.erp-solutions-industries .portfolio_slider_bd .item:hover .portfolio-figure .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
}

.erp-solutions-industries .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption {
    border-radius: 20px;
    margin: 0;
    padding: 20px;
    background: #f8f8f8;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 20%);
    position: relative;
    margin-top: -32px;
    min-height: 200px;
}

.erp-solutions-industries .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption h3 {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-20);
    line-height: 36px;
    color: var(--blue-dark-color);
    font-weight: 800;
}

.erp-solutions-industries .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
}

.erp-solutions-industries .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption span {
    display: block;
    margin: 0;
    padding: 10px 0px 0 0;
    font-size: var(--font-size-16);
    line-height: 24px;
    font-weight: 600;
    color: var(--orange-light-color);
    transition: all 0.3s;
}

.erp-solutions-industries .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption span:hover {
    opacity: 0.8;
}

.erp-solutions-industries .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption span .fa {
    padding: 0 0 0 4px;
}

.erp-solutions-industries .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption span:hover .fa {
    -webkit-animation: downarrow 0.6s infinite alternate ease-in-out;
    padding: 0 0 0 4px;
}

@-webkit-keyframes downarrow {
    0% {
        -webkit-transform: translateY(0);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: translatex(-0.4em);
        opacity: 0.9;
    }
}

.erp-solutions-industries .portfolio_slider_bd {
    margin-left: calc((100% - 1320px) / 2);
}

.erp-solutions-industries .portfolio_slider_bd .slick-list.draggable {
    padding-left: 0px !important;
}

/*--erp-solutions-industries--*/

/*----*/

.btn-custome-404 {
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 0;
    padding: 8px 20px 8px 20px;
    font-size: 16px !important;
    color: var(--orange-color);
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    border: 1px solid var(--orange-color);
    display: inline-block;
}

/*----*/

/*-- ideating-and-developing --*/

.ideating-and-developing {
    margin: 0;
    padding: 60px 0;
    background: #05124c;
}

.ideating-and-developing .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.ideating-and-developing .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.ideating-and-developing .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.ideating-and-developing .bd_block {
    margin: 0;
    padding: 0;
}

.ideating-and-developing .bd_block h4 {
    margin: 0;
    padding: 0 0 0 20px;
    font-size: var(--font-size-20);
    line-height: 36px;
    color: #05124c;
    font-weight: 700;
    position: relative;
}

.ideating-and-developing .bd_block h4::after {
    content: "\f058";
    width: auto;
    height: auto;
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    color: #05124c;
    font-family: "FontAwesome";
    font-weight: 300;
}

.ideating-and-developing .bd_block p {
    padding: 0 0 6px 20px;
    font-size: var(--font-size-16);
    line-height: 28px;
    color: #05124c;
    font-weight: 500;
    text-align: left;
}

.ideating-and-developing .bd_block .row .col-md-6 {
    margin-bottom: 20px;
}

.ideating-and-developing .bd_block .item {
    margin: 0;
    padding: 8px 12px;
    background: #fff;
    height: 100%;
    border-radius: 10px;
}

/*-- ideating-and-developing --*/

/*arobit-case-studies-block*/

/*-- sroll-top-block-fixed --*/

.section__hassle {
    margin: 0;
    padding: 60px 0;
    background: #eff4ff;
}

.section__hassle .title {
    margin: 0 0 60px 0;
    padding: 0 0 30px 0;
}

.section__hassle .title:before {
    position: absolute;
    left: 50%;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translatex(-50%);
}

.section__hassle .title h2 {
    margin: 0;
    padding: 0 0 10px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #041043;
    font-weight: 700;
    text-align: center;
}

.section__hassle .title p {
    width: 65%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #041043;
    font-weight: 400;
    text-align: center;
}

.content {
    justify-content: space-between;
    align-items: center;
}

.content.position-vertical {
    flex-direction: column;
    align-items: flex-start;
}

.content-reviews.position-vertical {
    flex-direction: row;
    align-items: flex-end;
    display: flex;
}

.content-.position-vertical {
    flex-direction: column;
    align-items: flex-start;
}

.content-._1 {
    margin-bottom: 60px;
    /* display:flex; */
    top: 120px;
}

.content-._2 {
    margin-bottom: 45px;
    top: 140px;
}

.content-._3 {
    margin-bottom: 30px;
    top: 160px;
}

.content-._4 {
    margin-bottom: 15px;
    top: 180px;
}

.content-._5 {
    margin-bottom: 0;
    top: 200px;
}

.box-all-cards {
    grid-column-gap: 23px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    display: flex;
    align-items: start;
}

.w-layout-grid {
    display: flex;
    background: #ffffff;
    box-shadow: 0px -18px 30px -22px rgb(28, 28, 28);
}

.grid_hassle-color-card {
    width: 100%;
    height: 100%;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border: 1px solid #e9ecf1;
    border-radius: 16px;
    grid-template-rows: auto;
    align-content: space-between;
    justify-content: space-between;
}

.content-color-card-copy {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 40px;
    padding-top: 0;
    padding-bottom: 0;
    width: 60%;
    padding-right: 30px;
}

.image-card-color {
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 16px;
    width: 40%;
}

.img-table,
.img-mob {
    display: none;
}

.content-color-card {
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.content- {
    background-color: var(--white);
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 160px;
}

#w-node-_6b238af5-2fc5-f013-b91f-02d25a7000d7-64005dc3,
#w-node-_2b247d31-77b7-db90-ba44-e2db865a75ab-64005dc3,
#w-node-_23e4af5a-563e-9746-6e0b-612c8a9c11dc-64005dc3,
#w-node-df7ad437-ee63-7a98-f3f3-ffb2342dfa1d-64005dc3,
#w-node-a9d291ea-3c27-c6f4-ae52-c8d94338c9d4-64005dc3,
#w-node-c8143f08-88bb-72b4-e6bc-07c24a3b150e-64005dc3,
#w-node-_5c1e39fe-190b-1d2f-80aa-db44f19112f6-64005dc3,
#w-node-c2da3f27-833a-4aa8-7da3-6d3b11a325a3-64005dc3,
#w-node-fd8721de-0d44-56c1-704c-760282d24626-64005dc3,
#w-node-eac68190-5c91-bae8-a5d1-8b0f40330dea-64005dc3,
#w-node-cfe6b746-f7e3-48a0-8f3f-addd5ebaab6a-64005dc3,
#w-node-_64c67cfb-47df-27d2-2554-cf69d7b78e11-64005dc3,
#w-node-a422a81e-56c3-00b4-2229-5687d4b3f684-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3d7cafc0-7b10-55f2-6722-31a50ac1c236-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
}

#w-node-_3d7cafc0-7b10-55f2-6722-31a50ac1c263-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: end;
}

#w-node-c95d0aa8-a834-7201-f7b3-1d5057fc84ee-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
}

#w-node-d10e89f5-1a39-4f1a-31aa-fd17fc9a6abb-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: end;
}

#w-node-_04ef6486-2dae-ca9c-e709-5497fd3bae4c-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
}

#w-node-_04ef6486-2dae-ca9c-e709-5497fd3bae79-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: end;
}

#w-node-e5f68257-f8aa-88ae-4692-7b8e34632bf7-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
}

#w-node-e5f68257-f8aa-88ae-4692-7b8e34632c24-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: end;
}

#w-node-_9d60771d-8ebb-174d-b12e-f78487f940c8-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: start;
}

#w-node-_9d60771d-8ebb-174d-b12e-f78487f940f5-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: end;
}

#w-node-_9eb1caa1-50c4-ebd3-1481-e5d129f4e9dc-64005dc3,
#w-node-e059b58c-c9b1-6442-48c5-99dd8d9537d3-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2f01383d-ed3c-2cb8-a456-5fc4ddbdd7ec-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-_84afe593-2d1f-35e7-3cfa-ef7a91e47a20-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5ca510c4-6fb6-9777-ef11-2856825f33c3-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
}

#w-node-a98bbdf0-48e8-c96f-a1c5-842c97ce90ba-64005dc3,
#w-node-_7956ae91-5d6c-32ea-0ea1-650b46427149-64005dc3,
#w-node-_9a079451-586e-cfdb-97b7-a7e14d412807-64005dc3,
#w-node-f8ad4cba-c12c-a4bf-e754-36406d9d0a85-64005dc3,
#w-node-df31a516-d83e-7bdb-a67d-62ac1c9b701d-64005dc3,
#w-node-_55a38104-2499-50d0-8f06-b0d33506a70a-64005dc3,
#w-node-_5a45f2c3-65b8-a0c3-7ee8-f379d2b33e1f-64005dc3,
#w-node-d43e1a48-9645-17c3-a1cf-bfc5d06a0329-64005dc3,
#w-node-d56f4334-399f-f055-cb9a-e63b69a7fa84-64005dc3,
#w-node-d56f4334-399f-f055-cb9a-e63b69a7fa87-64005dc3,
#w-node-d56f4334-399f-f055-cb9a-e63b69a7fa8a-64005dc3,
#w-node-d56f4334-399f-f055-cb9a-e63b69a7fa8d-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d56f4334-399f-f055-cb9a-e63b69a7fa90-64005dc3,
#w-node-fbb69af2-6bde-5ac0-25d1-caa90d5105c1-64005dc3,
#w-node-_8e10768f-6649-cc56-f650-39a0a07d2b6a-64005dc3,
#w-node-e85acc57-27a1-736a-86f2-ab1d7aab67f5-64005dc3,
#w-node-_3f428cf4-f1b1-8f7f-6d94-02152e8ef611-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
}

#w-node-cae43ff4-7777-c1b2-f66e-64a188dfe39d-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
}

#w-node-dcc06d73-3b07-c3e8-3d90-0327225f930a-64005dc3,
#w-node-beb536cd-4a71-0e48-d4f8-54868bf9ded5-64005dc3,
#w-node-cae43ff4-7777-c1b2-f66e-64a188dfe3a2-64005dc3,
#w-node-b15614e5-53c4-6ddd-0044-6675c332e36c-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5a1a0239-f711-fde1-870a-a8c743732854-64005dc3,
#w-node-d4288fa9-8744-4391-6bcd-aa8bfb6b7b38-64005dc3,
#w-node-_6f645b27-e3a0-399c-0f7c-b2ff7bc0bc2a-64005dc3,
#w-node-f1d57fc8-5adf-7a98-d60d-4cafb753cef6-64005dc3,
#w-node-f44af2ac-96b4-7232-7d98-a83491787e05-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: auto;
}

#w-node-_41643af3-f325-b3ea-469b-4d93f518e4d2-64005dc3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_78567cb3-5a64-272a-3663-b6477aecc2d1-64005dc3 {
    align-self: center;
}

#w-node-_5f5e29dc-9e7b-ebbf-9137-0a1e8052c766-64005dc3,
#w-node-_96d1b290-a192-ef3e-80ba-737b5ca26daa-64005dc3,
#w-node-d9ec7613-3cbf-4d50-9763-37129e826d62-64005dc3,
#w-node-d7331378-e2f6-02b3-f1be-7b2541861efd-64005dc3,
#w-node-_6b6ffd53-43d8-229a-c46b-cbe2cdbc1d95-64005dc3,
#w-node-_3ccb7b2c-bfe5-6af4-be65-75bc1871c946-64005dc3,
#w-node-_929b31e5-1392-270d-f732-d279a096031a-64005dc3,
#w-node-_535d28ff-ec30-a590-ff73-c19ebd690b29-64005dc3,
#w-node-d6e59f94-f99b-0d20-5669-329ff976cb9a-64005dc3,
#w-node-cbe8d47e-238f-68a4-3d53-241a10aaa96d-31005dca {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cbe8d47e-238f-68a4-3d53-241a10aaa96e-31005dca {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
}

#w-node-e6d27d67-ed60-f6fd-cb78-3175e64c1d71-74005dcc {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e6d27d67-ed60-f6fd-cb78-3175e64c1d72-74005dcc {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
}

#w-node-b8679246-3754-f3d3-2e84-4a85134eef59-74005dcc {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b8679246-3754-f3d3-2e84-4a85134eef5a-74005dcc {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
}

#w-node-df638d4b-9e19-6303-8d12-213653067abd-bb005dcd {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-df638d4b-9e19-6303-8d12-213653067abe-bb005dcd {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
}

#w-node-e23e573b-b490-e916-6b63-e2663edfafe5-50005dcf {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e23e573b-b490-e916-6b63-e2663edfafe6-50005dcf {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
}

.section__hassle .item-list h3 {
    margin: 0;
    padding: 0;
    font-family: montserrat, sans-serif;
    font-size: 30px;
    line-height: 36px;
    color: #000000;
    font-weight: 700;
    width: 100%;
    display: inline-block;
}

.section__hassle .item-list ul {
    margin: 0;
    padding: 16px 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.section__hassle .item-list ul li {
    margin: 0 auto;
    padding: 0 0 12px 24px;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    font-weight: 400;
    text-align: left;
    width: 100%;
    position: relative;
}

.section__hassle .item-list p {
    margin: 0 auto;
    padding: 10px 0 0;
    font-size: 16px;
    line-height: 30px;
    color: #000;
    font-weight: 500;
    text-align: left;
    width: 100%;
    position: relative;
}

/*.section__hassle .item-list ul li::after {*/
/*    content: "";*/
/*    width: auto;*/
/*    height: auto;*/
/*    background:url(https://cdn.arobit.com/media/arobitdigital-all-images/enterprise-seo-services/icons/on.webp) no-repeat left top;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 1px;*/
/*    color: #05124c;*/
/*    font-family: fontawesome;*/
/*    font-weight: 300;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    background-size: 16px;*/
/*}*/

/*.section__hassle .item-list ul li::after {*/
/*    content: "";*/
/*    width: auto;*/
/*    height: auto;*/
/*    background: url(../media/arobitdigital-all-images/enterprise-seo-services/icons/on.webp) no-repeat left top;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 5px;*/
/*    color: #05124c;*/
/*    font-family: fontawesome;*/
/*    font-weight: 300;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    background-size: 16px;*/
/*}*/

.section__hassle .item-list ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    background: #444;
    font-family: fontawesome;
    font-weight: 300;
    width: 8px;
    height: 8px;
    background-size: 16px;
    border-radius: 50px;
}

/*-- sroll-top-block-fixed --*/

/*arobit-case-studies-block*/

/*-- back-to-top --*/

#scroll {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 50px;
    z-index: 99999;
    background: #05124c;
    box-shadow: 0 0 6px 3px rgb(178 178 178 / 50%);
}
#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}
#scroll:hover {
    background-color: #00167b;
    opacity: 1;

    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

/*-- back-to-top --*/

/*----------------------------------*/

/*----requestproposal-sec==contact-page----*/

.requestproposal-sec {
    margin: 0;
    padding: 120px 0 50px 0;
    background: #05124c;
}
.requestproposal-sec .item-row {
    margin: 0;
    padding: 0;
    display: flex;
}
.requestproposal-sec .item-row .item-left {
    margin: 0;
    padding: 40px 26px;
    width: 50%;
    background: #ffffff26;
    height: fit-content;
    border-radius: 12px;
}
.requestproposal-sec .item-row .item-left h1 {
    margin: 0;
    padding: 0;
    font-size: 36px;
    line-height: 43px;
    color: #ec7323;
}

.requestproposal-sec .item-row .item-left .title-left {    margin: 0;    padding: 0;    font-size: 36px;  
line-height: 43px;    color: #ec7323; font-weight:600; }


.requestproposal-sec .item-row .item-left .form-wrapper {
    margin: 0;
    padding: 0;
}

.requestproposal-sec .item-row .item-left .form-wrapper .form-bd {
    margin: 0;
    padding: 30px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item {
    margin: 0;
    padding: 12px 10px 12px 0;
    width: 50%;
}

.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item label {
    margin: 0;
    padding: 0 0 8px 0;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    font-weight: 600;
}

.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item .inpit-field {
    margin: 0;
    padding: 8px 4px;
    font-size: 16px;
    width: 100%;
    line-height: 22px;
    background: transparent;
    border-bottom: 1px solid #fff !important;
    border: 0;
    color: #fff;
}

.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item .inpit-field::placeholder {
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #fff !important;
    border: 0;
    outline: 0;
}
.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item .inpit-field:focus-visible {
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #fff !important;
    border: 0;
    outline: 0;
}
.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item .inpit-field::focus {
    border-bottom: 1px solid #fff !important;
    border: 0;
    color: #fff;
}

.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item .select-secitem {
    margin: 0;
    padding: 9px 4px;
    font-size: 16px;
    width: 100%;
    line-height: 22px;
    background: transparent;
    border-bottom: 1px solid #fff !important;
    border: 0;
    border-bottom-width: 0px;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    color: #fff;
    border-radius: 0;
}
.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item .select-secitem option {
    background: #666;
    border-radius: 0;
    border-bottom: 2px solid #ccc;
}

.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .textarea-fullwidth {
    width: 100%;
}
.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .textarea-fullwidth .item-textarea {
    margin: 0;
    padding: 8px 4px;
    font-size: 16px;
    width: 100%;
    line-height: 22px;
    background: transparent;
    border-bottom: 1px solid #fff !important;
    border: 0;
    color: #fff;
    height: 120px;
    resize: none;
}

.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .textarea-fullwidth .item-textarea:focus-visible {
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #fff !important;
    border: 0;
    outline: 0;
}

.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item-submit {
    margin: 0 auto;
    padding: 20px 0 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item-submit .submit-btn {
    margin: 0;
    width: auto;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    padding: 13px 55px;
    border-radius: 50px;
    border: 0;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    background: #f5851f;
}

.requestproposal-sec .item-row .item-right {
    margin: 0;
    padding: 0 0 0 50px;
    width: 50%;
    position: relative;
}
.requestproposal-sec .item-row .item-right .title-right {
    margin: 0;
    padding: 0 0 30px 0;
    font-size: 46px;
    color: #f2f2f2;
    line-height: 52px;
    display: block;
    font-weight: 600;
}
.requestproposal-sec .item-row .item-right p {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 26px;
    color: #fff;
    font-weight: 600;
}
.requestproposal-sec .item-row .item-right ul {
    margin: 0;
    padding: 30px 0 28px 0;
}
.requestproposal-sec .item-row .item-right ul li {
    margin: 0;
    padding: 11px 0;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.requestproposal-sec .item-row .item-right ul li span {
    margin: 0;
    padding: 0 0 4px 30px;
    font-size: 18px;
    color: #f0f3ff;
    font-weight: 600;
    position: relative;
    line-height: 26px;
    box-sizing: border-box;
    display: inline-flex;
}
.requestproposal-sec .item-row .item-right ul li span::before {
    content: "\f046";
    display: block;
    margin-left: -24px;
    transform: translateY(14px);
    border-radius: 50px;
    margin-top: 0;
    position: relative;
    top: -13px;
    left: -5px;
    font-family: "FontAwesome";
    color: #df781a;
    font-size: 18px;
}

.requestproposal-sec .item-row .item-right ul li p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}
.requestproposal-sec .item-row .item-right .item-imgsec {
    margin: 0;
    padding: 0;
}
.requestproposal-sec .item-row .item-right .item-imgsec img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translatex(-50%);
}

/*----requestproposal-sec==contact-page----*/

/*-- our-expertise1Sec --*/

.our-expertise1Sec {
    margin: 0;
    padding: 50px 0;
    background: #f8f8f8;
}

.our-expertise1Sec .title {
}
.our-expertise1Sec .title h2 {
    text-align: center;
    padding-bottom: 16px;
}
.our-expertise1Sec .title:before {
    left: 50%;
    transform: translatex(-50%);
}

.our-expertise1Sec .item-row {
    padding-top: 67px;
}

.our-expertise1Sec .item-row .itemCol {
    padding-bottom: 25px;
}

.our-expertise1Sec .itemBox {
    margin: 0;
    padding: 29px 24px;
    background: #fff;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 14px -8px rgba(0, 0, 0, 0.5);
}


.our-expertise1Sec .itemBox h4 {
    margin: 0;
    padding: 0 0 10px 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    line-height: 32px;
    align-items: center;
}

.our-expertise1Sec .itemBox h4 span {
    margin: 0;
    padding: 0 10px 0 0;
    display: inline-block;
}

.our-expertise1Sec .itemBox h4 span img {
    width: 39px;
    height: 39px;
    object-fit: contain;
}


.our-expertise1Sec .itemBox h3 {
    margin: 0;
    padding: 0 0 10px 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    line-height: 32px;
    align-items: center;
}

.our-expertise1Sec .itemBox h3 span {
    margin: 0;
    padding: 0 10px 0 0;
    display: inline-block;
}

.our-expertise1Sec .itemBox h3 span img {
    width: 39px;
    height: 39px;
    object-fit: contain;
}
.our-expertise1Sec .itemBox ul {
    margin: 0;
    padding: 0;
}
.our-expertise1Sec .itemBox ul li {
    margin: 0;
    padding: 8px 0 8px 9px;
    display: block;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    display: flex;
    color: #4a4a4a;
}

.our-expertise1Sec .itemBox ul li::before {
    content: "\f046";
    display: block;
    border-radius: 50px;
    position: relative;
    top: 0;
    left: -8px;
    font-family: "FontAwesome";
    color: #05124c;
    font-size: 18px;
}

/*-- our-expertise1Sec --*/

/*--contact-featured-case--*/

.contact-featured-case {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-repeat: repeat !important;
    background-size: auto !important;
    z-index: 1;
}

.contact-featured-case .featured-bd {
    margin: 0;
    padding: 70px 0;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.contact-featured-case:after {
    content: "";
    width: 67%;
    height: 100%;
    background: #05124c;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.contact-featured-case .item-row {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-featured-case .item-row .col-lt {
    margin: 0;
    padding: 0;
    width: 46%;
    position: relative;
}
.contact-featured-case .item-row .col-lt .img-bd {
    margin-left: calc((100% - 1320px) / 6);
    padding: 0;
}
.contact-featured-case .item-row .col-lt img {
    max-width: 100%;
    width: 100%;
}

.contact-featured-case .item-row .col-rt {
    margin: 0;
    padding: 0 0 0 20px;
    width: 54%;
}
.contact-featured-case .item-row .col-rt .text-bd {
    margin: 0;
    padding: 0;
}
.contact-featured-case .item-row .col-rt .text-bd .title {
    margin: 0;
    padding: 0 0 15px 0;
}
.contact-featured-case .item-row .col-rt .text-bd .title:before {
    display: none;
}
.contact-featured-case .item-row .col-rt .text-bd .title h2 {
    margin: 0;
    padding: 0;
    color: #fff;
}
.contact-featured-case .item-row .col-rt .text-bd h3 {
    margin: 0;
    padding: 0;
    font-size: 22px;
    line-height: 28px;
    color: #f2f2f2;
}
.contact-featured-case .item-row .col-rt .text-bd p {
    margin: 0;
    padding: 4px 0 0 0;
    font-size: 18px;
    line-height: 29px;
    color: #e1e1e1;
}

.contact-featured-case .item-row .col-rt .item-increase {
    margin: 0;
    padding: 30px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
.contact-featured-case .item-row .col-rt .item-increase .item-sec {
    margin: 0;
    padding: 0;
    width: 33.33%;
    text-align: center;
}
.contact-featured-case .item-row .col-rt .item-increase .item-sec span {
    margin: 0;
    padding: 0;
    display: block;
    font-size: 30px;
    font-weight: bold;
    color: #f5851f;
}
.contact-featured-case .item-row .col-rt .item-increase .item-sec p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 21px;
    color: #fff;
    font-weight: 500;
}

/*--contact-featured-case--*/

/*--contactrequest-Section--*/

.contactrequest-Section {
    margin: 0;
    padding: 60px 0;
    background: #f2f2f2;
}
.contactrequest-Section .title {
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
}
.contactrequest-Section .title h2 {
    margin: 0 auto;
    padding: 0;
    width: 90%;
    text-align: center;
}
.contactrequest-Section .title:before {
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
}

.contactrequest-Section .contact-form {
    margin: 0 auto;
    padding: 30px;
    width: 80%;
    background: #fff;
    margin-top: 60px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px -13px rgba(0, 0, 0, 0.5);
}
.contactrequest-Section .contact-form span {
    margin: 0;
    padding: 0 0 10px 0;
    display: block;
    font-size: 24px;
    color: #000;
    font-weight: 600;
}
.contactrequest-Section .contact-form .form-bd {
    margin: 0;
    padding: 30px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
.contactrequest-Section .contact-form .form-bd .item {
    margin: 0;
    padding: 12px 20px;
    width: 50%;
}

.contactrequest-Section .contact-form .form-bd .item label {
    margin: 0;
    padding: 0 0 8px 0;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    font-weight: 600;
}
.contactrequest-Section .contact-form .form-bd .item .inpit-field {
    margin: 0;
    padding: 8px 4px;
    font-size: 16px;
    width: 100%;
    line-height: 22px;
    background: transparent;
    border-bottom: 1px solid #000 !important;
    border: 0;
    color: #000;
}

.contactrequest-Section .contact-form .form-bd .item .inpit-field::placeholder {
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #ccc !important;
    border: 0;
    outline: 0;
}
.contactrequest-Section .contact-form .form-bd .item .inpit-field:focus-visible {
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #ccc !important;
    border: 0;
    outline: 0;
}
.contactrequest-Section .contact-form .form-bd .item .inpit-field::focus {
    border-bottom: 1px solid #ccc !important;
    border: 0;
    color: #000;
}

.contactrequest-Section .contact-form .form-bd .item .select-secitem {
    margin: 0;
    padding: 9px 4px;
    font-size: 16px;
    width: 100%;
    line-height: 22px;
    background: transparent;
    border-bottom: 1px solid #000 !important;
    border: 0;
    border-bottom-width: 0px;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    color: #000;
    border-radius: 0;
}
.contactrequest-Section .contact-form .form-bd .item .select-secitem option {
    background: #ccc;
    border-radius: 0;
    border-bottom: 2px solid #ccc;
}

.contactrequest-Section .contact-form .form-bd .textarea-fullwidth {
    width: 100%;
}
.contactrequest-Section .contact-form .form-bd .textarea-fullwidth .item-textarea {
    margin: 0;
    padding: 8px 4px;
    font-size: 16px;
    width: 100%;
    line-height: 22px;
    background: transparent;
    border-bottom: 1px solid #000 !important;
    border: 0;
    color: #000;
    height: 120px;
    resize: none;
}

.contactrequest-Section .contact-form .form-bd .textarea-fullwidth .item-textarea:focus-visible {
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #ccc !important;
    border: 0;
    outline: 0;
}

.contactrequest-Section .contact-form .form-bd .item-submit {
    margin: 0 auto;
    padding: 20px 0 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contactrequest-Section .contact-form .form-bd .item-submit .submit-btn {
    margin: 0;
    width: auto;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    padding: 13px 55px;
    border-radius: 50px;
    border: 0;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    background: #f5851f;
}

/*--contactrequest-Section--*/

/*--contact-ctasection--*/

.contact-ctasection {
    padding: 0;
    position: relative;
    text-align: center;
}

.contact-ctasection .item-bd {
    margin: 0;
    padding: 80px 0;
    background: #000000b2;
}

.contact-ctasection .cta-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.contact-ctasection h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 46px;
    letter-spacing: -1.368px;
    color: #fff;
}

.contact-ctasection .strategist-btn-wrapper {
    display: inline-block;
    margin-top: 20px;
    text-align: center;
}
.contact-ctasection .strategist-btn-wrapper .strategist-btn {
    background-color: #f5851f;
    padding: 19px 55px 19px 120px;
    border-radius: 6px;
    display: inline-block;
    text-align: left;
    position: relative;
}

.contact-ctasection .strategist-btn-wrapper .strategist-btn::before {
    content: "\f095";
    background-repeat: no-repeat;
    border: none !important;
    text-decoration: none !important;
    cursor: pointer;
    width: 47px;
    height: 47px;
    position: absolute;
    top: 35%;
    left: 55px;
    display: inline-block !important;
    transform: translate(0, -50%);
    font-family: "FontAwesome";
    font-size: 54px;
}

.contact-ctasection .strategist-btn-wrapper .strategist-btn span {
    margin: 0;
    padding: 0;
    display: block;
}
.contact-ctasection .strategist-btn-wrapper .strategist-btn .mid {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    display: block;
}
.contact-ctasection .strategist-btn-wrapper .strategist-btn .bot {
    color: #fff;
    font-weight: 900;
    font-size: 32px;
    word-break: break-all;
}

/*--contact-ctasection--*/

/*--banner-seoranksec--*/

.banner-seoranksec {
    margin: 0;
    padding: 0;
    margin: 0;
    padding: 120px 0 80px 0;
    background: #05124c;
}
.banner-seoranksec .item-row {
    margin: 0;
    padding: 0;
}
.banner-seoranksec .item-row h1 {
    margin: 0;
    padding: 0;
    font-size: 50px;
    color: #fff;
    text-align: center;
    text-shadow: 4px 4px 0 #122c9f;
}
.banner-seoranksec .item-row h2 {
    margin: 0;
    padding: 13px 0 24px 0;
    font-size: 50px;
    color: #ec7323;
    text-align: center;
}
.banner-seoranksec .item-row p {
    margin: 0;
    padding: 0;
    font-size: 22px;
    line-height: 37px;
    text-align: center;
    color: #ccc;
    font-weight: 500;
}

/*--banner-seoranksec--*/

/*-- sEo-measurable-business --*/

.sEo-measurable-business {
    margin: 0;
    padding: 50px 0;
}
.sEo-measurable-business .title {
    margin: 0 0 32px 0;
    padding: 0 0 30px 0;
    text-align: center;
}
.sEo-measurable-business .title:before {
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
}
.sEo-measurable-business .title h2 {
    margin: 0;
    padding: 0;
}

.sEo-measurable-business .item-row {
    justify-content: center;
}
.sEo-measurable-business .item-row .item-Col {
    margin-bottom: 15px;
}

.sEo-measurable-business .item-sec {
    margin: 0;
    padding: 20px 20px;
    text-align: center;
    background: #f2f2f2;
    border-radius: 5px;
    height: 100%;
}
.sEo-measurable-business .item-sec span {
    margin: 0;
    padding: 0;
    display: block;
    font-size: 34px;
    font-weight: bold;
    color: #f5851f;
    line-height: 42px;
    padding-bottom: 13px;
}
.sEo-measurable-business .item-sec p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #000;
    line-height: 24px;
    font-weight: 500;
}

/*-- sEo-measurable-business --*/

/*----------------------------------------------------------------------------*/

.sEo-measurable_sliderSec {
    margin: 0;
    padding: 0;
}

.sEo-measurable_sliderSec .slider_bd {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.sEo-measurable_sliderSec .slider_bd .item_slider {
    margin: 0;
    padding: 0 10px;
}
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content {
    margin: 10px;
    padding: 24px;
    background: #fff;
    display: block;
    border-radius: 11px;
    box-shadow: 0 2px 19px -5px rgba(110, 123, 129, 0.2);
    position: relative;
}

.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .heading-badge {
    margin: 0;
    padding: 12px 23px;
    position: absolute;
    left: 0;
    top: 0;
    background: #f5851f;
    font-size: 20px;
    color: #fff;
    border-radius: 16px 0 16px 0;
    font-weight: 500;
}

.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .homepage-slide-hidden-content {
    position: relative;
    padding-bottom: 180px;
}

.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec {
    margin: 0;
    padding: 0;
    padding-top: 68px;
}
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec h3 {
    margin: 0;
    padding: 0 0 4px 0;
    font-size: 22px;
    line-height: 24px;
    color: #05124c;
}
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 22px;
    color: #444;
    font-weight: 500;
}
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec h4 {
    margin: 0;
    padding: 0;
    font-size: 22px;
    line-height: 24px;
    color: #05124c;
    padding-top: 26px;
}
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec ul {
    margin: 0;
    padding: 10px 0 0 0;
}
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec ul li {
    margin: 0;
    padding: 7px 0 7px 24px;
    font-size: 18px;
    line-height: 22px;
    color: #5e5e5e;
    display: block;
    font-weight: 400;
    position: relative;
}

.sEo-measurable_sliderSec .slider_bd .homepage-slide-content .homepage-slide-hidden-content .top-sec {
    margin: 0;
    padding: 0;
}

.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec ul li::before {
    content: "\f046" !important;
    background-color: transparent !important;
    width: 18px !important;
    height: 18px !important;
    padding-right: 8px !important;
    background-repeat: no-repeat !important;
    top: 8px !important;
    position: absolute !important;
    left: 0 !important;
    font-family: "FontAwesome";
    font-size: 16px;
    color: #05124c;
}

.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat {
    margin: 0;
    padding: 30px 0 0 0;
    position: absolute;
    left: 0;
    bottom: 0;
}
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat .card__stat__value {
    margin: 0;
    padding: 0 0 4px 0;
    font-size: 30px;
    line-height: 36px;
    color: #f5851f;
    font-weight: bold;
    display: block;
}

.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 22px;
    color: #606060;
    font-weight: 500;
}

.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat .button-sec {
    margin: 0;
    padding: 15px 0 0 0;
    font-size: 18px;
    color: #057eff;
    line-height: 24px;
    font-weight: 600;
    display: block;
}

.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat .button-sec .fa {
    font-size: 16px;
    line-height: 22px;
}

.sEo-measurable_sliderSec .slider_bd .slick-prev {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    font-size: 0;
    border: 0;
    width: 40px;
    height: 40px;
    background: #0000;
}

.sEo-measurable_sliderSec .slider_bd .slick-prev::after {
    content: "\f104";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    color: #dfdfdf;
    font-family: FontAwesome;
    width: 40px;
    height: 40px;
    background: #0000003d;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #05124cba;
}

.sEo-measurable_sliderSec .slider_bd .slick-next {
    margin: 0;
    padding: 0 5px 0 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    font-size: 0;
    color: transparent;
    border: 0;
    background: #0000;
    width: 40px;
    height: 40px;
}

.sEo-measurable_sliderSec .slider_bd .slick-next::after {
    content: "\f105";
    width: auto;
    height: auto;
    background: 0 0;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 30px;
    color: #05124cba;
    font-family: FontAwesome;
    width: 40px;
    height: 40px;
    background: #0000003d;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*--sEo-measurable_sliderSec--*/

/*--sEo-getfree-proposal--*/

.sEo-getfree-proposal {
    margin: 0;
    padding: 60px 0;
}
.sEo-getfree-proposal .bdwrapper {
    margin: 0;
    padding: 40px 30px;
    background: #f5851f;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 7px;
}

.sEo-getfree-proposal .textBd {
    margin: 0;
    padding: 0;
    width: 60%;
}
.sEo-getfree-proposal .textBd span {
    margin: 0;
    padding: 0 0 9px 0;
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    line-height: 46px;
    display: block;
}
.sEo-getfree-proposal .textBd p {
    margin: 0;
    padding: 0;
    font-size: 25px;
    line-height: 32px;
    color: #eaeaea;
    font-weight: 500;
}

.sEo-getfree-proposal .textBd .formbd {
    margin: 0;
    padding: 54px 0 0 0;
}
.sEo-getfree-proposal .textBd .formbd .cta-form {
    margin: 0;
    padding: 0;
    display: flex;
}
.sEo-getfree-proposal .textBd .formbd .cta-form .inputsec {
    margin: 0;
    display: flex;
    width: 50%;
    height: 64px;
    padding: 8px;
    align-items: center;
    border-radius: 4px 0 0 4px;
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15) inset;
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    font-size: 18px;
    border: 0;
}
.sEo-getfree-proposal .textBd .formbd .cta-form .inputsec:focus-visible {
    outline: 0;
    border: 0;
}

.sEo-getfree-proposal .textBd .formbd .cta-form .submitsec {
    margin: 0;
    padding: 0;
    height: 64px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: 0;
    border: 0;
    width: 212px;
    background: #05124c;
    font-size: 18px;
    color: #fff;
    border-radius: 0 5px 4px 0;
    font-weight: 500;
}

.sEo-getfree-proposal .imgsec {
    margin: 0;
    padding: 0;
    width: 40%;
    position: relative; /*! right: 0; */ /*! top: 0; */
}
.sEo-getfree-proposal .imgsec .img1 {
    max-width: 100%;
    position: absolute;
    right: 0;
    top: -51px;
    z-index: 1;
}
.sEo-getfree-proposal .imgsec .img2 {
    max-width: 100%;
    position: absolute;
    z-index: 2;
    bottom: 0;
    margin-bottom: -40px;
}

/*--sEo-getfree-proposal--*/

/*--how-wedrive-revenue--*/

.how-wedrive-revenue {
    margin: 0;
    padding: 60px 0;
    background: #05124c;
    overflow: hidden;
}
.how-wedrive-revenue .title {
    margin: 0 0 40px 0;
    padding: 0 0 58px 0;
    text-align: center;
}
.how-wedrive-revenue .title::before {
    position: absolute;
    left: 50%;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    content: "";
    transform: translatex(-50%);
}

.how-wedrive-revenue .title h2 {
    color: #fff;
}
.how-wedrive-revenue .title p {
    text-align: center;
    color: #fff;
    max-width: 80%;
    margin: 0 auto;
}

.how-wedrive-revenue .sec-wrapper {
    margin: 0;
    padding: 0;
    position: relative;
}

.how-wedrive-revenue .sec-wrapper .bsf-graphic {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 22%;
}
.how-wedrive-revenue .sec-wrapper .bsf-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.how-wedrive-revenue .sec-wrapper .item-bd {
    margin: 0;
    padding: 0;
}
.how-wedrive-revenue .sec-wrapper .item-bd .item-row {
    margin: 0;
    padding: 27px;
    display: flex;
    align-items: center;
    justify-content: end;
    border-bottom: 2px solid #c2c2c2;
}
.how-wedrive-revenue .sec-wrapper .item-bd .item-row .item-left {
    margin: 0;
    padding: 0;
    width: 37%;
    text-align: right;
}
.how-wedrive-revenue .sec-wrapper .item-bd .item-row .item-left .sec-text {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    color: #f5851f;
}

.how-wedrive-revenue .sec-wrapper .item-bd .item-row .item-right {
    margin: 0;
    padding: 0 0 0 57px;
    width: 44%;
    text-align: left;
}
.how-wedrive-revenue .sec-wrapper .item-bd .item-row .item-right ul {
    margin: 0;
    padding: 0;
}
.how-wedrive-revenue .sec-wrapper .item-bd .item-row .item-right ul li {
    margin: 0;
    padding: 0;
}
.how-wedrive-revenue .sec-wrapper .item-bd .item-row .item-right ul li a {
    margin: 0;
    padding: 4px 0;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    display: flex;
    align-items: center;
}
.how-wedrive-revenue .sec-wrapper .item-bd .item-row .item-right ul li a .fa {
    margin: 0;
    padding: 0 0 0 10px;
}

/*--how-wedrive-revenue--*/

/*global-map*/

.arobitglobal-map {
    background-image: linear-gradient(192deg, #051c2c 42%, #042554 65%, #033295);
    background-size: 65%;
    background-position: top left;
    background-repeat: no-repeat;
    padding: 100px;
}

.arobitglobal-map .global-img {
    margin: 0;
    padding: 0;
}
.arobitglobal-map .global-img img {
    max-width: 100%;
}

.arobitglobal-map .global-text {
    padding: 20px 20px;
    border: 2px solid #f58220;
    background: #fff;
    color: #244867;
}

.arobitglobal-map .global-country {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 20px 0 0 0;
}

.arobitglobal-map .global-text {
    color: #244867;
}

.arobitglobal-map .global-text h4 {
    margin: 0;
    padding: 0 0 20px 0;
    width: 100%;
    font-size: 24px;
    line-height: 31px;
    color: #05124c;
    font-weight: 700;
}

.arobitglobal-map .global-text h2 {
    margin: 0;
    padding: 0 0 20px 0;
    width: 100%;
    font-size: 24px;
    line-height: 31px;
    color: #05124c;
    font-weight: 700;
}

.arobitglobal-map .global-text p {
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: var(--dark-ass-color);
    font-weight: 400;
}

.arobitglobal-map .global-country-item {
    width: 33.3333%;
    text-transform: uppercase;
    margin: 0;
    padding: 10px 0;
}

.arobitglobal-map .global-country-item a {
    display: flex;
    align-items: center;
    color: #244867;
    margin: 0;
    padding: 0 10px 0 0;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}

.arobitglobal-map .global-country-item img {
    margin-right: 5px;
    max-width: 100%;
}

/*global-map*/

/*--d-country-agency-banner--*/

.d-country-agency-banner .left-sec {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 99;
}
.d-country-agency-banner .left-sec .col-item {
    margin: 0;
    padding: 0;
}
.d-country-agency-banner .left-sec .col-item .sec-title {
    margin: 0;
    padding: 0;
    font-size: 32px;
    color: #fff;
    font-weight: 600;
    line-height: 30px;
}
.d-country-agency-banner .left-sec .col-item ul {
    margin: 0;
    padding: 17px 0 0 0;
}
.d-country-agency-banner .left-sec .col-item ul li {
    margin: 0;
    padding: 6px 0 6px 23px;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    display: block;
    font-weight: 500;
    position: relative;
}

.d-country-agency-banner .left-sec .col-item ul li::before {
    background-color: #fff;
    content: " ";
    display: block;
    height: 10px;
    margin-left: -20px;
    transform: translateY(14px);
    width: 10px;
    border-radius: 50px;
    margin-top: 0;
    position: relative;
    top: 2px;
    left: 0;
}

.d-country-agency-banner .right-sec {
    margin: 0;
    padding: 32px 20px;
    background: #fff;
    opacity: 1;
    border-radius: 4px;
    position: relative;
    z-index: 99;
}
.d-country-agency-banner .right-sec p {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: #05124c;
}
.d-country-agency-banner .right-sec .form-bd {
    margin: 0;
    padding: 29px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
.d-country-agency-banner .right-sec .form-bd .item-row {
    margin: 0;
    padding: 8px 10px;
    width: 50%;
}

.d-country-agency-banner .right-sec .form-bd .item-row .input-field {
    margin: 0;
    padding: 10px 6px;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    width: 100%;
    border: 1px solid #ccc;
}
.d-country-agency-banner .right-sec .form-bd .item-row.full-width {
    width: 100% !important;
}
.d-country-agency-banner .right-sec .form-bd .item-row.submitfull-width {
    width: 100% !important;
    display: flex;
    align-items: center;
    padding: 20px 0 0 0;
}

.d-country-agency-banner .right-sec .form-bd .item-row.submitfull-width .submit-btn {
    width: auto !important;
    margin: 0 auto;
    text-align: center;
    padding: 10px 23px;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    background: #f5851f;
    border: 0;
    border-radius: 50px;
}

/*--d-country-agency-banner--*/

/*who-weare06Sec*/

.who-weare06Sec {
    margin: 0;
    padding: 60px 0;
}
.who-weare06Sec .bd-wrapper {
    margin: 0;
    padding: 40px 40px;
    border-radius: 8px;
    background: #05124c;
    text-align: center;
}
.who-weare06Sec .bd-wrapper .title-sec {
    margin: 0;
    padding: 0 0 12px 0;
    font-size: 32px;
    color: #fff;
    line-height: 38px;
    font-weight: 600;
    display: block;
}
.who-weare06Sec .bd-wrapper p {
    margin: 0;
    padding: 5px 0;
    font-size: 17px;
    line-height: 29px;
    color: #dfdfdf;
    font-weight: 500;
}
.who-weare06Sec .bd-wrapper ul,
.who-weare06Sec .bd-wrapper ul li {
    color: #dfdfdf;
}
.who-weare06Sec .bd-wrapper .sec-title {
    color: #ffffff;
}

/*who-weare06Sec*/

/*--country-046presence--*/

.country-046presence {
    margin: 0;
    padding: 60px 0;
}
.country-046presence .title {
    text-align: center;
    padding: 0 0 30px 0;
    margin: 0 0 40px 0;
}

.country-046presence .title::before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.country-046presence .title h2 {
}
.country-046presence .title p {
}

.country-046presence .country-presence-left {
    margin: 0;
    padding: 0;
    height: 410px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.country-046presence .country-presence-left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.country-046presence .country-presence-left:hover img {
    object-fit: cover;
    transform: scale(1.2);
}

.country-046presence .country-presence-left .country-presence-name {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 0;
}
.country-046presence .country-presence-left .country-presence-name h5 {
    margin: 0;
    padding: 0;
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    font-weight: 600;
}

.country-046presence .country-presence-left .country-presence-name h3 {
    margin: 0;
    padding: 0;
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    font-weight: 600;
}

.country-046presence .country-presence-left .country-presence-name .country-presence-flag {
    margin: 0;
    padding: 0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid #fff;
}

.country-046presence .img01-sliderbd {
    margin: 0;
    padding: 0;
}
.country-046presence .img01-sliderbd .item {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.country-046presence .img01-sliderbd .item .item-Boxsec {
    margin: 0;
    padding: 3px;
    width: 50%;
}

.country-046presence .img01-sliderbd .item .item-Boxsec.disabled {
    cursor: initial;
}

.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item {
    margin: 0;
    padding: 0;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item:hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item .country-presence-name {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 0;
}

.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item .country-presence-name h5 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item .country-presence-name h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item .country-presence-name .country-presence-flag {
    margin: 0;
    padding: 0;
    margin: 0;
    padding: 0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid #fff;
}
.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item .country-presence-name .country-presence-flag img {
}

.country-046presence .img01-sliderbd .slick-prev {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    font-size: 0;
    border: 0;
    width: 40px;
    height: 40px;
    background: #0000;
}

.country-046presence .img01-sliderbd .slick-prev::after {
    content: "\f104";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    color: #dfdfdf;
    font-family: FontAwesome;
    width: 40px;
    height: 40px;
    background: #c46004cf;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffffba;
}

.country-046presence .img01-sliderbd .slick-next {
    margin: 0;
    padding: 0 5px 0 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    font-size: 0;
    color: transparent;
    border: 0;
    background: #0000;
    width: 40px;
    height: 40px;
}

.country-046presence .img01-sliderbd .slick-next::after {
    content: "\f105";
    width: auto;
    height: auto;
    background: 0 0;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 30px;
    color: #fff;
    font-family: FontAwesome;
    width: 40px;
    height: 40px;
    background: #c46004cf;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*--country-046presence--*/

/*brand05ranking-today*/

.brand05ranking-today {
    margin: 0;
    padding: 60px 0;
}

.brand05ranking-today .bd-wrapper {
    margin: 0;
    padding: 64px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.5);
    background: linear-gradient(274deg, rgba(3, 34, 169, 1) 0%, rgba(5, 18, 76, 1) 84%);
    position: relative;
    overflow: hidden;
}

.brand05ranking-today .bd-wrapper:after {
    content: "";
    background: url(../media/seo-services/seo-performance-icon0167.png) no-repeat center;
    position: absolute;
    left: -58px;
    top: 14%;
    margin-top: 0;
    width: 112%;
    height: 111%;
    background-size: contain;
    filter: brightness(0) invert(1); /*! transform: translatey(-50%); */
    opacity: 0.05;
    z-index: 1;
    background-position: left 50px center;
    transform: rotate(10deg);
}

.brand05ranking-today .bd-wrapper .title-sec {
    color: #fff;
    font-size: 42px;
    line-height: 56px;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 3px;
    margin: 0;
    padding: 0;
    font-weight: 800;
    text-transform: capitalize;
    width: 62%;
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.brand05ranking-today .bd-wrapper p {
    margin: 0;
    padding: 5px 0;
    font-size: 17px;
    line-height: 29px;
    color: #dfdfdf;
    font-weight: 500;
}
.brand05ranking-today .bd-wrapper .buttonsec04 {
    margin: 0;
    padding: 43px 0 0 0;
    position: relative;
    z-index: 10;
}
.brand05ranking-today .bd-wrapper .buttonsec04 .Started-btn {
    width: auto !important;
    margin: 0 auto;
    text-align: center;
    padding: 12px 39px;
    font-size: 22px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    background: #f5851f;
    border: 0;
    border-radius: 50px;
}

/*brand05ranking-today*/

/*--across-variedindustries01--*/

.across-variedindustries01 {
    margin: 0;
    padding: 60px 0;
    width: 100%;
    background: #fff;
}

.across-variedindustries01 .title {
    text-align: center;
    padding-bottom: 29px;
    margin-bottom: 18px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 45px;
}

.across-variedindustries01 .title h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    width: 70%;
}

.across-variedindustries01 .title p {
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
    color: #7d7d7d;
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.across-variedindustries01 .title::before {
    position: absolute;
    left: 50%;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translatex(-50%);
}

.across-variedindustries01 .slider_bd {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.across-variedindustries01 .slider_bd .item_slider {
    margin: 0;
    padding: 0 10px;
}
.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content {
    margin: 10px;
    padding: 25px 25px 40px 25px;
    background: #fff;
    display: block;
    border-radius: 11px;
    box-shadow: 0 2px 19px -5px rgba(110, 123, 129, 0.2);
    position: relative;
}

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .heading-badge {
    margin: 0;
    padding: 12px 20px;
    position: absolute;
    left: 0;
    top: 0;
    background: #05124c;
    font-size: 20px;
    color: #fff;
    border-radius: 16px 0 16px 0;
    font-weight: 500;
}

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .heading-badge img {
    max-width: 100%;
    width: 38px;
    object-fit: contain;
}

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .text-sec {
    margin: 0;
    padding: 0;
    padding-top: 68px;
}
.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .text-sec h3 {
    margin: 0;
    padding: 0 0 4px 0;
    font-size: 22px;
    line-height: 24px;
    color: #05124c;
}
.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .text-sec p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 22px;
    color: #444;
    font-weight: 500;
}

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .text-sec h4 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 25px;
    color: #05124c;
    padding-top: 26px;
    font-weight: 600;
}

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .text-sec ul {
    margin: 0;
    padding: 10px 0 0 0;
}
.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .text-sec ul li {
    margin: 0;
    padding: 6px 0 6px 24px;
    font-size: 16px;
    line-height: 22px;
    color: #313131;
    display: block;
    font-weight: 500;
    position: relative;
}

.across-variedindustries01 .slider_bd .homepage-slide-content .homepage-slide-hidden-content .top-sec {
    margin: 0;
    padding: 0;
}

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .text-sec ul li::before {
    content: "\f046" !important;
    background-color: transparent !important;
    width: 18px !important;
    height: 18px !important;
    padding-right: 8px !important;
    background-repeat: no-repeat !important;
    top: 8px !important;
    position: absolute !important;
    left: 0 !important;
    font-family: "FontAwesome";
    font-size: 16px;
    color: #05124c;
}

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat {
    margin: 0;
    padding: 30px 0 0 0;
    position: absolute;
    left: 0;
    bottom: 0;
}
.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat .card__stat__value {
    margin: 0;
    padding: 0 0 4px 0;
    font-size: 30px;
    line-height: 36px;
    color: #f5851f;
    font-weight: bold;
    display: block;
}

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 22px;
    color: #606060;
    font-weight: 500;
}

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat .button-sec {
    margin: 0;
    padding: 15px 0 0 0;
    font-size: 18px;
    color: #05124c;
    line-height: 24px;
    font-weight: 600;
    display: block;
}

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat .button-sec .fa {
    font-size: 16px;
    line-height: 22px;
}

.across-variedindustries01 .slider_bd .slick-prev {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    font-size: 0;
    border: 0;
    width: 40px;
    height: 40px;
    background: #0000;
}

.across-variedindustries01 .slider_bd .slick-prev::after {
    content: "\f104";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    color: #dfdfdf;
    font-family: FontAwesome;
    width: 40px;
    height: 40px;
    background: #0000003d;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #05124cba;
}

.across-variedindustries01 .slider_bd .slick-next {
    margin: 0;
    padding: 0 5px 0 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    font-size: 0;
    color: transparent;
    border: 0;
    background: #0000;
    width: 40px;
    height: 40px;
}

.across-variedindustries01 .slider_bd .slick-next::after {
    content: "\f105";
    width: auto;
    height: auto;
    background: 0 0;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 30px;
    color: #05124cba;
    font-family: FontAwesome;
    width: 40px;
    height: 40px;
    background: #0000003d;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*--home_industry_clients01--*/

/*----*/
#arobitdigital_queat_form .errormessage,
#arobitdigital_newsletter_form .errormessage { color: #fff; }

/*#arobitdigital_queat_form .errormessage {  position: absolute;  top: 50px; }*/
#arobitdigital_queat_form .errormessage { position: absolute;  top: 40px; font-size: 12px; padding: 0 0 0 10px; }


/*----*/

/*---------------------///////////////////////////////////////////////------//////////////-------------------------------*/

/*--home_industry_clients02_Newsec--*/

.home-proven-resultsfor-clients02_Newsec {
    margin: 0;
    padding: 60px 0;
    background: #fff;
}

.home-proven-resultsfor-clients02_Newsec .title {
    text-align: center;
    padding-bottom: 29px;
    margin-bottom: 18px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 45px;
}

.home-proven-resultsfor-clients02_Newsec .title::before {
    position: absolute;
    left: 50%;
    width: 104px;
    margin: 0 auto;
    bottom: 0;
    height: 4px;
    animation: rotate 80s infinite linear;
    -webkit-animation: rotate 80s infinite linear;
    content: "";
    border-radius: 5px;
    background: #021173;
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
    transform: translatex(-50%);
}

.home-proven-resultsfor-clients02_Newsec .title h2 {
    margin: 0 auto;
    padding: 0 0 12px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #05124c;
    font-weight: 700;
    width: 70%;
}
.home-proven-resultsfor-clients02_Newsec .title p {
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
    color: #7d7d7d;
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper {
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-repeat: repeat !important;
    background-size: auto !important;
    z-index: 1;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .featured-bd {
    margin: 0;
    padding: 46px 0;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper:after {
    content: "";
    width: 67%;
    height: 100%;
    background: #05124c;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .featured-bd .slick-track {
    width: 100%;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-lt {
    margin: 0;
    padding: 0 17px 0px 0;
    width: 46%;
    position: relative;
}
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-lt .img-bd {
    margin: 0;
    padding: 0;
}
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-lt img {
    max-width: 100%;
    width: 100%;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt {
    margin: 0;
    padding: 0px 92px 0 30px;
    width: 54%;
}
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd {
    margin: 0;
    padding: 0;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .title {
    margin: 0;
    padding: 0 0 15px 0;
}
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .title:before {
    display: none;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .title h2 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    text-align: left;
   
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .mark-sec {
	margin: 0 0 21px 0;
	padding: 0;
	line-height: 21px;
	color: #fff;
	border-radius: 20px 20px 0px 20px;
	display: inline-block;
	font-weight: 600;
	font-size: 32px;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block {
	margin: 0;
	padding: 24px 0 0 0;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block h4 {
	margin: 0;
	padding: 0;
	font-size: 21px;
	line-height: 26px;
	color: #fff;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block strong {
	margin: 0;
	padding: 0;
	font-size: 21px;
	line-height: 26px;
	color: #fff;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block ul {
	margin: 0;
	padding: 10px 0 0 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block ul li {
    margin: 0;
    padding: 7px 0 7px 22px;
    font-size: 18px;
    line-height: 26px;
    color: #cacaca;
    display: block;
    position: relative;
    width: 50%;
    font-weight: 500;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block ul li::before {
    content: "\f046" !important;
    background-color: transparent !important;
    width: 22px !important;
    height: 22px !important;
    padding-right: 8px !important;
    background-repeat: no-repeat !important;
    top: 7px !important;
    position: absolute !important;
    left: 0 !important;
    font-family: "FontAwesome";
    font-size: 19px;
    color: #e8e8e8;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd h3 {
	margin: 0;
	padding: 10px 0 0 0;
	font-size: 20px;
	line-height: 28px;
	color: #f2f2f2;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd strong {
	margin: 0;
	padding: 10px 0 0 0;
	font-size: 20px;
	line-height: 28px;
	color: #f2f2f2;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd p {
    margin: 0;
    padding: 6px 0 0 0;
    font-size: 18px;
    line-height: 26px;
    color: #e1e1e1;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .item-increase {
    margin: 0;
    padding: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .item-increase .item-sec {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .item-increase .item-sec span {
	margin: 0;
	padding: 0;
	display: block;
	font-size: 24px;
	font-weight: 500;
	color: #f5851f;
}
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .item-increase .item-sec p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    font-weight: 500;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .featured-bd .slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 20px;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .featured-bd .slick-dots .button {
    margin: 42px 0 0 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .featured-bd .slick-dots li button {
    margin: 0 5px;
    padding: 0;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50px;
    font-size: 0;
    border: 0;
}

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .featured-bd .slick-dots li.slick-active button {
    background: #f5851f !important;
}

/*--home_industry_clients02_Newsec--*/

/*---------------------////////////////////////////////------/////////////-------------------------------------------------------*/

/*index-skeleton*/
.index-skeleton {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 1500px;
    z-index: 999999999;
}

@media only screen and (max-width: 1024px) {
    .skeleton-header {
        display: none;
    }
}

/*index-skeleton*/


/* ── AROBIT DIGITAL CUSTOM ──────────────────────────────────── */

/**/
/*seo-inner-banner*/


.seo-inner-banner {
    margin: 0;
    padding: 150px 0 100px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-attachment: fixed !important;
    min-height: auto;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat !important;
    background-position: top right !important;
    background-size: cover !important;
}

.seo-inner-banner .button_wrapper { margin:0; padding:0; }
.seo-inner-banner .button_wrapper ul {margin: 30px 0 0 0;padding:0;}
.seo-inner-banner .button_wrapper ul li {margin:0;padding:0;display: inline-block;}
.seo-inner-banner .button_wrapper ul li a {margin:0;padding: 16px;font-family: Inter;font-weight: 600;font-size: 18px;line-height: 100%;letter-spacing: 0%;border-radius: 10px;display: inline-block;}

.seo-inner-banner .button_wrapper ul li a.item01 { background: #ec7323;  margin-right: 15px; border: 1px solid #ec7323; } 
.seo-inner-banner .button_wrapper ul li a.item01:hover { background:transparent; 
 border:1px solid #FFFFFF8F;  color:#fff; } 
 
.seo-inner-banner .button_wrapper ul li a.item02 { border: 1px solid #FFFFFF8F; } 
.seo-inner-banner .button_wrapper ul li a.item02:hover { background: #ec7323;
 border: 1px solid #ec7323; color:#fff; } 


.seo-inner-banner:after {    content: "";    position: absolute;    left: 0;
    top: 0;    width: 100%;    height: 100%;
    /* background: rgb(29 50 133 / 72%); */
    z-index: 1;    background: #05124c;
    background: linear-gradient(90deg, rgb(5 18 76) 0%, rgb(5 18 76) 50%, rgb(22 45 66 / 0%) 100%); }

.seo-inner-banner .contain-bd {
    height: 100%;
    min-height: auto;
    display: flex;
    position: relative;
    z-index: 2;
}

.seo-inner-banner .item-left {
	margin: 0;
	padding: 35px 54px 0 0;
	width: 80%;
}

.seo-inner-banner .item-left h1 {
    margin: 0;
    padding: 0 0 10px;
    font-family: montserrat,sans-serif;
    font-size: 50px;
    line-height: 58px;
    color: #fff;
    font-weight: 700;
}

.seo-inner-banner .item-left p {
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
    color: var(--white-color);
    font-weight: 400;
    text-align: left;
}

.seo-inner-banner .item-left .form-bd {
    margin: 0;
    padding: 18px 0 0 0;
}
.seo-inner-banner .item-left .form-bd .first-form {
    margin: 0;
    padding: 0;
}
.seo-inner-banner .item-left .form-bd .first-form .item {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    width: 74%;
    flex-wrap: wrap;
    height:55px;
}
.seo-inner-banner .item-left .form-bd .first-form .item .validates-as-required {
    margin: 0;
    padding: 0 20px 0px 10px;
    font-size: 16px;
    color: #fff;
    line-height: 22px;
    font-weight: 400;
    width: 66%;
    border-radius: 4px 0 0 4px;
    outline: 0;
    border: 0;
    height: 100%;
    background: #00156226;
    border: 1px solid #fff;
    border-right: 0;
}

.seo-inner-banner .item-left .form-bd .first-form .item .validates-as-required option {
    margin: 0;
    padding: 0;
    color: #000;
}

.seo-inner-banner .item-left .form-bd .first-form .item button[type="submit"] {
    background: #ffffff;
    border-radius: 0 4px 4px 0;
    padding: 11px 22px;
    font-size: 17px;
    color: #000;
    font-weight: 500;
    border: 0 !important;
    outline: 0 !important;
    transition: all 0.3s;
    width: 140px;
    height: 100%;
    border-left: 1px solid #5e5e5e !important;
}

.seo-inner-banner .item-left .form-bd .first-form .item button[type="button"] {
    background: #ffffff;
    border-radius: 0 4px 4px 0;
    padding: 11px 22px;
    font-size: 17px;
    color: #000;
    font-weight: 500;
    border: 0 !important;
    outline: 0 !important;
    transition: all 0.3s;
    width: 140px;
    height: 100%;
}


.seo-inner-banner .item-left .form-bd .first-form .item button[type="submit"] {
    background: #ffffff;
    border-radius: 0 4px 4px 0;
    padding: 11px 22px;
    font-size: 17px;
    color: #000;
    font-weight: 500;
    border: 0 !important;
    outline: 0 !important;
    transition: all 0.3s;
    width: 140px;
    height: 100%;
    border-left: 1px solid #5e5e5e !important;
}



.seo-inner-banner .item-right {
    margin: 0;
    padding: 0;
    position: relative;
}
.seo-inner-banner .item-right .right-text {
    margin: 47px 0 0 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    width: 65%;
    box-shadow: 0px 0px 21px 0px rgb(0 0 0 / 29%);
}
.seo-inner-banner .item-right .right-text p {
    margin: 0 auto;
    padding: 0;
    font-size: 20px;
    line-height: 31px;
    color: var(--black-color);
    font-weight: 500;
    text-align: left;
}

.seo-inner-banner .item-right .right-text span {
    margin: 0;
    padding: 12px 0;
    display: block;
    font-size: 16px;
    line-height: 22px;
    color: #000;
}
.seo-inner-banner .item-right .right-text span img {
}

.seo-inner-banner .item-right .right-text ul {
    margin: 0;
    padding: 10px 0 0 0;
    border-top: 1px solid #444;
}
.seo-inner-banner .item-right .right-text ul li {
    margin: 0;
    padding: 5px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
}
.seo-inner-banner .item-right .right-text ul li span {
    margin: 0;
    padding: 0 6px 0 0;
    font-size: 18px;
    color: #ff6900;
    line-height: 21px;
}
/*.seo-inner-banner .item-right .right-text ul li span .fa {  }*/

.seo-inner-banner .item-right .round-box-wrapper {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}


.banner-form-show .first-form { display:none; }
.form-bd.seo-banner_formbd.banner-form-show .second-form {
	display: block !important; }


/*second-form*/

.seo-inner-banner .item-left .form-bd .second-form {margin: 0;padding: 11px 0 0 0; display:none; }
.seo-inner-banner .item-left .form-bd .second-form form { margin:0; padding: 0; }
.seo-inner-banner .item-left .form-bd .second-form span {    margin: 0;    padding: 10px 0;    box-sizing: border-box;
 display: block; position:relative; }


.seo-inner-banner .item-left .form-bd .second-form span input[type="text"] {  margin: 0;
    padding: 15px 20px 10px 10px;   font-size: 16px;    color: #000;    line-height: 22px;
    font-weight: 500;    width: 100%;    box-sizing: border-box;
    background: #fff;    border: 0; }
.seo-inner-banner .item-left .form-bd .second-form span input[type="email"] {
    margin: 0;    padding: 15px 20px 10px 10px;    font-size: 16px;    color: #000;
    line-height: 22px;    font-weight: 500;    width: 100%;
    box-sizing: border-box;    background: #fff;    border: 0; }

.seo-inner-banner .item-left .form-bd .second-form .form-button .button-block {
    margin: 0;
    padding: 14px 0 0 0;
    display: flex;
    align-items: end;
    justify-content:end;
}

.seo-inner-banner .item-left .form-bd .second-form .form-button .button-block input[type="submit"] {  
    margin: 0;
    padding: 0;
    font-size: 18px;
    border-radius: 4px;
    background: #ff6900;
    font-weight: 500;
    color: #fff;
    border: 0;
    width: 120px;
    height: 49px;
    transition: all 0.3s;
}

.seo-inner-banner .item-left .form-bd .second-form 
.form-button .button-block input[type="submit"]:hover { background: #05124c; }


.seo-inner-banner .item-left .form-bd .second-form .button-block button {
    margin: 0;
    margin: 0;
    padding: 0;
    font-size: 18px;
    border-radius: 4px;
    background: #05124c;
    font-weight: 500;
    color: #fff;
    border: 0;
    width: 120px;
    height: 49px;
    transition: all 0.3s;
}

.seo-inner-banner .item-left .form-bd .second-form .button-block button:hover { background: #ff6900; }


/*seo-inner-banner*/

/**/




/*-- seo-expart-block --*/

.seo-expart-block {
    margin: 0;
    padding: 0;
    background: #05124c;
    overflow: hidden;
    max-height: unset;
}
/*.seo-expart-block .bd {
    margin: 0;
    padding: 0;
    background-image: url(../media/seo/seo-expart-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 6px;
    overflow: hidden;
}*/

.seo-expart-block .bd {
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: end;
    position: relative;
}

.seo-expart-block .bd .img_block {
    margin: 0;
    padding: 0;
    width: 45%;
    position: absolute;
    bottom: -129px;
    left: 0;
}

.seo-expart-block .bd .img_block .figure {margin: 0; padding: 0;  }
.seo-expart-block .bd .img_block .figure img {max-width:100%;object-fit:contain;width: 93%;}

.seo-expart-block .bd .text {
    margin: 46px 0 0 0;
    padding: 21px 20px;
    background: #02124a91;
    width: 55%;
}

.seo-expart-block .bd .text h2 {
	margin: 0;
	padding: 0 0 19px 0;
	text-align: left;
	color: #fff;
	font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
}

.seo-expart-block .bd .text h2 span {
    margin: 0;
    padding: 0;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #ff6900;
    font-weight: 700;
    display: inline-block;
}

.seo-expart-block .bd .text p {
    margin: 0;
    padding: 0 0 6px 0;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 600;
}




.seo-expart-block .bd .text ul {
    margin: 0;
    padding: 42px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.seo-expart-block .bd .list-block {padding-top: 59px;}

.seo-expart-block .bd .list-block span {
    font-size: 24px;
    line-height: 28px;
    color: rgb(255 255 255);
    font-weight: 600;
    display: block;
    margin: 0px;
    padding: 0px 0px 20px 0;
}
.seo-expart-block .bd .text ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.seo-expart-block .bd .text ul li {
    margin: 0;
    padding: 0 0 27px 23px;
    font-size: 18px;
    line-height: 24px;
    color: #cfcfcf;
    font-weight: 500;
    position: relative;
    width: 50%;
}

.seo-expart-block .bd .text ul li:after {
    content: "\f046";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    font-family: "FontAwesome";
    font-size: 18px;
    color: #ff6900;
    font-weight: 300;
}

/*-- seo-expart-block --*/

/*--seo-expart-Newclass01--*/

.seo-expart-block.seo-expart-Newclass01 .bd .img_block {	margin: 0;	padding: 0;	width: 45%;
	position: static;	bottom: -129px;	left: 0;	position: relative;	top: -50px; }


/*--seo-expart-Newclass01--*/



/*-- crmdev-tailored --*/

.crmdev-tailored {
    margin: 0;
    padding: 60px 0;
    background: #ecedee;
}
.crmdev-tailored .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom: 45px;
}

.crmdev-tailored .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000;
    font-weight: 700;
    text-align: center;
}

.crmdev-tailored .title h2 span {  margin: 0;
    padding: 0;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #ff6900;
    font-weight: 700;
}

.crmdev-tailored .title p {
    color: #000000;
    width: 86%;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    font-weight: 400;
    text-align: center;
}

.crmdev-tailored .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.crmdev-tailored .item_bd {
    margin: 0;
    padding: 0;

    background: rgb(3,34,169);
    background: linear-gradient(274deg, rgba(3,34,169,1) 0%, rgba(5,18,76,1) 84%);
    border-radius: 10px;
}




.crmdev-tailored .item_bd .row {
    margin: 0;
    padding: 0;
}

.crmdev-tailored .item_bd .row .ma0:nth-child(1),
.crmdev-tailored .item_bd .row .ma0:nth-child(2),
.crmdev-tailored .item_bd .row .ma0:nth-child(3) {
    border-top: 0;
}

.crmdev-tailored .item_bd .row .ma0:nth-child(3n + 1) {
    border-left: 0;
}

.crmdev-tailored .item_bd .ma0 {
    margin: 0;
    padding: 0;
    border: 2px dashed #ddd;
    border-bottom: 0;
    border-right: 0;
}

.crmdev-tailored .item_bd .text {
    padding: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.crmdev-tailored .item_bd .text p {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-size-20);
    line-height: 36px;
    color: #fff;
    font-weight: 700;
}

/*-- crmdev-tailored --*/


/*heilight_block*/

.heilight_block {
    margin: 0;
    padding: 0;
}

.heilight_block .text_bd {
    margin: 0;
    padding: 0px 0 0 27px;
    position: relative;
    border-left: 6px solid #ff6900;
}

/*.heilight_block .text_bd p {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    font-size: 32px;*/
/*    color: #fff;*/
/*    display: block;*/
/*    position: relative;*/
/*    line-height: 45px;*/
/*    font-weight: 500;*/
/*}*/

.heilight_block .text_bd p {
	margin: 0;
	padding: 0;
	font-size: 20px;
	color: #fff;
	display: block;
	position: relative;
	line-height: 27px;
	font-weight: 500;
}

.heilight_block .text_bd p span {
    margin: 0;
    padding: 0;
    font-size:20px;
    color: #ff6900;
    display: inline;
    line-height:26px;
    font-weight: 600;
}

/*heilight_block*/

/*seo-greater-marketing*/

.seo-greater-marketing {
    margin: 0;
    padding: 60px 0;
    background: #eff4ff;
}

.seo-greater-marketing .title {
    margin: 0;
    padding: 0 0 60px 0;
}

.seo-greater-marketing .title:before { display:none; }

.seo-greater-marketing .title h2 {
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    text-align: center;
    font-weight: 700;
    width:80%;
    margin: 0 auto;
    color: #000000;
}


.seo-greater-marketing .title h2 span {
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    font-weight: 700;
    color: #ff6900;
}

.seo-greater-marketing .row .item-col-box:first-child .item-box {background: #05124c;position:relative;box-shadow: 0px 5px 12px -5px rgb(0 0 0 / 31%);}


.seo-greater-marketing .row .item-col-box:first-child .item-box .first-item-poeition {  position: absolute;  right: 15px;  top: 0px;
 width: 101px; }
    
    

.seo-greater-marketing .row .item-col-box:first-child .item-box .first-item-poeition img { width:120px; }

.seo-greater-marketing .row .item-col-box:first-child .item-box ._list li {  color:#fff; }

.seo-greater-marketing .item-box {
    margin: 0;
    padding: 40px 20px;
    background: #05124c;
    border-radius: 10px;
    height: 100%;
}
.seo-greater-marketing .item-box .figure {
    margin: 0;
    padding: 0 0 36px 00;
}

.seo-greater-marketing .item-box .figure img {
    max-width: 100%;
    width: 120px;
}

.seo-greater-marketing .item-box h4 {
    margin: 0;
    padding: 0;
    line-height: 32px;
    color: #000;
    font-size: 26px;
}

.seo-greater-marketing .item-box h3 {
    margin: 0 0 38px 0;
    padding: 0;
    line-height: 32px;
    color: #fff;
    font-size: 26px;
}

.seo-greater-marketing .item-box ._list {
    margin: 0;
    padding: 20px 0 0 0;
    height: 300px;
    overflow-y: auto;
    
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #152777 #ccc;
    
}

.seo-greater-marketing .item-box ._list li {
    margin: 0 0 16px 0;
    padding: 0 6px 0 40px;
    position: relative;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 26px;
    width: 100%;
    display: block;
}


/*.seo-greater-marketing .item-box ._list li:before {*/
/*    content:"";*/
/*    background: url(../media/seo-services/on.webp) no-repeat center;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    margin-top: -12px;*/
/*    width: 24px;*/
/*    height: 24px;*/
/*}*/

/*.seo-greater-marketing .item-box ._list li._itimes:before {*/
/*    background-image: url(../media/seo-services/off.webp) !important;*/
/*}*/

.seo-greater-marketing .item-box ._list li:before {
    content:"";
    background: url(./../media/seo-services/on.webp) no-repeat center;
    position: absolute;
    left: 0;
    top:0;
    margin-top: 1px;
    width: 24px;
    height: 24px;
}

.seo-greater-marketing .item-box ._list li._itimes:before {
    background-image: url(./../media/seo-services/off.webp) !important;
}


/*seo-greater-marketing*/


/*pricing-custom-block*/

.pricing-custom-block {
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;
	background-position: right center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}


.pricing-custom-block .bd-block {margin: 0;padding: 50px 0; }

.pricing-custom-block .bd-block .text { margin: 0; padding: 0 120px 0 0;position: relative;z-index: 10;width: 100%; 
display: flex;align-items: center;justify-content: space-between; }

.pricing-custom-block .bd-block .text h2 {margin: 0;padding: 0; color: #fff;width: 55%;}

.pricing-custom-block .bd-block .text p { margin:0; padding:0; font-size:15px; color:#fff; line-height:21px; }

.pricing-custom-block .bd-block .text .button {margin: 0;padding: 16px 22px; 
    font-size: 16px; border-radius: 4px;background: #ff6900;font-weight: 500;color: #fff;}

.pricing-custom-block .bd-block .right-img {    position: absolute;
    right: 0;    top: 0;    height: 100%;    z-index: -3;
    background: rgba(255,255,255,.24); }

.pricing-custom-block .bd-block .right-img img {    display: block;    min-width: 100%;    min-height: 100%;
opacity: .85; }





/*new*/


.pricing-custom-block .item-bd-block  { margin: 0; padding:30px 0;  }

.pricing-custom-block .item-bd-block h2 {
    margin: 0;
    padding: 0;
    font-size: 26px;
    color: #fff;
    line-height: 38px;
}
.pricing-custom-block .item-bd-block p {
    margin: 0;
    padding: 10px 0 0 0;
    font-size: 18px;
    color: #fff;
    line-height: 24px;
    width: 80%;
}

.pricing-custom-block .item-bd-block .button {margin: 0;padding: 16px 22px; 
    font-size: 16px; border-radius: 4px;background: #ff6900;font-weight: 500;color: #fff;}

.pricing-custom-block .item-bd-block .right-img {    position: absolute;
    right: 0;    top: 0;    height: 100%;    z-index: -3;
    background: rgba(255,255,255,.24); }

.pricing-custom-block .item-bd-block .right-img img {    display: block;    min-width: 100%;    min-height: 100%;
opacity: .85; }


/*pricing-custom-block*/


/*seo-testimonial-slider*/

.seo-testimonial-slider {margin: 0;padding: 60px 0;background: #05124c;}

.seo-testimonial-slider .title {
    margin: 0 0 38px 0;
    padding: 0 0 50px 0;
}

.seo-testimonial-slider .title:before { 
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.seo-testimonial-slider .title h2 {
    margin: 0;
    padding: 0;
    font-size: clamp(28px, 3.2vw, 34px);
    line-height: clamp(34px, 3.8vw, 41px);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.seo-testimonial-slider .title h2 span { 
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    font-weight: 700;
    color: #ff6900;
    display: inline-block;
}


.seo-testimonial-slider .item-bd {margin: 0;padding: 0;}
.seo-testimonial-slider .item-bd .figure {margin: 0 auto;padding: 0 0 30px 0;width: 100%;text-align: center;display: flex;align-items: center;justify-content: center;}
.seo-testimonial-slider .item-bd .figure img {  }

.seo-testimonial-slider .item-bd .text { margin: 0; padding: 0; }
.seo-testimonial-slider .item-bd .text p {
    margin: 0;
    padding: 0;
    font-size:16px;
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    text-align: left;
    font-size: 18px;
    }

.seo-testimonial-slider .item-bd .text .text-bd {margin: 10px 0 10px 32px;padding: 16px 0 16px 12px;border-left: 5px solid #ff6900;}
.seo-testimonial-slider .item-bd .text .text-bd .star {margin: 0;padding: 0;display: flex;align-items: center;}

.seo-testimonial-slider .item-bd .text .text-bd .star .fa {margin: 0;padding: 0 4px;font-size: 20px;color: #ff6900;}

.seo-testimonial-slider .item-bd .text .text-bd .quote_text {margin: 0;padding: 13px 0 0 0;font-size: 18px;color: #ffffff;line-height: 30px;font-weight: 500;}

.seo-testimonial-slider .item-bd .text ._foot {margin: 0;padding: 0;font-size: 20px;display: flex;align-items: center;color: #fff;font-weight: 500;}
.seo-testimonial-slider .item-bd .text ._foot span {margin: 0;padding: 0 8px 0 0;font-size: 40px;font-weight: 600;color: #ff6900;}




.seo-testimonial-slider .testimonial-slider-bd .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 0 0 0;
}

.seo-testimonial-slider .testimonial-slider-bd .slick-dots li button {
    margin: 0 5px;
    padding: 0;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50px;
    font-size: 0;
    border: 0;
}
.seo-testimonial-slider .testimonial-slider-bd .slick-dots li.slick-active button {
    width: 15px;
    height: 15px;
    background: #ec7323;
    border: 0;
}

/*seo-testimonial-slider*/


/*faq_block*/

.faqblock_home {
    margin: 0;
    padding: 60px 0;
    background: #ffffff;
}

.faqblock_home .title {
    margin: 0 0 35px 0;
    padding: 0px 0 28px 0;
}

.faqblock_home .title:before {
    position: absolute;
    left: 50%;
    width: 98px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}
.faqblock_home .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    text-align: center;
    font-weight: 700;
}

.faqblock_home .title h2 span {
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    font-weight: 700;
    color: #ff6900;
    display: inline;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button h4 {
    margin: 0;
    padding: 0;
    background: 0 0;
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    font-size: 18px;
    color: #05124c;
    font-weight: 600;
    line-height: 26px;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button h3 {
    margin: 0;
    padding: 0;
    background: 0 0;
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    font-size: 18px;
    color: #05124c;
    font-weight: 600;
    line-height: 26px;
}

.faqblock_home .bd_block {
    margin: 0 auto;
    padding: 0;
    width: 78%;
}

.faqblock_home .bd_block .accordion {
    margin: 0;
    padding: 0;
}
.faqblock_home .bd_block .accordion .accordion_row {
    margin: 0 0 17px 0;
    padding: 0;
    border: 0; /* border-radius: 4px; */ /* overflow: hidden; */
    /*box-shadow: 0 3px 8px -5px rgba(0, 0, 0, 0.5);*/
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-header {
    margin: 0;
    padding: 16px 18px;
    background: #e8ecf3;
    overflow: hidden;
    border-radius: 6px;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    font-size:18px;
    color:#05124c;
    font-weight: 600;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: #ffffff;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse .accordion-body {
    margin: 0;
    padding: 16px 5px;
    /* border: 0; */
    box-shadow: none;
    /* border: 1px solid #d1d1d1; */
    border-top: 0;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse .accordion-body p {
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
    line-height: 29px;
    color: var(--dark-ass-color);
    font-weight:500;
    text-align: left;
    padding-bottom: 10px;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse .accordion-body ul {
    margin: 0;
    padding: 0 0 0 22px;
    display: flex;
    flex-wrap: wrap;
}
.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse .accordion-body ul li {
    margin: 0 auto;
    padding: 2px 0;
    font-size: var(--font-size-16);
    line-height: 22px;
    color: var(--dark-ass-color);
    font-weight: 400;
    padding-bottom: 7px;
    width: 100%;
    position: relative;
    /*  list-style: decimal; 
    list-style-type: none;*/
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse .accordion-body ul li::before {
    background-color: #005eb8;
    content: " ";
    display: block;
    height: 8px;
    margin-left: -20px;
    transform: translateY(14px);
    width: 8px;
    border-radius: 50px;
    margin-top: 0;
    position: relative;
    top: 3px;
}

/*.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button:not(.collapsed)::after {*/
/*    background-image: var(--bs-accordion-btn-active-icon);*/
/*    transform: var(--bs-accordion-btn-icon-transform);*/
/*    color: #fff;*/
/*    background: url(../media/faq/up-arrow.png) no-repeat left center;*/
/*    background-size: contain;*/
/*}*/

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    background: url(../media/faq/down-arrow.png) no-repeat left center;
    background-size: contain;
}

/*faqblock_home*/

/*seo-landing-box-block*/

.seo-landing-box-block {
    margin: 0;
    padding: 60px 0;
    background: #ffffff;
}

.seo-landing-box-block .web-why-choose-us-inner-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.seo-landing-box-block .title {
    text-align: center;
    padding-bottom: 33px;
    margin-bottom:0;
}



.seo-landing-box-block .title h2 {
    margin: 0 auto;
    padding: 0 0 10px 0;
    width: 70%;
    font-family: "Montserrat", sans-serif;
   font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000000;
    font-weight: 700;
    text-align: center;
}

.seo-landing-box-block .title h2 span {
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    font-weight: 700;
    color: #ff6900;
    display: inline-block;
}

.seo-landing-box-block .title p {
    margin: 0 auto;
    width: 86%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #05124c;
    font-weight: 400;
    text-align: center;
}

.seo-landing-box-block .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}

.seo-landing-box-block .colmb-30 {
    margin-top: 82px;
}

.seo-landing-box-block .item_box {
    /*padding: 10px 15px 36px 10px;*/
    padding: 10px 15px 20px 10px;
    position: relative;
    border-bottom: 5px solid #ecedee;
    -webkit-box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    -moz-box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    box-shadow: 0 5px 10px 0 rgba(72, 73, 121, 0.15);
    border: 0;
    border-bottom: 5px solid transparent;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #818080;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
    background: #05124c;
}

.seo-landing-box-block .item_box .text_box .btn-link-text {
    margin: 18px 0 0 0;
    padding: 8px 13px;
    /*display: inline-block;*/
    display:none;
    /* border: 1px solid #ec7323; */
    border-radius: 27px;
    font-size: 15px;
    line-height: 21px;
    color: #ec7323;
    font-weight: 500;
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 100%;
    transform: translate(-50%);
}


.seo-landing-box-block .item_box .icon_box {
    width: 90px;
    height: 90px;
    -moz-box-shadow: 0 0px 7px 3px rgb(0 10 54);
    border-radius: 100%;
    line-height: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    margin-top: -64px;
    background: #05124c;
    border: 4px solid #fff;
}

.seo-landing-box-block .item_box .icon_box img {
    width: 40px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.seo-landing-box-block .item_box .text_box {
    margin: 0;
    padding: 44px 0 30px 0;
    text-align: center;
}

.seo-landing-box-block .item_box .text_box h3 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    color: #ffffff;
    line-height: 34px;
    font-weight: 600;
}

.seo-landing-box-block .item_box .text_box p {
    margin: 0;
    padding: 12px 0 0 0;
    font-size: var(--font-size-16);
    line-height: 26px;
    color: #c2c2c2;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.seo-landing-box-block .item_box:hover {
    background: #ffffff;
    transition: all 0.3s;
}

.seo-landing-box-block .item_box:hover .text_box h3 {
    color: #05124c;
}

.seo-landing-box-block .item_box:hover .text_box p {
    padding: 12px 0 0 0;
    color: #404040;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.seo-landing-box-block .item_box:hover .icon_box {
    border-radius: 100%;
    line-height: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*--ecommerce_alteration-driven--*/

/*seo-landing-box-block*/

/*seo-subscribe-digital*/

.seo-subscribe-digital {margin:0;padding:60px 0;background: #05124c;}

.seo-subscribe-digital .title {margin: 0;padding: 0 0 44px 0;}

.seo-subscribe-digital .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}


.seo-subscribe-digital .title h2 {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #fff;
    text-align: center;
    font-weight: 700;
}

.seo-subscribe-digital .title h2 span {  margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color:#ff6900;
    font-weight: 700; }


.seo-subscribe-digital .title h2 span { margin: 0; padding: 0; }

.seo-subscribe-digital .title .sub-title {margin: 0;padding: 10px 0 0 0;font-size: 18px;line-height: 24px;color: #fff;font-weight: 500;text-align: center;}
.seo-subscribe-digital .form-bd  {margin: 0 auto;padding: 20px;width: 70%;/* background: #f2f2f2; */}

.seo-subscribe-digital .form-bd form {margin: 0;padding: 0;display: flex;align-items: center;flex-wrap: wrap;width: 100%;}
.seo-subscribe-digital .form-bd form .item {
    margin: 10px 0;
    padding: 0 5px;
    width: 50%;
    box-sizing: border-box;
    height: 40px;
}

.seo-subscribe-digital .form-bd form .item input[type="text"] {
    margin: 0;
    padding: 10px;
    font-size: 16px;
    color: #000;
    line-height: 22px;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 0;
    max-height: 40px;
    }

.seo-subscribe-digital .form-bd form .item input[type="text"]::placeholder { border:0; outline:0; box-shadow:none; color:#000; }

.seo-subscribe-digital .form-bd form .item input[type="text"]::focus-visible { border:0; outline:0; box-shadow:none; color:#000; }

.seo-subscribe-digital .form-bd form .item input[type="text"]::focus { border:0; outline:0; box-shadow:none; color:#000; }


.seo-subscribe-digital .form-bd form .item input[type="email"] {
    margin: 0;
    padding: 10px;
    font-size: 16px;
    color: #000;
    line-height: 22px;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 0;
    max-height: 40px;
    }

.seo-subscribe-digital .form-bd form .item input[type="email"]::placeholder { border:0; outline:0; box-shadow:none; color:#000; }
.seo-subscribe-digital .form-bd form .item input[type="email"]::focus-visible { border:0; outline:0; box-shadow:none; color:#000; }
.seo-subscribe-digital .form-bd form .item input[type="email"]::focus { border:0; outline:0; box-shadow:none; color:#000; }


/*.seo-subscribe-digital .form-bd form .item .checkbox-block {margin: 0; padding: 0;  }*/

.seo-subscribe-digital .form-bd form .item .checkbox-block {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-subscribe-digital .form-bd form .item .checkbox-block .input[type="checkbox"] { margin: 0; padding: 0; }
.seo-subscribe-digital .form-bd form .item .checkbox-block label {margin: 0;padding: 0 0 0 6px; font-size: 18px;color: #fff;}

.seo-subscribe-digital .form-bd form .item .checkbox-block label a { margin: 0; padding: 0; }


.seo-subscribe-digital .form-bd form .item-submit-block {margin: 0 auto;padding: 24px 0 0 0;width: 100%;display: flex;align-items: center;justify-content: center;}
.seo-subscribe-digital .form-bd form .item-submit-block input[type="submit"] {
    background: #ff6900;
    box-shadow: 0 3px 10px 0 rgb(36 81 157/19%)!important;
    border-radius: 30px!important;
    padding: 13px 32px;
    font-size: 16px;
    margin-top: 10px;
    color: var(--white-color);
    font-weight: 500;
    border: 0!important;
    outline: 0!important;
    transition: all .3s;
    border: 1px solid #ff6900 !important;
}

.seo-subscribe-digital .form-bd form .item-submit-block input[type="submit"]:hover { background: #05124c;
    box-shadow: 0 3px 10px 0 rgb(36 81 157/19%)!important;    border-radius: 30px!important;
    padding: 13px 32px;    font-size: 16px;    margin-top: 10px;
    color: var(--white-color);    transition: all .3s;    border: 1px solid #fff !important; } 

.seo-subscribe-digital .form-bd form .item textarea {  margin: 0;
    padding: 10px 10px;   font-size: 16px;
    color: #000; line-height: 22px;    font-weight: 500;
    width: 100%;    box-sizing: border-box;    background: #fff;
    border: 0;    resize: none;    max-height: 40px;
    overflow: hidden;    box-sizing: border-box;  }

.seo-subscribe-digital .form-bd form .item textarea::placeholder { border:0; outline:0; box-shadow:none; color:#000; }
.seo-subscribe-digital .form-bd form .item textarea::focus-visible { border:0; outline:0; box-shadow:none; color:#000; }
.seo-subscribe-digital .form-bd form .item textarea::focus { border:0; outline:0; box-shadow:none; color:#000; }

.seo-subscribe-digital .form-bd form .fullwidth  { width:100%; }

/*seo-subscribe-digital*/



/*crm-system-dev*/


.crm-system-dev .section-botom {margin: 0;padding: 18px 0 0 0;display: flex;align-items: center;justify-content: center;flex-wrap: wrap;}

.crm-system-dev .button-block {margin:0;padding: 0;display:flex;align-items:center;justify-content:center;}
.crm-system-dev .button-block a {
    margin: 0;
    background: #ec7323;
    box-shadow: 0px 3px 10px 0px rgba(236, 115, 35, 0.2);
    color: #fff !important;
    padding: 18px 38px;
    border-radius: 5px;
    line-height: 1;
    vertical-align: unset;
    font-size: 18px;
    display: inline-flex;
    position: relative;
    border-radius: 50px;
    font-weight: 500;
    text-transform: none;
    transition: all 0.3s;
    transition:all 0.3s;
    }


.crm-system-dev .button-block a:hover { background:#05124b; }

.crm-system-dev .description {
    margin: 0 0 0 0;
    padding: 0 0 0 8px;
    font-size: 22px;
    font-weight: 500;
    width: 53%;
    line-height: 30px;
    border-left: 3px solid #ec7323;
}

/*crm-system-dev*/

/*-- digital_h_services0 --*/


.digital_h_services0 {
    margin: 0;
    padding: 60px 0;
}


.digital_h_services0 .title { 
    text-align: center;
    padding-bottom: 29px;
    margin-bottom: 18px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 45px;
}

.digital_h_services0 .title:before {
    position: absolute;
    left: 50%;
    width: 140px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(2 18 116) 0%, rgb(11 87 139) 25%, rgb(5 58 162) 50%, rgb(4 41 255) 75%, rgb(37 73 230) 100%);
}


.digital_h_services0 .title h2 { 
    margin: 0 auto;
    padding: 0 0 12px 0;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
    color: #000;
    font-weight: 700;
    width: 70%;
}

.digital_h_services0 .title p {
    margin: 0 auto;
    padding: 0;
    font-size: 18px;
    line-height: 30px;
    color: #000;
    font-weight: 400;
    width: 76%;
    text-align: center;
}

.digital_h_services0 .bd { margin:0; padding:0; }


.digital_h_services0 .bd .col-item {
    margin-bottom: 30px;
}

.digital_h_services0 .bd .item-box {margin:0;padding: 24px;border: 1px solid #dbdbdb;height: 100%;border-radius: 10px;box-shadow: 0 0px 12px -4px rgba(0,0,0, 0.5);position: relative;}

.digital_h_services0 .bd .item-box .images-sec {margin:0;padding: 0 24px 0 0;position: absolute;right: 0;top: 50%;transform: translatey(-50%);}

.digital_h_services0 .bd .item-box .text-bd {margin:0;padding: 0  105px 0 0;}

.digital_h_services0 .bd .item-box h4 {
    margin: 0;
    padding: 0 0 8px 0;
    width: 100%;
    font-size: 24px;
    line-height: 32px;
    color: #000;
    font-weight: 800;
}

.digital_h_services0 .bd .item-box p {
    margin: 0 auto;
    padding: 0 0 12px 0;
    font-size:16px;
    line-height: 31px;
    color:#333;
    font-weight: 400;
    text-align: left;
}


.digital_h_services0 .bd .item-box ul {margin:0;padding: 11px 0 10px 14px;}

.digital_h_services0 .bd .item-box ul li {
    margin: 0 auto;
    padding: 0 0 9px 0;
    font-size: 15px;
    line-height: 21px;
    color:#333;
    font-weight: 500;
    text-align: left;
    display: list-item;
    list-style-type: disc;
    }


.digital_h_services0 .bd .item-box .full-width-btn {
    margin: 0;
    padding: 0;
    width: 100%;
    border-top: 1px solid #cbcbcb;
}



.digital_h_services0 .bd .item-box .full-width-btn .animate_btn {
    background: var(--orange-color);
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 19%);
    border-radius: 50px;
    transition: all 0.3s;
    margin: 23px 0 0 0;
    padding: 10px 38px;
    font-size: 18px !important;
    color: var(--white-color) ;
    position: relative;
    transition: all 0.6s;
    font-weight: 500;
    display: inline-block;
}

.digital_h_services0 .bd .item-box .full-width-btn .animate_btn:hover {
    background: transparent !important;
    box-shadow: 0 3px 10px 0 rgb(36 81 157 / 0%);
    border-radius: 50px;
    transition: all 0.6s;
    padding: 10px 38px 10px 0;
    color:#000 !important;
}

/*-- digital_h_sectionbox0 --*/



/*request-free-proposal*/

.request-free-proposal { margin:0; padding:60px 0; position: relative; }

.request-free-proposal::after {
	content: "";
	width: 50%;
	height: 100%;
	/* background-image: url(../media/arobitdigital-all-images/industry/healthcare/masthead-bg.webp); */
	background: #05124c;
	position: absolute;
	right: 0;
	top: 0;
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center center;
	background-attachment: fixed;
	z-index: 1;
}

.request-free-proposal .bd { margin: 0; padding: 0; position:relative; z-index:5; }

.request-free-proposal .item-lt {
    margin: 0;
    padding: 0;
    position: sticky;
    top: 150px;
}

.request-free-proposal .item-lt h2 {    margin: 0;    padding: 0 0 36px 0;    font-family: montserrat,sans-serif;
    font-size:30px;    line-height: 45px;    color: #000;    font-weight: 700;    width: 100%; }

.request-free-proposal .item-lt .form-block { margin: 0; padding: 0; }

.request-free-proposal .item-lt .form-block form {margin: 0;padding: 0;display: flex;align-items: center;flex-wrap: wrap;}
.request-free-proposal .item-lt .form-block .item {margin: 0;padding: 5px 9px;width: 50%;}
.request-free-proposal .item-lt .form-block .item label {margin: 0;padding: 0;font-size: 16px;line-height: 22px;color: #444;font-weight: 500;}
.request-free-proposal .item-lt .form-block .item input[type="text"] {margin: 0;padding: 10px 4px;border: 0;
    border-bottom: 1px solid #ababab;width: 100%;font-size: 16px;line-height: 22px;color: #000;}
.request-free-proposal .item-lt .form-block .item input[type="email"] { 
    margin: 0;padding: 10px 4px;border: 0;border-bottom: 1px solid #ababab; 
    width: 100%;font-size: 16px;line-height: 22px;color: #000; }

.request-free-proposal .item-lt .form-block .item textarea { margin: 0;padding: 10px 4px;border: 0;border-bottom: 1px solid #ababab; 
    width: 100%;font-size: 16px;line-height: 22px;color: #000; height:80px; resize:none; }

.request-free-proposal .item-lt .form-block .item input[type="text"]:placeholder { border:0; outline:0; box-shadow:0; }
.request-free-proposal .item-lt .form-block .item input[type="text"]:focus-visible { border:0; outline:0;
 box-shadow:0; border-bottom: 1px solid #000; }

.request-free-proposal .item-lt .form-block .item input[type="email"]:placeholder { border:0; outline:0; box-shadow:0; }
.request-free-proposal .item-lt .form-block .item input[type="email"]:focus-visible { border:0; outline:0;
 box-shadow:0; border-bottom: 1px solid #000; }

.request-free-proposal .item-lt .form-block .item textarea:placeholder { border:0; outline:0; box-shadow:0; }
.request-free-proposal .item-lt .form-block .item textarea:focus-visible { border:0; outline:0;
 box-shadow:0; border-bottom: 1px solid #000; }


.request-free-proposal .item-lt .form-block .full-width {    margin: 0;    padding: 5px 9px;  
    width:100% !important; }



.request-free-proposal .item-lt .form-block .full-width {    margin: 0;    padding: 5px 9px;  
    width:100% !important; }



.request-free-proposal .item-lt .submit-button {margin: 0 auto;padding: 14px 0 0 0;width: 100%;display: flex;align-items: center;justify-content: center;}

.request-free-proposal .item-lt .submit-button input[type="submit"] {
    box-shadow: 0 3px 10px 0 rgb(36 81 157/19%);
    border-radius: 50px;
    transition: all .3s;
    margin: 0;
    padding: 12px 38px;
    font-size: 18px!important;
    color: #fff;
    position: relative;
    transition: all .6s;
    font-weight: 500;
    border: 1px solid #05124c;
    background: #05124c;
    transition: all 0.3s;
}

.request-free-proposal .item-lt .submit-button input[type="submit"]:hover {
    border: 1px solid #152a87;
    background: #152a87;
}

.request-free-proposal .item-rt {margin: 0;padding: 0 0 0 20px;}
.request-free-proposal .item-rt h3 {    margin: 0;    padding: 0 0 36px 0;    font-family: montserrat,sans-serif;
    font-size:30px;    line-height: 45px;    color: #fff;    font-weight: 700;    width: 100%; }

.request-free-proposal .item-rt p {margin: 0;padding: 0;font-size: 16px;line-height: 22px;color: #fff;}
.request-free-proposal .item-rt ul { margin: 0; padding:0; }
.request-free-proposal .item-rt ul li {margin: 0;padding: 15px 0 15px 23px;display: block;position: relative;}

.request-free-proposal .item-rt ul li:after {content:"\f046";width: 16px;height:20px;position:absolute;left:0;top: 14px; 
    font-family: "FontAwesome";z-index: 10;color: #fff;font-size: 17px;}

.request-free-proposal .item-rt ul li strong {margin: 0;padding: 0 0 6px 0;font-size: 18px;line-height: 24px;color: #fff;display: block;}
.request-free-proposal .item-rt ul li p {margin: 0;padding: 0;font-size: 16px;line-height: 22px;color: #ccc;}

.request-free-proposal .item-rt .img-block {margin: 0;padding: 20px 0 0 0;}
.request-free-proposal .item-rt .img-block img {width: 100%;object-fit: contain;}

/*request-free-proposal*/



/*-- unlock-benefits --*/

.unlock-benefits { margin:0; padding:60px 0; }
.unlock-benefits .item-title { margin: 0; padding: 0; }
.unlock-benefits .item-title h3 {  margin: 0;   padding: 0;   font-size: 38px;   line-height: 50px;
   color: #000;   font-weight: 700;   width: 100%; }

.unlock-benefits .item-wrapper {margin: 0;padding: 0 0 32px 0;}
.unlock-benefits .item-wrapper .top {margin: 0;padding: 0 0 10px 0;display: flex;align-items: center;}
.unlock-benefits .item-wrapper .top img {width: 40px;object-fit: contain;}
.unlock-benefits .item-wrapper .top h4 {   margin: 0;    padding: 0 0 0 6px;
    font-size: 21px;  line-height:32px;    color: #000;  font-weight: 700; }


.unlock-benefits .item-wrapper ul {margin: 0;padding: 0 0 0 52px;}
.unlock-benefits .item-wrapper ul li {
    margin: 0;
    padding: 0 0 12px 21px;
    font-size: 16px;
    line-height: 24px;
    color: #444;
    display: block;
    font-weight: 500;
    position: relative;
    } 

.unlock-benefits .item-wrapper ul li:after {
    content:"\f046";
    width: 20px;
    height:20px;
    position:absolute;
    left:0;
    top: 0;
    font-family: "FontAwesome";
    z-index: 10;
    color: #444;
    font-size: 16px;
    }
/*-- unlock-benefits --*/

/*featured-case-study*/

.featured-case-study {
	margin: 0;
	padding: 60px 0;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.featured-case-study .figure { margin: 0; padding: 0; }
.featured-case-study .figure img {  }

.featured-case-study .right-block { margin:0; padding:0; }
.featured-case-study .right-block h3 {     margin: 0;    padding: 0;    font-size: 38px;
    line-height: 50px;    color: #000;    font-weight: 700;
    width: 100%; }

.featured-case-study .right-block h4 {    margin: 0;    padding: 23px 0 8px 0;
    font-size: 30px;    line-height: 50px;    color: #000;    font-weight: 700;
    width: 100%; }

.featured-case-study .right-block p {margin:0;padding:0;font-size: 16px;line-height: 22px;color: #444;}

.featured-case-study .right-block .increase {margin:0;padding: 15px 0 0 0;display: flex;}
.featured-case-study .right-block .increase .item {margin:0;padding: 0 7px;width: 33.33%;text-align: center;}
.featured-case-study .right-block .increase .item span {margin:0;padding:0;display: block;font-size: 30px; 
    font-weight:600;color: #05124c;}
.featured-case-study .right-block .increase .item p {margin:0;padding: 7px 0 0 0;font-size: 14px;line-height: 20px;color: #000;font-weight: 600;}


/*featured-case-study*/


/*digital-arobit-testimonials*/

.digital-arobit-testimonials { margin:0; padding:60px 0 0 0; }

.digital-arobit-testimonials .slider-bd { position:relative; z-index:5; }

.digital-arobit-testimonials .title { margin:0; padding:0 0 50px 0; }

.digital-arobit-testimonials .title:before { display:none; }


.digital-arobit-testimonials .title h2 { text-align:center; }

.digital-arobit-testimonials .item {box-shadow: 0 0px 9px 1px rgba(0,0,0, 0.5); 
    margin: 10px 15px; padding: 40px 20px 50px 20px;
    background: #f2f2f2;border-radius: 5px;}

.digital-arobit-testimonials .item .quote-icon {margin: 0 auto;padding: 0;text-align: center;}
.digital-arobit-testimonials .item .quote-icon .fa {font-size: 50px;color: #d9dce7;}
.digital-arobit-testimonials .item h3 {margin: 0;padding: 10px 0 0 0;font-size: 22px;text-align: center;line-height: 28px;}
.digital-arobit-testimonials .item span {margin: 0;padding: 6px 0 24px 0;font-size: 15px;color: #000;line-height: 22px;text-align: center;display: block;font-weight: 600;}
.digital-arobit-testimonials .item p {margin: 0;padding: 0;font-size: 16px;line-height: 29px;color: #444;text-align: center;}



.digital-arobit-testimonials .testimonials-slider .slick-prev {
    background: var(--light-ass-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    outline: 0!important;
    border: 0!important;
    /* box-shadow: unset!important; */
    font-size: 0!important;
    border-radius: 50%;
    left: -38px;
    top: 50%;
    position: absolute;
    transition: all .3s;
    transform: translatey(-50%);
    box-shadow: 0 0 14px 2px rgba(0,0,0, 0.5);
}

.digital-arobit-testimonials .testimonials-slider .slick-prev:after {
    content: "\f060 ";
    width: auto;
    height: auto;
    background: 0 0;
    left: 10px;
    top: 0;
    font-size: 25px;
    color: #182355;
    font-family: fontawesome;
    line-height: 30px;
    font-weight: 100;
    transition: all .3s;
}


.digital-arobit-testimonials .testimonials-slider .slick-next {
    background: var(--light-ass-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    outline: 0!important;
    border: 0!important;
    box-shadow: 0 0 14px 2px rgba(0,0,0, 0.5);
    font-size: 0!important;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -28px;
    transition: all .3s;
}

.digital-arobit-testimonials .testimonials-slider .slick-next:after {
    content: "\f061 ";
    width: auto;
    height: auto;
    background: 0 0;
    right: 10px;
    top: 0;
    font-size: 25px;
    color: #182355;
    font-family: fontawesome;
}

/**/

.bottom-rate {margin: -76px 0 0 0;padding: 144px 0 60px 0;position: relative;z-index:1;}
.bottom-rate .bd { margin: 0; padding: 0; }
.bottom-rate .item {margin: 0;padding: 0;background: transparent;box-shadow: none;}
.bottom-rate .item .rate-number {margin: 0;padding: 0 0 10px 0;font-size: 50px; 
    color: #fff;line-height: 60px;font-weight:bold;}
.bottom-rate .item span { margin: 0; padding: 0; }

.bottom-rate .item p {margin: 0;padding: 0;font-size: 16px;line-height: 30px;color: #babfd7;text-transform: uppercase;font-weight: 600;}

/*digital-arobit-testimonials*/



/*-- free-proposal-form --*/

.free-proposal-form { margin:0; padding:60px 0; }

.free-proposal-form .title { padding-bottom:40px; }
.free-proposal-form .title:before { display:none; }

.free-proposal-form .title h2 { text-align:center; }
.free-proposal-form .title h2 span {  
    font-size: clamp(28px, 3.2vw, 34px);
    line-height: clamp(34px, 3.8vw, 41px);
    font-weight:700; font-style:italic; }

.free-proposal-form .bd-block { margin:0; padding:0; }
.free-proposal-form .bd-block h3 {
    margin: 0;
    padding: 22px 0 36px 0;
    font-family: montserrat,sans-serif;
    font-size: 30px;
    line-height: 45px;
    color: #000;
    font-weight: 700;
    width: 100%;
    text-align: center;
    }


.free-proposal-form .bd-block form {margin: 0;padding: 0;display: flex;align-items: center;flex-wrap: wrap;}
.free-proposal-form .bd-block .item {margin: 0;padding: 15px 9px;width: 33.33%;}
.free-proposal-form .bd-block .item label {margin: 0;padding: 0;font-size: 16px;line-height: 22px;color: #444;font-weight: 500;}
.free-proposal-form .bd-block .item input[type="text"] {
    margin: 0;
    padding: 16px 4px;
    border: 0;
    border-bottom: 1px solid #ababab;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    }
.free-proposal-form .bd-block .item input[type="email"] {
    margin: 0;
    padding: 16px 4px;
    border: 0;
    border-bottom: 1px solid #ababab;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    }

.free-proposal-form .bd-block .item textarea {
    margin: 0;
    padding: 16px 4px;
    border: 0;
    border-bottom: 1px solid #ababab;
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    height: 57px;
    resize:none;
    }

.free-proposal-form .bd-block .item input[type="text"]:placeholder { border:0; outline:0; box-shadow:0; }
.free-proposal-form .bd-block .item input[type="text"]:focus-visible { border:0; outline:0;
 box-shadow:0; border-bottom: 1px solid #000; }

.free-proposal-form .bd-block .item input[type="email"]:placeholder { border:0; outline:0; box-shadow:0; }
.free-proposal-form .bd-block .item input[type="email"]:focus-visible { border:0; outline:0;
 box-shadow:0; border-bottom: 1px solid #000; }

.free-proposal-form .bd-block .item textarea:placeholder { border:0; outline:0; box-shadow:0; }
.free-proposal-form .bd-block .item textarea:focus-visible { border:0; outline:0;
 box-shadow:0; border-bottom: 1px solid #000; }


.free-proposal-form .bd-block .submit-button {margin: 0 auto;padding: 14px 0 0 0;width: 100%;display: flex;align-items: center;justify-content: center;}

.free-proposal-form .bd-block .submit-button input[type="submit"] {
    box-shadow: 0 3px 10px 0 rgb(36 81 157/19%);
    border-radius: 50px;
    transition: all .3s;
    margin: 0;
    padding: 12px 38px;
    font-size: 18px!important;
    color: #fff;
    position: relative;
    transition: all .6s;
    font-weight: 500;
    border: 1px solid #05124c;
    background: #05124c;
    transition: all 0.3s;
}

.free-proposal-form .bd-block .submit-button input[type="submit"]:hover {
    border: 1px solid #152a87;
    background: #152a87;
}


/*-- free-proposal-form --*/

/*-- cta-section --*/

.cta-section {
    padding: 50px 0 80px 0;
    position: relative;
    text-align: center;
}

 .cta-section .cta-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.cta-section h2 {
    color: #fff;
    display: block;
    font-size: 38px;
    line-height: 44px;
}

 .strategist-btn-wrapper {
    display: inline-block;
    margin-top: 20px;
}

 .cta-section .strategist-btn {
    background-color: #05124c;
    padding: 19px 55px 19px 120px;
    border-radius: 6px;
    display: inline-block;
    text-align: left;
    position: relative;
}

.cta-section .strategist-btn .mid {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    display: block;
}

 .cta-section .strategist-btn .bot {
    color: #fff;
    font-weight: 500;
    font-size: 32px;
    word-break: break-all;
}

 .cta-section .strategist-btn:before {
    content: '\f095';
    background-repeat: no-repeat;
    border: none!important;
    text-decoration: none!important;
    cursor: pointer;
    width: 47px;
    height: 47px;
    position: absolute;
    top: 50%;
    left: 55px;
    display: inline-block!important;
    transform: translate(0,-50%);
    font-family: "FontAwesome";
    font-size: 42px;
}



/*-- cta-section --*/


/* ── RESPONSIVE (common) ────────────────────────────────────── */
 .fa-solid,
.fas,
.fa-brands,
.fab {
    font-weight: 500;
    font-family: "FontAwesome" !important;
}

/*custom-css*/

@media screen and (min-width: 1920px) {
    .portfolio_block .portfolio_slider_bd {@
        margin-left: calc((100% - 1320px) / 120);
    }

    .counter-section .col-right .bd .item .count-no {
        font-size: 40px;
        line-height: 43px;
    }


.arobit-case-studies-block .cs-item-wrapper:nth-child(2n) .cs-image-wrapper {
    margin-left: 63.333333%;
    margin-right: auto;
}

.arobit-case-studies-block .cs-item-wrapper .cs-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 66.555555%;
}

    
/**/
}
@media screen and (min-width: 1600px) {
    .counter-section .col-right {
        margin: 0;
        padding: 0;
    }

    .counter-section .col-right .bd .item {
	margin: 10px;
	padding: 20px 15px;
	width: 46%;
}

    .service_desk .services-tabs .left_block {
        width: 30%;
    }

    .service_desk .services-tabs .right_block {
        padding: 30px 20px 20px 56px;
        width: 70%;
    }
    

    .portfolio_block .portfolio_slider_bd {
        margin-left: calc((100% - 1320px) / 120);
    }




.arobit-case-studies-block .cs-item-wrapper:nth-child(2n) .cs-image-wrapper {
    margin-left: 63.333333%;
    margin-right: auto;
}

.arobit-case-studies-block .cs-item-wrapper .cs-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 66.555555%;
}

.common-padd {
	padding-top: 70px;
	padding-bottom: 70px;
}

.common-padd-lt-rt {
	padding-right: 50px;
	padding-left: 50px;
}

.global-text {
	padding: 25px;
}




/**/
}
/**/
@media screen and (max-width: 1480px) {
    .banner_home .tenc-intro-main__wrapper span { font-size: 46px; line-height: 60px; }
    
/**/
}
/**/

@media screen and (max-width: 1280px) {
    
/**/
}
/**/
@media screen and (max-width: 1200px) {

h2, h3, h4, h5, h6 {    font-size: 30px;    font-weight: 600;    line-height: 42px; }

.navbar-header img {
        width: 129px;
    }
    .main-navbar .navbar-nav > li > a {
        font-size: var(--font-size-14);
    }
    .main-navbar .navbar-nav > li {
        padding: 0 4px;
    }
    .estimate_btn {
        font-size: 14px !important;
    }
    header.white-bg .main-navbar-wrap .main-navbar .navbar-nav > li > a {
        font-size: var(--font-size-14);
    }
    .estimate_btn:hover {
        font-size: 14px !important;
    }

    .main-navbar-wrap.selected .navbar-nav > li > a {
        font-size: var(--font-size-14);
    }

    .top-review-bar .top-right-part {
        font-size: 12px;
    }

    .top-review-bar .top-left-part a img {
        width: 50px;
    }
    .top-left-part .star + strong {
        font-size: 12px;
    }

    .top-review-bar .top-right-part .head-top-requet-btn {
        animation: changeBackgroundColor 7s infinite;
        font-size: 10px;
    }

    .sub-menu > li > a {
        font-size: var(--font-size-14);
    }
    .sub-level2 > li > a {
        font-size: var(--font-size-14);
    }

    .banner_home .tenc-intro-main__wrapper span {
        font-size: 40px;
    }

    .brand-logo {
        padding: 60px 0;
    }
    .home_about {
        padding: 60px 0 60px 0;
    }

 .counter-section .title h2 {	font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);	width: 62%; }

.counter-section .title h3 {    padding: 0 0 0 30px;        font-size: var(--font-size-16);        line-height: 25px;        width: 47%;    }
.counter-section .title p {    padding: 0 0 0 30px;        font-size: var(--font-size-16);        line-height: 25px;        width: 47%;    }

.service_desk .title h2 {	font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
  width: 53%; padding-right: 30px; }

.service_desk .title p {        font-size: var(--font-size-18);        line-height: 32px;   }

    .counter-section .col-right { margin: 0;   padding: 0;  }

    .service_desk .services-tabs {
        margin: 2px 6px 30px 40px;
    }

    .home_industry_block .title h2 {
        font-size: var(--font-size-90);
        line-height: 100px;
        width: 70%;
    }
    
    .crm-system-dev .process-box h4 {
        font-size: var(--font-size-16);
        line-height: 22px;
    }
    
    .crm-system-dev .process-box h3 {
            font-size: var(--font-size-16);
            line-height: 22px;
        }
    
    
    .portfolio_block .portfolio_slider_bd {
        margin-left: calc((100% - 1143px) / 2);
    }
    .service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li a {
        font-size: var(--font-size-16);
        line-height: 23px;
    }

    .technologies_block #technologies_tabs li {
        padding: 0 0 28px 0;
    }
    .main-content-block a img {
        width: 300px;
        object-fit: contain;
    }

    .portfolio_block .portfolio_slider_bd .item .portfolio-figure .images {
        height: 300px;
    }

    .our-solutions_clients .ltem_block {
        flex-wrap: wrap;
    }

    .happy-clients .row {
        padding-left: 15px;
        padding-right: 15px;
    }

    .crm-system-dev .col-item {
        padding-right: 15px;
        padding-left: 15px;
    }

    .technologies_block .technologies_tabs .tab-content .technologies_icons {
        display: flex;
        flex-wrap: wrap;
    }

    .meet-the-team-section .meet-the-team-content .title h2 {
        line-height: 45px;
        width: 100%;
    }

    .about-leadership-section .about-leadership-image {
        min-height: auto;
    }

    .team_members {
        padding: 0 0 60px 0;
    }

    .howwe-worksection-wrapper .item_right {
        margin: 0;
        padding: 0;
        top: 80px;
    }

    .onboarding_bdwrapper .item_right {
        padding: 0;
    }

    .faqinner_block .col_faq-wrapper .item-rt-wrapper {
        top: 100px;
        padding: 0;
    }

    .mvp-services-offer-section .item_box .text_box h3 {
        font-size: 22px;
        line-height: 26px;
    }

    .mvp-develop-alter .item_bd .item-box h4 {
        font-size: 22px;
        line-height: 26px;
    }
    .pricing_bdwrapper .item_right .item_list ul li {
        padding: 6px 0 6px 8px;
    }

    .pricing_bdwrapper .item_right {
        position: sticky;
        top: 84px;
        padding: 0;
    }

    .innerbanner_block .banner_text .col_bd {
        width: 100%;
    }

  .counter-section .col-right .bd .item .count-no span.text {
	display: inline-block;
	width: 100%;
	text-align: left;
	font-size: 20px;
}

    .counter-section .col-right .bd .item .text-bd {
        padding: 10px 0 0 0;
    }

    .erp-Why-choose-custom .rt_block img {
        max-width: 100%;
        position: relative;
        right: -23px;
        border-radius: 10px;
    }

    .erp-Why-choose-custom .rt_block {
        margin: 0;
        padding: 0 24px 0 0;
    }

    .erp-custom-built-sec .item-bd .text-block ul li {
        width: 100%;
        padding: 0 0px 14px 21px;
    }

    .erp-industry-specific .top-block p {
        font-size: 18px;
        line-height: 28px;
    }

    .innerbanner_block .banner_text {
        padding: 55px 0 15px 0;
    }

.uiuxdev-isoand-block .bd { padding: 0 15px;}

.uiuxdev-application-block .bd {  padding: 0 15px;}


.industry-grade .item-left h2,h3,h4,h5 { font-size:20px; line-height:26px; }


.uiux-design-unique-sec .item_bdwrapper .item-text h3 {
    font-size: 20px;
    line-height: 30px;
}

.cookies_wrapper p {
	width: 100%;
}

.homepage_onload_popup .popup_bd {  width: 95%; }

.homepage_onload_popup .popup_bd .item_row .item_col .link_block ul li a {
    margin: 2px;
    padding: 6px;
    font-size: 14px;
    line-height: 22px;
}


.homepage_onload_popup .popup_bd .item_row .item_col .link_block ul li {
    margin: 3px;
    padding: 0px;
}

.homepage_onload_popup .popup_bd .item_row .item_col {
    margin: 0;
    padding: 0 8px;
    width: 50%;
}
.homepage_onload_popup .popup_bd .popup_footer p {
    padding: 0 12px 0 0;
    font-size: 24px;
    line-height: 30px;
}

.homepage_onload_popup .popup_bd .item_row .item_col .top p {
    font-size: 18px;
    line-height: 22px;
}

.homepage_onload_popup .popup_bd .item_row .item_col .link_block {
    margin: 0;    padding: 15px 0; }

.counter-section .col-right .bd .item .count-no {
	display:flex;
	padding: 0 0 4px 0;
	font-size: 24px;
	line-height: 38px;
	flex-wrap: nowrap;
}

.counter-section .col-right .bd .item .count-no { font-size: 24px;	line-height: 30px; }
.counter-section .col-right .bd .item .count-no p {	font-size: 24px;	line-height: 32px; }

.counter-section .col-right .bd .item { display: flex; align-items: center;
	margin-top: 40px; }

.industry_serv-tab .title h2 {	font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
  width:100%; }

.section__hassle .item-list h3 { font-size: 24px; line-height: 34px; }

.industris-health-sec .item-bd .item-box p {	font-size: 15px;	line-height: 24px; }

.industris-health-sec .item-bd .item-box {	min-height: 141px; }

.industris-customers-sec .item-bd .item-box p {	font-size: 18px;	line-height: 26px; }

.crmdev-tailored .item_bd .text p {	font-size: 18px;	line-height: 28px; }

.requestproposal-sec {	padding: 85px 0 50px 0; }
.requestproposal-sec .item-row .item-left {	padding: 30px 26px; }
.requestproposal-sec .item-row .item-right .title-right {	padding: 0 0 30px 0; font-size: 34px; line-height: 40px; }
.contact-featured-case .item-row .col-lt img {	max-width: 100%;	width: 89%; }

.sEo-measurable-business .item-sec span { font-size: 24px; line-height: 30px; }
.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text p { font-size: 18px; line-height: 29px; }

.sEo-getfree-proposal .textBd span { font-size: 30px;	font-weight: 600; line-height: 36px; }
.sEo-getfree-proposal .textBd p { font-size: 20px;	line-height: 33px; }

.sEo-getfree-proposal .textBd {	width: 88%; }
.sEo-getfree-proposal {	margin: 0;	padding: 60px 0 0 0; }

.arobit-digitalbanner .left-block h1 {	font-size: 40px;	line-height: 52px; }

.arobit-digitalbanner {	padding-top: 50px;	padding-bottom: 56px; }

.H-improvethe-business .business-tab_bd .nav-tabs .nav-item .nav-link {
	padding: 10px 24px;	font-size: 18px;	line-height: 28px; }
.H-improvethe-business { padding: 50px 0; }
.arobitglobal-map {	padding: 100px 48px; }
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block ul li {
	font-size: 16px;	line-height: 24px;  }
	







/**/
}

@media (max-width: 1024px) {
    header.arobit_desktop_view {
        display: none;
    }

    .mobile_menu {
        display: block;
        box-shadow: 0px 4px 23px -14px rgba(0, 0, 0, 0.5);
    }

   
    .mobile_menu.main .cd-nav {
        display: block;
    }

    /*-- mobile-responsive-menu --*/

    header.responsive_menu.white-bg {
        background: #fff;
        position: fixed;
        top: 0;
        z-index: 999;
    }

    /*-- mobile-responsive-menu --*/

.about-leadership-section .about-leadership-content-wrap::before {
    display:none;
}

.about-leadership-section .about-leadership-content-wrap::before {
    display:none;
}

.about-leadership-section {

	overflow-x: hidden;
}







/**/
}
@media screen and (max-width: 991px) {
    /*.title h2 {*/
    /*    font-size: 30px !important;*/
    /*    line-height: 40px !important;*/
    /*}*/
    .title p {
        width: 100%;
        font-size: var(--font-size-16);
        line-height: 24px;
    }

    .crm-system-dev .home-ourcrm-step {
        display: block;
    }
    .crm-system-dev .home-ourcrm-step .col-item::before {
        display: none;
    }
    .banner_home .tenc-intro-main__wrapper span {
        font-size: 40px;
        line-height: 60px;
        padding: 90px 0 0 0;
        width: 94%;
    }

    .brand-logo {
        padding: 40px 0;
    }

    .brand-logo h1 {
        font-size: var(--font-size-16);
        line-height: 31px;
        width: 92%;
    }
    
    .brand-logo p {
        font-size: var(--font-size-16);
        line-height: 31px;
        width: 92%;
    }

    .home_about .title h2 {
        font-size: 26px;
        line-height: 36px;
        font-weight: 700;
        width: 75%;
    }

    .home_about {
        padding: 40px 0;
    }

    .home_about .item-right {
        padding: 0;
        margin-bottom: 0;
        margin-top: 20px;
    }
    .counter-section .title {
        margin: 0;
        padding: 0;
        display: block;
        align-items: center;
    }
    .counter-section .title h2 {
        font-size: 40px;
        line-height: 63px;
        width: 100%;
        text-align: center;
    }

    .counter-section .title h2 br {
        display: none;
    }

    .service_desk .services-tabs .left_block .nav button.nav-link h3 {
        font-size: var(--font-size-16);
        line-height: 20px;
        letter-spacing: -0.16px;
        display: inline-block;
        padding: 15px 32px 15px 20px;
    }

    .service_desk .services-tabs .left_block {
        margin: 0 0 0 -35px;
        padding: 45px 0 20px 14px;
        width: 35%;
        position: relative;
        left: 0;
        top: -23px;
    }

    .counter-section .title h3 {
        padding: 0 0 0 30px;
        font-size: var(--font-size-16);
        line-height: 25px;
        width: 100%;
        text-align: center;
    }
    
    .counter-section .title p {
        padding: 0 0 0 30px;
        font-size: var(--font-size-16);
        line-height: 25px;
        width: 100%;
        text-align: center;
    }
    
    .counter-section .col-right .bd .item .count-no {
        padding: 0 0 20px 0;
        font-size: var(--font-size-32);
        line-height: 38px;
        font-weight: 800;
    }

    .service_desk {
        padding: 40px 0;
    }

    .service_desk .title h2 {
        font-size: clamp(28px, 3.2vw, 34px);
        line-height: clamp(34px, 3.8vw, 41px);
        width: 100%;
        text-align: center;
    }

    .service_desk .title h2 br {
        display: none;
    }
    .service_desk .title {
        margin: 0 0 60px 0;
        padding: 0;
        display: block;
        align-items: center;
    }

    .service_desk .title p {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
    }
    .service_desk .services-tabs .right_block {
        padding: 30px 20px 20px 50px;
        width: 68%;
    }

    .service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text h3 {
        padding: 0 0 12px 0;
        width: 100%;
        font-size: 26px;
        line-height: 38px;
        font-weight: 700;
    }

    .service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul {
        margin: 0;
        padding: 10px 0;
        display: block;
    }
    .service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li {
        margin: 0 0 0 0px;
        padding: 4px 10px 4px 22px;
        display: block;
        width: 100%;
    }

    .home_industry_block .title h2 {
        font-size: 50px;
        line-height: 70px;
        width: 70%;
    }

    .home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content h3.homepage-slide-title {
        padding: 0px 0 9px 0;
        font-size: 26px;
        line-height: 42px;
        font-weight: 700;
    }

    .ecosystem_block .bd .left h2 {
        margin: 0 auto;
        padding: 0 0 12px 0;
        width: 100%;
        font-size: 30px;
        line-height: 38px;
        font-weight: 700;
    }
    .ecosystem_block .bd .left ul {
        display: block;
    }
    .ecosystem_block .bd .left ul li {
        padding: 3px 10px 3px 22px;
        width: 50%;
        display: block;
        width: 100%;
    }

    .ecosystem_block {
        margin: 0;
        padding: 90px 0 50px 0;
    }
    .why_businesses .title h2 {
        width: 70%;
        font-size: 30px;
        line-height: 38px;
    }

    .why_businesses .item_row .item_col ul li {
        padding: 0 0 14px 0px;
        font-size: 16px;
        display: block;
        line-height: 27px;
    }

    .crm-system-dev .title h2 {
        padding: 0 0 12px 0;
        width: 100%;
        font-size: 30px;
        line-height: 36px;
        font-weight: 700;
        width: 70%;
    }

    .crm-system-dev .title p {
        font-size: var(--font-size-16);
        line-height: 28px;
        width: 76%;
        text-align: center;
    }

    .testimonials_block .title h2 {
        font-size: 30px;
        line-height: 47px;
    }

    .testimonials_block .item_col .item_bd .left_block h3 {
        font-size: var(--font-size-20);
        line-height: 42px;
    }

    .testimonials_block .item_col .item_bd .left_block span.st4_nm {
        font-size: var(--font-size-16);
        line-height: 18px;
    }

    .testimonials_block .item_col .item_bd .right_block {
        width: 238px;
    }
    .portfolio_block .title h2 br {
        display: none;
    }

    .portfolio_block .title h2 {
        font-size: 30px;
        line-height: 36px;
        font-weight: 700;
        width: 70%;
    }

    .portfolio_block .portfolio_slider_bd {
        margin-left: calc((100% - 100%) / 2);
        padding-left: 30px;
    }

    .counter-section {
        padding: 50px 0;
    }
    .home_industry_block {
        width: 100%;
        height: 500px;
    }
    .our-solutions_clients .ltem_block {
        padding: 31px 0 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .happy-clients .title h2 {
        font-size: 30px;
        line-height: 46px;
    }

    .happy-clients .row {
        padding-left: 30px;
        padding-right: 30px;
    }

    .technologies_block .title h2 {
        width: 100%;
        font-size: 30px;
        line-height: 41px;
    }

    .crm-system-dev {
        padding: 50px 0;
    }
    .portfolio_block .portfolio_slider_bd .item .portfolio-figure .images {
        height: auto;
    }

    .portfolio_block {
        padding: 50px 0;
    }

    .our-solutions_clients .title h2 {
        font-size: 30px;
        line-height: 38px;
        font-weight: 700;
    }

    .happy-clients {
        padding: 50px 0;
    }
    .technologies_block {
        padding: 50px 0;
    }
    .faqblock_home {
        padding: 50px 0;
    }

    .faqblock_home .title h2 {
        font-size: 30px;
        line-height: 36px;
        font-weight: 700;
    }
    
    .email_block h4 {
        font-size: 15px;
        line-height: 22px;
    }
    
    .email_block p b {
        font-size: 15px;
        line-height: 22px;
    }
    .portfolio_block .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption {
        height: 100%;
        min-height: 204px;
    }

    .testimonials_block .testi-slider .slick-next {
        position: absolute;
        top: -110px;
        right: 26px;
    }

    .testimonials_block .testi-slider .slick-prev {
        position: absolute;
        right: 86px;
    }

    .counter-section .col-right .bd .item .count-no p {
        font-size: 30px;
        min-height: auto;
    }

    .meet-the-team-section .meet-the-team-content .title h2 {
        font-size: 30px;
        line-height: 36px;
        width: 100%;
    }

    .mission-n-vision-section .title h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .mission-n-vision-section .bd .col_box .text {
        padding: 20px;
        width: 100%;
        height: 100%;
        border-radius: 20px 0px 20px 20px;
    }

    .mission-n-vision-section .bd .col_box {
        height: 320px;
        width: 100%;
    }

    .mission-n-vision-section .bd .col_box h3 {
        font-size: 30px;
        line-height: 36px;
    }

    .our-core-value-section .title h2 {
        font-size: 30px;
        line-height: 36px;
    }
    .our-core-value-section .title p {
        width: 90%;
    }

    .mission-n-vision-section .bd {
        padding: 0 15px;
    }

    .why_choose_block .left .title h2 {
        font-size: 30px;
        line-height: 36px;
        width: 100%;
    }

    .why_choose_block .right {
        padding: 20px 0 0 0;
    }

    .web-why-choose-us-ideal .title h2 {
        width: 100%;
        font-size: 30px;
        line-height: 36px;
    }

    .web-why-choose-us-ideal .title p {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .web-why-choose-us-ideal .web-why-choose-us-inner-box h5 {
        font-size: 20px;
        line-height: 28px;
    }

    .about-leadership-section .title h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .about-leadership-section .about-leadership-content h4 {
        line-height: 35px;
    }

    .team_members .title h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .team_members .title p {
        font-size: 16px;
        line-height: 22px;
        width: 100%;
    }

    .howit_works .item-left .title h2 {
        font-size: 30px;
        line-height: 36px;
        width: 100%;
    }

    .howwe-worksection-wrapper .row {
        flex-direction: row-reverse;
    }

    .howwe-worksection-wrapper .row {
        flex-direction: column-reverse;
    }

    .howwe-worksection-wrapper .item_right h5 {
        font-size: 30px;
        line-height: 30px;
        text-align: center;
    }

    .howwe-worksection-wrapper .item_right .item_list ul li.howwework-active-color.active {
        border-left: 0;
    }

    .howwe-worksection-wrapper .item_right .item_list ul li {
        border-left: 0;
    }
    .howwe-worksection-wrapper .item_right .item_list ul {
        margin: 0;
        padding: 20px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 10px;
    }

    .howwe-worksection-wrapper .item_right .item_list ul li {
        margin: 4px;
        padding: 11px 17px;
        display: block;
        border-left: 0;
        background: #fff;
        border-radius: 50px;
        box-shadow: 0 0 10px -6px rgba(0, 0, 0, 0.5);
    }

    .howwe-worksection-wrapper .item_left {
        margin: 10px 0 0 0;
        padding: 0;
    }

    .howwe-worksection-wrapper .item_left .item_bd {
        padding: 30px 0 0 0;
    }

    .howwe-worksection-wrapper .item_left .item_bd .title h2 {
        font-size: 24px;
        line-height: 30px;
        width: 100%;
    }

    .onboarding_bdwrapper .item_right h5 {
        font-size: 30px;
        line-height: 30px;
        text-align: center;
    }

    .onboarding_bdwrapper .item_right .item_list ul li {
        border-left: 0;
    }

    .onboarding_bdwrapper .item_right .item_list ul li.howwework-active-color.active {
        border-left: 0;
    }

    .onboarding_bdwrapper .item_right .item_list ul {
        margin: 20px 0;
        padding: 10px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .onboarding_bdwrapper .item_right .item_list ul li {
        margin: 5px;
        padding: 10px 23px;
        display: block;
        background: #fff;
        border-radius: 50px;
        box-shadow: 0 0 10px -6px rgba(0, 0, 0, 0.5);
    }
    .onboarding_bdwrapper .item_left .item_bd {
        padding: 30px 0 0 0;
        display: flex;
        flex-wrap: wrap;
        height: 100%;
    }

    .howit_works .row {
        flex-direction: column-reverse;
    }

    .howit_works .item-left {
        margin: 0;
        padding: 10px 0 0 0;
    }

    .industry-grade .row {
        flex-direction: column-reverse;
    }
    .industry-grade .item-left {
        padding: 20px 0 0 0;
    }
    .industry-grade {
        padding: 0 0 50px 0;
    }

    .deployment_and_beyond .title h2 {
        width: 100%;
        font-size: 30px;
        line-height: 36px;
    }

    .deployment_and_beyond .services-tabs .left_block {
        padding: 45px 0 20px 13px;
    }

    .deployment_and_beyond .services-tabs .left_block .nav button.nav-link h3 {
        font-size: 16px;
        line-height: 20px;
        padding: 15px 64px 15px 12px;
    }
    .deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text h4 {
        font-size: 24px;
        line-height: 34px;
    }

    .deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text p {
        font-size: 16px;
        line-height: 42px;
    }

    .callouts_separate_section .item h5 {
        font-size: 20px;
        line-height: 28px;
    }

    .technologies-platforms .title h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .technologies-platforms .bd_block .itemcol_row h3 {
        font-size: 24px;
        line-height: 33px;
    }

    .faqinner_block .col_faq-wrapper .row {
        flex-direction: column-reverse;
    }

    .faqinner_block .col_faq-wrapper .item-rt-wrapper h5 {
        font-size: 30px;
        line-height: 38px;
        width: 100%;
        text-align: left;
    }

    .faqinner_block .col_faq-wrapper .item-rt-wrapper .item_bd {
        margin: 0;
        padding: 25px 0;
    }

    .faqinner_block .col_faq-wrapper .item-lt-wrapper .item_bd {
        padding: 40px 0 0 0;
    }

    .faqinner_block .col_faq-wrapper .item-rt-wrapper .item_bd ul .faq_active-color.active {
        border-left: 3px solid #ff8805;
        background: #d2d2d230;
        border-radius: 0 50px 50px 0;
        display: inline-block;
        padding: 6px 25px 6px 7px;
    }

    .mvp-services-offer-section .title h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .mvp-services-offer-section .title p {
        font-size: 16px;
        line-height: 26px;
        width: 100%;
    }

    .mvp-services-offer-section .item_box .text_box {
        margin-top: 30px;
    }

    .mvp-services-offer-section {
        padding: 50px 0;
    }
    .mvp-develop-alter .title h2 {
        width: 100%;
        font-size: 30px;
        line-height: 46px;
    }
    .mvp-develop-alter .title p {
        font-size: 16px;
        line-height: 26px;
        width: 100%;
    }
    .mvp-develop-alter {
        padding: 50px 0;
    }

    .mvp-benefits-section .title h2 {
        width: 100%;
        font-size: 30px;
        line-height: 36px;
    }

    .mvp-benefits-section .title p {
        width: 100%;
    }

    .mvp_proven_section .title h2 {
        width: 100%;
        font-size: 30px;
        line-height: 36px;
    }
    .mvp_proven_section .title p {
        width: 100%;
    }

    .mvp-why-choose-dev-section .title h2 {
        width: 100%;
        font-size: 30px;
        line-height: 36px;
    }

    .mvp-why-choose-dev-section .row .col_left {
        position: static;
        z-index: 1;
    }

    .mvp-why-choose-dev-section .item-left {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .mvp-why-choose-dev-section .item-left img {
        width: 100%;
    }

    .mvp-why-choose-dev-section .row .col_right {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .mvp-why-choose-dev-section .item_right_box {
        padding: 8px;
        margin-top: 20px;
    }

    .meet-the-team-section .row {
        flex-direction: column-reverse;
    }
    .meet-the-team-section .meet-the-team-content {
        padding-top: 34px;
    }

    .meet-the-team-section .meet-the-team-content .title h2 {
        text-align: center;
    }

    .meet-the-team-section .meet-the-team-content .title::before {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .meet-the-team-section .meet-the-team-content p {
        text-align: center;
    }

    .employee-testimonials .top-block {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .employee-testimonials .top-block .title h3 {
        text-align: center;
    }

    .employee-testimonials .top-block .title::before {
        position: absolute;
        left: 50%;
        width: 104px;
        transform: translateX(-50%);
    }

    .howwe-worksection-wrapper .item_left .item_bd h4 {
        font-size: 22px;
        line-height: 28px;
    }

    .innerbanner_block .banner_text p {
        font-size: var(--font-size-16);
        line-height: 24px;
    }

    .pricing_bdwrapper .item_right .item_list {
        padding: 0 0 37px 0;
    }

    .industry-grade .item-left p {
        font-size: var(--font-size-16);
        line-height: 28px;
    }

    .ecommerce_alteration-driven .title h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .ecommerce_alteration-driven {
        padding: 50px 0;
    }

    .web_whygo_section .right_block_wrapper h3 {
        font-size: 24px;
        line-height: 42px;
        text-align: center;
    }

    .web_whygo_section .row {
        flex-direction: column-reverse;
    }

    .web_whygo_section .left_block {
        margin: 0;
        padding: 20px 15px;
    }

    .web_whygo_section .right_block_wrapper .right_item {
        margin: 0 auto;
        padding: 0;
        width: 70%;
    }

    .web_whygo_section .right_block_wrapper {
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }
    .web_whygo_section .right_block_wrapper .right_item .item_col p {
        text-align: left;
    }

    .web-why-choose-us-ideal .web-why-choose-us-inner-box p {
        line-height: 25px;
    }

    .web_whygo_section {
        padding: 50px 0;
    }

    .php-codeigniter-idead-support .web-why-choose-us-inner-box .web-why-choose-inner-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
        float: none;
        margin-top: -54px;
    }

    .php-codeigniter-idead-support .web-why-choose-us-inner-box h5 {
        padding: 0;
        font-size: 22px;
        line-height: 28px;
    }

    .php-codeigniter-idead-support .web-why-choose-us-inner-box {
        text-align: center;
    }

    .php-codeigniter-idead-support .web-why-choose-us-inner-box p {
        line-height: 27px;
        text-align: center;
    }

    .ecommerce_alteration-driven .item_box .icon_box {
        width: 80px;
        height: 80px;
    }

    .web-why-choose-us-ideal .web-why-choose-us-inner-box .web-why-choose-inner-icon {
        width: 80px;
        height: 80px;
    }

    .iosbuild_apps .row {
        flex-direction: column-reverse;
    }

    .iosbuild_apps .item-left {
        padding: 20px 0 0 0;
    }

    .crmdev-tailored .item_bd .row .ma0 {
        border: none !important;
    }

    .crmdev-tailored .item_bd .row .ma0 .text {
        border: 1px dashed #ddd;
    }

    .counter-section .col-right .bd .item .count-no {
	font-size: 22px;
	line-height: 38px;
	padding-bottom: 0;
}

    .counter-section .col-right .bd .item .count-no span.text {
        font-size: 20px;
        line-height: 28px;
    }

    .counter-section .col-right .bd .item .top .icon {
        margin: 0 14px 0 0;
        padding: 0 15px 0 0;
        display: flex;
        width: 67px;
        height: 67px;
        border-radius: 24px 28px 30px 59px;
    }

    .counter-section .col-right .bd .item p {
        font-size: 16px;
        line-height: 26px;
    }

    .counter-section .col-right .bd .item .count-no span.text {
        font-size: 18px;
        line-height: 24px;
    }

    .customized-crm-block .row .item-order-1 {
        order: 1;
    }
    .customized-crm-block .row .item-order-2 {
        order: 2;
    }
    .customized-crm-block .row .item-order-3 {
        order: 3;
    }

    .customized-crm-block .item-img {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 0 0 44px 0;
    }

    .iosbuild_apps {
        margin: 0;
        padding: 0 0 35px 0;
    }

    .erp-custom-built-sec .item-bd .text-block {
        margin: 0;
        padding: 0 0 85px 0;
    }

    .erp-Why-choose-custom .rt_block {
        margin: 0;
        padding: 27px 24px 0 0;
    }

    .erp-Why-choose-custom .rt_block .right-text {
        padding: 20px;
        position: static;
    }
    .erp-Why-choose-custom .rt_block img {
        max-width: 100%;
        position: static;
    }

    .erp-Why-choose-custom .rt_block {
        margin: 0;
        padding: 20px 0 0 0;
    }

    .erp-Why-choose-custom .rt_block .right-text {
        padding: 20px;
        position: static;
        width: 90%;
        margin: 0 auto;
        position: relative;
        top: 0;
        margin-top: -50px;
    }

    .innerbanner_block .banner_text {
        padding: 36px 0 15px 0;
    }

    .erp-industry-specific .top-block {
        display: block;
    }

    .erp-industry-specific {
        padding: 50px 0;
    }

    .erp-industry-specific .top-block h3 {
        width: 100%;
        font-size: 30px;
        line-height: 38px;
        text-align: center;
    }

    .erp-industry-specific .top-block p {
        font-size: 16px;
        line-height: 28px;
        width: 100%;
        text-align: center;
        font-weight: 400;
        padding: 6px 0 0 0;
    }

    .erp-industry-specific .technologies_tabs .top-block {
        padding: 15px 0;
    }

    .crmdev-tailored {
        padding: 50px 0;
    }

    .crmdev-tailored .item_bd .text {
        padding: 30px 16px;
        height: 132px;
    }
    
    
    
    .crmdev-tailored {
        padding: 50px 0;
    }

    .customized-crm-block {
        padding: 50px 0;
    }

    .erp-custom-built-sec {
        padding: 50px 0;
    }

    .erp-Why-choose-custom {
        padding: 50px 0;
    }

    .php-codeigniter-idead-support {
        padding: 50px 0;
    }

    .ecommerce_deliberately .title p {
        line-height: 27px;
    }

.ecommerce_deliberately .ltem_block .item {
    width: 20%;  height: 92px; }


.ios-benefit-block .item-mt {
    margin-top: 69px;
}

.ios-benefit-block .item_bd {
    margin: 0;
    padding: 0;
}

.iOS-mobileapp-section .item-slider-wrapper .item h4 {
    min-height: 141px; }

.ios-benefit-block .item_bd .item_box h4 {  min-height: 99px; }


.iOS-mobileapp-section {
    padding:50px 0;
}

.ios-benefit-block {
    padding:50px 0;
}

.androod-uiux-services .item_bd .text_box h3 {
    font-size: 24px;
    padding-right: 63px;
    line-height: 32px;
}

.androod-uiux-services .item_bd .text_box p {
    line-height: 25px;  }

.androod-uiux-services .item_bd .text_box {
    padding: 35px 17px;
    margin: -50px 13px 0;
    min-height: 250px;
}


.androod-uiux-services {
    padding:50px 0;
    background: #fff;
}

.virtual_benefits_sec {
    padding: 60px 0;
}

.androod-uiux-services {  padding:50px 0; }
.uiuxdev-isoand-block { padding:50px 0; }

.uiuxdev-isoand-block .bd .col_box .text {
    padding: 20px 20px 20px 30px;
}

.uiuxdev-isoand-block .bd .col_box {
    height: auto;
    width: 100%;
}

.uiuxdev-application-block {  padding:50px 0; }

.uiuxdev-isoand-block .bd .col_box h3 {
    font-size: 24px;
    line-height:32px;
}

.uiuxdev-application-block .bd .col_box .text {
    padding: 20px 20px 20px 30px;
}

.uiuxdev-application-block .bd .col_box h3 { font-size:24px;
    line-height:32px; }


.uiuxdev-application-block .bd .col_box {
    margin: 0;
    padding: 0;
    height: auto;
    width: 100%;
}

.uiux-design-unique-sec .item_bdwrapper .item-text {
    margin: 0;
    padding: 0 0 23px 0;
}

.responsive-design-functional .item_bd .col-right {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.responsive-design-functional .item_bd .card-box {
   
    padding: 20px;
    margin-top:10px;
    margin-bottom:0;
   
}

.responsive-design-functional .item_bd .left_block {
    margin: 0 auto;
    text-align: center;
}

.androod-uiux-services .item_bd .uiux-service-box-image { 
    height: auto;
}

.virtual_benefits_sec .item_bd .item_box .why-choose-us-icon {
    width: 80px;
    height:80px;
}
.marking-seo-servic .item_bd .item-right {
    padding: 28px 0 0 0;
}
.marking-seo-servic .item_bd .item-right h2 {
    padding: 0 0 20px 0;
}

.marking-seo-servic {  padding:50px 0; }

.expert-seo-services-sec .item-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.expert-seo-services-sec .row .col_left {
    position: static;
    z-index: 1;
}

.expert-seo-services-sec .row .col_right {
    margin-right: 0 !important;
    margin-left: 0% !important;
}

.expert-seo-services-sec .item_right_box {
    padding: 20px;
    background: #05124c;
    margin: 20px 0 0 0;
}
.marking-seo-servic .item_bd .item-right h2 {
    padding: 0 0 30px 0;
    font-size: 30px;
    line-height: 42px;
  
}

.industry-grade .item_right img {  width: 80%;  }

.contact-info-block .mb-30 { margin-top: 79px; }

.contact-form-main {  padding: 0 0 30px 0; }

.cookies_wrapper p {
    width:100%;
}

.homepage_onload_popup .popup_bd .item_row .item_col .link_block ul li a {
    margin: 2px;
    padding: 6px;
    font-size: 13px;
    line-height: 22px;
}

.homepage_onload_popup .popup_bd .popup_footer p {
    padding: 0 12px 0 0;
    font-size: 20px;
    line-height: 26px;
}

.homepage_onload_popup .popup_bd .item_row .item_col .top img {
    max-width: 100%;
    height: 30px;
}

.homepage_onload_popup .popup_bd .item_row .item_col {
    margin: 0;
    padding: 0 8px;
    width: 100%;
}


.homepage_onload_popup .popup_bd .item_row .item_col {
    margin: 0;
    padding: 0 8px;
    width: 100%;
    border-right: 0;
    position: relative;
    background: #f2f2f2;
    border-bottom: 3px solid #fff;
}

.homepage_onload_popup .popup_bd .item_row .item_col:nth-child(2) {
    border-right: 0;
     border-bottom:0;

}

.homepage_onload_popup .popup_bd .item_row {
    margin: 0;
    padding: 3px 0 20px 0;
    display: flex;
    flex-wrap: wrap;
}

.home_about .row {
	flex-direction: column-reverse;
}



.erp-table-shelf .table_bd .ct-table {
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 800px;
}

.innerbanner_block .banner_text h1, .innerbanner_block .banner_text h2, .innerbanner_block .banner_text h3 {
	font-size: 38px;	line-height: 50px;	width:100%; }

.industris-health-sec .item-bd .item-box {	border-right: 0; }

.industris-health-sec .item-bd .item-box {	min-height: 188px;	background: #05124c;	box-shadow: 0px 0px 36px -23px rgb(255, 255, 255);
	padding: 40px 15px;	margin: 16px 0;	border-radius: 14px; }

.box-all-cards { display: block; }

.requestproposal-sec {	padding: 55px 0 50px 0; }
.requestproposal-sec .item-row { display: block; }

.requestproposal-sec .item-row .item-left {	padding: 30px 26px;	width: 100%; }
.requestproposal-sec .item-row .item-right {	margin: 0;	padding: 40px 0 0 0px;	width: 100%;	position: relative; }
.requestproposal-sec .item-row .item-right .item-imgsec { display: none; }

.requestproposal-sec .item-row .item-right ul {	margin: 0;	padding: 30px 0 0px 0; }

.our-expertise1Sec .itemBox h4 {	padding: 0 0 10px 0; display: flex;	flex-wrap: nowrap;	font-size: 20px;	line-height: 24px;	align-items: start; }
.our-expertise1Sec .itemBox h3 {	padding: 0 0 10px 0; display: flex;	flex-wrap: nowrap;	font-size: 20px;	line-height: 24px;	align-items: start; }

.our-expertise1Sec .itemBox ul li {	padding: 4px 0 4px 9px;	display: block;	font-size: 16px;
	line-height: 22px;	font-weight: 500;	display: flex; }

.contact-featured-case .item-row {	display: block; }
.contact-featured-case .item-row .col-lt {	display: none; }
.contact-featured-case .item-row .col-rt {	margin: 0;	padding: 0;	width: 100%; }

.contact-featured-case::after {	content: "";	width: 100%;	height: 100%;
	background: #05124c;	position: absolute;	right: 0;	top: 0;
	z-index: 2; }
.contactrequest-Section .contact-form .form-bd .item {	margin: 0;	padding: 8px 12px;	width: 50%; }
.contactrequest-Section .contact-form .form-bd .item label {
	padding: 0 0 4px 0;	font-size: 16px;	line-height: 22px; }
.contactrequest-Section .contact-form .form-bd .item .inpit-field {
	padding: 4px 4px;	font-size: 16px;	width: 100%;	line-height: 22px; }

.contactrequest-Section .contact-form {	margin: 0 auto;	padding:20px; width: 90%; }
.contact-ctasection h2 {	font-size: 30px;	margin-bottom: 16px;
	line-height: 36px; }

.contact-ctasection .strategist-btn-wrapper .strategist-btn .bot {
	font-weight: bold;	font-size: 24px; }
.contact-ctasection .strategist-btn-wrapper .strategist-btn::before {
	content: '\f095';	background-repeat: no-repeat;	border: none !important;	text-decoration: none !important;
	cursor: pointer;	width: 47px;	height: 47px;	position: absolute;
	top: 39%;	left: 62px;	display: inline-block !important;	transform: translate(0,-50%);
	font-family: "FontAwesome";	font-size: 45px; }
.contactrequest-Section .contact-form .form-bd .textarea-fullwidth { width: 100% !important; }
.contactrequest-Section .contact-form {	margin-top: 44px; }

.banner-seoranksec { padding: 70px 0 70px 0; }
.banner-seoranksec .item-row h1 { font-size: 40px; line-height: 46px; }

.banner-seoranksec .item-row h2 { padding: 13px 0 24px 0;
	font-size: 40px; line-height: 46px; }
.banner-seoranksec .item-row p { font-size: 18px; line-height: 30px; }
.howwe-doItSec .title {	padding: 0 0 29px 0;	margin: 0 0 40px 0; }

.howwe-doItSec { padding: 50px 0; }
.howwe-doItSec .business-tab_bd .nav-tabs .nav-item .nav-link {
	margin: 4px;	padding: 16px 18px;	font-size: 16px;	line-height: 22px; }

.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text .title-text {
	padding: 0 0 15px 0;	font-size: 22px;	line-height: 28px; }
.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text p { font-size: 16px;	line-height: 25px; }
.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text .explore-seobtn {
	margin: 20px 0 0 0;	font-size: 16px; line-height: 24px; }

.sEo-measurable-business .item-sec { padding: 15px 15px; }
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec h4 {
	font-size: 18px;
	line-height: 24px; }
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec ul li {
	padding: 5px 0 5px 24px;	font-size: 16px;	line-height: 22px;  }

.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .homepage-slide-hidden-content {
	position: relative;	padding-bottom: 145px; }

.sEo-getfree-proposal .textBd span {
	padding: 0 0 9px 0;
	font-size: 30px; line-height: 36px; }
.sEo-getfree-proposal .textBd p { font-size: 20px; line-height: 28px; }
.sEo-getfree-proposal {	margin: 0;	padding: 60px 0 0px 0; }

.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec { padding-top: 50px; }
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec h3 {
	padding: 0 0 4px 0;	font-size: 20px; line-height: 24px; }
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .text-sec p {
	font-size: 15px;	line-height: 21px;	color: #444; }




.requestproposal-sec {	padding: 85px 0 50px 0; }
.requestproposal-sec .item-row .item-left {
	padding: 30px 26px; }
.requestproposal-sec .item-row .item-right .title-right {
	padding: 0 0 30px 0; font-size: 34px; line-height: 40px; }
.contact-featured-case .item-row .col-lt img {	max-width: 100%;	width: 89%; }

.sEo-measurable-business .item-sec span { font-size: 24px; line-height: 30px; }
.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text p {
	font-size: 18px; line-height: 29px; }

.sEo-getfree-proposal .textBd span { font-size: 30px;	font-weight: 600; line-height: 36px; }
.sEo-getfree-proposal .textBd p { font-size: 20px;	line-height: 33px; }

.sEo-getfree-proposal .textBd {	width: 88%; }
.sEo-getfree-proposal {	margin: 0;	padding: 60px 0 0 0; }

.arobit-digitalbanner {	padding-top: 42px;	padding-bottom: 42px; }
.arobit-digitalbanner .left-block h1 {	font-size: 30px;	line-height: 42px; }
.arobit-digitalbanner .left-block span { font-size: 20px;	line-height: 28px; }

.H-improvethe-business .business-tab_bd .nav-tabs .nav-item .nav-link {
	padding: 7px 18px;	font-size: 16px;	line-height: 28px; }

.H-improvethe-business .title {	padding: 0 0 29px 0; margin: 0 0 51px 0; }

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row {	display: flex;	flex-wrap: wrap;
	align-items: center;	flex-direction: column; }

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-lt {	margin: 0;	padding: 0 17px 0px 0;	width: 100%;
	position: relative; }
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt {	margin: 0;	padding: 30px 30px;	width: 100%;
 background: #05124c; }

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper {	background: #05124c !important; }
.home-proven-resultsfor-clients02_Newsec .title h2 {width: 90%; }

.d-country-agency-banner .right-sec .form-bd .item-row {	padding: 8px 10px;	width: 100%; }
.crmdev-tailored .title {	text-align: center;	padding-bottom: 24px;	margin-bottom: 16px; }
.brand05ranking-today .bd-wrapper .title-sec {font-size: 36px; line-height: 42px; width: 100%; }

.service_desk .title p { width: 100%; }





/**/
}
@media screen and (max-width: 767px) {



h2, h3, h4, h5, h6 {  font-size: 24px ; font-weight: 600; line-height: 30px ; }

    .container {
        padding: 0 15px;
    }

    .banner_home {
        height: 80vh;
    }
    .banner_home .video {
        width: 100%;
        height: 80vh;
    }

    .banner_home .tenc-intro-main__wrapper span {
        font-size: 30px;
        line-height: 46px;
        padding: 90px 0 0 0;
        width: 95%;
    }

    .home_about .title h2 {
        font-size: 24px;
        line-height: 32px;
        width: 100%;
        text-align: center;
    }

    .home_about .title .button {
        display: none;
    }

    .home_about .title::before {
        position: absolute;
        left: 50%;
        width: 104px;
        bottom: 0;
        transform: translatex(-50%);
    }

    .counter-section .title h2 {
        font-size: 30px;
        line-height: 47px;
        text-align: center;
        font-weight: 700;
    }

    .counter-section .title h3 {
        padding: 0;
        line-height: 25px;
        width: 100%;
        text-align: center;
        margin: 0 auto;
        font-style: normal;
    }
    
    .counter-section .title p {
        padding: 0;
        line-height: 25px;
        width: 100%;
        text-align: center;
        margin: 0 auto;
        font-style: normal;
    }

    .counter-section .col-right .bd .item {
        margin: 10px;
        padding:10px 15px;
        width: 100%;
    }

    .service_desk .title h2 {
        font-size: 30px;
        line-height: 42px;
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
        opacity: 1;
        font-weight: 700;
    }

    .service_desk .services-tabs {
        margin: 0;
        display: block;
    }

    .service_desk .services-tabs .left_block {
        margin: 0;
        padding: 0;
        width: 100%;
        position: static;
        border-radius: 8px 8px 0 0;
    }

    .service_desk .services-tabs .left_block .nav {
        margin: 0;
        padding: 10px;
        display: flex;
        align-items: start;
        flex-wrap: wrap;
        position: relative;
        border: 0;
    }

    .service_desk .services-tabs .left_block .nav {
        margin: 0;
        padding: 20px 10px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        position: static;
        border: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .service_desk .services-tabs .left_block .nav button.nav-link.active {
        display: block;
        width: auto;
        border-radius: 50px;
        border: 1px solid #ffffff3d;
        margin: 4px;
    }

    .service_desk .services-tabs .left_block .nav button.nav-link {
        width: auto;
        border-radius: 6px;
        border: 0;
        border-radius: 50px;
        background: #050f3e;
        margin: 4px;
        border: 1px solid #ffffff3d;
    }

    .service_desk .services-tabs .left_block .nav button.nav-link h3 {
        line-height: 20px;
        display: inline-block;
        padding: 11px 20px 11px 20px;
        margin: 0;
        font-size: 14px;
        text-align: center;
    }

    .service_desk .services-tabs .right_block {
        padding: 20px;
        width: 100%;
    }

    .service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text h3 {
        font-size: 20px;
        line-height: 32px;
    }

    .home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content .text p {
        font-size: var(--font-size-16);
        line-height: 25px;
        font-weight: 300;
    }

    .home_industry_block .slider_bd .industry_slider .item_slider .homepage-slide-content .homepage-slide-hidden-content h3.homepage-slide-title {
        font-size: 24px;
        line-height: 32px;
    }

    .ecosystem_block .bd .right_block {
        position: static;
    }

    .ecosystem_block .bd .right_block .rt_bd {
        position: static;
    }

    .ecosystem_block .bd {
        padding: 15px;
        margin: 0;
    }

    .ecosystem_block .bd .row .item-lt {
        order: 2;
    }

    .ecosystem_block .bd .row .item-rt {
        order: 1;
    }

    .ecosystem_block {
        margin: 0;
        padding: 50px 0;
    }

    .ecosystem_block .bd .left {
        margin: 0;
        padding: 20px 0 0 0;
    }

    .home_about .about-text-block .button {
        margin-top: 20px;
        display: block;
    }

    .why_businesses .title .button {
        display: none;
    }

    .why_businesses .title h2 {
        width: 100%;
        font-size: 30px;
        line-height: 38px;
        text-align: center;
    }

    .why_businesses .title::before {
        position: absolute;
        left: 50%;
        width: 104px;
        height: 4px;
        transform: translatex(-50%);
    }
    .why_businesses .item_row {
        padding: 36px 0 0 0;
        display: block;
    }

    .crm-system-dev .title h2 {
        width: 100%;
    }
    .crm-system-dev .title p {
        width: 100%;
    }
    .crm-system-dev {
        padding: 40px 0;
    }

    .testimonials_block .testi-slider .slick-prev {
        position: relative;
        left: 44%;
        bottom: 0;
        top: initial;
        transform: translatex(-50%);
    }

    .testimonials_block .testi-slider .slick-next {
        position: absolute;
        top: initial;
        left: 56%;
        transform: translatex(-50%);
        bottom: 0;
        right: initial;
    }

    .portfolio_block .title .button {
        display: none;
    }

    .portfolio_block .title h2 {
        width: 100%;
        text-align: center;
    }

    .portfolio_block .title::before {
        position: absolute;
        left: 50%;
        transform: translatex(-50%);
    }

    .happy-clients .title p {
        width: 100%;
    }
    .faqblock_home .bd_block {
        width: 88%;
    }

    .footer_form_bg {
        margin-top: 20px;
    }
    .testimonials_block {
        padding: 50px 0;
    }

    .counter-section .col-right .bd .item .count-no p {
        font-size: 20px;
        line-height: 38px;
    }

    .home_industry_block .title h2 {
        font-size: 36px !important;
        line-height: 70px;
        width: 100%;
    }

    .home_industry_block {
        width: 100%;
        height: 530px;
    }

    .home_industry_block .slider_bd .industry_slider .slick-prev::after {
        font-size: 20px;
    }

    .home_industry_block .slider_bd .industry_slider .slick-next::after {
        font-size: 20px;
    }

    .why_businesses .title h2 br {
        display: none;
    }
    .why_businesses .button {
        display: block;
    }
    .crm-system-dev .title h2 br {
        display: none;
    }

    .testimonials_block .title h2 {
        font-size: 30px;
        line-height: 47px;
        text-align: center;
    }

    .testimonials_block .title::before {
        position: absolute;
        left: 50%;
        width: 104px;
        height: 4px;
        transform: translate(-50%);
    }

    .testimonials_block .item_col .item_bd .left_block .item_desk p {
        font-size: 15px;
        line-height: 24px;
    }
    .portfolio_block .portfolio_slider_bd .item {
        margin: 0 4px;
        padding: 15px 10px;
    }

    .innerbanner_block .banner_text p {
        font-size: var(--font-size-16);
        line-height: 25px;
    }

    .meet-the-team-section .meet-the-team-content p {
        line-height: 28px;
    }

    .mission-n-vision-section .title p {
        width: 100%;
    }

    .mission-n-vision-section .bd .col_box {
        height: auto;
        width: 100%;
        margin: 10px 0;
    }

    .mission-n-vision-section .bd .row:nth-child(2n + 1) {
        flex-direction: column-reverse;
    }

    .mission-n-vision-section .bd .row {
        flex-direction: column-reverse;
        background: #05124c;
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 10px;
    }

    .mission-n-vision-section .bd .row:nth-child(2n + 1) .col_box .text {
        background: transparent;
    }

    .mission-n-vision-section .bd .col_box .text {
        box-shadow: none;
        background: transparent;
    }

    .our-core-value-section .our-core-value-box h3 {
        padding: 0 0 6px 0;
        font-size: 20px;
        line-height: 42px;
    }

    .meet-the-team-section .meet-the-team-image::before {
        display: none;
    }

    .meet-the-team-section:hover .meet-the-team-image::before {
        display: none;
    }

    .about-leadership-section .title p {
        padding: 6px 0;
        width: 100%;
    }

    .about-leadership-section .about-leadership-image {
        min-height: auto;
        margin: 0 0 20px 0;
        padding: 0;
    }

    .about-leadership-section .about-leadership-content h4 {
        font-size: 20px;
        line-height: 28px;
    }
    .about-leadership-section .about-leadership-content {
        padding: 20px;
    }

    .team_members {
        padding: 0 0 50px 0;
    }

    .employee-testimonials .top-block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .employee-testimonials .top-block .right-block .bg-card {
        padding: 6px 4px;
        width: 227px;
    }

    .employee-testimonials .top-block .right-block {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .employee-testimonials .top-block .title h3 {
        font-size: 30px;
        line-height: 36px;
    }
    .employee-testimonials {
        padding: 50px 0;
    }

    .testimonials_block .item_col .item_bd {
        min-height: auto;
    }

    .howwe-worksection-wrapper .item_left .item_bd .item_col {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .deployment_and_beyond .services-tabs {
        margin: 0;
        display: block;
        flex-wrap: wrap;
        padding: 0;
        border-radius: 8px;
    }

    .deployment_and_beyond .services-tabs .left_block {
        margin: 0;
        padding: 45px 0 20px 35px;
        width: 100%;
        position: static;
        border-radius: 8px;
    }
    .deployment_and_beyond .services-tabs .left_block .nav {
        margin: 0;
        padding: 0;
        position: static;
        border: 0;
        justify-content: center;
    }

    .deployment_and_beyond .services-tabs .left_block {
        padding: 10px;
        border-radius: 8px 8px 0 0;
        padding: 16px 0 16px 0;
    }

    .deployment_and_beyond .services-tabs .left_block .nav button.nav-link {
        margin: 0;
        padding: 0;
        width: auto;
        border-radius: 6px;
    }

    .deployment_and_beyond .services-tabs .left_block .nav button.nav-link.active {
        background: var(--white-color);
        display: inline-block;
        padding: 0;
        width: auto;
        border: 1px solid #fff;
        border-radius: 50px;
        text-align: left;
        margin: 3px !important;
    }

    .deployment_and_beyond .services-tabs .left_block .nav button.nav-link h3 {
        font-size: 16px;
        line-height: 20px;
        padding: 12px 20px;
        border: 0;
        margin: 0;
    }

    .deployment_and_beyond .services-tabs .left_block .nav button.nav-link {
        margin: 3px;
        background: #020b3124;
        border-radius: 50px;
        border: 1px solid #ffffff5c;
    }

    .deployment_and_beyond .services-tabs .right_block {
        margin: 0 0 25px 0;
        padding: 20px;
        width: 100%;
        position: relative;
    }

    .deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text p {
        font-size: 16px;
        line-height: 28px;
    }

    .deployment_and_beyond .title {
        margin: 0 0 44px 0;
        padding: 0 0 25px 0;
    }

    .callouts_separate_section .left.item {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .callouts_separate_section .item h5 {
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        padding: 0 0 9px 0;
    }

    .deployment_and_beyond .title p {
        font-size: 16px;
        line-height: 30px;
        width: 100%;
    }

    .deployment_and_beyond {
        padding: 50px 0;
    }

    .deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text {
        margin: 0;
        padding: 12px 0 72px 0;
    }

    .industry-grade {
        padding: 0 0 30px 0;
    }

    .deployment_and_beyond .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text h4 {
        font-size: 22px;
        line-height: 30px;
    }
    .callouts_separate_section .item h5 {
        font-size: 16px;
        line-height: 22px;
    }

    .callouts_separate_section .item a.animate_btn {
        font-size: 16px !important;
    }

    .technologies-platforms {
        padding: 50px 0;
    }

    .technologies-platforms .bd_block .itemcol_row h3 {
        font-size: 22px;
        line-height: 33px;
    }

    .faqinner_block .col_faq-wrapper .item-lt-wrapper .item_bd h3 {
        font-size: 22px;
        line-height: 33px;
        width: 100%;
    }

    .faqinner_block .bd_block .accordion .accordion_row .accordion-header .accordion-button {
        font-size: 18px;
        color: #05124c;
    }

    .faqinner_block {
        padding: 50px 0;
    }

    .faqinner_block .col_faq-wrapper .item-rt-wrapper .item_bd {
        padding: 0 0 25px 0;
    }

    .mvp-develop-alter .item_bd .item-box .img_box {
        height: 300px;
    }

    .mvp-develop-alter .item_bd .item-box h4 {
        font-size: 20px;
        line-height: 26px;
    }

    .mvp-benefits-section .item_bd .item_box .text-box h5 {
        font-size: 20px;
        line-height: 26px;
        text-align: left;
    }
    .mvp-benefits-section .item_bd .item_box .text-box p {
        text-align: left;
    }

    .mvp_proven_section .item_bd .item_box .text-box h5 {
        font-size: 20px;
        line-height: 26px;
    }

    .mvp-why-choose-dev-section .item_right_box .item_box .icon_box {
        width: 100px;
        height: 100px;
        border-radius: 100%;
    }

    .home_about .item p {
        line-height: 27px;
    }

    .home_about .row {
        flex-direction: column-reverse;
    }

    .home_about .item-right {
        margin-bottom: 20px;
        margin-top: 0px;
    }

    .service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li a {
        font-size: 15px;
        line-height: 20px;
    }
    .why_businesses .title h2 {
        text-align: left;
    }

    .why_businesses .title::before {
        position: absolute;
        left: 0;
        width: 104px;
        height: 4px;
        transform: none;
    }

    .happy-clients .row {
        padding-left: 0;
        padding-right: 0;
    }
    .happy-clients .logo-holder {
        width: 153px;
    }

    .portfolio_block .portfolio_slider_bd {
        margin-left: 0;
        padding-left: 0;
    }
    .portfolio_block .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption h3 {
        line-height: 30px;
    }

    .howit_works .item-left p {
        line-height: 26px;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col {
        width: 100%;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col .ct-inner .ct-table {
        width: 700px;
        margin-bottom: 22px;
    }

    .onboarding_bdwrapper .item_left {
        padding: 24px 0 0 0;
    }
    .onboarding_bdwrapper .item_left .item_bd h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .onboarding_bdwrapper .item_left .ct-th-content p {
        font-size: 18px !important;
        line-height: 24px !important;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col .text-bd ul li {
        font-size: 15px;
        line-height: 22px;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col .text-bd ul li b {
        font-size: 15px;
        line-height: 22px;
    }

    .pricing_bdwrapper .item_left .item_bd .item_col .text-bd p {
        text-align: left;
    }
    .pricing_bdwrapper {
        padding: 50px 0;
    }

    .pricing_bdwrapper .item_left .item_bd .item_col .text-bd ul li {
        font-size: 16px;
        line-height: 27px;
    }

    .ecommerce_alteration-driven .item_box .text_box h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .ecommerce_alteration-driven .item_box .icon_box {
        width: 80px;
        height: 80px;
    }

    .ecommerce_alteration-driven .item_box .text_box {
        padding: 30px 0 10px 0;
    }
    .web-why-choose-us-ideal .web-why-choose-us-inner-box .web-why-choose-inner-icon {
        width: 80px;
        height: 80px;
    }

    .web_whygo_section .right_block_wrapper .right_item {
        width: 100%;
    }

    .php-codeigniter-idead-support .web-why-choose-us-inner-box h5 {
        padding: 0;
        font-size: 20px;
        line-height: 26px;
    }

    .mvp-services-offer-section .item_box .text_box {
        text-align: center;
    }

    .mvp-why-choose-dev-section .item_right_box .item_box {
        flex-direction: column;
    }

    .mvp-why-choose-dev-section .item_right_box .item_box .text-box {
        width: 100%;
        margin-left: 0;
        padding: 0;
        display: block;
        text-align: center;
    }

    .mvp-why-choose-dev-section .item_right_box .item_box .icon_box {
        width: 80px;
        height: 80px;
    }
    .mvp-why-choose-dev-section .item_right_box .item_box .text-box {
        width: 100%;
        display: block;
        text-align: center;
        padding-top: 17px;
    }

    .mvp-why-choose-dev-section .item_right_box .item_box {
        padding: 20px 15px;
        background: #f2f2f229;
        border-radius: 9px;
    }

    .mvp-why-choose-dev-section .item_right_box .item_box .icon_box img {
        margin: auto;
        width: 47px;
    }

    .mvp-why-choose-dev-section .item_right_box .item_box:hover::after {
        display: none;
    }

    .mvp-why-choose-dev-section .item_right_box .item_box:hover .text-box h6 {
        color: #fff;
    }
    .mvp-why-choose-dev-section .item_right_box .item_box:hover .text-box p {
        color: #fff;
    }
    .mvp-why-choose-dev-section .item_right_box .item_box .text-box p {
        text-align: center;
    }

    .counter-section .col-right .bd .item p {
        min-height: auto;
    }
    .erp-custom-built-sec .item-bd .img_block img {
        max-width: 100%;
        object-fit: contain;
        width: 44%;
    }
    .innerbanner_block .banner_text h2 {
        font-size: 18px;
        line-height: 26px;
    }
    .iosbuild_apps .item-left p {
        line-height: 27px;
    }
   .crmdev-tailored .item_bd .text {	padding: 20px 20px;	height:auto; }
   
    .erp-industry-specific .technologies_tabs {
        padding: 30px 0 0 0;
        width: 100%;
    }
    .crmdev-tailored .item_bd .text p {
        font-size: var(--font-size-20);
        line-height: 29px;
    }

    .erp-software-deve-block .row .item_col:last-child .web-why-choose-us-inner-box {
        padding: 0;
    }
    .related-blog-sec .related-bd .item-bd a h3 {
        font-size: 18px;
        line-height: 24px;
    }

.ecommerce_alteration-driven .item_box {  padding: 10px 10px; }

.ecommerce_deliberately .ltem_block .item {
    width: 127px;
    height: 92px;
}

.uiux-design-unique-sec .item_bdwrapper .item-text h3 {
    font-size: 24px;
    line-height: 30px;
}
.uiuxdev-isoand-block .bd .col_box .text {
    padding: 20px 0;
}
.uiuxdev-isoand-block .bd .row {
    flex-direction: column-reverse;
}

.uiuxdev-isoand-block .bd .row:nth-child(2n+1) {
    flex-direction: column-reverse;
}

.uiuxdev-application-block .bd .row:nth-child(2n+1) {
    flex-direction: column-reverse;
}

.uiuxdev-application-block .bd .row {
    flex-direction: column-reverse;
}

.responsive-design-sec .itm-mt {
    margin-bottom: 56px;
}

.industry-grade .item-left h2, h3, h4, h5 { padding:10px 0 0 0; font-size:20px; }

.responsive-design-sec .item_bd .item .icon {
    width:80px;
    height:80px;
    
}
.responsive-design-sec .item_bd .item .icon img {
    width: 60%;
}

.responsive-design-functional .item_bd .card-box p {
    font-size: var(--font-size-16);
    line-height: 25px;
}

.androod-uiux-services {
    padding: 50px 0;
}


.industry-grade .item-left h5 { font-size:22px; }
.industry-grade .item-left h2,h3,h4,h5 { font-size:18px; line-height:24px; }

.marking-seo-servic .item_bd .item-right h2 {
    padding: 0 0 20px 0;
    font-size:24px;
    line-height: 32px;
  
}

.expert-seo-services-sec .item_right_box .item_box {
    padding: 20px;
}


.carrer_collection_list_wpr .career_item .career_item_in .designation h4 {
    font-size: 20px;
    line-height: 26px;
}

.carrer_collection_list_wpr .career_item .career_item_in .designation {
    padding: 0 0 10px 0;
    display: block;
}

.carrer_collection_list_wpr .career_item .career_item_in .designation .apply_urgent {
    margin: 8px 0 0 0;
    padding: 2px 14px;
}


.carrer_collection_list_wpr .career_item a {
    padding: 30px 20px;
}
.carrer_collection_list_wpr .career_item .career_btn {
   
    position: absolute;
    right: 9px;
    top: 9px;
    background: var(--orange-color);
   
}
.carrer_collection_list_wpr .career_item .career_location_wpr {
   
    display: block;
}

.carrer_collection_list_wpr .career_item .career_location_wpr .divider_text {
    display: none;
}


.industris-why-choose-sec .text-bd ul li b {
    font-size: 16px;  line-height: 22px; }

.industris-health-sec .item-bd .item-box {
    border-right: 0;
    background: #00000026;
    padding: 20px;
    margin: 8px;
    border-radius: 4px;
}

.industris-health-sec .item-bd .col-item {
    margin-top: 8px;
}


.cookies_wrapper .content-wrap {
    
    flex-wrap: wrap;
}

.cookies_wrapper p {
	width: 100%;
	padding-bottom: 16px;
	text-align: left;
}

.homepage_onload_popup .popup_bd .popup_footer p {
    padding: 0 12px 0 0;
    font-size: 18px;
    line-height: 24px;
}
.homepage_onload_popup .popup_bd .popup_header p {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}
.homepage_onload_popup .popup_bd .popup_header {
    padding: 16px 20px;
}

.homepage_onload_popup .popup_bd .popup_header .logo img {
    max-width: 100%;
    height: 40px;
}

.homepage_onload_popup .popup_bd .closed_button {
    padding: 14px 14px 0 0;
    position: absolute;
    right: 0;
    top: 0;
}

.homepage_onload_popup .popup_bd .closed_button img {
    max-width: 100%;
    width: 24px;
}


.homepage_onload_popup .popup_bd .item_row .item_col .link_block ul li a .fa {
    font-size: 18px;    line-height: 24px;  position: relative;  top: 2px; }

.head-call-back-sidebar-background::after {
   
    display: block;
}

.head-call-back-content h6 {
    padding: 0 0 4px 0;
   
}

.home_about .about-text-block span { padding: 0 0 12px 0; font-size: 18px;
	line-height: 27px; }

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button {
	font-size: 16px; line-height: 22px; }

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button h4 {
    font-size: 16px; line-height: 22px; }
    
.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button h3 {
    font-size: 16px; line-height: 22px; }
    
.cookies_wrapper .content-wrap {
	width: 550px;
}


.erp-Why-choose-custom .rt_block .right-text ul li {
	width: 100%;
}

.why_businesses .item_row .item_col {
	width: 100%;
}

.brand-logo .brands_logo .slick-track .item img {
	max-width: 100%;
	height: 80px;
	margin: 0 auto;
}


.innerbanner_block .banner_text h1, .innerbanner_block .banner_text h2, .innerbanner_block .banner_text h3 {
	font-size: 30px; line-height: 32px; }


.banner_home .tenc-intro-main__wrapper span br {
	display: none;
}

.erp-table-shelf .table_bd .ct-table {
	
	width:700px;
}

.content-color-card-copy {
	margin: 0 !important;
	padding: 30px !important;
	width: 100%;
}

.w-layout-grid {
	display: block !important;
}


.requestproposal-sec .item-row .item-left h1 {	font-size: 24px;	line-height: 30px; }

.requestproposal-sec .item-row .item-left .title-left {	font-size: 24px;	line-height: 30px; }

.requestproposal-sec .item-row .item-right .title-right {
	padding: 0 0 30px 0;
	font-size: 24px;
	line-height: 30px;
}

.requestproposal-sec .item-row .item-right p {
	font-size: 18px;
	line-height: 24px;
}

.our-expertise1Sec .itemBox h4 { align-items: center; }
.our-expertise1Sec .itemBox h3 { align-items: center; }
.contactrequest-Section .contact-form {	width: 100%;	margin-top: 44px; }
	
.contact-ctasection .strategist-btn-wrapper .strategist-btn {
	padding: 20px 20px 20px 72px;	border-radius: 6px; }

.contact-ctasection .strategist-btn-wrapper .strategist-btn::before {
	content: '\f095';	background-repeat: no-repeat;	border: none !important;
	cursor: pointer;	width: 47px;	height: 47px;	position: absolute;
	top: 41%;	left: 24px;	font-size:35px; }

.faqblock_home .title h2 span {	font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px); }

.faqblock_home .title h2 span br { display:none; }

.contact-featured-case .item-row .col-rt .item-increase .item-sec span { font-size: 24px; line-height: 35px; }

.contactrequest-Section {	padding: 50px 0; }


.banner-seoranksec .item-row h1 { font-size: 24px;	line-height: 30px; }
.banner-seoranksec .item-row h2 { padding: 13px 0 24px 0;	font-size: 27px;	line-height: 40px; }
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat .card__stat__value {
	font-size: 24px; line-height: 30px; }
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat .button-sec {
	padding: 15px 0 0 0;	font-size: 16px;	line-height: 20px; }
.sEo-measurable_sliderSec .slider_bd .item_slider .homepage-slide-content .strategy-slider__card__stat {
	padding: 20px 0 0 0; }
	
.sEo-getfree-proposal .imgsec {	display: none; }
.sEo-getfree-proposal .textBd {	width: 100%; }

.counter-section .col-right .bd .item {	padding: 6px 15px; }

.H-improvethe-business .business-tab_bd .nav-tabs .nav-item .nav-link {
	padding: 5px 18px;	font-size: 16px;	line-height: 28px;	background: #ececec;
	margin: 4px 2px; }
.H-improvethe-business .business-tab_bd .tab-content { padding: 20px 0 0 0; }
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .item-rowbg .itemBD {
	display: flex;	flex-wrap: wrap;	justify-content: space-between;
	position: relative;	flex-direction: column; }
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text {
	padding: 0 0 20px 0;	width: 100%; }
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text p {
	font-size: 18px;	line-height: 31px; }
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text p {
	font-size: 18px;	line-height: 31px; }
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .right-sec {
	margin: 0;	padding: 0;	width: 100%; }
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .right-sec ul li a {
	padding: 11px 10px;	font-size: 16px;	line-height: 23px;	font-weight: 600; }
	
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .item-rowbg::after {
	content: "";	width: 600px;	height: 500px;
	background: #ffffff26;	position: absolute;	right: -263px;
	top: 50%;	border-radius: 100%;	transform: translatey(-50%);	z-index: 1; }
	
.arobitglobal-map {	padding: 60px 20px; }
	
.how-wedrive-revenue .sec-wrapper .item-bd .item-row .item-right {
	padding: 0 0 0 30px;	width: 54%;	text-align: left; }

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .item-increase {
	padding: 12px 0 0 0;	display: flex;	flex-wrap: wrap; }

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block {
	padding: 20px 0 0 0; }

.home-proven-resultsfor-clients02_Newsec {	padding: 36px 0; }

.d-country-agency-banner .right-sec {
	margin: 20px 0 0 0; }
.d-country-agency-banner .left-sec .col-item .sec-title {
	font-size: 24px;	line-height: 30px; }

.who-weare06Sec .bd-wrapper .title-sec {	padding: 0 0 12px 0;	font-size: 24px;	line-height: 32px; }

.who-weare06Sec .bd-wrapper p {	padding: 4px 0;	font-size: 16px; line-height: 28px;	}
.who-weare06Sec {	padding: 40px 0; }


.country-046presence .img01-sliderbd {	margin: 0;	padding: 2px 0 0 0; }
.country-046presence {	padding: 50px 0; }

.brand05ranking-today .bd-wrapper .title-sec {	font-size: 30px;	line-height: 38px;	width: 100%; }
.brand05ranking-today .bd-wrapper .buttonsec04 .Started-btn {
	margin: 0 auto;	padding: 12px 30px;	font-size: 16px;	line-height: 23px; }
	
.brand05ranking-today {	margin: 0;	padding: 50px 0; }

.seo-inner-banner .item-left .form-bd .second-form span {
	padding: 2px 0;	}


/**/
}
@media screen and (max-width: 576px) {

    /*.innerbanner_block {  height: 60vh; }
.innerbanner_block .figure { height: 100%; width: 100%; }*/

    .title h2 {
        width: 100% !important;
        font-size: 24px !important;
        line-height: 32px !important;
    }
    .title p {
        width: 100% !important;
        font-size: var(--font-size-16) !important;
        line-height: 24px !important;
    }

.title::before { width: 100px !important; }


    .mobile_menu .icon {
        font-size: 11px;
    }

    .responsive_bd ul.menu-block {
        width: 310px;
    }
    .banner_home .tenc-intro-main__wrapper span {
        font-size: 30px;
        line-height: 39px;
        padding: 93px 0 0 0;
        width: 98%;
    }

    .brand-logo h1 {
        font-size: var(--font-size-16);
        line-height: 28px;
        width: 100%;
    }
    
    .brand-logo p {
        font-size: var(--font-size-16);
        line-height: 28px;
        width: 100%;
    }

    .brand-logo .brands_logo .slick-track .item {
    	width: 100%;
    	height: auto;
    	padding: 12px;
    	margin: 6px 10px 6px 6px;
    	border: 1px solid #f2f2f2;
    	border-radius: 4px;
    }

    .brand-logo .brands_logo .slick-track .item img {
        max-width: 100%;
        height: 80px;
    }

    .home_about .title h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .home_about .item p {
        text-align: center;
    }

    .home_about .about-text-block .button {
        margin-top: 20px;
        display: flex;
        align-content: center;
        justify-content: center;
    }

    .counter-section .title h2 {
        font-size: 24px;
        line-height: 32px;
        font-weight: 700;
        padding-bottom: 12px;
        letter-spacing: inherit;
    }

    .counter-section .col-right .bd .item {
        margin: 10px 0;
        width: 100%;
    }

    .counter-section .col-right .bd .item .top .icon {
        margin: 0 18px 0 0;
        padding: 0 15px 0 0;
        width: 70px;
        height: 70px;
    }

    .counter-section .col-right .bd .item .count-no {
        font-size: 22px;
        line-height: 38px;
        font-weight: 800;
    }

    .counter-section .col-right .bd .item .button_block a {
        width: 45px;
        height: 45px;
    }

    .counter-section .col-right .bd .item .button_block a .fa {
        font-size: 20px;
    }
    .counter-section .col-right .bd .item .button_block:hover a .fa {
        font-size: 20px;
    }

    .service_desk .title h2 {
        font-size: 24px;
        line-height: 42px;
        letter-spacing: initial;
    }

    .service_desk .title p {
        font-size: 16px;
        line-height: 25px;
        text-align: center;
    }

    .service_desk .title p strong {
        font-size: 15px;
        line-height: 15px;
    }

    .service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text .list_block ul li {
        padding: 2px 10px 2px 22px;
        display: block;
        width: 100%;
    }

    .ecosystem_block .bd .left h2 {
        padding: 0 0 12px 0;
        width: 100%;
        font-size: 24px;
        line-height: 30px;
        font-weight: 700;
    }

    .ecosystem_block .bd .left p {
        font-size: 16px;
        line-height: 26px;
    }

    .why_businesses .title h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .counter-section .col-right .bd .item p {
        font-size: var(--font-size-16);
        line-height: 26px;
    }

    .crm-system-dev .title h2 {
        width: 100%;
        font-size: 24px;
        line-height: 30px;
        width: 100%;
    }

    .testimonials_block .item_col .item_bd {
        display: flex;
        border-radius: 30px;
        overflow: hidden;
        justify-content: space-between;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .testimonials_block .item_col .item_bd .left_block {
        padding: 21px 15px;
        width: 100%;
    }

    .testimonials_block .item_col .item_bd .right_block {
        width: 100%;
        display: flex;
        align-items: end;
        justify-content: end;
    }

    .testimonials_block .item_col .item_bd .right_block .itm_img img {
        width: 250px;
        height: auto;
        object-fit: contain;
    }

    .testimonials_block .testi-slider .slick-prev {
        position: relative;
        left: 38%;
        bottom: 0;
        top: initial;
        transform: translatex(-50%);
    }
    .testimonials_block .testi-slider .slick-next {
        position: absolute;
        top: initial;
        left: 54%;
        transform: translatex(-50%);
        bottom: 0;
        right: initial;
    }

    .testimonials_block .item_col .item_bd .right_block .itm_img {
        margin: 0;
        padding: 0;
        position: relative;
        transition: all 0.3s;
        align-items: end;
        justify-content: end;
    }

    .portfolio_block .title h2 {
        font-size: 24px;
        line-height: 30px;
        width: 100%;
    }

    /*.portfolio_block .portfolio_slider_bd 
.item.slick-slide.slick-active.slick-center { margin: 0; padding: 0; }*/

    .portfolio_block .portfolio_slider_bd {
        margin-left: 0;
        padding-left: 0;
    }

    .testimonials_block .testi-slider .slick-prev {
        width: 40px;
        height: 40px;
    }

    .testimonials_block .testi-slider .slick-next {
        width: 40px;
        height: 40px;
    }

    .our-solutions_clients .title h2 {
        font-size: 24px;
        line-height: 36px;
        font-weight: 700;
    }

    .our-solutions_clients .title h2 br {
        display: none;
    }
    .portfolio_block .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption p {
        font-size: 15px;
        line-height: 24px;
        font-weight: 400;
    }

    .our-solutions_clients {
        padding: 50px 0;
    }

    .happy-clients .title h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .happy-clients .title {
        text-align: center;
        padding-bottom: 25px;
        margin-bottom: 34px;
    }

    .happy-clients .logo-holder { width: 170px; }

    .happy-clients .logo-holder img {	height: 78px;	width: 100%;	padding: 6px 6px; }

    .technologies_block .title h2 {
        width: 100%;
        font-size: 24px;
        line-height: 30px;
    }

    .faqblock_home .title h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .faqblock_home .bd_block {
        width: 100%;
    }

    .faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button {
        font-size: 16px;
        font-weight: 500;
    }

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button h4 {
        font-size: 16px;
        font-weight: 500;
    }
    
.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button h3 {
        font-size: 16px;
        font-weight: 500;
    }
    
    
    .faqblock_home .bd_block .accordion .accordion_row .accordion-header {
        padding: 10px 10px;
    }

    footer .footer-container .links h5 {
        font-size: 22px;
        line-height: 30px;
    }

    .our-core-value-section .our-core-value-box h3 {
        padding: 0 0 6px 0;
        font-size: 20px;
        line-height: 42px;
    }

    .innerbanner_block .banner_text p {
        font-size: 16px;
        line-height: 24px;
    }

    .innerbanner_block .banner_text h3 {
        padding: 0 0 10px 0;
        font-size: 24px;
        line-height: 30px;
    }

    .mission-n-vision-section .title h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .mission-n-vision-section .title p {
        padding: 6px 0;
        font-size: 16px;
        line-height: 24px;
    }

    .mission-n-vision-section .bd .col_box .text {
        padding: 0;
    }

    .mission-n-vision-section .bd .col_box h3 {
        font-size: 24px;
        line-height: 30px;
    }
    .mission-n-vision-section {
        padding: 50px 0 40px 0;
    }

    .our-core-value-section .title h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .our-core-value-section {
        padding: 50px 0;
    }
    .our-core-value-section .title p {
        width: 100%;
        font-size: 16px;
    }

    footer .footer-container .row.pb-5 {
        padding-bottom: 27px !important;
    }

    .testimonials_block .testi-slider .slick-next::after {
        font-size: 18px;
    }
    .testimonials_block .testi-slider .slick-prev::after {
        font-size: 18px;
    }

    .portfolio_block .portfolio_slider_bd {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .web-why-choose-us-ideal .web-why-choose-us-inner-box {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
    }

    .web-why-choose-us-ideal .web-why-choose-us-inner-box h5 {
        font-size: 20px;
        line-height: 28px;
        margin: 0;
        padding: 10px 0;
        text-align: center;
    }

    .web-why-choose-us-ideal .web-why-choose-us-inner-box p {
        text-align: center;
    }

    .why_choose_block .left .title h2 {
        font-size: 24px;
        line-height: 30px;
        width: 100%;
    }

    .web-why-choose-us-ideal .title h2 {
        width: 100%;
        font-size: 24px;
        line-height: 30px;
    }

    .web-why-choose-us-ideal {
        padding: 50px 0;
    }

    .portfolio_block .portfolio_slider_bd .item .portfolio-figure .portfolio-figure-caption {
        height: 100%;
        min-height: auto;
    }
    .portfolio_block {
        padding: 50px 0 40px 0;
    }

    .about-leadership-section .title h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .about-leadership-section .title h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .about-leadership-section .about-leadership-title {
        font-size: 16px;
        line-height: 24px;
    }

    .team_members .title h2 {
        font-size: 24px;
        line-height: 30px;
        width: 100%;
    }

    .team_members .management_info .designation {
        font-size: 16px;
        line-height: 24px;
    }

    .team_members .item_bd {
        background: #f2f2f2;
    }

    .team_members .mangeProfile {
        width: 130px;
        height: 130px;
    }

    .employee-testimonials .top-block .title h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .employee-testimonials .top-block .right-block .bg-card {
        padding: 6px 4px;
    }

    .howit_works .item-left .title h2 {
        font-size: 24px;
        line-height: 30px;
        width: 100%;
    }

    .howit_works .row {
        flex-direction: column-reverse;
    }
    .howit_works .item-left {
        margin: 0;
        padding: 20px 0 0 0;
    }
    .howit_works {
        padding: 0 0 40px 0;
    }

    .howwe-worksection-wrapper {
        padding: 50px 0;
    }

    .howwe-worksection-wrapper .item_right h5 {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 20px;
    }

    .howwe-worksection-wrapper .item_right .item_list ul li a {
        margin: 0;
        padding: 0;
        display: block;
        box-shadow: none;
        font-size: 15px;
        text-align: center;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col .icon {
        padding: 0 0 16px 0;
        width: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col .text-bd {
        text-align: left;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col .text-bd h4 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 700;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col .text-bd ul li {
        font-size: 16px;
        line-height: 27px;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col .text-bd ul li b {
        font-size: 16px;
        line-height: 25px;
        font-weight: 600;
        display: inline-block;
        margin: 0;
        position: relative;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col {
        flex-direction: column;
        width: 100%;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col .text-bd {
        width: 100%;
    }

    .onboarding_bdwrapper .item_left .item_bd .button_block {
        font-size: 15px !important;
        float: left;
    }

    .technologies_block #technologies_tabs {
        margin-bottom: 24px;
    }
    .onboarding_bdwrapper .item_right .item_list ul li a {
        font-size: 16px;
    }
    .onboarding_bdwrapper .item_right h5 {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
    }

    .industry-grade .item-left .title h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .industry-grade .item-left p {
        font-size: var(--font-size-16);
        line-height: 28px;
    }

    .deployment_and_beyond .title h2 {
        width: 100%;
        font-size: 24px;
        line-height: 30px;
    }

    .technologies-platforms .title h2 br {
        display: none;
    }

    .technologies-platforms .title h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .innerbanner_block .banner_text .container {
        height: 100%;
    }

    .technologies-platforms .bd_block .itemcol_row {
        margin: 20px 0 0 0;
        padding: 20px;
    }

    .faqinner_block .bd_block .accordion .accordion_row .accordion-header .accordion-button {
        font-size: 16px;
        color: #05124c;
    }

    .technologies_block .title {
        padding-bottom: 25px;
        margin-bottom: 44px;
    }

    .meet-the-team-section .meet-the-team-content .title h2 {
        font-size: 24px;
        line-height: 32px;
        width: 100%;
    }
    .employee-testimonials .botom_slider-bd .item {
        height: auto;
    }
    .innerbanner_block .banner_text h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .onboarding_bdwrapper .item_left .item_bd .item_col .text-bd p {
        text-align: left;
    }

    footer .footer-container .btn-custome {
        padding: 12px 18px;
        font-size: 15px;
    }

    .pricing_bdwrapper .item_right .item_list ul li a {
        font-size: 16px;
        line-height: 22px;
    }

    .pricing_bdwrapper .item_left .item_bd .item_col {
        padding: 15px;
        display: block;
    }

    .pricing_bdwrapper .item_left .item_bd .item_col .icon {
        padding: 0 0 16px 0;
        width: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pricing_bdwrapper .item_left .item_bd .item_col .text-bd {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .pricing_bdwrapper .item_left .item_bd .item_col .text-bd h4 {
        font-size: 24px;
        line-height: 30px;
    }

    .faqinner_block .col_faq-wrapper .item-rt-wrapper .item_bd ul li a {
        font-size: 16px;
        line-height: 22px;
    }

    .faqinner_block .col_faq-wrapper .item-lt-wrapper .item_bd h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .faqinner_block .bd_block .accordion .accordion_row .accordion-header .accordion-button::after {
        background-size: 16px;
    }

    .innerbanner_block .banner_text .innr-banner-btn a {
        padding: 8px 16px 8px 16px;
        font-size: 14px;
    }
    .web_whygo_section .right_block_wrapper h3 {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
    }

    .web_whygo_section .right_block_wrapper .right_item .item_col {
        display: flex;
        align-items: start;
        justify-content: start;
    }

    .mvp_proven_section .item_bd .item_box .item-img {
        margin: 0 auto;
    }
    .mvp_proven_section .item_bd .item_box .text-box {
        text-align: center;
        padding-top: 15px;
    }
    .mvp_proven_section .item_bd .item_box .text-box p {
        text-align: center;
    }

    .mvp-benefits-section .item_bd .item_box .item-img {
        margin: 0 auto;
    }

    .mvp-benefits-section .item_bd .item_box .text-box {
        margin: 0;
        padding: 10px 0 0 0;
    }

    .mvp-benefits-section .item_bd .item_box .text-box h5 {
        text-align: center;
    }
    .mvp-benefits-section .item_bd .item_box .text-box p {
        text-align: center;
    }

    .our-solutions_clients .ltem_block .item {
        height: 78px;
    }

    .counter-section .col-right .bd .item .top .icon img {
        width: 35px;
    }
    .counter-section .col-right .bd .item .top .icon {
        margin: 0 15px 0 0;
        padding: 0 12px 0 0;
        width: 64px;
        height: 64px;
    }

    .counter-section .col-right .bd .item .count-no span.text {
        font-size: 16px;
        line-height: 24px;
    }

    .customized-crm-block .item_text_box .top_sec {
        flex-wrap: nowrap;
    }

    .erp-custom-built-sec .item-bd .img_block img {
        width: 45%;
    }

    .erp-Why-choose-custom .rt_block .right-text p {
        font-size: 16px;
        line-height: 26px;
        color: #fff;
    }

    .erp-industry-specific .top-block h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .erp-Why-choose-custom .left-text p {
        line-height: 26px;
    }
    .customized-crm-block .item-img {
        padding: 0 0 30px 0;
    }
    .php-codeigniter-idead-support .title {
        margin-bottom: 20px;
        padding-bottom: 25px;
    }

    .erp-software-deve-block .row .item_col:last-child {
        margin-top: 30px;
    }

    .crm-system-dev .col-item {
        padding-right: 13px;
        padding-left: 0;
    }

.web_whygo_section .right_block_wrapper .right_item .item_col .icon {
    width: 65px;  height: 65px; }
.iOS-mobileapp-section .title {   padding-bottom: 33px;  margin-bottom: 14px; }
.ios-benefit-block .item_bd .item_box h4 {  font-size: 22px;  line-height: 34px; }
.uiuxdev-isoand-block .bd .col_box h3 {  font-size: 20px;  line-height: 26px; }

.androod-uiux-services .item_bd .text_box h3 {
    font-size: 20px;
    line-height: 26px;
}

.uiux-tools-main .mrb30 {    margin-bottom: 20px; }

.responsive-design-functional .item_bd .card-box h4 {
    font-size: 20px; line-height: 28px; }
.responsive-design-sec .item_bd h4 {    padding: 0 0 0 80px;    font-size: 20px;  line-height: 28px; }
.responsive-design-sec .title {  text-align: center;  padding-bottom: 19px;  margin-bottom: 36px; }

.industry-grade .item-left h5 {
    font-size: 18px;
}

.uiux-design-unique-sec .item_bdwrapper .item-text h3 {
    font-size: 20px;
    line-height: 26px;
}


.expert-seo-services-sec .item_right_box .item_box {
   
    display: flex;
    flex-wrap: wrap;
    padding: 20px 25px 20px 15px;
    
    position: relative;
    flex-direction: column;
}

.expert-seo-services-sec .item_right_box .item_box .text-box {
    width: 100%;
    margin-left: 0;
    padding: 0;
    display: block;
    position: relative;
}

.expert-seo-services-sec .item_right_box .item_box:hover::after {

    border-radius: 4px;
}
.expert-seo-services-sec .item_right_box .item_box .text-box {
  
    text-align: center;
}

.expert-seo-services-sec .item_right_box .item_box .text-box p {
   
    text-align: center;
}
.expert-seo-services-sec .item_right_box .item_box .icon_box {
    width: 90px;
    height: 90px;
}

.expert-seo-services-sec .item_right_box .item_box .icon_box img {
    width: 62px;
}

.contact-info-block .contact-info-icon {
    width: 80px;
    height: 80px;
   
}

.cookies_wrapper .content-wrap {
  
    flex-direction: column;
}
.cookies_wrapper .cookies-policy {
    margin: 0 0 12px 0;
    padding: 0;
    
}

.homepage_onload_popup .popup_bd .popup_header p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.homepage_onload_popup .popup_bd .item_row .item_col .top p {
    font-size: 16px;
    line-height: 22px;
}

.homepage_onload_popup .popup_bd .popup_footer {
    margin: 0 auto;
    padding: 0 20px;
}

.homepage_onload_popup .popup_bd .item_row .item_col .link_block ul li a {
    margin: 2px;
    padding: 6px;
    font-size: 13px;
    line-height: 15px;
}

.homepage_onload_popup .popup_bd .popup_footer .bd {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top:2px solid #021a57;
    flex-direction: column-reverse;
}

.homepage_onload_popup .popup_bd .popup_footer p {
    padding: 11px 0 0 0;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    font-weight: 500;
}

.homepage_onload_popup .popup_bd .item_row .item_col .link_block ul li a .fa {
    font-size: 18px;    line-height: 24px;  position: relative;  top: 2px; }

.head-call-back-box.d-flex.align-items-start {
    flex-direction: column;
}

.head-call-back-sidebar {
    width: 88%;
    height: 100%;
}

.head-call-back-sidebar-background::after {
    content: "";
    width: 34px;
    height: 31px;
    background: url(../media/header/close-btn.webp) no-repeat center center;
    background-size: 20px;
    margin: 10px 0 0 0;
    cursor: pointer;
}


.head-call-back-content {  width: 100%;  margin-left: 0; }
.head-call-back-sidebar {  padding: 40px 15px; }
.head-call-back-content h6 {
    padding: 0 0 10px 0;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
}


.head-call-back-box.d-flex.align-items-start {
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
    align-items: center !important;
    justify-content: center;
}

.head-call-back-box img {
    width: 100px;
    border-radius: 100%;
    height: 100px;
    object-fit: cover;
}

.head-call-back-content p {
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
    line-height: 23px;
    text-align: center;
}

.head-call-back-content {
    width: 100%;
    margin-left: 0;
    padding-top: 20px;
}

.head-call-form-section {
    margin-top: 13px;
}

.head-call-form-section form .form-group input[type="text"] {
    margin: 0;
    padding: 10px;
    font-size: 15px;
    line-height: 22px;
}

.head-call-form-section form .form-group input[type="email"] {
     margin: 0;
    padding: 10px;
    font-size: 15px;
    line-height: 22px;
}


.head-call-form-section form .form-group select {
    margin: 0;
    padding: 11px;
    font-size: 15px;
    line-height: 22px;
    
}

.head-call-form-section form .form-group {
    margin: 8px 0;
}

.home_about .about-text-block span {	padding: 0 0 12px 0; font-size: 16px;
	line-height: 24px; }
.why_businesses .item_row .item_col ul { margin: 0;	padding: 0 0 0 23px; }

.why_businesses .item_row .item_col ul li {	font-size: 16px; line-height: 24px; }


.cookies_wrapper .content-wrap {
	width: 93%;
	text-align: center;
	padding: 24px 20px;
}

.cookies_wrapper .content-wrap .bd-block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.cookies_wrapper .content-wrap .bd-block .text p {	text-align: center; }
.cookies_wrapper .content-wrap .bd-block .accept_reject-btn-block {
	padding: 18px 0;
	display: flex;
	align-items: center;
}

.cookies_wrapper .content-wrap .bd-block .accept_reject-btn-block .btn-wrap button {
	margin: 0 4px;	padding: 8px 6px;	font-size: 15px;	line-height: 22px;	min-width: 110px; }

.erp-industry-specific .technologies_tabs .top-block ul li a {	padding: 10px 15px;	font-size: 14px;
	margin-right: 8px;	margin-bottom: 10px; }

.erp-Why-choose-custom .rt_block .right-text h4 { font-size: 20px;	line-height: 27px; }

.section__hassle .item-list h3 {	font-size: 20px;	line-height: 26px; }

.section__hassle .item-list p {	padding: 10px 0 0;	line-height: 26px;	font-weight: 500; }

.image-card-color {	height: 100%;	max-width: 100%;	object-fit: contain;
	border-radius: 16px;	width: 88%;	margin-left: 15px; }

.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item {
	margin: 0;	padding: 8px 0px 8px 0;	width: 100%; }
.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item label {
	padding: 0 0 4px 0;	font-size: 14px;	line-height: 20px; }

.requestproposal-sec .item-row .item-left .form-wrapper .form-bd .item-submit .submit-btn {
	font-size: 16px;	line-height: 26px;	padding: 12px 23px; }

.our-expertise1Sec .item-row {	padding-top: 48px; }

.our-expertise1Sec .itemBox { padding: 20px 20px; }
.contact-featured-case .featured-bd {	padding: 50px 0; }
.contact-featured-case .item-row .col-rt .text-bd p {
	padding: 6px 0 0 0;	font-size: 16px; line-height: 24px; }
.contact-featured-case .item-row .col-rt .text-bd h3 {
	font-size: 19px;	line-height: 25px; }
	
.contact-featured-case .item-row .col-rt .item-increase {	margin: 0;	padding: 30px 0 0 0;	display: flex;
	flex-wrap: wrap;	flex-direction: column;	align-content: center; }
	
.contact-featured-case .item-row .col-rt .item-increase .item-sec {	margin: 0;	padding: 12px 0;	width: 80%;	text-align: center;
	border-bottom: 1px solid #f2f2f254; }
	
.contactrequest-Section .contact-form .form-bd .item {	margin: 0;	padding: 6px 0;	width: 100%; }
.contactrequest-Section .contact-form .form-bd .item label {	padding: 0 0 4px 0;	font-size: 14px;	line-height: 22px; }
.contactrequest-Section .contact-form .form-bd .item-submit .submit-btn {
	width: auto;	font-size: 16px;	line-height: 22px;	padding: 13px 30px;
	border-radius: 50px;	border: 0; }
.contact-ctasection h2 {	font-size: 24px;	margin-bottom: 16px; line-height: 30px; }
.contact-ctasection .item-bd {	margin: 0;	padding: 50px 0; }

.contact-ctasection .strategist-btn-wrapper .strategist-btn {	padding: 12px 12px 12px 55px; border-radius: 6px; }

.contact-ctasection .strategist-btn-wrapper .strategist-btn::before {
	content: '\f095';	background-repeat: no-repeat;	border: none !important;	cursor: pointer;
	width: 38px;	height: 45px;	position: absolute;	top: 41%;
	left: 12px;	font-size: 35px; }

.contact-ctasection .strategist-btn-wrapper .strategist-btn .bot {	font-weight: bold;	font-size: 18px;	line-height: 22px;}
.contact-ctasection .strategist-btn-wrapper .strategist-btn .mid {	font-size: 15px;	font-weight: 500;	display: block;}


.banner-seoranksec .item-row p { font-size: 16px;	line-height: 27px; }
.banner-seoranksec { padding: 50px 0 50px 0; }
.banner-seoranksec .item-row h2 {	padding: 13px 0 24px 0;	font-size: 22px;	line-height: 30px; }

.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text p {	font-size: 16px;	line-height: 27px; }
.howwe-doItSec .business-tab_bd .tab-content .tab-pane {	padding: 15px 0;	border-radius: 6px; }
.howwe-doItSec .business-tab_bd .tab-content {	padding: 20px 0 0 0; }


.howwe-doItSec .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text .title-text {
	font-size: 18px;	line-height: 26px; }


.arobit-digitalbanner .left-block h1 {	font-size: 24px;	line-height: 34px; }
.arobit-digitalbanner .left-block span {	font-size: 18px;	line-height: 25px; }
.arobit-digitalbanner .left-block {	margin: 0;	padding: 0 0 18px 0; }

.how-wedrive-revenue .sec-wrapper .item-bd .item-row {
	padding:27px;	display: flex;	align-items: center;	justify-content: end;
	flex-direction: column; }
.how-wedrive-revenue .sec-wrapper .item-bd .item-row .item-left {
	width: 100%;	text-align: right; }

.how-wedrive-revenue .sec-wrapper .item-bd .item-row .item-right {
	padding: 0;	width: 100%;	text-align: left; }

.how-wedrive-revenue .sec-wrapper .item-bd .item-row .item-right ul li {	margin: 0;
	padding: 0;	display: flex;	align-items: center;
	justify-content: end; }
	
.H-improvethe-business .business-tab_bd .tab-content .tab-pane {	margin: 0;	padding: 0;	border-radius: 6px; }
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper {
	padding: 20px 20px;	border-radius: 10px; }
.H-improvethe-business .business-tab_bd .tab-content .tab-pane .tab-textwrapper .lef-text .title-text {
	padding: 0 0 15px 0;	font-size: 22px;
	line-height: 34px; }
	
.arobitglobal-map .global-country-item {	width: 50%;	padding: 10px 0; }
.arobitglobal-map {	padding: 41px 20px; }
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt {
	margin: 0;	padding: 30px 0px;	width: 100%;	background: #05124c; }
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block ul {
	display: block; }
	
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block ul li {
	font-size: 16px;	line-height: 24px;	width: 100%; }

.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block h4 {
	font-size: 20px;	line-height: 24px; }
	
.home-proven-resultsfor-clients02_Newsec .item-slideWrapper .item-row .col-rt .text-bd .list-block strong {
	font-size: 20px;	line-height: 24px; }
	
.happy-clients .title {	padding-bottom: 33px; margin-bottom:20px; }

.d-country-agency-banner .left-sec .col-item ul li { padding: 4px 0 4px 23px; font-size: 16px; line-height: 22px; position: relative; }

.who-weare06Sec .bd-wrapper { padding: 30px 20px; border-radius: 8px; }

.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item {
	height: 139px;	border-radius: 10px; }
	
.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item .country-presence-name {
	padding: 4px; }
	
.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item .country-presence-name h5 {
	font-size: 15px; }

.country-046presence .img01-sliderbd .item .item-Boxsec .country-presence-item .country-presence-name h3 {
	font-size: 15px; }
	
.country-046presence .img01-sliderbd .slick-prev::after {
	content: "\f104";	position: absolute;	left: 0;
	top: 0;	font-size: 24px;	font-family: FontAwesome;
	width: 30px;	height: 30px;	background: #c46004cf;	border-radius: 50px; }
	

.country-046presence .img01-sliderbd .slick-next::after {
	content: "\f105";	width: auto;	height: auto;	background: 0 0;
	position: absolute;	right: 0;	top: 0;
	font-size: 30px;	color: #fff;	font-family: FontAwesome;
	width:30px;	height:30px;	background: #c46004cf;
	border-radius: 50px;	display: flex;	align-items: center;	justify-content: center; }
	
.brand05ranking-today .bd-wrapper .title-sec {	font-size: 24px;	line-height: 33px;	width: 100%; }
.brand05ranking-today .bd-wrapper {	padding: 44px 15px; }
.across-variedindustries01 .slider_bd .item_slider { margin: 0;	padding: 0; }

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content {
	margin: 10px;	padding: 18px 18px 22px 18px; }

.across-variedindustries01 .slider_bd .slick-prev::after {	content: "\f104";	position: absolute;	left: 0;
	top: 0;	font-size: 30px;	color: #dfdfdf;	font-family: FontAwesome;
	width: 30px;	height: 30px;	background: #0000003d;	border-radius: 50px;
	display: flex;	align-items: center;	justify-content: center;	color: #05124cba; }

.across-variedindustries01 .slider_bd .slick-next::after {	content: "\f105";	width: auto;	height: auto;
	background: 0 0;	position: absolute;	right: 0;
	top: 0;	font-size: 30px;	color: #05124cba;	font-family: FontAwesome;
	width: 30px;	height: 30px;	background: #0000003d;	border-radius: 50px;
	display: flex;	}

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .text-sec h3 {
	padding: 0 0 4px 0;	font-size: 20px;	line-height: 24px; }

.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .text-sec p {
	font-size: 15px;	line-height: 21px; }
.across-variedindustries01 .slider_bd .item_slider .homepage-slide-content .text-sec ul li {
	padding: 6px 0 6px 24px;	font-size: 15px;	line-height: 22px; }
	
.across-variedindustries01 { padding: 40px 0;  }

.happy-clients .logo-holder {  border: 6px solid #fcf2ee; }

.happy-clients a.button {  display: flex;  align-items: center;   justify-content: center; }


/**/
}
/**/


/*--------------------=================-----------------=================-------------==============-------------------------------------*/


/*==============================
Performance Section
===============================*/

.performance-section{
    background:#09195B;
    padding:50px 0;
    overflow:hidden;
}

.performance-heading{
    margin-bottom:60px;
}

.performance-heading h2{
    font-size:48px;
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
    line-height:1.2;
}

.performance-heading h2 span{
    color:#ff7300;
}

.performance-heading p{
    color:#d6d9e5;
    font-size:17px;
    line-height:1.7;
    max-width:500px;
    margin:0 auto;
}

/*==============================
Top Stats
===============================*/

.performance-top{
    position:relative;
    margin-bottom:40px;
}

.performance-top::after{
    content:"";
    position:absolute;
    left:50%;
    top:10px;
    width:1px;
    height:120px;
    background:rgba(255,255,255,.18);
    transform:translateX(-50%);
}

.performance-item{
    text-align:center;
}

.performance-number{
    font-size:56px;
    font-weight:800;
    color:#fff;
    line-height:1;
}

.performance-number span{
    color:#ff7300;
}

.performance-line{
    width:130px;
    height:3px;
    background:#ff7300;
    margin:8px auto 16px;
}

.performance-item h3{
    color:#fff;
    font-size:24px;
    font-weight:500;
    margin:0;
}

/*==============================
Middle Divider
===============================*/

.performance-divider{
    height:1px;
    background:rgba(255,255,255,.15);
    margin-bottom:30px;
}

/*==============================
Bottom Cards
===============================*/

.performance-card{
    padding:10px 28px 0;
    border-right:1px solid rgba(255,255,255,.15);
    /*min-height:190px;*/
}

.performance-last{
    border-right:none;
}

.performance-small-number{
    font-size:52px;
    font-weight:800;
    color:#fff;
    line-height:1;
}

.performance-small-number span{
    color:#ff7300;
}

.performance-small-line{
    width:72px;
    height:3px;
    background:#ff7300;
    margin:10px 0 16px;
}

.performance-card h4{
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin-bottom:5px;
}

.performance-card p{
    color:#cfd3e3;
    font-size:15px;
    line-height:1.6;
    margin:0;
}

/*==============================
Hover
===============================*/

.performance-item,
.performance-card{
    transition:.35s;
}

.performance-item:hover,
.performance-card:hover{
    transform:translateY(-6px);
}

/*==============================
Large Desktop
===============================*/

@media (min-width:1400px){

.performance-section .container{
    max-width:1120px;
}

}

/*==============================
Laptop
===============================*/

@media (max-width:1199px){

.performance-number{
    font-size:50px;
}

.performance-small-number{
    font-size:34px;
}

.performance-card{
    padding:10px 18px;
}

}

/*==============================
Tablet
===============================*/

@media (max-width:991px){

.performance-section{
    padding:70px 0;
}

.performance-heading h2{ font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px); }

.performance-heading p{
    font-size:16px;
}

.performance-top::after{
    display:none;
}

.performance-item{
    margin-bottom:35px;
}

.performance-divider{
    margin:15px 0 35px;
}

.performance-card{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.15);
    padding:30px 20px;
    text-align:center;
}

.performance-small-line{
    margin:12px auto 18px;
}

.performance-bottom .col-md-6:nth-last-child(-n+2) .performance-card{
    border-bottom:none;
}

}

/*==============================
Mobile
===============================*/

@media (max-width:767px){

.performance-section{
    padding:55px 0;
}

.performance-heading{
    margin-bottom:45px;
}

.performance-heading h2{
    font-size:30px;
}

.performance-heading p{
    font-size:15px;
}

.performance-number{
    font-size:45px;
}

.performance-item h3{
    font-size:21px;
}

.performance-line{
    width:100px;
}

.performance-card{
    min-height:auto;
    padding:25px 15px;
}

.performance-small-number{
    font-size:42px;
}

.performance-card h4{
    font-size:20px;
}

.performance-card p{
    font-size:14px;
}

.performance-bottom .col-md-6:last-child .performance-card{
    border-bottom:none;
}

}

/*==============================
Extra Small Mobile
===============================*/

@media (max-width:480px){

.performance-heading h2{
    font-size:26px;
}

.performance-number{
    font-size:46px;
}

.performance-item h3{
    font-size:18px;
}

.performance-small-number{
    font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
}

.performance-card h4{
    font-size:18px;
}

.performance-card p{
    font-size:13px;
}

}

/*----*/

/*testi-scroll-wrap*/


.client-01speak  { padding:64px 0;   background: linear-gradient(160deg,#071136 0%,#091440 40%,#0a1744 100%);    color: #fff; }

.testi-scroll-wrap .client-01speak .rv { margin: 0;    padding: 0; text-align: center; }
.testi-scroll-wrap .client-01speak .rv .sec-label {  display: block; }

.testi-scroll-wrap{position:relative;margin-top:36px; }
.testi-scroll-wrap .testi-scroll{  padding-bottom:8px; }

.testi-scroll-wrap .testi-scroll::-webkit-scrollbar{display:none; }

.testi-scroll-wrap .testi-card { flex-shrink:0;scroll-snap-align:start;border-radius:14px;overflow:hidden;
 background:rgba(255,255,255,0.03); transition:transform .35s,
 box-shadow .35s;display:block;text-decoration:none; margin:10px 11px;  }

.testi-scroll-wrap .testi-card:hover{transform:translateY(-6px);box-shadow:0 12px 40px rgba(0,0,0,0.3);border-color:rgba(255,255,255,0.15)}

.testi-scroll-wrap .testi-img{position:relative;height:300px;overflow:hidden}
.testi-scroll-wrap .testi-img img{width:100%;height:100%;object-fit:cover;object-position:center top}

.testi-scroll-wrap .testi-img::after{content:'';position:absolute;inset:0; 
 background: linear-gradient(160deg, rgb(41 50 112 / 38%) 0%, rgb(17 22 56 / 41%) 100%); }

.testi-scroll-wrap .testi-play{position:absolute;bottom:14px;right:14px;width:40px;height:40px;border-radius:50%;background:#ec7323;display:flex;align-items:center;justify-content:center;z-index:2;box-shadow:0 4px 16px rgba(236,115,35,0.5)}
.testi-scroll-wrap .testi-industry-tag{position:absolute;top:12px;left:12px;background:rgba(41,50,112,0.7);backdrop-filter:blur(4px);border-radius:6px;padding:4px 12px;font-size:10px;color:#fff;font-weight:600;z-index:2}
.testi-scroll-wrap .testi-body{padding:12px 18px 18px; border: .1px solid #80808059;
    border-radius: 0 0px 15px 15px;
    border-top: 0; }
.testi-scroll-wrap .testi-top-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.testi-scroll-wrap .testi-quote{font-size:13px;color:rgba(255,255,255,0.5);line-height:1.5;font-style:italic;margin-bottom:12px}
.testi-scroll-wrap .testi-name{font-size:14px;font-weight:700;color:#fff}
.testi-scroll-wrap .testi-role{font-size:12px;color:rgba(255,255,255,0.35)}


.client-01speak .testi-scroll-wrap .testi-verified-badge {	display: inline-flex;	align-items: center;	gap: 4px;
	font-size: 10px;	font-weight: 700;	color: #28c840;
	background: rgba(40,200,64,0.12);	padding: 3px 9px;	border-radius: 6px; }

.testi-scroll-wrap .testi-scroll ul {    margin-top:15px;    display: flex;    align-items: center;
    justify-content: center }
.testi-scroll-wrap .testi-scroll ul li button {  margin: 0 5px;
    padding: 0;    width: 10px;    height: 10px;
    background: #fff;    border-radius: 50px;    font-size: 0; border: 0; }
.testi-scroll-wrap .testi-scroll ul li.slick-active button { width: 10px;    height: 10px;    background: #ec7323;    border: 0; }


/*----video-modal-popup----*/


.video-modal-overlay {    position: fixed;    top: 0;    left: 0;
    width: 100%;    height: 100%;    background: rgb(0 0 0 / 12%);
    backdrop-filter: blur(8px);    display: flex;
    align-items: center;    justify-content: center;    z-index: 99999;    opacity: 0;
    visibility: hidden;    transition: opacity 0.3s ease, visibility 0.3s ease; }

.video-modal-overlay.active { opacity: 1; visibility: visible; }

.video-modal-content {  position: relative;    width: 90%;    max-width: 850px;
    background: #071136;    border: 1px solid rgba(255, 255, 255, 0.15);    border-radius: 16px;
    overflow: hidden;    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7); }

.video-modal-close { position: absolute;    top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(4px); border: 1px solid rgba(255, 255, 255, 0.2); color: #ffffff; display: flex; align-items: center;
justify-content: center; cursor: pointer;z-index: 100; transition: all 0.25s ease; padding: 0; }

.video-modal-close:hover { background: #ec7323; border-color: #ec7323; transform: rotate(90deg) scale(1.05); color: #ffffff; }

.video-modal-body { position: relative; padding-bottom: 56.25%; /* 16:9 Ratio */ height: 0; width: 100%; overflow: hidden; background: #000; }
.video-modal-body iframe { position: absolute; top: 0; left: 0;
width: 100%; height:100%; border:0; }
/*----video-modal-popup----*/


/*testi-scroll-wrap*/

/*--#presence--*/

.global_01presence {  padding:60px 0;  position: relative;    background: linear-gradient(160deg, rgb(7, 17, 54) 0%, rgb(9, 20, 64) 45%, rgb(10, 23, 68) 100%);
overflow: hidden; }

.global_01presence .presence-grid {    display: grid;    grid-template-columns: 1fr 1fr;    margin-bottom: 44px;
    gap: 40px; }

.global_01presence .presence-dot-bg {    position: absolute;    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.4) 1px, transparent 0px);
    background-size: 30px 30px;    inset: 0px; }

.global_01presence .world-map-wrap {    position: absolute;    top: 46%;    left: 50%;
    transform: translate(-50%, -50%);    width: 94%;    max-width: 1120px;
    pointer-events: none; }

.global_01presence .world-map-img {    width: 100%;    height: auto;    display: block;
    opacity: 0.18; }

.global_01presence .svc-z { position: relative;    z-index: 2; }
.global_01presence .sectitle-wrapper {    margin: 0;    padding: 0 0 30px 0;}
.global_01presence .rv.vis {    opacity: 1;    transform: none; }
.global_01presence .loc-row {    display: flex;    align-items: center;
    margin-bottom: 18px;    gap: 8px; }
.global_01presence .loc-icon {    color: rgb(236, 115, 35); }
.global_01presence .loc-region-label {    font-size: 12px;    font-weight: 800;
    letter-spacing: 0.12em;    text-transform: uppercase;    color: rgba(255, 255, 255, 0.6); }

.global_01presence .loc-chips {    display: flex;    flex-wrap: wrap;    gap: 10px; }

.global_01presence .city-chip-home {    color: rgb(255, 255, 255);    background: linear-gradient(135deg, rgb(236, 115, 35), rgb(232, 97, 30));
border-color: transparent; }

.global_01presence .city-chip {    display: inline-flex;    align-items: center;    font-size: 13.5px;
    font-weight: 600;    color: rgba(255, 255, 255, 0.85);    gap: 7px;
    padding: 10px 18px;    border-radius: 100px;    background: rgba(255, 255, 255, 0.07);
    border-width: 1px;    border-style: solid;    border-color: rgba(255, 255, 255, 0.16);
    border-image: none; }

.global_01presence .city-chip-badge {    font-size: 9px;    font-weight: 800;    margin-left: 4px;    background: rgba(255, 255, 255, 0.25);
    padding: 1px 5px;    border-radius: 4px; }

/*--#presence--*/

/*--/////////////////////////////////////////////////////////////////////--*/

    
.industry-expertise { margin:0; padding:50px 0; }

.industry-expertise .item-titlesec { padding: 0;    text-align: center;    display: flex;    flex-direction: column;
    justify-content: center;    align-items: center;    margin: 0 0 36px 0; }

.industry-expertise .item-titlesec .sec-title {     font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);   font-weight: 700;    color: #0d2358;
    margin-bottom: 8px;    color: #05124C;
    letter-spacing: 0%;    text-align: center;    vertical-align: middle; }

.industry-expertise .sec-label {    font-size: 12px;    font-weight: 800;    text-transform: uppercase;
    letter-spacing: 0.18em;    color: #ec7323;    margin-bottom: 14px;
    display: flex;    align-items: center;    gap: 10px; }

.industry-expertise .sec-label::before {    content: '';    width: 28px;    height: 2px;
    background: #ec7323; }

.industry-expertise .industryBD01-wrapper .ind-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px; }
.industry-expertise .industryBD01-wrapper .flip-card{perspective:1000px;height:288px;cursor:pointer; }
.industry-expertise .industryBD01-wrapper .flip-inner{position:relative;width:100%;height:100%;transition:transform .6s cubic-bezier(0.16,1,0.3,1);transform-style:preserve-3d}
.industry-expertise .industryBD01-wrapper .flip-card:hover .flip-inner{transform:rotateY(180deg); }
.industry-expertise .industryBD01-wrapper .flip-front,.flip-back{position:absolute;inset:0;backface-visibility:hidden;border-radius:14px;overflow:hidden; }
.industry-expertise .industryBD01-wrapper .flip-front-img { width: 100%; height: 100%; object-fit: cover; }
.industry-expertise .industryBD01-wrapper .flip-overlay {    position: absolute;    inset: 0;
background: linear-gradient(to top,rgba(8,16,48,0.97) 0%,rgba(10,23,68,0.45) 55%,rgba(10,23,68,0.15) 100%); }

.industry-expertise .industryBD01-wrapper .flip-back{transform:rotateY(180deg);background:linear-gradient(135deg,#0a1744 0%,#0d1d52 100%);
padding:20px;display:flex;flex-direction:column; }
.industry-expertise .industryBD01-wrapper .flip-back h4{font-size:15px;font-weight:700;color:#fff;margin-bottom:4px; }
.industry-expertise .industryBD01-wrapper .flip-back-rule{width:32px;height:3px;border-radius:2px;background:#ec7323;margin-bottom:12px; }
.industry-expertise .industryBD01-wrapper .flip-back-item{display:flex;align-items:center;gap:8px;font-size:12.5px;color:rgba(255,255,255,0.78);margin-bottom:6px; }
.industry-expertise .industryBD01-wrapper .flip-back-item::before{content:'→';color:#ec7323;font-size:11px;flex-shrink:0; }
.industry-expertise .industryBD01-wrapper .flip-back-cta{display:inline-flex;align-items:center;justify-content:center;gap:7px;margin-top:auto;
padding:10px 16px;background:#ec7323;border-radius:8px;font-size:12.5px;font-weight:700;color:#fff;text-decoration:none; }

.industry-expertise .industryBD01-wrapper .flip-front-content {    position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px; }
.industry-expertise .industryBD01-wrapper .flip-front-title { font-size: 17px; font-weight:700;  color: #fff;  margin-bottom: 6px; }
.industry-expertise .industryBD01-wrapper .flip-front-desc { font-size: 12px;  color: rgba(255,255,255,0.6);
    line-height: 1.5; margin-bottom: 8px; }

.industry-expertise .industryBD01-wrapper .flip-stat-row { display: flex;    align-items: center;
    gap: 6px; }
.industry-expertise .industryBD01-wrapper .flip-stat-dot { width: 6px; height: 6px;    border-radius: 50%;
    background: #ec7323; }
.industry-expertise .industryBD01-wrapper .flip-stat-text {  font-size: 11px;    font-weight: 700;    color: #ec7323; }

/*----industry-expertise----*/

/*--/////////////////////////////////////////////////////////////////////--*/



/* --mg--@media----RESPONSIVE (single-page) ───---/////-----=====///////////////////////////////----==========--------=======──────────── */

/*----responsive-start----*/

@media screen and (min-width: 1920px) {
    



/**/
}
@media screen and (min-width: 1600px) {
    



/**/
}
@media screen and (max-width: 1280px) {
    
.seo-inner-banner .item-left h1 {
	font-size: 38px;
	line-height: 48px;
}
.hero-body {    padding: 120px 0 !important; }

/**/
}
@media screen and (max-width: 1200px) {


.seo-inner-banner {
	padding: 64px 0 92px 0;
	background-position: center center !important;
}

.seo-inner-banner .item-right .round-box-wrapper .item .project__hover-reverse-card--front, .seo-inner-banner .item-right .round-box-wrapper .item .project__hover-reverse-card--back {
	height: 170px;	width: 170px; }
.seo-inner-banner .item-right .round-box-wrapper .item.position1 {
	position: absolute;
	right: 400px;
	top: -47%;
}

.seo-inner-banner .item-right .round-box-wrapper .item.position2 {
	position: absolute;	right: 178px;	top: 2%; }

.seo-inner-banner .item-right .round-box-wrapper .item.position3 {
	position: absolute;
	right: 220px;
	top: 88%;
}

.seo-inner-banner .item-right .round-box-wrapper .item .project__hover-reverse-card--front, .seo-inner-banner .item-right .round-box-wrapper .item .project__hover-reverse-card--back {
	height: 170px;
	width: 170px;
	padding: 24px;
	text-align: center;
}

.seo-inner-banner .item-right .round-box-wrapper .item h4 {
	margin: 0;
	padding: 0;
	font-size: 13px;
	line-height: 17px;
	color: #fff;
	text-align: center;
}

.seo-inner-banner .item-right .round-box-wrapper .item .project__hover-reverse-card--back p {
	padding: 4px 0;
	font-size: 12px;
	line-height: 18px;
}

.seo-inner-banner .item-right .right-text p {
	font-size: 16px;	line-height: 23px; }

.seo-inner-banner .item-right .right-text span {
	padding: 12px 0;
	font-size: 14px;
	line-height: 20px;
}
.seo-inner-banner .item-right .right-text ul li {
	font-size: 14px;
	line-height: 22px;
}

.seo-inner-banner .item-right .right-text ul li span {
	font-size: 14px;
	line-height: 19px;
}
.seo-inner-banner .item-right .round-box-wrapper .item strong {
	font-size: 24px;
	line-height: 36px;
}

.seo-inner-banner .item-left h1 {
	font-size: 40px;
	line-height: 48px;
}
.seo-inner-banner .item-left p {
	font-size: 16px;
	line-height: 26px;
}

/*.seo-expart-block .bd .text h2 {*/
	

/*}*/
/*.seo-expart-block .bd .text h2 span {*/

/*}*/

.seo-expart-block .bd .list-block {	padding-top: 38px; }
.seo-expart-block .bd .text {
	margin: 46px 0 0 0;
	padding: 21px 20px;
	width: 58%;
}

.seo-greater-marketing .item-box h3 {
	line-height: 32px;
	font-size: 22px;
}

.seo-greater-marketing .item-box h4 {
	line-height: 32px;
	font-size: 22px;
}
.seo-greater-marketing .item-box ._list li {
	font-size: 15px;
	line-height: 24px;
}

.seo-greater-marketing .row .item-col-box:first-child .item-box .first-item-poeition img {
	width: 79%;
}

/*.seo-greater-marketing .row .item-col-box:first-child .item-box .first-item-poeition {*/
/*	position: absolute;*/
/*	right: -92px;*/
/*	top: -72px;*/
/*	width: 223px;*/
/*}*/

.seo-greater-marketing .row .item-col-box:first-child .item-box .first-item-poeition {
    position: absolute; right: -14px; top: 0px; width: 114px; }

.content-color-card-copy {
	margin-top: 30px;
	margin-bottom: 64px;
	margin-left: 40px;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 24px;
}

.seo-subscribe-digital .title .titlesec01 {	font-size: 32px !important;	line-height: 32px !important; }
.seo-subscribe-digital .title .titlesec01 span {	font-size: 32px !important;	line-height: 32px !important; }


.seo-greater-marketing .item-box ._list {    box-sizing: border-box;    -webkit-box-sizing: border-box;    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;    -ms-box-sizing: border-box;    scrollbar-width: thin;
    scrollbar-color: #b2b2b2 #ccc; }




/**/
}

@media (max-width: 1024px) {


/**/
}
@media screen and (max-width: 991px) {
    

.industry-expertise .industryBD01-wrapper .ind-grid {	display: grid;
 grid-template-columns: repeat(3,1fr);	gap: 14px; }
.industry-expertise .ind-grid {	display: grid;	grid-template-columns: repeat(2,1fr);	gap: 14px; }
    
.thearobit_01ppcgrowth .repeat_itemrow .left_text {	margin: 0;	padding: 0 ;	width: 100% !important; }
.thearobit_01ppcgrowth .repeat_itemrow .rightimage { display: none; }
    
.how-weapproach-agency .repeat_itemrow .rightimage { display: none; }
.how-weapproach-agency .repeat_itemrow .left_text {	margin: 0;	padding: 0;
 width: 100%; }

.sticky01sec {	position: initial !important; }
.pricing-custom-block .item-bd-block .button {	padding: 14px 14px;
	font-size: 15px;	border-radius: 4px;
	display: inline-block;	margin-top: 12px; }
	
.seo-inner-banner .item-left {
	margin: 0;
	padding: 0;
}

.seo-inner-banner {
	padding: 67px 0 194px 0;
}
.seo-inner-banner .item-right {
	margin: 0 auto;
	padding: 0;
	position: static;
}

.seo-inner-banner .item-right .round-box-wrapper {
	position: relative; }

.seo-inner-banner .item-right .right-text {
	margin: 0 auto;
	width: 65%;
}

.seo-inner-banner .item-right .round-box-wrapper {
	position: static;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: auto;
}

.seo-inner-banner .item-right .round-box-wrapper .item.position1 {
	position: relative;
	left: 0;
	top: 0;
}
.seo-inner-banner .item-right .round-box-wrapper .item.position2 {
	position: relative;
	left: 0;
	top: 0;
	right: 0;
}

.seo-inner-banner .item-right .round-box-wrapper .item.position3 {
	position: relative;
	left: 0;
	top: 0;
	right: 0;
}
.seo-inner-banner .item-right .round-box-wrapper .item {
	margin: 0;
	padding: 0;
	width: 33.33%;
	width: 180px;
	height: 180px;
}

.seo-inner-banner .item-right .round-box-wrapper {
	position: static;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: auto;
	padding-top: 30px;
}


.seo-inner-banner .item-left .form-bd {
	margin: 0 auto;
	padding: 18px 0 0 0;
	width: 67%;
}

.seo-inner-banner .item-right {
	margin: 0 auto;
	padding: 30px 0 0 0;
	position: static;
}


.seo-inner-banner .item-left {
	margin: 0;
	padding: 0;
	text-align: center;
	width: 100%;
}


.seo-inner-banner .item-left p {
	text-align: center;
}

.seo-inner-banner .item-left .form-bd .first-form .item {
	margin: 0 auto;
	padding: 0;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
}

.seo-inner-banner {	padding: 53px 0 50px 0; }

.seo-expart-block .bd .text {
	width: 59%;
}

.seo-inner-banner .item-left h1 {
	font-size: 30px;
	line-height:40px;
}
.brand-logo h1 {
	font-size: 16px;
	line-height: 25px;
	font-weight: 400;
	width: 76%;
}

.brand-logo p {
	font-size: 16px;
	line-height: 25px;
	font-weight: 400;
	width: 76%;
}

.seo-expart-block .bd .text h2 {
	
	padding: 0 0 6px 0;
}
.seo-expart-block .bd .text h2 span {
	/*font-size: 30px;*/
}

.seo-expart-block .bd .text p {
	padding: 0 0 6px 0;
	font-size: 16px;
	line-height: 21px;
}
.seo-expart-block .bd .list-block {
	padding-top: 13px;
}
.seo-expart-block .bd .list-block span {
	font-size: 20px;
	line-height: 20px;
	padding: 0px 0px 20px 0;
}

.seo-expart-block .bd .text ul li {
	margin: 0;
	padding: 0 0 20px 20px;
	font-size: 16px;
	line-height: 22px;
	width:100%;
}
.crmdev-tailored .title h2 span {
	font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
}
.crmdev-tailored .title {
	text-align: center;
	padding-bottom: 33px;
	margin-bottom: 30px;
}

.heilight_block .text_bd p span {
	font-size: 24px;
	line-height: 32px;
}

.heilight_block .text_bd p {

	font-size: 24px;
	line-height: 32px;
}
.seo-greater-marketing .title h2 span {
font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
	
}
.pricing-custom-block .bd-block .text h2 {
	font-size: 24px;
	width: 66%;
	line-height: 31px;
}

.pricing-custom-block .bd-block .text p {
	font-size: 24px;
	width: 66%;
	line-height: 31px;
}
.pricing-custom-block .bd-block .text {
	margin: 0;
	padding: 0;
}
.pricing-custom-block .bd-block .text .button {
	padding: 14px 22px;
	font-size: 14px;
}

.section__hassle .title h2 span {
font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
	
}



.content-color-card {
	margin-left: 40px;
	
}

.section__hassle .item-list h3 {
	padding: 13px 0 0 0;
	font-size: 24px;
	line-height: 36px;
}

.seo-testimonial-slider .title h2 span {
	font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
	
}

.seo-testimonial-slider .item-bd .text ._foot span {
	padding: 0 8px 0 0;
	font-size: 30px;
	}

.seo-landing-box-block .title h2 span {
font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
	
}
.happy-clients .title h2 span {
font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
	
}

.happy-clients .title {
	text-align: center;
	padding-bottom: 17px;
	margin-bottom: 17px;
}


.crm-system-dev .title h2 span {
	font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);
	
}
.crm-system-dev .title {
	margin-bottom: 27px;
}

.seo-subscribe-digital .form-bd {
	padding: 20px;
	width: 90%;
	/* background: #f2f2f2; */
}

.title h2 span {
font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);

}


.crmdev-tailored .item_bd .text p {	padding: 0 10px; }

.content-color-card-copy {
	margin-top: 14px;
	margin-bottom: 56px;
	margin-left: 23px;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 24px;
}
.image-card-color {
	height: 100%;
	max-width: 100%;
	border-radius: 16px;
	width: 40%;
	padding: 20px 10px 10px 10px;
}

.crm-system-dev .description {
	padding: 0 10px 0 8px;
	font-size: 18px;
	font-weight: 500;
	width: 59%;
	line-height: 25px;
}


/**/
}
@media screen and (max-width: 767px) {


.industry-expertise .industryBD01-wrapper .ind-grid {	display: grid;
    grid-template-columns: repeat(2,1fr);	gap: 14px; }

.kol-brand-strip .strip-label {	padding: 0 15px; }
.head-call-back-sidebar {	padding: 0; }
.head-call-back-sidebar-main .head-call-back-content p { text-align: center; }

.global_01presence .presence-grid {	display: grid;	grid-template-columns: 1fr; }

.thearobit_01ppcgrowth .repeat_itemrow .left_text .itemtitle {
	font-size: 23px;
	line-height: 32px; }

.seo-inner-banner .item-left .form-bd .first-form .item {
	flex-wrap: nowrap; }

.seo-inner-banner .item-left .form-bd {
	margin: 0 auto;
	padding: 18px 0 0 0;
	width: 80%;
}

.seo-inner-banner .item-right .right-text {
	margin: 0 auto;
	width: 90%;
}

.seo-inner-banner {
	padding: 45px 0 50px 0;
	background-image: linear-gradient(165deg,#01032f 0%,#0D0E8A 100%) !important;
}

.seo-expart-block .bd {
	display: flex;
	align-items: start;
	justify-content: space-between;
	flex-direction: column-reverse;
}

.seo-expart-block {	overflow: hidden;
	max-height: unset;	height: auto; }

.title h2 span {
	font-size: clamp(28px, 3.2vw, 34px);
  line-height: clamp(34px, 3.8vw, 41px);

}

.seo-expart-block .bd .text {
	margin: 0;
	padding: 21px 20px;
	width:100%;
}

.seo-greater-marketing .row .item-col-box:first-child .item-box .first-item-poeition {
	position: absolute;
	right: 0;
	top: 0;
	width: 110px;
}

.heilight_block .text_bd p {
	font-size: 20px;
	line-height: 26px;
}

.heilight_block .text_bd p span {
	font-size: 20px;
	line-height: 26px;
}

.seo-greater-marketing .item-box {
	background: #05124c;
}
.seo-greater-marketing .item-col-box {
	margin-top: 20px;
}

.pricing-custom-block .bd-block .text {
	
	flex-direction: column;
}

.pricing-custom-block {
	position: relative;
	overflow: hidden;
	background: #05124c;
}


.pricing-custom-block .bd-block .text h2 {
	/*font-size: 24px;*/
	width: 100%;
	line-height: 31px;
	text-align: center;
	padding-bottom: 30px;
}

.pricing-custom-block .bd-block .text p {
	font-size: 24px;
	width: 100%;
	line-height: 31px;
	text-align: center;
	padding-bottom: 30px;
}

.grid_hassle-color-card {
	width: 100%;
	height: 100%;
	border: 1px solid #e9ecf1;
	align-content: space-between;
	justify-content: space-between;
	flex-direction: column-reverse;
}

.seo-landing-box-block {
	margin: 0;
	padding: 50px 0;
	background: #ffffff;
}

.seo-landing-box-block .item_box .text_box h3 {
	font-size: 22px;
	line-height:28px;
	font-weight: 600;
}


.seo-subscribe-digital .form-bd {
	padding: 20px;
	width: 100%;
	/* background: #f2f2f2; */
}


.seo-subscribe-digital .title {
	margin: 0;
	padding: 0 0 14px 0;
}

.seo-subscribe-digital .form-bd form .item .checkbox-block label {
	font-size: 14px;
}
.seo-subscribe-digital { padding: 50px 0; }

.faqblock_home .title {	margin: 0 0 35px 0;	padding: 0 0 25px 0; }

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button h4 {
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
}

.faqblock_home .bd_block .accordion .accordion_row .accordion-header .accordion-button h3 {
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
}
.faqblock_home .bd_block .accordion .accordion_row .accordion-collapse .accordion-body ul li {
	font-size: var(--font-size-16);
	line-height: 18px;
}

.seo-inner-banner .contain-bd {
	height: 100%;
	min-height: auto;
	display: block;
	position: relative;
	z-index: 2;
}



.heilight_block .text_bd {
	padding: 0px 0 0 14px;
	position: relative;
	border-left: 6px solid #ff6900;
}

.heilight_block .text_bd p {
	font-size: 18px;
	line-height: 23px;
}

.heilight_block .text_bd p span {
	font-size: 18px;
	line-height: 26px;
}

.seo-expart-block .bd .img_block {
	margin: 0 auto;
	padding: 0;
	width: 80%;
	position: static;
	
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-color-card {
	margin-left: 80px;
	padding-top: 20px;
	padding-bottom: 64px;
}


.crm-system-dev .section-botom {
	margin: 0;
	padding: 18px 0 0 0;
	display: block;
	flex-wrap: nowrap;
}
.crm-system-dev .description {
	padding: 0 0 9px 7px;
	font-size: 18px;
	width: 100%;
	line-height: 30px;
}

.content-color-card-copy {
	margin-top: 14px;
	margin-bottom: 56px;
	margin-left: 23px;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 24px;
	width: 100%;
}

.image-card-color {
	height: 100%;
	max-width: 100%;
	border-radius: 16px;
	width: 100%;
	padding: 20px 10px 10px 10px;
}

.seo-subscribe-digital .title .titlesec01 {	font-size: 24px !important;	line-height: 32px !important; }
.seo-subscribe-digital .title .titlesec01 span {	font-size: 24px !important;	line-height: 32px !important; }

.performance-top {	position: relative;	margin-bottom: 0px; }
.performance-item { margin-bottom: 18px; }
.performance-card {	min-height: auto;	padding: 18px 15px; }

.testi-scroll-wrap .testi-img { position: relative;	height: auto;	overflow: hidden; }

#contact .container > div > div:last-child {	flex-direction: column !important;	gap: 14px;
 align-items: center;	justify-content: center; }
	
.hi-hero-h1 br { display: none !important; }



/**/
}
@media screen and (max-width: 576px) {


.industry-expertise .industryBD01-wrapper .ind-grid {	display: grid;	grid-template-columns: repeat(1,1fr);
	gap: 14px; }

.industry-expertise .ind-grid {	display: grid;	grid-template-columns: repeat(1,1fr); gap: 14px; }

.how-weapproach-agency .repeat_itemrow .left_text .itemtitle {
	padding: 0 0 8px 0;	font-size: 22px;	line-height: 29px; }
.pricing-custom-block .item-bd-block h2 {
	font-size: 26px;	line-height: 31px; }

.seo-inner-banner .button_wrapper ul li a.item01 {	margin-right: 0;	margin-bottom: 10px; }

.performance-card {	min-height: auto;	padding: 18px 15px;	background: #f2f2f20a; }

.seo-inner-banner .item-left .form-bd {	margin: 0 auto;	padding: 18px 0 0 0; width: 100%; }

.seo-inner-banner .item-left .form-bd .first-form .item button[type="submit"] {
	
	padding: 11px 22px;
	font-size: 15px;
	border: 0 !important;
	width: 140px;
	height: 100%;
}

.seo-inner-banner .item-left .form-bd .first-form .item .validates-as-required {
	padding: 0 20px 0px 10px;
	font-size: 14px;
	line-height: 22px;
}

.seo-inner-banner .item-right .right-text ul li {
	padding: 5px 0;
	font-size: 16px;
	line-height: 22px;
	flex-wrap: wrap;
}

.seo-inner-banner .item-right .round-box-wrapper {
	display: none; }
.seo-inner-banner .item-right .right-text {
	margin: 0 auto;
	width: 100%;
}


.section__hassle .item-list h3 {
	padding: 13px 0 8px 0;
	font-size: 20px;
	line-height: 26px;
}

.content-color-card { margin-left: 20px; }

.seo-expart-block .bd .text h2 {
	font-size: 24px;
	padding: 0 0 6px 0;
}
.seo-expart-block .bd .text h2 span {
	font-size: 24px;
}
.seo-expart-block .bd .list-block span {
	font-size: 18px;
	line-height: 20px;
	padding: 0px 0px 16px 0;
}

.seo-expart-block .bd .text ul li {
	padding: 0 0 20px 20px;
	font-size: 15px;
	line-height: 22px;
}

.crmdev-tailored .item_bd .text p {
	font-size: 18px;
	line-height: 26px;
}

.seo-greater-marketing .row .item-col-box:first-child .item-box .first-item-poeition img {
	width: 65%;
}
.seo-greater-marketing .item-box {
	padding: 40px 20px;
	
}
.seo-greater-marketing .row .item-col-box:first-child .item-box .first-item-poeition {
	width: 110px;
}

.content-color-card-copy {
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 26px;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 20px;
}

.seo-testimonial-slider {
	padding: 50px 0;
}

.seo-testimonial-slider .item-bd .text .text-bd {
	margin: 10px 0 10px 12px;
	padding: 16px 0 16px 12px;
	border-left:3px solid #ff6900;
}
.seo-testimonial-slider .item-bd .text .text-bd .quote_text {
	padding: 13px 0 0 0;
	font-size: 15px;
	line-height: 25px;
}

.seo-testimonial-slider .item-bd .text ._foot {
	font-size: 16px;
	line-height: 22px;
}

.seo-testimonial-slider .item-bd .text ._foot span {
	padding: 0 8px 0 0;
	font-size: 24px;
}

.seo-subscribe-digital .form-bd form .item {
	width: 100%;
}

.seo-expart-block .bd .img_block .figure img {
	max-width: 100%;
	object-fit: contain;
	width: 100%;
}
.seo-expart-block .bd .img_block {
	width: 58%;
}
.seo-subscribe-digital .form-bd {
	padding: 0;
}


.seo-inner-banner .item-left h1 {
	font-size: 20px;
	line-height: 29px;
	text-align: center;
}
.seo-inner-banner .item-left p {
	font-size: 15px;
	line-height: 25px;
	text-align: center;
}
.seo-inner-banner .item-left .form-bd .first-form .item button[type="button"] {
	padding: 11px 10px;
	font-size: 16px;
	border: 0 !important;
	outline: 0 !important;
	transition: all 0.3s;
	width: 140px;
	height: 100%;
}

.brand-logo h1 {
	font-size: 15px;
	line-height: 24px;
	font-weight: 400;
	width: 100%;
}

.brand-logo p {
	font-size: 15px;
	line-height: 24px;
	font-weight: 400;
	width: 100%;
}

.service_desk .services-tabs .left_block .nav button.nav-link h3 {
	line-height: 20px;
	padding: 8px 8px;
	margin: 0;
	font-size: 12px;
	text-align: center;
}

.service_desk .services-tabs .right_block .tab-content .tab-pane .text-tab-bd .item-text p {

	font-size: 15px;
	line-height: 24px;
}

.section__hassle .item-list ul li {
	padding: 0 0 12px 24px;
	font-size: 14px;
	line-height: 26px;
	width: 100%;
}

.content-color-card-copy {
	margin-top: 0;
}

.seo-landing-box-block .title {
	padding-bottom: 12px;
	margin-bottom: 0;
}


.thankYou h1 {
	
	font-size: 30px !important;
	color: #fff;
	line-height: 42px;
}

.seo-expart-block.seo-expart-Newclass01 .bd .img_block { width: 100%; position: static !important; }







/**/
}
/**/

/*@media*/

/* ── HEADER: Sticky white-on-scroll (extracted from includes/header.php) ── */
header.arobit_desktop_view { position: fixed; top: 0; left: 0; width: 100%; z-index: 99999; transition: all 0.3s ease; }
header.arobit_desktop_view.white-bg { background: #fff; box-shadow: 0 3px 10px 0 rgba(0,0,0,0.3); }

/* ── AD GALLERY — shared image grid component (about.php, etc.) ── */
.ad-gallery__grid { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:12px; margin-top:32px; }
.ad-gallery__item { position:relative; overflow:hidden; border-radius:12px; cursor:pointer; background:#182355; }
.ad-gallery__item--large { grid-column:span 2; grid-row:span 2; }
.ad-gallery__item--wide  { grid-column:span 2; }
.ad-gallery__item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s; }
.ad-gallery__item:hover img { transform:scale(1.05); }
.ad-gallery__overlay { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(transparent,rgba(24,35,85,.75)); padding:16px 14px 12px; opacity:0; transition:opacity .3s; }
.ad-gallery__item:hover .ad-gallery__overlay { opacity:1; }
.ad-gallery__overlay span { color:#fff; font-size:13px; font-weight:700; }
.ad-gallery__zoom { position:absolute; top:12px; right:12px; width:32px; height:32px; background:rgba(255,255,255,.15); border-radius:50%; display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s; }
.ad-gallery__zoom .fa { color:#fff; font-size:14px; }
.ad-gallery__item:hover .ad-gallery__zoom { opacity:1; }
@media (max-width:768px) {
  .ad-gallery__grid { grid-template-columns:repeat(2,1fr); }
  .ad-gallery__item--large { grid-column:span 2; grid-row:span 1; }
  .ad-gallery__item--wide  { grid-column:span 2; }
}

/* ── Header: Arobit site switcher (Arobit Digital ↔ Arobit Technologies) ── */
.site-switch { position:relative; margin-left:6px }
.site-switch-toggle { list-style:none; display:flex; align-items:center; justify-content:center; width:28px; height:28px; border-radius:50%; cursor:pointer; color:#0a1744; border:1px solid rgba(10,23,68,0.15); transition:background .2s, border-color .2s, transform .2s }
.site-switch-toggle::-webkit-details-marker { display:none }
.site-switch-toggle::marker { content:'' }
.site-switch-toggle:hover { background:rgba(10,23,68,0.06) }
.site-switch-chevron { transition:transform .25s ease }
.site-switch[open] .site-switch-chevron { transform:rotate(180deg) }
header.arobit_desktop_view:not(.white-bg) .site-switch-toggle { color:#fff; border-color:rgba(255,255,255,0.3) }
header.arobit_desktop_view:not(.white-bg) .site-switch-toggle:hover { background:rgba(255,255,255,0.12) }
.site-switch-menu { position:absolute; top:calc(100% + 14px); left:-12px; z-index:1000; width:280px; padding:10px; background:#fff; border:1px solid rgba(10,23,68,0.08); border-radius:14px; box-shadow:0 18px 48px rgba(5,18,76,0.18) }
.site-switch-label { display:block; padding:6px 12px 10px; font-family:'Montserrat','Segoe UI',sans-serif; font-size:11.5px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:#8a90a6 }
.site-switch-item { display:flex !important; flex-direction:column; align-items:flex-start; gap:6px; padding:12px; border-radius:10px; border:1px solid transparent; text-decoration:none; transition:background .2s, border-color .2s }
.site-switch-item:hover { background:#f4f6fb }
.site-switch-item.is-current { border-color:rgba(236,115,35,0.35); background:rgba(236,115,35,0.05) }
.site-switch-item img { display:block !important; width:150px; height:auto }
.site-switch-desc { font-family:'Inter','Segoe UI',sans-serif; font-size:13px; font-weight:500; color:#555b78 }
.mob-view-logo { display:flex; align-items:center }
.mobile_menu .site-switch-menu { left:50%; transform:translateX(-50%); width:260px }
.df-logo.is-broken { display:none }
