/* common setting start */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
    --whiteColor: #ffffff;
    --blackColor: #111111;
    --blueColor: #047ac4;
    --royalBlue: #007bff;
    --linkColor: #0850f7;
    --darkBlueColor: #001d88;
    --redColor: #e34747;
    --greenColor: #23a741;
    --yellowColor: #ffad02;

    --fontSize: 13px;
    --fontWeight: 400;
    --lineHeight: 1.5;
    --formHeight: 32px;
    --borderRadius: 4px;
}

body {
    font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
	background-color: var(--whiteColor);
    color: var(--blackColor);
	visibility: visible;
	position: relative;
}

ul {
    padding: 0;
    margin: 0;
}
ul li {
    font-size: var(--fontSize);
    font-weight: var(--fontWeight);
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--blackColor);
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 24px;
	margin: 0 0 5px;
}
h1 {
    font-size: 28px;
}
h2 {
    font-size: 24px;
}
h3 {
    font-size: 21px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 16px;
}
h6 {
    font-size: 15px;
}
a {
    color: var(--blackColor);
    font-weight: var(--fontWeight);
    text-decoration: none;
}
p {
    font-size: var(--fontSize);
    font-weight: var(--fontWeight);
    line-height: 24px;
    margin: 0 0 10px;
}
b {
    font-weight: 600;
}
/* common setting end */

/* form control */
.form-control {
    width: 100%;
    height: var(--formHeight);
    font-size: 12px;
    padding: 2px 10px;
    font-weight: 500;
    color: var(--blackColor);
    border: 1px solid #cbcaca;
    border-radius: var(--borderRadius);
    outline: none;
    box-shadow: none;
}
.form-control:focus {
    color: var(--blackColor);
    border-color: var(--blueColor);
    box-shadow: none;
}
.form-select {
    font-size: 12px;
    background-position: right .3rem center;
    background-size: 12px 12px;
}
textarea {
    width: 100%;
    height: var(--formHeight);
    font-size: 12px;
    padding: 6px 10px 5px;
    border: 1px solid #cbcaca;
    border-radius: var(--borderRadius);
    resize: none;
    outline: none;
    box-shadow: none;
}
/* form control */

