/* common setting start */
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");

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

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

body {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.6;
	background-color: #ffffff;
	visibility: visible;
	color: #111111;
	position: relative;
}

ul {
    padding: 0;
    margin: 0;
}
ul li {
    font-weight: var(--fontWeight);
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #010d3b;
	font-family: 'Roboto', sans-serif;
    font-weight: 400;
	margin: 0 0 5px;
	line-height: 1.23;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 28px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 16px;
}
a {
    color: var(--blackColor);
    font-weight: var(--fontWeight);
    text-decoration: none;
}
p {
    font-weight: var(--fontWeight);
    line-height: 26px;
    margin-bottom: 10px;
}
.link {
    color: var(--linkColor);
}
/* common setting end */

/* text color start */
.green {
    color: var(--greenColor);
}
.yellowColor {
    color: var(--orangeColor);
}
.red {
    color: var(--redColor);
}
/* text color 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: 32px;
}
.select2-selection--multiple .select2-selection__rendered {
    font-size: 13px;
}
.select2-results__option {
    font-size: 12px;
    color: #333333;
}
.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 .select2-selection--single {
    font-size: 12px;
    height: 32px;
    border-radius: 2px;
    border: 1px solid #d2d2d3;
    padding: 2px 1px;
}
.select2-selection__arrow {
    top: 3px !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dddddd;
}
.select2-search--dropdown .select2-search__field {
    height: 26px;
    border-radius: 2px;
}
.select2-results__option {
    padding: 4px 6px 2px;
}
/* select2 end */

/* common 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: 9px 12px;
    border-radius: 3px;
}
.button i {
    padding-right: 3px;
}
.radius {
    padding: 9px 15px 8px;
    border-radius: 50px;
}
.button:hover {
    opacity: .9;
    color: var(--whiteColor);
}
/* common button end */

/* table layout start */
.table-layout .table {
    min-width: 100%;
    margin-bottom: 5px;
}
.table-layout .table thead tr th {
    font-size: 11px;
    font-weight: 500;
    padding: 5px 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: 4px 12px;
    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;
    padding: 10px 12px;
    /* border-top: 0; */
    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: rgba(100, 100, 111, 0.2) 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: 9;
    font-size: 12px;
    line-height: 12px;
    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 ul li {
    margin-bottom: 3px;
    line-height: 28px;
}
.list-layout ul li i {
    color: var(--blueColor);
    padding-right: 4px;
}
/* list layout end */

/* common inner slider start */
.common-inner-slider .swiper-slide img {
    width: 100%;
}
.common-inner-slider .swiper-slide .slider-content {
    position: absolute;
    width: 35rem;
    top: 4rem;
    left: 2rem;
}
.common-inner-slider.sider2 .swiper-slide .slider-content {
    top: 6.5rem;
}
.common-inner-slider .swiper-slide .slider-content h2 {
    font-size: 32px;
}
.common-inner-slider .swiper-slide .text-white  h2 {
    color: var(--whiteColor);
}
.common-inner-slider .swiper-slide .text-white  p {
    color: var(--whiteColor);
}
/* common inner slider end */

/* home page start */
.home-service-1 {
    padding: 55px 0px 55px;
    background-image: url(../images/background.jpg);
}
.home-service-2 a {
    display: block;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.home-service-2 a img {
    transition: all 0.3s;
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
}
.home-service-2 a img:hover {
    transform: scale(1.1);
}
.home-service-2 a label {
    position: absolute;
    bottom: -8px;
    right: 0;
    background-color: #047ac4;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    width: 100%;
    padding: 10px 0px 9px;
    text-align: center;
}
.erp-business-1 {
    background-color: #ffffff;
    padding: 60px 0px 25px;
}
.erp-business-2 {
    text-align: center;
    margin-bottom: 0px;
}
.erp-business-2 h2 {
    font-size: 30px;
    margin-bottom: 5px;
}
.erp-business-2 p {
    font-size: 15px;
    color: #111;
    font-weight: 400;
    margin-bottom: 30px;
}
.erp-business-3 {
    display: flex;
    margin-bottom: 5px;
}
.erp-business-3 i {
    font-size: 64px;
    line-height: 64px;
    margin-right: 20px;
    color: #047ac4;
}
.erp-business-3 h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}
.erp-business-3 p {
    font-size: 14px;
    line-height: 28px;
    color: #222;
    margin-bottom: 15px;
}
.erp-business-3 a {
    font-size: 14px;
    font-weight: 600;
    color: #0056b3;
}
.erp-business-3 a span {
    padding-left: 7px;
}
.consulting-service-1 {
    background-image: url(../images/background.jpg);
    padding: 60px 0px 45px;
    margin-bottom: 20px;
}
.consulting-service-2 img {
    border-radius: 3px;
}
.consulting-service-3 {
    padding-top: 0px;
    padding-bottom: 35px;
}
.consulting-service-3 h2 {
    font-size: 28px;
    margin-bottom: 5px;
}
.consulting-service-3 h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #027dcb;
}
.consulting-service-3 p {
    font-size: 14px;
    color: #222;
    line-height: 30px;
    margin-bottom: 30px;
}
.consulting-service-3 a {
    background-color: #0365d0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 25px 9px;
    border-radius: 3px;
}
.home-sap-sevice-1 {
    padding: 40px 0px 25px;
    background-color: #ffffff;
}
.home-sap-sevice-2 h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
}
.home-sap-sevice-3 {
    margin-bottom: 40px;
}
.home-sap-sevice-3 img {
    width: 82px;
    margin-bottom: 25px;
}
.home-sap-sevice-3 h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
}
.home-sap-sevice-3 p {
    font-size: 14px;
    color: #222;
    line-height: 28px;
    margin-bottom: 20px;
}
.home-sap-sevice-3 a {
    font-size: 14px;
    font-weight: 600;
    color: #0056b3;
}
.home-sap-sevice-3 a span {
    padding-left: 7px;
}

