body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        background: linear-gradient(to bottom,  #f0f0f2, #ffffff);

}

.hero {
  padding: 20px;
  position: relative;
  text-align: right;
  background: linear-gradient(to left, #D0E3FF, #334EAC);
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.hero .left{
  text-align: right;
}

.hero .left,
.hero .right {
  width: 40%;
}

.hero .right img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero .left,
  .hero .right {
    width: 100%;
    max-width: none;
  }

  .hero .right img {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 10px;
  }

  .hero .left {
    padding: 0 10px;
  }

  .hero .right img {
    margin-top: 10px;
  }
}

/*********************************************************/

.importance-section {
padding: 50px 0;
background-color: #f9f9f9; 
}

.importance-section .row {
display: flex;
justify-content: space-around;
align-items: flex-start;
flex-wrap: wrap;
gap: 20px;
align-items: stretch; 

}

.importance-section .card {
flex: 1;
max-width: 600px; 
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.card:hover {
transform: scale(1.05); 
}

.importance-section .card h3 {
margin-bottom: 10px;
color: #081f5c;
}


@media (max-width: 768px) {

.importance-section .row{
  align-items: center;
}


.importance-section .card {
flex: 1;
max-width: 400px; 
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
font-size: 12px;
}
.card:hover {
transform: scale(1.02); 
}

.importance-section .card h3 {
margin-bottom: 10px;
color: #081f5c;
font-size: 20px;
}

}


@media (max-width: 600px), (max-width:500px) {

.importance-section .row{
align-items: center;
}


.importance-section .card {
flex: 1;
max-width: 400px; 
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
font-size: 15px;
}
.card:hover {
transform: scale(1.02); 
}

.importance-section .card h3 {
margin-bottom: 10px;
color: #081f5c;
font-size: 22px;
}

}


/**********************************************************/
/* Main Content Section */
.main-content {
  padding: 50px 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; 
}

.main-content .card {
  flex: 1 1 calc(23.33% - 20px); 
  margin: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #F9FEF7 40%, #87cefa);
}

.card h3 {
  margin-bottom: 10px;
  color: #081f5c;
}

@media (max-width: 1024px) {
  .main-content .card {
    flex: 1 1 calc(46% - 20px); 
  }
}

@media (max-width: 768px) {
  .main-content .card {
    flex: 1 1 calc(90% - 20px); 
    font-size: 15px;
  }

  .main-content .card h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .main-content .card {
    flex: 1 1 calc(100% - 20px); 
    font-size: 15px;
  }

  .card h3 {
    font-size: 20px;
  }
}



/*********************************************************/
/* Microsoft ERP and Odoo ERP */
.erp-section {
 /* background-color: #f4f4f4;*/
  padding: 50px 0;
}

.col {
  width: 50%;
}

.col ul {
  list-style-type: none;
  padding-right: 0;
}

.col ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .erp-section {
  
  padding: 20px 0;
  font-size: 15px;
}
}




/*******************************/

/* About Section Styles */
.about-section {
  padding: 50px 0;
 /* background-color: #f8f9fa;*/
}

.about-section h3 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}

.about-section ul {
  list-style-type: none;
  padding-right: 0;
}

.about-section ul li {
  color: #666;
  font-size: 16px;
  margin-bottom: 10px;
}

.features-benefits {
  margin-bottom: 30px;
}

.benefits {
  margin-bottom: 30px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}


@media (max-width: 768px){
  .about-section {
  padding: 20px 0;
}

.about-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.about-section ul {
  list-style-type: none;
  padding-left: 0;
}

.about-section ul li {
  font-size: 15px;
  margin-bottom: 10px;
}

.features-benefits {
  margin-bottom: 30px;
}

.benefits {
  margin-bottom: 30px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}
}

/**************************/

.microsoft_erp {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 30px ;
}

@media screen and (max-width: 768px) {
    .microsoft_erp {
        flex-direction: column;
    }
   .about-microsoft-erp p{
      font-size: 15px;

    }
   .about-microsoft-erp h3{
      font-size: 22px;
    }
}


@media screen and (max-width: 600px),(max-width: 500px) {
    .microsoft_erp {
        flex-direction: column;
    }
   .about-microsoft-erp p{
      font-size: 15px;

    }
   .about-microsoft-erp h3{
      font-size: 22px;
    }
}


/***************************************/

.ag-courses_box {
    display: flex;
    align-items: stretch; 
    flex-wrap: wrap;
    padding: 50px 0;
    width: 95%;
    margin: 0px auto;
}

.ag-courses_item {
    flex-basis: calc(33.33333% - 30px);
    margin: 0 15px 30px;
    overflow: hidden;
    border-radius: 28px;
    width: 320px; 
    height: 210px;
    display: flex; 
    flex-direction: column; 
}