/* select2 start */
.select2-container--default .select2-selection--multiple {
    border: 1px solid #d2d2d3;
    border-radius: 3px;
    height: var(--formHeight);
}
.select2-container .select2-selection--single {
    height: var(--formHeight) !important;
    border: 1px solid #cbcaca !important;
}
.select2-selection--multiple .select2-selection__rendered {
    font-size: var(--fontSize);
}
.select2-results__option {
    font-size: 12px;
    color: #333333;
    padding: 2px 6px !important;
}
.select2-selection__arrow {
    top: 3px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    color: #fff;
    font-size: 12px;
    background-color: #047ac4;
    border: 1px solid #047ac4;
    margin-right: 5px;
    margin-top: 6px;
    padding: 0px 5px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #7bb9e0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ffbebe;
    margin-right: 4px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{
    color: #ffbebe;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #047ac4 !important;
    border: 1px solid #047ac4 !important;
    margin-top: 7px;
    line-height: 18px
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #ffffff !important;
    margin-right: 5px !important;
}
.select2-container .select2-selection--single {
    font-size: 12px;
    height: var(--formHeight);
    border-radius: 2px;
    border: 1px solid #d2d2d3;
    padding: 2px 1px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    padding: 4px 7px;
    border: 1px solid #dddddd;
}
.select2-search--dropdown .select2-search__field {
    height: 26px;
    border-radius: 2px;
}
/* select2 end */

/* button start */
.button {
    color: var(--whiteColor);
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
    background-color: var(--royalBlue);
    border: 1px solid var(--royalBlue);
    padding: 8px 15px;
    border-radius: 30px;
}
.button i {
    padding-right: 3px;
}
.button:hover {
    opacity: .9;
    color: var(--whiteColor);
}
.button.cancel {
    background-color: var(--redColor);
    border: 1px solid var(--redColor);
}
.button.white {
    color: var(--blueColor);
    font-weight: 500;
    background-color: var(--whiteColor);
    border: 1px solid var(--whiteColor);
}
/* button end */

/* text color start */
.red {
    color: var(--redColor);
}
.green {
    color: var(--greenColor);
}
.blue {
    color: var(--linkColor);
}
.yellow {
    color: var(--orangeColor);
}
.white {
    color: var(--whiteColor);
}
/* text color end */

/* table layout start */
.table-layout .table {
    min-width: 100%;
    margin-bottom: 5px;
}
.table-layout .table thead tr th {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    color: var(--whiteColor);
    background-color: var(--blueColor);
    border: 1px solid #3b92c9;
    vertical-align: middle;
}
.table-layout .table tbody tr td {
    font-size: 12px;
    padding: 5px 8px 4px;
    border-bottom: 1px solid #dddcdc;
    vertical-align: middle;
}
/* table layout end */

/* card layout start */
.card-layout {
    border-radius: 6px;
}
.card-layout .card-head {
    display: flex;
    justify-content: space-between;
    background-color: var(--blueColor);
    border: 1px solid var(--blueColor);
    padding: 5px 12px 4px;
    border-radius: 6px 6px 0 0;
}
.card-layout .card-head h3 {
    font-size: var(--fontSize);
    color: var(--whiteColor);
    line-height: var(--lineHeight);
    margin-bottom: 0;
}
.card-layout .card-body {
    background-color: var(--whiteColor);
    border: 1px solid #d9d9d9;
    border-top: 0;
    padding: 10px 12px;
    border-radius: 0 0 6px 6px;
}
.card-layout .card-body .action-buttons {
    display: flex;
    gap: 4px;
}
/* card layout end */

/* tab layout start */
.tab-layout .nav.nav-tabs {
    gap: 4px;
    border-bottom: 0;
}
.tab-layout .nav-tabs .nav-link {
    position: relative;
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    background-color: #343a40;
    border: 1px solid #343a40;
    padding: 5px 15px 6px;
    border-radius: 3px;
}
.tab-layout .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #0079c6;
    border: 1px solid #0079c6;
}
.tab-layout .nav-tabs .nav-link.active::before {
    position: absolute;
    bottom: -12px;
    left: 50%;
    margin-left: -15px;
    content: "";
    display: block;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #0079c6;
}
.tab-layout .tab-content {
    background-color: #fff;
    box-shadow: rgb(100 100 111 / 12%) 0px 7px 29px 0px;
    padding: 15px;
    border-radius: 5px;
}
/* tab layout end */

/* form layout start */
.form-layout .form-group {
    position: relative;
    margin-bottom: 17px;
}
.form-layout .form-group label {
    position: absolute;
    top: -6px;
    left: 10px;
    z-index: 1;
    font-size: 11px;
    line-height: 11px;
    color: var(--blackColor);
    font-weight: 400;
    padding: 0 1px;
    background-color: var(--whiteColor);
    margin-bottom: 0;
}
.form-layout .form-group label sup {
    font-size: 13px;
    top: 0;
    color: #ff131c;
}
.form-layout .action-button {
    display: flex;
    gap: 4px;
}
/* form layout end */

/* modal popup layout start */
.modal-popup-layout .modal-dialog {
    max-width: 27%;
    margin: .7rem auto;
}
.modal-popup-layout .modal-dialog.short {
    max-width: 50%;
}
.modal-popup-layout .modal-content {
    border: none;
    border-bottom: 4px solid var(--blueColor);
    border-radius: 8px;
}
.modal-popup-layout .modal-header {
    padding: 5px 20px;
    background-color: var(--blueColor);
    border-radius: 5px 5px 0px 0px;
    border-bottom: 0;
}
.modal-popup-layout .modal-header h4 { 
    font-size: 13px;
    color: var(--whiteColor);
    font-weight: var(--fontWeight);
    padding-top: 3px;
    margin-bottom: 0;
}
.modal-popup-layout .modal-header h4 i {
    padding-right: 4px;
}
.modal-popup-layout .modal-header button {
    display: flex;
    justify-content: center;
    width: 22px;
    height: 22px;
    text-align: center;
    align-items: center;
    margin-right: -2px;
    background-color: #ffffff;
    border: 1px solid #787878;
    border-radius: 30px;
}
.modal-popup-layout .modal-body {
    padding: 20px 20px 0;
}
.modal-popup-layout .modal-footer {
    display: flex;
    justify-content: end;
    gap: 6px;
    padding: 10px 20px;
    border-top: 1px solid #d9dadb;
}
/* modal popup layout end */