/* testimonial start */
.testimonial {
    padding: 60px 0px;
    background-image: url(../images/testimonial.png);
}
.testimonial .testimonial-header h2 {
    text-align: center;
    margin-bottom: 25px;
}
.testimonial .testimonial-item p {
    margin-bottom: 20px;
}
.testimonial .testimonial-item img {
    width: 50px;
    margin-bottom: 10px;
}
.testimonial .testimonial-item h4 {
    color: var(--blueColor);
}
.testimonial .testimonial-item span {
    display: block;
}
/* testimonial end */

.our-clients-1 {
    padding: 50px 0px 50px;
    background-image: url(../images/background.jpg);
}
.our-clients-2 {
    text-align: center;
}
.our-clients-2 h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.our-clients-3 img {
    padding: 10px;
    border: 1px solid #ededed;
    background-color: #fff;
    width: 100%;
}
/* home blog start */
.home-blog {
    background-color: #ffffff;
    padding: 50px 0px;
}
.home-blog .home-blog-heading {
    display: flex;
    justify-content: space-between;
}
.home-blog .home-blog-heading h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.home-blog .home-blog-heading a {
    font-size: 15px;
    font-weight: 500;
    color: #005cc0;
    display: inline-block;
    padding-top: 7px;
}
.home-blog-item .content {
    padding-top: 18px;
}
.home-blog-item .content h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 7px;
}
.home-blog-item .content p {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
}
.home-blog-item .content span {
    font-size: 13px;
    background-color: #047ac4;
    color: #fff;
    padding: 7px 15px;
    border-radius: 30px;
}
.home-blog-item .content span:hover {
   opacity: .9;
}
/* home blog end */
/* home page end */

/* sap business start */
.sap-business-1 {
    padding: 50px 0px 10px;
}
.sap-business-2 h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
}
.sap-business-2 p {
    font-size: 15px;
    color: #111;
    font-weight: 400;
    margin-bottom: 0px;
}
.sap-business-2 hr {
    margin-top: 17px;
    margin-bottom: 40px;
    border: 0;
    border-top: 4px solid #047ac4;
    margin-left: 0;
    width: 5%;
    border-radius: 10px;
}
.sap-business-3 {
    margin-bottom: 50px;
}
.sap-business-4 img{
    background-color: #fff;
    border-radius: 3px;
}
.sap-business-5 {
    margin-left: -15px;
    padding-left: 30px;
    padding-top: 0px;
}
.sap-business-5 h3 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.sap-business-5 p {
    font-size: 14px;
    color: #222;
    line-height: 28px;
    margin-bottom: 20px;
}
.sap-business-5 a {
    font-size: 14px;
    font-weight: 600;
    color: #0056b3;
}
.sap-business-5 a i {
    padding-left: 7px;
}
/* sap business end */

/* breadcrumb start */
.breadcrumb-data-1 {
    background-image: url(../images/breadcrumb.jpg);
    background-size: cover;
    height: 150px;
    position: relative;
}
.breadcrumb-data-2 {
    padding-top: 30px;
}
.breadcrumb-data-2 h2 {
    font-size: 28px;
    color: #fff;
    font-weight: 600;
}
.breadcrumb-data-2 ul {
    position: absolute;
    bottom: 0px;
    background-color: #ededed;
    padding: 11px 20px 7px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.breadcrumb-data-2 ul li {
    float: left;
    color: #111;
    font-size: 13px;
    font-weight: 500;
    margin-right: 5px;
}
.breadcrumb-data-2 ul li span {
    padding-right: 4px;
}
.breadcrumb-data-2 ul li:last-child{
    margin-left: 0px;
}
.breadcrumb-data-2 ul li a {
    color: #111;
    font-size: 13px;
    font-weight: 500;
}
.breadcrumb-data-2 ul li a:hover{
    color: #00afef;
}
/* breadcrumb end */

/* footer start */
.main-footer {
    padding: 45px 0px 0px;
    background-image: url(../images/footer.jpg);
}
.footer-data-2 h2 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-data-2 hr {
    margin-top: 10px;
    margin-bottom: 25px;
    border: 0;
    border-top: 4px solid #0c95ec;
    margin-left: 0;
    width: 16%;
    border-radius: 10px;
}
.footer-data-2 ul li {
    font-size: 13px;
    margin-bottom: 10px;
    color: #fff;
}
.footer-data-2 ul li:last-child {
    margin-bottom: 0px;
}
.footer-data-2 ul li  a {
    font-size: 13px;
    color: #fff;
}
.footer-data-2 ul li  a i {
    padding-right: 10px;
}
.footer-data-2 img {
    width: 150px;
    margin-bottom: 20px;
}
.subscribe-form {
    position: relative;
}
.subscribe-form {
    display: flex;
    margin-bottom: 15px;
}
.subscribe-form .email {
    height: 36px;
    padding-left: 10px;
    font-size: 13px;
    border: none;
    border-radius: 2px 0px 0px 2px;
}
.subscribe-form .submit {
    height: 36px;
    border: none;
    background-color: #0c95ec;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0px 2px 2px 0px;
}
.copyright {
    background-color: #000;
    text-align: center;
    margin-top: 35px;
    padding: 14px 0px 11px;
}
.copyright p {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}
.copyright p a {
    color: #0c95ec;
}
/* footer end */

/* contact us start */
.contact-us {
    padding: 40px 0px;
}
/* header start */
.contact-us .header {
    text-align: center;
    margin-bottom: 20px;
}
.contact-us .header h2 {
    font-size: 28px;
    margin-bottom: 2px;
}
.contact-us .header p {
    font-size: 14px;
    color: #010823;
}
/* header end */

/* contact details start */
.contact-us .contact-details li {
    margin-bottom: 30px;
}
.contact-us .contact-details li a {
    font-size: 14px;
    color: #010823;
}
.contact-us .contact-details li p {
    font-size: 14px;
    color: #010823;
}
.contact-us .contact-details li i {
    float: left;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background-color: #047ac4;
    border-radius: 100px;
    margin-right: 10px;
}
.contact-us .contact-details li h3 {
    font-size: 16px;
    font-weight: 500;
    padding-top: 2px;
    margin-bottom: 5px;
}
/* contact details end */

/* map start */
.contact-us .map h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}
.contact-us .map {
    border-top: 1px solid #eaeaea;
    padding: 15px 0;
}
.contact-us .map iframe {
    width: 100%;
    height: 350px;
}
/* map end */
/* contact us end */