.ag-courses-item_link {
    display: block;
    padding: 30px 20px;
    background-color: #121212;
    overflow: hidden;
    position: relative;
    flex-grow: 1; 
}

.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_date {
    text-decoration: none;
    color: #FFF;
}

.ag-courses-item_link:hover .ag-courses-item_bg {
    transform: scale(10);
}

.ag-courses-item_title {
    min-height: 50px;
    margin: 0 0 25px;
    overflow: hidden;
    font-weight: bold;
    font-size: 20px;
    color: #FFF;
    position: relative;
}

.ag-courses-item_date-box {
    font-size: 10px;
    color: #FFF;
    position: relative;
}

.ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: #f9b234;
    position: absolute;
    top: -75px;
    right: -75px;
    border-radius: 50%;
    transition: all .5s ease;
}

.ag-courses_item:nth-child(2n) .ag-courses-item_bg {
    background-color: #3ecd5e;
}

.ag-courses_item:nth-child(3n) .ag-courses-item_bg {
    background-color: #e44002;
}

.ag-courses_item:nth-child(4n) .ag-courses-item_bg {
    background-color: #952aff;
}

.ag-courses_item:nth-child(5n) .ag-courses-item_bg {
    background-color: #cd3e94;
}

.ag-courses_item:nth-child(6n) .ag-courses-item_bg {
    background-color: #4c49ea;
}

@media only screen and (max-width: 979px) {
    .ag-courses_item {
        flex-basis: calc(50% - 30px);
    }

    .ag-courses-item_title {
        font-size: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .ag-format-container {
        width: 96%;
    }

    .ag-courses_item {
        flex-basis: 100%;
        height: 150px;
    }

    .ag-courses-item_title {
        min-height: 72px;
        line-height: 1;
        font-size: 15px;
        font-weight: lighter;
    }

    .ag-courses-item_link {
        padding: 22px 40px;
    }

    .ag-courses-item_date-box {
        font-size: 15px;
    }
}

@media only screen and (max-width: 639px) {
    .ag-courses_item {
        flex-basis: 100%;
        height: 150px;
    }

    .ag-courses-item_title {
        min-height: 72px;
        line-height: 1;
        font-size: 15px;
        font-weight: lighter;
    }

    .ag-courses-item_link {
        padding: 22px 40px;
    }

    .ag-courses-item_date-box {
        font-size: 15px;
    }
}


/*******************************************************************/



#Microsoft_Erp_Benfits h4 {
	font-size: 30px;
	text-align: center;
	color: white;
}