/* list layout start */
.list-layout li {
    margin-bottom: 3px;
    line-height: 28px;
}
.list-layout li i {
    color: var(--blueColor);
    margin-right: 3px;
}
/* list layout end */

/* slider layout start */
.slider-layout .swiper-slide img {
    width: 100%;
}
.slider-layout .swiper-slide .content {
    position: absolute;
    width: 35rem;
    top: 4rem;
    left: 2rem;
}
/* slider layout end */

/* faq layout start */
.faq-layout .card, .faq-layout .card-header {
	border-radius: 0;
}
.faq-layout .card {
	border-bottom: none;
}
.faq-layout .card:last-child {
	margin-bottom: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.faq-layout .card-header {
	padding: 0;
	border-bottom: 0;
	background-color: #ffffff;
}
.faq-layout .card-header h5 button {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    width: 100%;
    text-align: left;
    color: #05103b;
    padding: 12px 15px;
    position: relative;
    overflow-wrap: break-word;
    white-space: normal;
    text-decoration: none;
}
.faq-layout .card-header h5 button span {
	position: absolute;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.faq-layout .card-header h5 button span i {
	font-size: 12px;
	visibility: hidden;
	opacity: 0;
	display: none;
}
.faq-layout .card-header h5 button:hover, .faq-layout .card-header h5 button:focus {
	text-decoration: none;
    outline: none;
    box-shadow: none;
}
.faq-layout .card-header h5 button[aria-expanded="true"] {
	background-color: #f7f7f7;
	border-radius: 0;
}
.faq-layout .card-header h5 button[aria-expanded="true"] span i:nth-child(2) {
	visibility: visible;
	opacity: 1;
	display: inline;
}
.faq-layout .card-header h5 button[aria-expanded="true"]:before {
	height: 100%;
}
.faq-layout .card-header h5 button[aria-expanded="false"] span i:nth-child(1) {
	visibility: visible;
	opacity: 1;
	display: inline;
}
.faq-layout .card-header h5 button:before {
	content: '';
	width: 3px;
	height: 0;
	background-color: #0C95EC;
	position: absolute;
	top: 0;
	left: -1px;
	-webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.faq-layout .card-header h5 button:hover:before {
	height: 100%;
}
.faq-layout .card-body {
	padding: 15px;
    background-color: var(--whiteColor);
    border-top: 1px solid #e2e2e2;
}
.faq-layout .card-body p {
	font-size: 13px;
	line-height: 24px;
}
/* faq layout end */

/* loader layout start */
.loader-layout {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000a1;
    z-index: 2;
    cursor: pointer;
}
.loader-layout .spinner-border {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99999;
    width: 2.5rem;
    height: 2.4rem;
    color: #79baff;
}
/* loader end start */

/* testimonial layout start */
.testimonial-layout {
    padding: 0;
    background-image: none;
}
.testimonial-layout .items-list img {
    width: 50px;
    margin: 0 0 10px;
}
.testimonial-layout .items-list h6 {
    color: var(--blueColor);
    margin: 0;
}
/* testimonial layout end */

/* breadcrumb layout start */
.breadcrumb-layout {
    height: 150px;
    background-image: url(../images/breadcrumb.jpg);
    position: relative;
    background-size: cover;
}
.breadcrumb-layout h2 {
    color: var(--whiteColor);
    padding: 25px 0 0;
}
.breadcrumb-layout ul {
    position: absolute;
    display: flex;
    gap: 5px;
    padding: 8px 15px 4px;
    bottom: 0px;
    background-color: #ededed;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.breadcrumb-layout ul li span {
    padding-right: 3px;
}
.breadcrumb-layout li+li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    display: inline-block;
    font-size: 12px;
    padding-right: 4px;
    vertical-align: middle;
    font-weight: 900;
}
.breadcrumb-layout li+li+li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    display: inline-block;
    font-size: 12px;
    padding-right: 4px;
    vertical-align: middle;
    font-weight: 900;
}
/* breadcrumb layout end */

/* footer start */
.main-footer {
    padding: 60px 0px 0px;
    background-image: url(../images/footer.jpg);
}
.main-footer .footer-item h4 {
    color: var(--whiteColor);
    font-weight: 500;
    margin: 0 0 20px;
}
.main-footer .footer-item ul li {
    margin: 0 0 12px;
    color: var(--whiteColor);
}
.main-footer .footer-item ul li:last-child {
    margin-bottom: 0px;
}
.main-footer .footer-item ul li a {
    color: var(--whiteColor);
}
.main-footer .footer-item ul li a i {
    padding-right: 7px;
}
.main-footer .footer-item ul li a:hover {
    color: var(--blueColor)
}
.main-footer .footer-item img {
    width: 150px;
    margin: 0 0 20px;
}
.main-footer .copyright {
    background-color: #11111157;
    margin: 40px 0 0;
    padding: 10px 0px 6px;
    text-align: center;
}
.main-footer .copyright p {
    color: var(--whiteColor);
}
.main-footer .copyright p a {
    color: var(--blueColor);
    font-weight: 500;
}
/* footer end */

/* upload layout start */
.upload-layout {
    margin: 0.2rem auto 1rem;
}
.upload-layout .upload-layout-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  border: 2px dashed silver;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: silver;
  margin-bottom: 5px;
}
.upload-layout .upload-layout-wrap.active {
  background-color: #f2f2f2;
}
.upload-layout .upload-layout-wrap span {
  font-size: 42px;
  color: #a7a7a7;
}
.upload-layout .upload-layout-wrap p {
    font-size: 15px;
    font-weight: 500;
    color: #777;
    margin: 10px 0;
}
.upload-layout .upload-file {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
}
.upload-layout .file-list-wrap {
  display: flex;
  width: 100%;
  padding: 2px 0;
  justify-content: space-between;
  align-items: center;
}
.upload-layout .file-list-wrap .icon-wrap {
    display: flex;
    gap: 5px;
}
.upload-layout .file-list-wrap .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upload-layout .file-list-wrap .icon {
  color: #1871b5;
  text-decoration: none;
}
.upload-layout .file-list-wrap .icon.remove {
  color: #e10101;
}
/* upload layout end */