/* page about us start */
/* common start */
.about-wrap {
    padding: 30px 0 0;
}
.about-wrap h2 {
    font-size: 28px;
    margin-bottom: 5px;
}
.about-wrap p {
    font-size: 14px;
    color: #222;
    line-height: 24px;
    margin-bottom: 10px;
}
.about-wrap ul li {
    font-size: 14px;
    color: #222;
    line-height: 25px;
    margin-bottom: 5px;
}
.about-wrap ul li i {
    margin-right: 3px;
}
.about-wrap img {
    border-radius: 3px;
}
.about-wrap .faq-wrapper .card-body {
    border-top: 1px solid #dadada;
}
.about-wrap .faq-wrapper .card-body p {
    margin-bottom: 0;
}
.about-wrap .faq-wrapper .card-header h5 button {
    font-size: 15px;
    padding: 12px 20px;
    font-weight: 500;
    outline: none;
    box-shadow: none;
}
.about-wrap .faq-wrapper .card-header h5 button span {
    right: 20px;
}
.about-wrap .button {
    font-size: 13px;
    line-height: 20px;
    background-color: #047ac4;
    color: #fff;
    padding: 7px 20px 6px;
    border-radius: 30px;
}
.about-wrap .button:hover {
    opacity: .9;
}
/* common end */

/* welcome start */
.about-wrap .welcome {
    text-align: center;
    padding: 0 0 30px;
}
/* welcome end */

/* consulting partner start */
.about-wrap .consulting-partner {
    padding: 0 0 30px;
}
.about-wrap .consulting-partner .image {
    margin-bottom: 25px;
}
.about-wrap .consulting-partner .more-content p b {
    font-style: italic;
}
/* consulting partner end */

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

/* company history start */
.about-wrap .company-history {
    padding: 45px 0 40px;
}
.about-wrap .company-history .header {
    text-align: center;
    margin-bottom: 25px;
}
.about-wrap .company-history .content h2 {
    margin-bottom: 10px;
}
.about-wrap .company-history .more-content {
    margin-top: 15px;
}
.about-wrap .company-history .more-content p b {
    font-style: italic;
}
/* company history end */

/* meet our team start */
.about-wrap .meet-our-team {
    padding: 50px 0;
    background-image: url(../images/background.jpg);
    border-top: 1px solid #efeded;
    border-bottom: 1px solid #efeded;
}
/* meet our team end */

/* company history start */
.about-wrap .company-history .image {
    margin-top: 38px;
}
/* company history end */

/* our core values start */
.about-wrap .our-core-values {
    padding: 50px 0 20px;
}
.about-wrap .our-core-values .header {
    text-align: center;
    margin-bottom: 25px;
}
.about-wrap .our-core-values .core-value {
    margin-bottom: 30px;
}
.about-wrap .our-core-values .core-value img {
    margin-bottom: 15px;
}
.about-wrap .our-core-values .core-value h4 {
    font-weight: 500;
}
/* our core values end */

/* transform your business start */
.about-wrap .transform-business {
    /* background-color: #047ac4; */
    background-image: url(../images/about/transform-business.jpg);
    padding: 45px 0;
    text-align: center;
}
.about-wrap .transform-business h2 {
    color: #fff;
}
.about-wrap .transform-business p {
    color: #fff;
}
.about-wrap .transform-business p b {
    font-style: italic;
}
.about-wrap .transform-business a {
    font-size: 13px;
    font-weight: 500;
    background-color: #ffffff;
    color: #047ac4;
    padding: 7px 20px 6px;
    border-radius: 30px;
}
/* transform your business end */

/* our services start */
.about-wrap .our-services {
    padding: 50px 0 20px;
}
.about-wrap .our-services .content {
    text-align: center;
    margin-bottom: 30px;
}
.about-wrap .our-services .our-service {
    margin-bottom: 30px;
}
.about-wrap .our-services .our-service img {
    width: 80px;
    margin-bottom: 20px;
}
.about-wrap .our-services .our-service h4 {
    font-weight: 500;
}
/* our services end */

/* page about us end */