@media only screen and (max-width: 768px) {
  #Microsoft_Erp_Benfits h4 {
	font-size: 18px;
	
}
}
.about-microsoft-erp {
  margin: 50px auto;
}
.about-microsoft-erp h3{
  text-align: center;
}
.about-microsoft-erp p{
  margin: 10px 20px;
}
 .wrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 85vmin;
	height: 65vmin;
	margin: 2rem auto;
	border: 8px solid;
	border-image: linear-gradient(
			-50deg,
      #4d1967,
			#7b28a4,
			#ae5bd7,
			#4d1967,
      #ebd6f5,
			#7b28a4,
      #4d1967
		)
		1;
	transition: 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
}
 .overlay {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	padding: 1rem 0.75rem;
	background: 	#4d1967;
	transition: 0.4s ease-in-out;
	z-index: 1;
}
 .overlay-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 15vmin;
	height: 100%;
	padding: 0.5rem 0 0 0.5rem;
	border: 3px solid;
	border-image: linear-gradient(
			to bottom,
			#8b008b 5%,
			#20B2AA 35% 65%,
			#aea724 95%

		)
		0 0 0 100%;
	transition: 0.3s ease-in-out 0.2s;
	z-index: 1;
}
.image-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 60vmin;
	height: 100%;
	background-image: url("./images/Microsoft_Dynamics3.webp");
	background-size: cover;
	transition: 0.3s ease-in-out;
}

 .inset {
	max-width: 50%;
	margin: 0.25em 1em 1em 0;
	border-radius: 0.25em;
	float: right;
}

 .dots {
	position: absolute;
	bottom: 1rem;
	left: 2rem;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: 55px;
	height: 4vmin;
	transition: 0.3s ease-in-out 0.3s;
}
 .dot {
	width: 14px;
	height: 14px;
	background: yellow;
	border: 1px solid indigo;
	border-radius: 50%;
	transition: 0.3s ease-in-out 0.3s;
}

 .text {
	position: absolute;
	top: 0;
	left: 0;
	width: 60vmin;
	height: 100%;
	padding: 3vmin 4vmin;
	background: #fff;
	box-shadow: inset 1px 1px 15px 0 rgba(0 0 0 / 0.4);
	overflow-y: scroll;
}

 .wrap:hover .overlay {
	transform: translateX(60vmin);
}
.wrap:hover .image-content {
	width: 30vmin;
}
 .wrap:hover .overlay-content {
	border: none;
	transition-delay: 0.2s;
	transform: translateX(-60vmin);
}
 .wrap:hover .dots {
	transform: translateX(1rem);
}
 .wrap:hover .dots .dot {
	background: white;
}

 .animate {
	animation-duration: 0.7s;
	animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
	animation-fill-mode: backwards;
}

 .pop {
	animation-name: pop;
}
@keyframes  pop {
	0% {
		opacity: 0;
		transform: scale(0.5, 0.5);
	}
	100% {
		opacity: 1;
		transform: scale(1, 1);
	}
}

 .slide {
	animation-name: slide;
}
@keyframes slide {
	0% {
		opacity: 0;
		transform: translate(4em, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

 .slide-right {
	animation-name: slide-right;
}
@keyframes slide-right {
	0% {
		opacity: 0;
		transform: translate(-40px, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

 .slide-up {
	animation-name: slide-up;
}
@keyframes slide-up {
	0% {
		opacity: 0;
		transform: translateY(3em);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.delay-1 {
	animation-delay: 0.3s;
}
.delay-2 {
	animation-delay: 0.6s;
}
 .delay-3 {
	animation-delay: 0.9s;
}
 .delay-4 {
	animation-delay: 1.2s;
}
 .delay-5 {
	animation-delay: 1.5s;
}
 .delay-6 {
	animation-delay: 1.8s;
}
 .delay-7 {
	animation-delay: 2.1s;
}
 .delay-8 {
	animation-delay: 2.4s;
}

/********************************************************************/


.odoo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 20px;
  padding: 50px;
}

.odoo-container p{
  margin: 5px 20px;
}

.odoo-cards-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.odoo-card {
  width: calc(33.33% - 10px);
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.odoo-card h3{
  color: #e69500
}

.odoo-card:hover {
  background-color: #101155; 
  color: white; 
  
}

.odoo-card:hover {
  transform: translateY(-10px); 
}

.odoo-image-container {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.odoo-image-container img {
  max-width: 60%;
  height: auto;
  transition: transform 0.3s ease;
}


@media screen and (max-width: 768px) {
  .odoo-card {
    width: 100%; 
    font-size: 15px;
  }.odoo-card h3 {
    font-size: 22px;
  }
  .odoo-image-container img {
  max-width: 90%;
  height: auto;
}
}

@media screen and (max-width: 600px) {
  .odoo-card {
    width: 100%; 
    font-size: 15px;
  }.odoo-card h3 {
    font-size: 22px;
  }
  .odoo-image-container img {
  max-width: 90%;
  height: auto;
}
}

@media screen and (max-width: 500px) {
  .odoo-card {
    width: 100%; 
    font-size: 15px;
  }.odoo-card h3 {
    font-size: 22px;
  }
  .odoo-image-container img {
  max-width: 90%;
  height: auto;
}
}
/*******************************************************************/

.odoo-benefit-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 95%;
  margin-bottom: 50px;
}

.odoo-benefit {
  width: calc(50% - 20px);
  max-width: 300px;
  background-color: #73264d;
  color: #fff;
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .odoo-benefit {
    width: calc(100% - 20px);
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {
  .odoo-benefit {
    width: calc(100% - 20px);
    font-size: 15px;
  }
}
@media screen and (max-width: 500px) {
  .odoo-benefit {
    width: calc(100% - 20px);
    font-size: 15px;
  }
}
.about-odoo{
  margin-top: 200px;
}

.about-odoo h2{
  text-align: center;
}

.about-odoo p{
  margin: 10px 20px;
}
#H3OdooBenifits{
  text-align: center;
  margin-top: 70px;
  margin-bottom: 20px;
}


/******************************************************************/


:root {
  font-size: 20px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

p {
  margin: 0;
}

p:not(:last-child) {
  margin-bottom: 1.5em;
}

#UiSERPContainer {
  margin: 50px 0px;
  font: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  min-height: 80vh;
  padding: 10px;
  color: #224;
  background:
    url(./images/UiS_ERP_BG.webp)
    center / cover no-repeat fixed;
}

#UiSAtERP {
  max-width: 800px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
  #UiSERPContainer {
    font-size: 9px;
  }
  #UiSERPContainer h2{
    font-size: 18px;
  }
  
}

@media screen and (max-width: 600px) {
  #UiSERPContainer {
    font-size: 9px;
  }
  #UiSERPContainer h2{
    font-size: 18px;
  }
  
}
@media screen and (max-width: 500px) {
  #UiSERPContainer {
    font-size: 15px;
  }
  #UiSERPContainer h2{
    font-size: 22px;
  }
  
}