/* top updates start */
.top-updates {
    background-color: #047ac4;
    border-bottom: 1px solid #047ac4;
    padding: 4px 0px 3px;
}
.top-updates .content {
    display: flex;
}
.top-updates .content span {
    width: 115px;
    font-size: 12px;
    color: var(--whiteColor);
    font-weight: 500;
    animation: color-change 1.5s infinite;
}
@keyframes color-change {
    0% { color: #ffffff; }
    50% { color: #fd7e14; }
    100% { color: #ffffff; }
}
.top-updates .content ul {
    display: flex;
    gap: 10px;
    padding: 5px 5px 0px;
    line-height: 13px;
}
.top-updates .content ul li {
    font-size: 13px;
    border-right: 1px solid var(--whiteColor);
    line-height: 13px;
    padding-right: 10px;
}
.top-updates .content ul li a {
    color: var(--whiteColor);
}
.top-updates .content ul li:last-child {
    border-right: 0px;
}
.top-updates .content ul li i {
    padding-right: 4px;
}
/* top update end */

/* login start */
.login {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/login.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.login .login-wrap {
    width: 380px;
    background-color: #fffffff2;
    box-shadow: rgb(0 0 0 / 24%) 0px 5px 15px;
    padding: 40px 30px;
    border-radius: 15px;
}
.login .login-wrap .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 40px;
}
.login .login-wrap .header h3 {
    margin: 0;
}
.login .login-wrap .header img {
    width: 130px;
    border-radius: 2px;
}
.login .login-wrap .account {
    border-top: 1px solid #bec0dd;
    margin: 20px 0 0;
    padding: 10px 0 0;
}
.login .login-wrap .account p {
    margin: 0px;
}
.login .login-wrap .account a {
    color: var(--linkColor);
    text-decoration: underline;
}
/* login end */

/* section title start */
.section-title {
    padding: 0 0 20px;
}
.section-title h2 {
    color: var(--blackColor);
}
/* section title end */

/* main slider start */
.main-slider .swiper-slide .content {
    top: 9.5rem;
}
.main-slider .swiper-slide .content h2 {
    font-size: 32px;
    line-height: 48px;
    margin: 0 0 15px;
}
.main-slider .swiper-slide .content p {
    font-size: 14px;
    font-weight: 500;
}
.main-slider .swiper-pagination-progressbar {
    background: #00000014;
}
.main-slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #c2c3c4;
}
/* main slider end */

/* home page start */
/* business intelligence start */
.business-intelligence {
    padding: 50px 0 30px;
}
.business-intelligence .items-list {
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    margin: 0 0 25px;
}
.business-intelligence .items-list img {
    border-radius: 10px 10px 0 0;
}
.business-intelligence .items-list .content {
    height: 150px;
    padding: 15px;
}
/* business intelligence end */

/* consulting service start */
.consulting-service {
    background-color: #f6f6f6;
}
.consulting-service .section-title {
    padding: 3rem 0 10px;
}
/* consulting service end */

/* sap services start */
.sap-sevices {
    padding: 40px 0 30px;
}
.sap-sevices .items-list {
    text-align: center;
}
.sap-sevices .items-list {
    padding: 25px 10px 20px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    text-align: center;
    margin: 0 0 25px;
}
.sap-sevices .items-list img {
    width: 80px;
    margin: 0 0 15px;
}
/* sap services end */

/* testimonials start */
.testimonials {
    padding: 60px 0px;
    background-image: url(../images/testimonial.png);
}
/* testimonials end */

/* blogs start */
.blogs {
    padding: 50px 0px 35px;
}
.blogs .items-list {
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    margin: 0 0 25px;
}
.blogs .items-list img {
    border-radius: 10px 10px 0 0;
}
.blogs .items-list .content {
    padding: 15px;
}
.blogs .items-list .content span {
    font-size: 11px;
    line-height: 11px;
    color: #828288;
    text-transform: uppercase;
    font-weight: 500;
}
/* blogs end */

/* clients start */
.clients {
    background-image: linear-gradient(-225deg, #22E1FF 0%, #1D8FE1 48%, #625EB1 100%);
    padding: 40px 0 30px;
}
.clients .items-list img {
    width: 100%;
    padding: 8px 10px;
    background-color: var(--whiteColor);
    border-radius: 10px;
}
/* clients end */
/* home page end */

/* about us start */
.about-us {
    padding: 40px 0 0;
}
/* welcome start */
.about-us .welcome {
    text-align: center;
    padding: 0 0 10px;
}
/* welcome end */

/* consulting partner start */
.about-us .consulting-partner {
    padding: 0 0 30px;
}
/* consulting partner end */

/* mission start */
.about-us .mission {
    padding: 50px 0;
    background-color: #f2f2f2;
}
/* mission end */

/* company history start */
.about-us .company-history {
    padding: 40px 0;
}
.about-us .company-history .image {
    margin-top: 35px;
}
/* company history end */

/* our teams start */
.about-us .our-teams {
    padding: 50px 0;
    background-color: #ecf5f8;
}
/* our teams end */

/* core values start */
.about-us .core-values {
    padding: 50px 0 20px;
}
.about-us .core-values .items-list {
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    margin: 0 0 25px;
}
.about-us .core-values .items-list img {
    border-radius: 10px 10px 0 0;
}
.about-us .core-values .items-list .content {
    padding: 15px 15px 10px;
}
/* core values end */

/* transform business start */
.about-us .transform-business {
    background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
    padding: 45px 0;
    text-align: center;
}
/* transform business end */

/* our services start */
.about-us .our-services {
    padding: 50px 0 10px;
}
.about-us .our-services .items-list {
    margin: 0 0 30px;
}
.about-us .our-services img {
    width: 80px;
    margin:  0 0 20px;
}
/* our services end */
/* about us end */

/* contact us start */
.contact-us {
    padding: 40px 0px;
}
.contact-us .contact-details li {
    margin: 0 0 30px;
}
.contact-us .contact-details li i {
    float: left;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    color: var(--whiteColor);
    background-color: #047ac4;
    border-radius: 100px;
    margin-right: 10px;
}
.contact-us .contact-details h6 {
    margin: 0;
}
.contact-us .map iframe {
    width: 100%;
    height: 350px;
}
/* contact us end */

/* corporate training start */
.slider-corporate-training.slider-layout .swiper-slide .content {
    top: 6.5rem;
}
.corporate-training {
    padding: 30px 0;
}
/* test engine start */
.corporate-training .test-engine {
    padding: 20px;
    background-color: #efefef;
    border: 1px solid #dee0e0;
    border-radius: var(--borderRadius);
}
/* test engine end */

/* assessment start */
.corporate-training .assessment  i {
    color: var(--yellowColor);
}
/* assessment end */

/* clients partners start */
.corporate-training .clients-partners {
    padding: 25px 0 0;
}
.corporate-training .clients-partners .row {
    margin: 0 -7px;
}
.corporate-training .clients-partners .item {
    margin: 0px -7px;
    background-color: var(--whiteColor);
    border: 1px solid #dfdede;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
/* clients partners end */

/* training solutions start */
.corporate-training .training-solutions {
    padding: 30px 0 20px;
}
/* training solutions end */

/* trainer database start */
.corporate-training .trainer-database {
    background-color: #efefef;
    border: 1px solid #dee0e0;
    padding: 20px;
    border-radius: var(--borderRadius);
}
/* trainer database end */

/* brochure start */
.corporate-training .brochure {
    padding: 25px 0 20px;
}
.corporate-training .brochure .brochure-item {
    border: 1px solid #d4d2d2;
    border-radius: 2px;
}
/* brochure end */

/* training server start */
.corporate-training .training-server {
    background-color: #047ac4;
    margin: 20px 0 0;
    padding: 20px;
    border-radius: var(--borderRadius);
}
/* training server end */

/* how to apply start */
.corporate-training .how-to-apply {
    margin: 40px 0 10px;
}
.corporate-training .how-to-apply h3 {
    line-height: 28px;
}
/* how to apply end */

/* contact details start */
.corporate-training .contact-details .card-body {
    padding: 0px 12px;
}
.corporate-training .contact-details .card-body h6 {
    font-size: 14px;
    margin: 0 0 2px;
}
.corporate-training .contact-details .card-body ul li {
    border-bottom: 1px solid #dcd9d9;
    padding: 7px 12px;
    margin: 2px -12px;
}
.corporate-training .contact-details .card-body ul li:last-child {
    border-bottom: none;
}
.corporate-training .contact-details .card-body ul li i {
    padding-right: 4px;
    color: var(--blueColor);
}
/* contact details end */
/* corporate training end */

/* work calendar start */
/* carousel control start */
.work-calendar .calendar-year {
	background-color: var(--blueColor);
}
.work-calendar .calendar-year h4 {
	width: 161px;
	font-size: 13px;
    font-weight: 500;
    background-color: var(--blueColor);
    color: var(--whiteColor);
    margin-bottom: 0;
    padding: 3px 10px;
}
.work-calendar .carousel-button {
    position: absolute;
    top: 0px;
    right: 0;
    font-size: 14px;
    width: 40px;
    height: 30px;
    background-color: #047ac4;
}
.work-calendar .carousel-control-next, .carousel-control-prev {
    opacity: 1;
}
.work-calendar .carousel-control-next {
    padding-right: 15px;
}
/* .work-calendar .carousel-control-prev {
    top: 3px;
    display: flex;
    right: 1px;
    left: auto;
    width: 85px;
    opacity: 1;
}
.work-calendar .carousel-control-prev i {
    font-size: 12px;
	color: var(--blueColor);
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: var(--whiteColor);
    border-radius: 25px;
}
.work-calendar .carousel-control-next {
	top: 3px;
    display: inline-table;
    right: 10px;
    left: auto;
    width: auto;
    opacity: 1;
}
.work-calendar .carousel-control-next i {
    font-size: 12px;
    color: var(--blueColor);
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 25px;
}
.work-calendar .color-means {
    padding: 6px 10px 5px;
    border: 1px solid #f2e9e9;
}
.work-calendar .color-means ul.flex {
    display: flex;
    justify-content: space-around;
    gap: 5px;
}
.work-calendar .color-means ul li {
    font-size: 12px;
    color: #333;
}
.work-calendar .color-means ul li span {
    display: inline-block;
    width: 9px;
    height: 9px;
    line-height: 9px;
    margin-right: 5px;
} */
/* carousel control end */

/* table start */
.work-calendar .table {
    margin: 0;
}
.work-calendar .table thead tr th {
    font-size: 12px;
    padding: 3px 1px;
    text-align: center;
}
.work-calendar .table tbody tr td {
	font-size: 12px;
    padding: 3px 1px;
    text-align: center;
}
.work-calendar .table tbody tr .red {
	background-color: #e75a5a;
    color: var(--whiteColor);
}
.work-calendar .table tbody tr .green {
	background-color: #63b963;
    color: var(--whiteColor);
}
.work-calendar .table tbody tr .gray {
	background-color: #b9b4b4;
    color: var(--blackColor);
}
.work-calendar .table tbody tr .blue {
	background-color: #2992d4;
    color: var(--whiteColor);
}
.work-calendar .table tbody tr .bagani {
	background-color: #4267b2;
    color: var(--whiteColor);
}
.work-calendar .table tbody tr .light {
	color: #d7d5d5;
}
.work-calendar .table tbody tr .yellow {
    background-color: #ffbd33;
	color: var(--whiteColor);
}
.work-calendar .table tbody tr .orange {
    background-color: #ff7f50;
	color: var(--whiteColor);
}
.work-calendar .table tbody tr .azure {
    background-color: #b440e5;
	color: var(--whiteColor);
}
/* table end */

/* color start */
.work-calendar .color-means {
    padding: 6px 10px;
    border: 1px solid #f2e9e9;
    border-top: 0;
}
.work-calendar .color-means li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}
.work-calendar .color-means span {
    width: 12px;
    height: 12px;
    border-radius: 100px;
}
.work-calendar .color-means .green {
    background-color: #00d28e;
}
.work-calendar .color-means .red {
    background-color: #e75a5a;
}
.work-calendar .color-means .gray {
    background-color: #b9b4b4;
}
.work-calendar .color-means .blue {
    background-color: #2992d4;
}
.work-calendar .color-means .bagani {
    background-color: #4267b2;
}
.work-calendar .color-means .yellow {
    background-color: #ffbd33;
}
.work-calendar .color-means .orange {
    background-color: #ff7f50;
}
.work-calendar .color-means .azure {
    background-color: #b440e5;
}
/* color end */
/* work calendar end */

/* trainer profile start */
.trainer-profile {
    padding: 10px 0px;
    border-top: 1px solid #ececec;
}
.trainer-profile .form-group .attachedment label {
    position: initial;
}
.trainer-profile .form-group .attachedment input {
    padding: 6px;
    margin: 0;
}
.trainer-profile .accept-terms {
    border-top: 1px solid #d2d2d3;
    padding: 5px 0 0;
}
.trainer-profile .accept-terms p {
    font-size: 12px;
    line-height: 22px;
    margin: 0;
}
.trainer-profile .accept-terms label {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}
.trainer-profile .accept-terms label input {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
}
.trainer-profile .buttons .button.disabled {
    pointer-events: none;
    opacity: .3;
}
/* trainer profile end */

/* trainer profile search start */
.trainer-profile-search {
    padding: 20px 0px 10px;
    border-top: 1px solid #ececec;
}
.trainer-profile-search .table tbody tr .loader i {
    font-size: 32px;
    color: #047ac4;
}
.trainer-profile-search .search-count {
    text-align: right;
}
/* trainer profile search end */

/* case studies start */
.case-studies {
    background-color: #f6f6f6;
    padding: 30px 0px 20px;
}
/* case studies end */

/* brochure start */
.brochure {
    padding: 20px 0px 50px;
}
.brochure .carousel-inner {
    border-left: 1px solid #ede9e9;
    border-right: 1px solid #ede9e9;
}
.brochure .items-list {
    margin: 0 -10px;
}
.brochure .items-list img {
    border: 1px solid #ede9e9;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.brochure .carousel-indicators {
	bottom: -52px;
}
.brochure .carousel-indicators li {
    font-size: 14px;
	color: #ffffff;
	background-color: #047ac4;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    margin-right: 4px;
    margin-left: 4px;
    border-radius: 100px;
	border-top: 0;
    border-bottom: 0;
	text-indent: 0;
}
/* brochure end */

/* solution design start */
.solution-design {
    padding: 40px 0 0;
}
.solution-design .implementation .section-title {
    padding: 0 0 10px;
}
.solution-design .implementation .image {
    padding: 20px;
}
.solution-design .implementation .image img {
    width: 90%;
}
.solution-design .epm-integration {
    background-color: #f6f6f6;
    padding: 50px 0;
    margin: 40px 0;
}
.solution-design .epm-integration .image img {
    width: 55%;
}
.solution-design .meter-integration {
    background-color: #f6f6f6;
    padding: 50px 0;
     margin: 30px 0 0;
}
/* solution design end */

/* privacy policy start */
.privacy-policy {
    padding: 20px 0;
}
/* privacy policy end */

/* terms condtions start */
.terms-condtions {
    padding: 20px 0;
}
/* terms condtions end */

/* resource augmentation start */
.resource-augmentation {
    padding: 30px 0;
}
/* resource augmentation end */

/* it support start */
.it-support {
    padding: 30px 0;
}
/* it support end */

/* media center start */
.media-center {
    padding: 40px 0;
}
.media-center .swiper-slide img {
    border: 1px solid #dfdfdf;
    border-radius: 10px;
}
/* media center end */

/* leads management start */
.leads-management {
    padding: 20px 0;
    border-top: 1px solid #ececec;
}
/* leads management end */

/* dashboard start */
.dashboard {
    padding: 30px 0 5px;
    background-color: #f4f5f8;
}
.dashboard .items-list a {
    display: block;
    background-color: #fff;
    border: 2px solid #e8e8e8;
    text-align: center;
    border-radius: 6px;
    padding: 12px 10px;
    margin: 0 0 25px;
}
.dashboard .items-list a:hover {
    border: 2px solid #4f58ca;
}
.dashboard .items-list a img {
    width: 50px;
    margin: 10px 0;
}
/* dashboard end */

/* resourcing services start */
.resourcing-services {
    padding: 50px 0 20px;
}
.resourcing-services .recruitment-services {
    margin: 0 0 40px;
}
.resourcing-services .resourcing-solutions {
    background-image: url(../images/background.jpg);
    padding: 40px 0 10px;
}
.resourcing-services .resourcing-solutions .items-list {
    margin: 0 0 30px;
}
.resourcing-services .industries-serve {
    padding: 50px 0 0px;
}
.resourcing-services .industries-serve .items-list {
    margin: 0 0 30px;
}
.resourcing-services .why-choose-us {
    padding: 40px 0 30px;
    background-color: #f2faff;
    border-top: 1px solid #e7f1f7;
    border-bottom: 1px solid #e7f1f7;
}
.resourcing-services .why-choose-us .items-list {
    text-align: center;
    background-color: #fcfeff;
    border: 1px solid #c2d0d8;
    border-radius: 5px;
    padding: 20px;
    margin: 0 0 25px;
}
.resourcing-services .why-choose-us .items-list img {
    width: 85px;
    margin: 0 0 10px;
}
.resourcing-services .recruitment-process {
    padding: 50px 0 40px;
}
.resourcing-services .recruitment-process p {
    margin: 5px 0 10px;
}
.resourcing-services .dream-team {
    padding: 0 0 50px;
}
.resourcing-services .work-counter {
    background-color: var(--blueColor);
    padding: 50px 0;
    margin: 20px 0 40px;
}
.resourcing-services .work-counter .items-list {
    text-align: center;
    border: 1px solid #6bb0db;
    padding: 30px 0;
    border-radius: 5px;
}
.resourcing-services .work-counter .items-list h3 {
    font-size: 36px;
    color: var(--whiteColor);
    font-weight: 600;
}
.resourcing-services .work-counter .items-list p {
    color: var(--whiteColor);
    font-size: 15px;
}
.resourcing-services .right-partner {
    padding: 0 0 30px;
}
/* resourcing services end */

/* board of directors start */
.board-directors {
    background-image: url(../images/background.jpg);
    padding: 50px 0 30px;
}
.board-directors .director-list {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    padding: 15px;
    margin: 0 0 20px;
    background-color: var(--whiteColor);
    border-left: 5px solid #b4b4b4;
    border-right: 5px solid #b4b4b4;
}
.board-directors .director-list .image {
    text-align: center;
}
.board-directors .director-list .image img {
    border-radius: 100px;
    margin: 0 0 5px;
}
.board-directors .director-list .image a {
    color: var(--linkColor);
    text-decoration: underline;
}
.board-directors .director-list .content {
    padding: 12px 0 0;
}
.board-directors .director-list .content p {
    margin: 0 0 4px;
}
.board-directors .director-list .content p a {
    color: var(--linkColor);
}
.board-directors .director-list .content i {
    padding-right: 3px;
}
/* board of directors end */