/* terms & conditions start */
.terms-condtions {
    background-image: url(../images/background.jpg);
    padding: 50px 0px 50px;
}
.terms-condtions h1 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 15p
}
.terms-condtions h2 {
    font-size: 18px;
    margin-bottom: 12px;
}
.terms-condtions h3 {
    font-size: 18px;
    margin-bottom: 12px;
}
.terms-condtions p {
    font-size: 14px;
    line-height: 26px;
    color: #111;
    margin-bottom: 12px;
}
.terms-condtions ul li {
    font-size: 15px;
    color: #111;
    margin-bottom: 10px;
}
.terms-condtions ul li i {
    margin-right: 5px;
}
/* terms & conditions end */

/* privacy policy start */
.privacy-policy {
    background-image: url(../images/background.jpg);
    padding: 50px 0px 50px;
}
.privacy-policy h1 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 15p
}
.privacy-policy h2 {
    font-size: 18px;
    margin-bottom: 12px;
}
.privacy-policy h3 {
    font-size: 18px;
    margin-bottom: 12px;
}
.privacy-policy p {
    font-size: 14px;
    line-height: 26px;
    color: #111;
    margin-bottom: 12px;
}
.privacy-policy ul li {
    font-size: 15px;
    color: #111;
    margin-bottom: 10px;
}
.privacy-policy ul li i {
    margin-right: 5px;
}
/* privacy policy end */

/* SAP consulting start */
.erp-consulting {
    padding: 50px 0px 0px;
}
.erp-consulting h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.erp-consulting p {
    font-size: 14px;
    color: #111;
    line-height: 26px;
}
.sap-industry {
    padding: 20px 0px 0px;
}
.sap-industry-1 h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.sap-industry-1 p {
    font-size: 14px;
    color: #111;
    line-height: 26px;
    margin-bottom: 10px;
}
.sap-industry-2 img {
    border: 1px solid #f3f3f3;
    border-radius: 3px;
}
.sap-industry-3 {
    display: flex;
    margin-bottom: 20px;
}
.sap-industry-3 .pull-left i {
    float: left;
    width: 60px;
    display: block;
    margin-top: 1px;
    margin-bottom: 20px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #fff;
    font-size: 24px;
    border: 1px solid #cfc3c3;
    color: #047ac4;
    border-radius: 100px;
    margin-right: 15px;
}
.sap-industry-3 .media-body h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 7px;

}
.sap-industry-3 .media-body p {
    font-size: 14px;
    color: #111;
    line-height: 24px;
}
.erp-integration {
    padding: 0px 0px 0px;
}
.erp-integration h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.erp-integration p {
    font-size: 14px;
    color: #111;
    line-height: 26px;
}
.sap-feature {
    padding: 30px 0px 0px;
}
.sap-feature-1 h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.sap-feature-1 p {
    font-size: 14px;
    color: #111;
    line-height: 26px;
    margin-bottom: 20px;
}
.sap-feature-2 {
    text-align: center;
}
.sap-feature-3 {
    margin-bottom: 30px;
    clear: both;
}
.sap-feature-3 .pull-left i {
    float: left;
    width: 60px;
    display: block;
    margin-top: 1px;
    margin-bottom: 20px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #fff;
    font-size: 24px;
    border: 1px solid #cfc3c3;
    color: #047ac4;
    border-radius: 100px;
    margin-right: 15px;
}
.sap-feature-3 .media-body h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    padding-top: 20px;
}
.more-freedom {
    padding: 40px 0px 0px;
    text-align: center;
    background-color: #00b0f4;
    margin: 40px 0px;
}
.more-freedom h3 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
    color: #fff;
}
.more-freedom p {
    font-size: 14px;
    margin-bottom: 25px;
    color: #fff;
}
.sap-fiori {
    padding: 0px 0px 30px
}
.sap-fiori h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.sap-fiori p {
    font-size: 14px;
    color: #111;
    line-height: 26px;
}
.sap-industry-enjoy {
    padding: 0px 0px 40px;
}
.sap-industry-enjoy-1 h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.sap-industry-enjoy-1 p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #111;
}
.sap-industry-enjoy-2 .sap03 {
    clear: both;
    margin-bottom: 30px;
}
.sap-industry-enjoy-2 .pull-left i {
    float: left;
    width: 60px;
    display: block;
    margin-top: 1px;
    margin-bottom: 20px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #fff;
    font-size: 24px;
    border: 1px solid #cfc3c3;
    color: #047ac4;
    border-radius: 100px;
    margin-right: 15px;
}
.sap-industry-enjoy-2 .media-body h4 {
    font-size: 16px;
    margin-bottom: 5px;
}
.sap-industry-enjoy-2 .media-body p {
    font-size: 14px;
    color: #111;
}
.ami-mater {
    padding: 50px 0px 30px;
    background-image: url(../images/background.jpg);
}
.ami-mater-1 h3 {
    font-size: 22px;
    margin-bottom: 7px;
}
.ami-mater-1 h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.ami-mater-1 p {
    font-size: 14px;
    color: #111;
    margin-bottom: 30px;
}
.ami-mater-3 {
    clear: both;
}
.ami-mater-3 .pull-left i {
    float: left;
    width: 60px;
    display: block;
    margin-top: 1px;
    margin-bottom: 20px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #fff;
    font-size: 24px;
    border: 1px solid #cfc3c3;
    color: #047ac4;
    border-radius: 100px;
    margin-right: 15px;
}
.ami-mater-3 .media-body h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    padding-top: 18px;
}
/* SAP consulting end */

/* resource augmentation start */
.resource-augment-1 {
    padding: 50px 0px 40px;
    background-image: url(../images/background.jpg);
}
.resource-augment-2 h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.resource-augment-2 h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.resource-augment-2 p {
    font-size: 14px;
    line-height: 26px;
    color: #111;
    margin-bottom: 7px;
}
.resource-augment-2 ul li {
    font-size: 14px;
    line-height: 26px;
    color: #111;
    margin-bottom: 7px;
}
.resource-augment-3 img {
    margin-top: 5px;
    border-radius: 3px;
}
.sap-aside h3 {
    font-size: 16px;
    background-color: #047ac4;
    color: #fff;
    padding: 8px 15px 7px;
    margin-bottom: 0px;
}
.sap-aside ul li a {
    display: block;
    background-color: #e8e6e69e;
    border: 1px solid #e9e7e7;
    font-size: 14px;
    color: #111;
    font-weight: 600;
    padding: 12px 15px 9px;
    margin-bottom: 0px;
    cursor: auto;
}
.corporate-suite {
    border: 2px solid #dcdbdb;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 2px;
}
.corporate-suite h3 {
    font-size: 16px;
    background-color: #047ac4;
    color: #fff;
    padding: 8px 15px 7px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.corporate-suite p {
    font-size: 14px;
    color: #111;
}
.corporate-suite a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #047ac4;
    padding: 6px 15px 5px;
    border-radius: 3px;
}
.open-assignments {
    background-color: #047ac4;
    padding: 22px 20px 20px;
    border-radius: 4px;
}
.open-assignments h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}
.open-assignments p {
    font-size: 14px;
    color: #fff;
    line-height: 25px;
    margin-bottom: 10px;
}
.open-assignments a {
    color: #ffffff;
}
.our-differentiators {
    padding-top: 25px;
}
.our-differentiators h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.our-differentiators ul li {
    font-size: 14px;
    color: #111;
    clear: both;
    margin-bottom: 15px;
}
.our-differentiators ul li i {
    padding-right: 5px;
    font-size: 20px;
    margin-bottom: 10px;
    float: left;
    margin-top: 2px;
    color: #243e75;
}
.continual-improvement {
    padding-top: 20px;
}
.continual-improvement h3 {
    font-size: 20px;
    margin-bottom: 20px;
}
.continual-improvement .collapsed .fa-minus {
    display: none;
}
.continual-improvement .fa-plus {
    display: none;
}
.continual-improvement .fa-minus{
    display: inline-block;
}
.continual-improvement .collapsed .fa-plus {
    display: inline-block;
}
.continual-improvement .panel-title {
    margin-bottom: 3px;
}
.continual-improvement .panel-title a {
    font-size: 15px;
    font-weight: 500;
    background-color: #ececec;
    display: block;
    padding: 15px 20px;
}
.continual-improvement .panel-title a span {
    float: right;
    padding-top: 4px;
}
.continual-improvement .panel-body .panel-content {
    background-color: #fff;
    padding: 15px;
    font-size: 14px;
    color: #111;
}
.sap-brochure {
    border: 1px solid #d4cfcf;
    margin-top: 30px;
    padding: 25px 20px 25px;
    border-radius: 2px;
}
.sap-brochure h3 {
    font-size: 18px;
    margin-bottom: 7px;
}
.sap-brochure p {
    font-size: 14px;
    color: #111;
    margin-bottom: 12px;
}
.sap-brochure a {
    display: block;
    font-size: 14px;
    text-align: center;
    background-color: #047ac4;
    color: #fff;
    padding: 11px 30px 10px;
    border-radius: 3px;
}
.sap-brochure a i {
    padding-left: 10px;
}
.quick-links {
    border: 1px solid #d4cfcf;
    margin-top: 30px;
    padding: 20px 15px 20px;
    border-radius: 2px;
}
.quick-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.quick-links ul li a {
    background-color: #ececec;
    display: block;
    padding: 9px 10px 7px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin-bottom: 2px;
}
.quick-links ul li a:hover{
    background-color: #047ac4;
    color: #fff;
}
/* resource augmentation end */

/* site map start */
.site-map {
    padding: 40px 0px 20px;
}
.site-map h1 {
    font-size: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid #dfd5d5;
    padding-bottom: 10px;
}
.site-map ul {
    margin-bottom: 15px;
}
.site-map ul li {
    margin-bottom: 15px;
}
.site-map ul li a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #0056b3;
    display: block;
}
.site-map ul li ul li a {
    color: #000;
}
.site-map ul li h2 {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.site-map-inners {
    display: flex;
    justify-content: space-between;
    background-color: #f0f0f0;
    border: 1px solid #ebe8e8;
    border-radius: 3px;
    padding: 5px 10px 5px;
    margin-top: 15px;
}
.site-map-inner2 {
    background-color: #f0f0f0;
    border: 1px solid #ebe8e8;
    border-radius: 3px;
    padding: 15px 10px 5px;
    margin-top: 10px;
    display: inline-block;
}
/* site map end */

/* availability calendar start */
.availability-calendar .carousel {
    background-color: var(--whiteColor)
}
.availability-calendar .heading h2 {
    font-size: 16px;
}
.availability-calendar .table {
    margin-bottom: 0px;
}
.availability-calendar .calendar-year {
	background-color: var(--blueColor);
}
.availability-calendar .calendar-year h4 {
	width: 161px;
	font-size: 13px;
    font-weight: 500;
    background-color: var(--blueColor);
    color: var(--whiteColor);
    margin-bottom: 0;
    padding: 7px 10px;
}
.availability-calendar .table thead tr th {
    font-size: 12px;
    padding: 3px 1px;
    text-align: center;
    border-bottom: 1px;
}
.availability-calendar .table tbody tr td {
	font-size: 12px;
	color: #111111;
    padding: 3px 1px;
    text-align: center;
}

/* carousel control start */
.availability-calendar .carousel-control-prev {
    top: 3px;
    display: inline-table;
    right: 1px;
    left: auto;
    width: 85px;
    opacity: 1;
    background-color: var(--blueColor);
}
.availability-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;
}
.availability-calendar .carousel-control-next {
	top: 3px;
    display: inline-table;
    right: 10px;
    left: auto;
    width: auto;
    opacity: 1;
}
.availability-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;
}
.availability-calendar .color-means {
    padding: 10px 10px 8px;
    border-bottom: 1px solid #f2e9e9;
}
.availability-calendar .color-means ul.flex {
    display: flex;
    justify-content: space-around;
    gap: 5px;
}
.availability-calendar .color-means ul li {
    font-size: 12px;
    color: #333;
}
.availability-calendar .color-means ul li span {
    display: inline-block;
    width: 9px;
    height: 9px;
    line-height: 9px;
    margin-right: 5px;
}
/* carousel control end */

/* color setting 1 start */
.availability-calendar .table tbody tr .red {
	background-color: #e75a5a;
    color: var(--whiteColor);
}
.availability-calendar .table tbody tr .green {
	background-color: #63b963;
    color: var(--whiteColor);
}
.availability-calendar .table tbody tr .gray {
	background-color: #b9b4b4;
    color: var(--blackColor);
}
.availability-calendar .table tbody tr .blue {
	background-color: #2992d4;
    color: var(--whiteColor);
}
.availability-calendar .table tbody tr .bagani {
	background-color: #4267b2;
    color: var(--whiteColor);
}
.availability-calendar .table tbody tr .light {
	color: #d7d5d5;
}
.availability-calendar .table tbody tr .yellow {
    background-color: #ffbd33;
	color: var(--whiteColor);
}
.availability-calendar .table tbody tr .orange {
    background-color: #ff7f50;
	color: var(--whiteColor);
}
.availability-calendar .table tbody tr .azure {
    background-color: #b440e5;
	color: var(--whiteColor);
}
/* color setting 1 end */

/* color setting 2 start */
.availability-calendar .color-means ul li .green {
    background-color: #00d28e;
}
.availability-calendar .color-means ul li .red {
    background-color: #e75a5a;
}
.availability-calendar .color-means ul li .gray {
    background-color: #b9b4b4;
}
.availability-calendar .color-means ul li .blue {
    background-color: #2992d4;
}
.availability-calendar .color-means ul li .bagani {
    background-color: #4267b2;
}
.availability-calendar .color-means ul li .yellow {
    background-color: #ffbd33;
}
.availability-calendar .color-means ul li .orange {
    background-color: #ff7f50;
}
.availability-calendar .color-means ul li .azure {
    background-color: #b440e5;
}
/* color setting 2 end */
/* availability calendar end */

/* prozia brochure start */
.prozia-brochure {
    padding: 20px 0px 50px;
}
.carousel-inner {
    border-left: 1px solid #ede9e9;
    border-right: 1px solid #ede9e9;
}
.brochure-slider-item {
    margin: 0 -10px;
}
.brochure-slider-item img {
    border: 1px solid #ede9e9;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.brochure-slider .carousel-indicators {
	bottom: -52px;
}
.brochure-slider .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;
}
/* prozia brochure end */

/* thank you start */
.thank-you {
    padding: 30px 0px 20px;
    border-top: 1px solid #f1ecec;
}
.thank-you-message {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cfe2ff;
    border: 1px solid #b6d4fe;
    width: 500px;
    height: 60px;
    margin: 0 auto 30px;
    text-align: center;
    border-radius: 2px;
}
.thank-you-message h3 {
    font-size: 21px;
    color: #084298;
    margin-bottom: 0;
}
.thank-you-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.thank-you-content p {
    font-size: 17px;
    line-height: 30px;
    color: #333;
    margin-bottom: 20px;
}
.thank-you-button {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}
.thank-you-button a {
    border: none;
    color: #fff;
    padding: 13px 20px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    margin-top: 0px;
}
.thank-you-button .vaccancies {
    background-color: #047ac4;
}
.thank-you-button .training {
    background-color: #00aef3;
}
.thank-you-button a:hover{
    opacity: .8;
}
.thank-you-image img {
    max-width: 100%;
    margin-top: -10px;
}
/* thank you end */

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

/* case studies start */
.case-studies {
    background-image: url(../images/background.jpg);
    padding: 30px 0px 20px;
}
.case-studies .tab-content h3 {
    margin-bottom: 7px;
}
/* case studies end */

/* testimonial start */
.test-testimonial {
    background-image: url(../images/background.jpg);
    padding: 45px 0px 50px;
    margin-bottom: 50px;
}
.test-testimonial .header h2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 20px;
}
.test-testimonial .testimonial-slider__single-item {
    padding: 25px 25px 25px;
}
.test-testimonial .testimonial-slider__single-item__content .testimonial-name {
    font-size: 20px;
    margin-bottom: 5px
}
.test-testimonial .testimonial-slider__single-item__content .rating {
    margin-bottom: 2px;
}
.test-testimonial .testimonial-slider__single-item__content p {
    color: #333;
}
/* testimonial end */

/* highlights month start */
.highlights-month {
    padding: 50px 0px 40px;
    background-image: url(../images/background.jpg);
}
.highlights-month .left-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    padding-left: 2px;
}
.highlights-month .left-content ul li {
    font-size: 15px;
    line-height: 26px;
    color: #222;
    clear: both;
    margin-bottom: 7px;
}
.highlights-month .left-content ul li img {
    float: left;
    width: 21px;
    margin: 2px 4px 7px 0px;
}
/* highlights month end */

/* trainer profile start */
.trainer-profile {
    padding: 10px 0px;
    background-image: url(../images/background.jpg);
    border-top: 1px solid #ececec;
}
.trainer-profile-fields {
    background-color: #ffffff;
    box-shadow: rgb(0 0 0 / 15%) 0px 5px 15px;
    padding: 15px 15px 0px;
    border-radius: 5px;
}
.trainer-profile-fields h3 {
    font-size: 15px;
    background-color: #047ac4;
    text-align: center;
    color: #fff;
    padding: 7px 10px;
    margin: -15px -15px 15px;
    border-radius: 5px 5px 0px 0px;
}
.trainer-profile-fields form {
    margin: 0 8px;
}
.trainer-profile-fields .form-group {
    position: relative;
    margin: 0 -8px;
	margin-bottom: 18px;
}
.trainer-profile-fields .form-group label {
    position: absolute;
    top: -6px;
    left: 9px;
    z-index: 1;
    color: #181818;
    font-size: 11px;
    line-height: 11px;
    font-weight: 400;
    padding: 0 2px;
    background-color: #ffffff;
    margin-bottom: 0;
}
.trainer-profile-fields .form-group label span {
    font-size: 11px;
}
.trainer-profile-fields .form-group label sup {
    font-size: 12px;
    top: -1px;
    color: #f50000;
    left: 1px;
}
.trainer-profile-fields .form-group input {
    width: 100%;
    height: 32px;
    font-size: 13px;
    padding: 10px;
    border: 1px solid #d2d2d3;
    border-radius: 2px;
    background-color: transparent;
}
.trainer-profile-fields .form-group input:focus{
    border: 1px solid #7bb9e0;
}
.trainer-profile-fields .form-group input::placeholder {
    font-size: 12px;
    color: #dadada;
}
.trainer-profile-fields .form-group select {
    width: 100%;
    height: 32px;
    font-size: 12px;
    color: #333;
    padding: 7px 10px;
    border: 1px solid #d2d2d3;
    border-radius: 2px;
    background-color: transparent;
}
.trainer-profile-fields .form-group select:focus {
    border: 1px solid #7bb9e0;
}
.trainer-profile-fields .form-group textarea {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #d2d2d3;
    border-radius: 2px;
    background-color: transparent;
}
.trainer-profile-fields .form-group textarea::placeholder {
    color: #dadada;
}
.trainer-profile-fields .form-group textarea:focus{
    border: 1px solid #5f5f64;
}
.trainer-profile-fields .form-group.attachedment {
    margin: -15px -8px 5px;
}
.trainer-profile-fields .form-group.attachedment label {
    position: initial;
}
.trainer-profile-fields .form-group.attachedment input {
    border: none;
    padding: 0;
    margin: 0;
    margin-top: 0px;
}
.trainer-profile-fields .accept-terms {
    border: 1px solid #d2d2d3;
    padding: 5px 10px 1px;
    border-radius: 3px;
}
.trainer-profile-fields .accept-terms p {
    font-size: 12px;
    color: #222;
    margin-bottom: 2px;
}
.trainer-profile-fields .accept-terms p:last-child {
    margin-bottom: 0;
}
.trainer-profile-fields .accept-terms label {
    position: initial;
    display: flex;
    align-items: center;
    margin-bottom: 2px;
    padding: 4px 0;
}
.trainer-profile-fields .accept-terms label input {
    float: left;
    width: 14px;
    height: 14px;
    margin-right: 5px;
}
.trainer-profile-fields .accept-terms label span {
    color: #222;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}
.trainer-profile-fields .submit-button ul {
    display: flex;
    justify-content: end;
    gap: 7px;
    margin: -4px 0;
}
.trainer-profile-fields .submit-button .cancel {
    font-size: 13px;
    background-color: #f24242;
    border: 1px solid #f24242;
    color: #fff;
    padding: 6px 20px 4px;
    border-radius: 2px;
}
.trainer-profile-fields .submit-button .btn-primary {
    font-size: 13px;
    background-color: #047ac4;
    border: 1px solid #047ac4;
    color: #fff;
    padding: 7px 20px 6px;
    margin: 0px;
    border-radius: 2px;
    outline: none;
    box-shadow: none;
}
.trainer-profile-fields .submit-button .btn-primary.disabled {
    pointer-events: none;
    opacity: .3;
}
.loader-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000a1;
    z-index: 2;
    cursor: pointer;
}
.spinner-border {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99999;
    width: 4rem;
    height: 4rem;
    color: #79baff;
}
/* trainer profile end */

/* trainer profile search start */
.trainer-profile-search {
    padding: 25px 0px;
    border-top: 1px solid #ececec;
}
.trainer-profile-search h2 {
    font-size: 15px;
    background-color: #047ac4;
    text-align: center;
    color: #fff;
    padding: 7px 10px 6px;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 0px;
}
.trainer-profile-search .search-filter {
    border: 1px solid #e9e8e8;
    padding: 12px 10px 10px;
    border-radius: 0px 0px 3px 3px;
}
.trainer-profile-search .search-filter .form-group {
    position: relative;
    margin-bottom: 0px;
}
.trainer-profile-search .search-filter label {
    position: absolute;
    top: -6px;
    left: 7px;
    z-index: 1;
    color: #111111;
    font-size: 11px;
    line-height: 11px;
    font-weight: 400;
    padding: 0 4px;
    background-color: #fff;
    margin-bottom: 0;
}
.trainer-profile-search .search-filter button {
    background-color: #005a92;
    border: 1px solid #005a92;
    display: block;
    width: 100%;
    color: #fff;
    font-size: 13px;
    padding: 5px 20px;
    height: 32px;
    border-radius: 3px;
}
.trainer-profile-search .search-filter button:hover {
    opacity: .9;
}
.trainer-profile-search .table tbody tr .text-center {
    text-align: center;
}
.trainer-profile-search .table tbody tr .loader i {
    font-size: 32px;
    color: #047ac4;
}
.trainer-profile-search .search-count p {
    font-size: 12px;
    color: #444;
    text-align: right;
}
/* trainer profile search 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: 410px;
    background-color: #fffffff2;
    box-shadow: rgb(0 0 0 / 24%) 0px 5px 15px;
    padding: 50px 40px;
    border-radius: 15px;
}
.login .login-wrap .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}
.login .login-wrap .header h3 {
    font-size: 21px;
    color: var(--blackColor);
    font-weight: 500;
    margin-bottom: 0;
}
.login .login-wrap .header img {
    width: 150px;
    border-radius: 2px;
}
.login .login-wrap .footer {
    border-top: 1px solid #bec0dd;
    margin-top: 20px;
    padding-top: 10px;
}
.login .login-wrap .footer p {
    font-size: 13px;
    margin-bottom: 0px;
}
.login .login-wrap .footer a {
    font-size: 13px;
    color: var(--linkColor);
    text-decoration: underline;
}
/* login end */

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

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

/* test engine start */
.corporate-training .test-engine {
    background-color: #efefef;
    border: 1px solid #dee0e0;
    margin: 35px 0;
    padding: 20px;
    border-radius: var(--borderRadius);
}
.corporate-training .test-engine h3 {
    font-weight: 500;
}
.corporate-training .test-engine img {
    border-radius: 4px;
}
/* test engine end */

/* testimonial start */
.corporate-training .corporate-testimonial .card-body {
    padding: 0;
}
.corporate-training .corporate-testimonial .testimonial {
    padding: 10px 15px;
}
/* testimonial end */

/* contact details start */
.corporate-training .contact-details .card-body {
    padding: 0px 12px;
}
.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 h5 {
    font-weight: 500;
}
.corporate-training .contact-details .card-body ul li p {
    line-height: 23px;
}
.corporate-training .contact-details .card-body ul li i {
    color: #003556;
    padding-right: 4px;
}
/* contact details end */

/* training solutions start */
.corporate-training .training-solutions {
    padding: 40px 0 30px;
}
.corporate-training .training-solutions img {
    margin: 5px 0 0;
    border-radius: var(--borderRadius);
}
/* 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: 35px 0 20px;
}
.corporate-training .brochure .brochure-item {
    border: 1px solid #d4d2d2;
    border-radius: 2px;
}
.corporate-training .brochure h2 {
    margin-bottom: 10px;
}
/* brochure end */

/* training server start */
.corporate-training .training-server {
    background-color: #047ac4;
    margin: 30px 0 0;
    padding: 30px;
    border-radius: var(--borderRadius);
}
.corporate-training .training-server h2 {
    color: var(--whiteColor);
}
.corporate-training .training-server p {
    color: var(--whiteColor);
    margin-bottom: 2px;
}
.corporate-training .training-server .button {
    color: #0070b6;
    background-color: var(--whiteColor);
    border: 1px solid var(--whiteColor);
    padding: 9px 15px 8px;
    margin-top: 10px;
}
/* training server end */

/* how to apply start */
.corporate-training .how-to-apply {
    margin: 30px 0 10px;
}
.corporate-training .how-to-apply img {
    border-radius: var(--borderRadius);
}
/* how to apply end */
/* corporate training 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 .content {
    margin: 0 0 30px;
}
.resourcing-services .resourcing-solutions .content h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
}
.resourcing-services .industries-serve {
    padding: 50px 0 0px;
}
.resourcing-services .industries-serve .content {
    margin: 0 0 30px;
}
.resourcing-services .industries-serve .content h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
}
.resourcing-services .industries-serve .content ul li {
    line-height: 30px;
}
.resourcing-services .industries-serve .content ul li i {
    padding-right: 5px;
    color: #047ac3;
}
.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 .content {
    text-align: center;
    background-color: #fcfeff;
    border: 1px solid #c2d0d8;
    border-radius: 5px;
    padding: 20px;
    margin: 0 0 25px;
}
.resourcing-services .why-choose-us .content img {
    width: 85px;
}
.resourcing-services .why-choose-us .content h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0 5px;
}
.resourcing-services .recruitment-process {
    padding: 50px 0 40px;
}
.resourcing-services .recruitment-process ul li {
    line-height: 36px;
}
.resourcing-services .recruitment-process ul li i {
    padding-right: 5px;
    color: #047ac3;
}
.resourcing-services .recruitment-process p {
    margin: 5px 0 10px;
}
.resourcing-services .dream-team {
    padding: 0 0 50px;
}
.resourcing-services .right-partner h2 {
    margin: 0 0 10px;
}
.resourcing-services .work-counter {
    background-color: #235676;
    padding: 50px 0;
    margin: 20px 0 40px;
}
.resourcing-services .work-counter .content {
    text-align: center;
    border: 1px solid #4b7fa0;
    padding: 25px 0;
    border-radius: 5px;
}
.resourcing-services .work-counter .content h3 {
    font-size: 36px;
    color: var(--whiteColor);
    font-weight: 600;
}
.resourcing-services .work-counter .content p {
    color: var(--whiteColor);
    font-size: 15px;
}
.resourcing-services .right-partner {
    padding: 0 0 30px;
}
/* resourcing services end */











































































