*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Inter, sans-serif;
	text-decoration: none;
	list-style: none;
	scroll-behavior: smooth;
        
}

:root{
	/*--bg-color: #ececec;
        linear-gradient(90deg, hwb(0deg 14% 86% / 63%) 0%, hwb(90deg 3% 96% / 47%) 100%);
	--second-bg-color: #d0d0d0;*/
        --bg-color: #fff;
    	--second-bg-color: #DEDEDE;
    	--text-color: #1B1B1B;
    	--second-color: #fff;
    	--main-color: #e6af17;
        --learn-color: #656565;
        --header-color: #fff;
        --read-color: #fff;
        --background-image: url(../images/BackgroundImage.jpg);
        --invert: invert(0%);
        
}
.dark{
        --bg-color: #292929;
    	--second-bg-color: gray;
    	--text-color: #fff;
    	--second-color: #ccc;

        --learn-color: #ffffff99;
        --header-color: #fff;
        --read-color: #000;
        --invert: invert(100%);
}
.main-body{
        background: var(--bg-color);
	    color: var(--text-color);
}
.main-header{
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	padding: 22px 15%;
    margin: 0;
	border-bottom: 1px solid transparent;
	transition: all .45s ease;
}
#theme-icon{
        width: 25px;
        height: auto;
        cursor: pointer;
}

.header-keyword{
        color: var(--main-color);
        font: bold 36px 'arial';
}
.second-header-keyword{
        color: #6082B6;
        font: 36px 'arial';
}
/* navigation */
.main-navlist{
	display: flex;
}
.main-navlist a{
	font-size: 26px;
	font-weight: 600;
	margin: 0 10px;
	transition: all .45s ease;
    
}
.main-navlist a:hover{
	color: var(--main-color);
}

.nav-link-original {
    color: var(--header-color);

}

.nav-active-changed {
  text-decoration: underline;
  text-underline-offset: 4px;
}
#menu-icon{
	font-size: 35px;
	color: #fff;
	z-index: 10001;
	cursor: pointer;
	margin-left: 25px;
	display: none;
}
/* Navigation end */

/*Questionnaire popup modal*/
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            padding-top: 100px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0,0,0);
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(1rem);
          }

          .modal-content {
            background-color: #fff;
            border: 1px solid #fff;
            margin-left: 20%;
            /*background: hsl(0 90% 100% / 0.1);*/
            background: black;
            backdrop-filter: blur(1rem);
            margin: auto;
            padding: 20px;
            width: 80%;
          }
          
          /* The Close Button */
          .close {
            color: #FF0000;
            float: right;
            margin-top: -70px;
            margin-right: -10px;
            font-size: 28px;
            font-weight: bold;
          }

          .close:hover,
          .close:focus {
            color: #ff4d05;
            text-decoration: none;
            cursor: pointer;
          }
          
          h2{
              color: #fff;
              padding: 10px 10px 0 10px;
          }
          
          .modal-content p{
              font-size: 20px;
              padding: 10px;
              color: #fff;
          }
          .modal-content a{
              color: #fff;
              font-weight: bold;
              margin-left: 10px;
              font-size: 20px;
              text-transform: capitalize;
          }
          .modal-content a:hover{
             text-decoration: underline;
             transition: 0.3s;
             color: #e0ac1c;
          }
          
/*Home*/
.home
{
    padding: 90px 15% 120px;
}
.about
{
    padding: 120px 15% 120px;
}
.services
{
    padding: 120px 15% 120px;
}
.contact
{
    padding: 120px 15% 120px;
}
      
#home {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: black;
    background-image: var(--background-image);
    
    
}
#home img {
    margin-bottom: 20px;
    width: 20%; /* Set the width of the image to 50% */
    height: auto; /* Set the height of the image to auto */
}

#home p{
    color: #cecfcf;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 30px;
    display: block;
    margin-left: 23%;
    margin-right: 23%;

}
#home h2 {
    color: white;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -3.2px;
    line-height: 76.8px;
    display: block;
    margin-left: 20%;
    margin-right: 20%;
}
#home .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  margin: 0;
  border: 2px solid var(--main-color);
  border-radius: 5px;
  font-size: 16px;
  font-family: Inter, sans-serif;
  height: 48px;
  color: black;
  background-color: var(--main-color);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.2s;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

#home .button:hover {
  opacity: 0.87;
}

#home .icon {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}

#home svg {
  height: 1em;
  width: 1em;
  font-size: 0.8em;
  vertical-align: middle;
}


.slide{
	margin-bottom: 20px;
}
/* Send button */
.button{
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.btnn{
	display: inline-block;
	padding: 12px 28px;
	background: var(--main-color);
	border-radius: 5px;
	color: var(--text-color);
	font-size: 1rem;
	letter-spacing: 1px;
	font-weight: 600;
	transition: all .45s ease;
}
.btnn:hover{
	transform: scale(0.9);
}
/* Send button end */

.main-header.sticky{
	background: #202020;
	border-bottom: 1px solid #ffffff1a;
	padding: 12px 15%;
}

/* About us & Services section */
.about{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 1.5rem;
    min-height:100vh;
}
.about-img img{
	max-width: 530px;
	height: auto;
	width: 100%;
	border-radius: 8px;
}
.about-text h2{
    	color: var(--text-color);
	line-height: 1;
    	padding-left: 0;

        font-size: 64px;
    font-weight: 600;
    letter-spacing: -3.2px;
    line-height: 76.8px;
    display: block;
}
.about-text h3{
	font-size: 24px;
	font-weight: 500;
	color: var(--text-color);
	line-height: 36px;
	margin: 15px 0 30px;
        display: block;
        
}
.about-text p{
	color: var(--text-color);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 4rem;
}
.about-text .services-keyword{
    font-size: 26px;
    font-weight: bold;
    color: var(--text-color);
}

.services{
	background: none;
}
.main-text{
	text-align: center;
}
.main-text p{
	color: var(--text-color);
	font-size: 15px;
	margin-bottom: 15px;
}
.main-text h2{
        color: var(--text-color);
	font-size: 3rem;
	line-height: 1;
}
.services-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, auto));
	align-items: center;
	gap: 2.5rem;
	margin-top: 5rem;
}

.services-box .services-keyword{
        color: var(--text-color);
        font: bold 20px 'Cookie', cursive;
}
.services-content .mhw-image-logo{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%; height: auto;max-height: 100%; object-fit: contain;
        padding-bottom: 20px;
        
}
.services-content .orisoft-image-logo{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100%; height: auto; max-height: 100%; object-fit: contain;
        padding-bottom: 20px;
}

.services-box{
	background: var(--second-bg-color);
	padding: 35px 45px;
	border-radius: 8px;
}
.services-box h3{
        text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 15px;
}

.services-box p{
	color: var(--text-color);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 25px;
}
.service-box-box
{
    margin-top: 5%;
}
.service-box-box1
{
    margin-top: 5%;
}
.style-box figcaption
{
    margin-top: 6%;
    color: var(--text-color);
}
.style-box1 figcaption
{
    margin-top: 6%;
    color: var(--text-color);
}
.style-box img 
{
    width: 100px;
    height: 100px;
    filter: var(--invert);
}
.style-box1 img
{
    width: 100px;
    height: 100px;
    filter: var(--invert);
}
.style-box
{
    margin-top: 1%;
    margin-bottom: 3%;
}
.style-box1
{
    margin-top: 1%;
    margin-bottom: 2%;
}



.style-box:hover {background: #656565; transition: all .45s ease;}
.style-box:hover .figure-caption {color: var(--text-color); color: white;}
.style-box:hover .service-box .figure img{filter: invert(100%);}

.style-box1:hover {background: #656565; transition: all .45s ease;}
.style-box1:hover .figure-caption {color: var(--text-color); color: white;}
.style-box1:hover .service-box .figure img {filter: invert(100%);}



.service-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.read{
    display:flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin: 0;
    border-radius: 5px;
    font-size: 16px;
    font-family: Inter, sans-serif;
    height: 48px;
    color: black;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    padding: 8px 18px;
    background: #333333;
    color: #ccc;
    font-weight: 500;
}
.read:hover{
    opacity: 0.87;

}
.services-box:hover{
    transform: translateY(-4px);
    cursor: pointer;
}
/*About us & Services end */

/* Contact section */
.contact{
    margin-top: 0;
    padding-top: 70px;
	background: var(--second-bg-color);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 2.5rem;
    min-height: 100vh;
}
.contact-text h5{
	color: var(--text-color);
	margin: 18px 0;
	font-size: 20px;
	font-weight: 600;
}
.contact-text h4{
    color: var(--text-color);
	font-size: 3rem;
	line-height: 1;
    padding: 10px 0px 3px 0px;
    font-weight: 600;

}
.contact-text p{
	color: var(--text-color);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 30px;
}
.list{
	margin-bottom: 2.8rem;
}
.list li{
	margin-bottom: 12px;
}
.list li a{
	display: block;
	color: var(--text-color);
	font-size: 14px;
	transition: all .45s ease;
}
.list li a:hover{
	color: var(--main-color);
	transform: translateX(5px);
}
.contact-icons i{
	height: 45px;
	width: 45px;
	background: var(--main-color);
	color: var(--text-color);
	font-size: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	margin-right: 15px;
	transition: all .45s ease;
}
.contact-icons i:hover{
	background: var(--second-bg-color);
	color: var(--main-color);
}

.btn-hover-change i{
	height: 45px;
	width: 45px;
	background: var(--main-color);
	color: var(--text-color);
	font-size: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	margin-right: 15px;
	transition: all .45s ease;
}

.btn-hover-change i:hover{
        background: none;
    }
.contact-form form{
	position: relative;
}
.contact-form form input,
form textarea{
	width: 100%;
	padding: 14px;
	background: var(--bg-color);
	color: var(--text-color);
	border: none;
	outline: none;
	font-size: 15px;
	border-radius: 8px;
	margin-bottom: 10px;
}
.contact-form textarea{
	resize: none;
	height: 240px;
}
.contact-form .submit{
	display: inline-block;
	font-size: 16px;
	background: var(--btn-color);
	color: var(--text-color);
	width: 160px;
	transition: all .45s ease;
}
.contact-form .submit:hover{
	transform: scale(1.1);
	cursor: pointer;
}
/* Contact section end */
/* end section */
.end{
	padding: 20px 15%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	background: var(--bg-color);
}
.last-text p{
	color: var(--text-color);
	font-size: 14px;
}
/* Move to top button */
.top i{
	padding: 10px;
	border-radius: 8px;
	font-size: 15px;
	color: var(--text-color);
	background: var(--main-color);
}


/*Responsive design*/
@media (max-width: 1440px)
{
    .service-box-box .mx-xl-0
    {
        margin-right:1.1313rem!important;
        margin-left:1.1313rem!important;
    }
    /*
    .home .home-text img
    { 
        padding-top: 3%;
        margin-top: 6%;
        margin-left: 5px; 
        padding-bottom: 10px;
        max-height: 270px;
        max-width: 270px;
    }
    .home-text{
        padding-left: 300px;
    }
    .home-text h1{
        font-size: 2rem;
        padding-left: 25px;
        padding-top: 10px;
    }
    .home-text h2{
        font-size: 1.5rem;
        padding-left: 17px;
    }
   */
    .header-keyword
    {
        font: bold 18px 'arial';
    }
    .second-header-keyword
    {
        font: 18px 'arial';
    }
    #theme-icon{
        width: 20px;
        height: auto;
    }
}

@media (max-width: 1408px)
{
    .main-navlist a{
        font-size: 17px;
    }
    .col-xl-4
    {
        flex:0 0 auto;
        width:33%
    }
    .service-box-box1 .mx-xl-0
    {
        margin-right:0rem!important;
        margin-left:0rem!important;
    }
    .service-box-box .mx-xl-0
    {
        margin-right:0rem!important;
        margin-left:0rem!important;
    }
    
    .home .home-text img
    {
        width: 200px; 
        height: 200px;  
        padding-bottom: 5px;      
    }
    .home-text{
        display: block;
        margin-left: 39%;
        margin-right: 39%;
    }
    .home-text h1{
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1.1;
        text-align: justify;
        padding-left: 10px;
        padding-top: 10px;
    }
    .home-text h2{
        font-size: 0.9rem;
        margin-left: -8px;
    }
    /*
    .home .home-text img
    { 
        padding-top: 3%;
        margin-top: 6%;
        margin-left: 5px; 
        padding-bottom: 10px;
        max-height: 270px;
        max-width: 270px;
    }
    .home-text{
        padding-left: 300px;
    }
    .home-text h1{
        font-size: 2rem;
        padding-left: 25px;
        padding-top: 10px;
    }
    .home-text h2{
        font-size: 1.5rem;
        padding-left: 17px;
    }
   */
    .header-keyword
    {
        font: bold 20px 'arial';
    }
    .second-header-keyword
    {
        font: 20px 'arial';
    }
    #theme-icon{
        width: 20px;
        height: auto;
    }
}

@media (max-width: 1152px)
{
    .service-box-box1 .mx-lg-5
    {
        margin-right:4rem!important;
        margin-left:4rem!important;
    }
    .service-box-box .mx-lg-5
    {
        margin-right:4.5rem!important;
        margin-left:4.5rem!important;
    }
    .home .home-text img
    {
        width: 200px; 
        height: 200px;  
        padding-bottom: 5px;      
    }
    .home-text{
        display: block;
        margin-left: 38%;
        margin-right: 38%;
    }
    .home-text h1{
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1.1;
        text-align: justify;
        padding-left: 9px;
        padding-top: 7px;
    }
    .home-text h2{
        font-size: 0.9rem;
        margin-left: -8px;
    }
    /*
    .home .home-text img
    { 
        padding-top: 3%;
        margin-top: 6%;
        margin-left: 5px; 
        padding-bottom: 10px;
        max-height: 270px;
        max-width: 270px;
    }
    .home-text{
        padding-left: 300px;
    }
    .home-text h1{
        font-size: 2rem;
        padding-left: 25px;
        padding-top: 10px;
    }
    .home-text h2{
        font-size: 1.5rem;
        padding-left: 17px;
    }
   */
    .header-keyword
    {
        font: bold 16px 'arial';
    }
    .second-header-keyword
    {
        font: 16px 'arial';
    }
    #theme-icon{
        width: 20px;
        height: auto;
    }
}

@media (max-width: 1056px) {
    .mx-lg-5
    {
        margin-right:4rem!important;
        margin-left:4rem!important;
    }
    .service-box-box .mx-lg-5
    {
        margin-right:3.9rem!important;
        margin-left:3.9rem!important;
    }
    .home .home-text img
    {
        width: 200px; 
        height: 200px;  
        padding-bottom: 5px;      
    }
    .home-text{
        display: block;
        margin-left: 37%;
        margin-right: 37%;
    }
    .home-text h1{
        font-size: 1.0rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1.1;
        text-align: justify;
        padding-left: 10px;
        padding-top: 7px;
    }
    .home-text h2{
        font-size: 0.9rem;
        margin-left: 1px;
    }
    /*
    .home .home-text img
    { 
        padding-top: 3%;
        margin-top: 6%;
        margin-left: 5px; 
        padding-bottom: 10px;
        max-height: 170px;
        max-width: 170px;
    }
    .home-text{
        padding-left: 260px;
    }
    .home-text h1{
        font-size: 1.4rem;
        padding-left: 10px;
        padding-top: 10px;
    }
    .home-text h2{
        font-size: 1.1rem;
        padding-left: 0px;
    }
    */
    .header-keyword
    {
        font: bold 16px 'arial';
    }
    .second-header-keyword
    {
        font: 16px 'arial';
    }
    #theme-icon{
        width: 20px;
        height: auto;
    }
}

@media (max-width: 1024px) {
    .service-box-box .mx-lg-5
    {
        margin-right:3.6rem!important;
        margin-left :3.6rem!important;
    }
    .home .home-text img
    {
        width: 200px; 
        height: 200px;  
        padding-bottom: 5px;      
    }
    .home-text{
        display: block;
        margin-left: 37%;
        margin-right: 37%;
    }
    .home-text h1{
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1.1;
        text-align: justify;
        padding-left: 10px;
        padding-top: 7px;
    }
    .home-text h2{
        font-size: 0.9rem;
        margin-left: 1px;
    }
    /*
    .home .home-text img
    { 
        padding-top: 3%;
        margin-top: 6%;
        margin-left: 5px; 
        padding-bottom: 10px;
        max-height: 170px;
        max-width: 170px;
    }
    .home-text{
        padding-left: 260px;
    }
    .home-text h1{
        font-size: 1.4rem;
        padding-left: 10px;
        padding-top: 10px;
    }
    .home-text h2{
        font-size: 1.1rem;
        padding-left: 0px;
    }
    */
    .header-keyword
    {
        font: bold 16px 'arial';
    }
    .second-header-keyword
    {
        font: 16px 'arial';
    }
    #theme-icon{
        width: 20px;
        height: auto;
    }
}

/* 
  ##Device = Low Resolution Tablets, Mobiles
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 360px) and (max-width: 411px){
  
    .col-xl-4
    {
        flex:0 0 auto;
        width:100%;
    }
    .service-box-box1 .mx-4
    {
        margin-right:0rem!important;
        margin-left:0rem!important
    }
    service-box-box .mx-4
    {
        margin-right:0rem!important;
        margin-left:0rem!important
    }
    .home .home-text img
    {
        width: 170px; 
        height: 170px;  
        padding-bottom: 5px;      
    }
    .home-text{
        display: block;
        margin-left: 19%;
        margin-right: 19%;
        width: 100%;
    }
    .home-text h1{
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1.1;
        text-align: justify;
        padding-left: 9px;
        padding-top: 7px;
    }
    .home-text h2{
        font-size: 1.1rem;
        margin-left: -15px;
    }
    /*
    .home .home-text img
    { 
        padding-top: 3%;
        margin-top: 8%;
        margin-left: 10px; 
        padding-bottom: 10px;
        max-height: 160px;
        max-width: 160px;
    }
    .home-text{
        padding-left: 45px;
    }
    .home-text h1{
        font-size: 1.5rem;
        padding-left: 7px;
        padding-top: 10px;
    }
    .home-text h2{
        font-size: 1.2rem;
        margin-left: -18px;
    }
    */
    .header-keyword
    {
        font: bold 16px 'arial';
    }
    .second-header-keyword
    {
        font: 16px 'arial';
    }
    #theme-icon{
        width: 20px;
        height: auto;
        margin-left: 5px;
        margin-right: 5px;
    }
    .about{
            grid-template-columns: 1fr;
    }
    .about-img{
            text-align: center;
            order: 2;
    }
    .about-img img{
            width: 100%;
            height: auto;
            max-width: 100%;
    }
    .contact{
            grid-template-columns: 1fr;
    }
    #menu-icon{
		display: block;
	}
	.main-navlist{
		position: absolute;
		top: -1000px;
		right: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		background: #1B1B1B;
		text-align: left;
		transition: all .45s ease;
	}
	.main-navlist a{
		display: block;
		margin: 17px;
		font-size: 20px;
		transition: all .45s ease;
		color: var(--header-color);
	}
	.main-navlist a:hover{
		color: var(--main-color);
	}
	.main-navlist.open{
		top: 100%;
	}
        .read{
            margin-left: 24px;
            margin-right: 24px;
        }
        .read:hover{
            letter-spacing: 0px;
            background: var(--learn-color);
            color: var(--second-color);
        }
        
}
@media (min-width: 412px) and (max-width:539px)
{
    .col-xl-4
    {
        flex:0 0 auto;
        width:100%;
    }
    .service-box-box1 .mx-4
    {
        margin-right:1rem!important;
        margin-left:1rem!important;
    }
    service-box-box .mx-4
    {
        margin-right:0rem!important;
        margin-left:0rem!important;
    }
    .home .home-text img
    {
        width: 250px; 
        height: 250px;  
        padding-bottom: 5px;      
    }
    .home-text{
        display: block;
        margin-left: 10%;
        margin-right: 10%;
        width: 100%;
    }
    .home-text h1{
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1.1;
        text-align: justify;
        padding-left: 35px;
        padding-top: 7px;
    }
    .home-text h2{
        font-size: 1.3rem;
        margin-left: 5px;
    }
    /*
    .home .home-text img
    { 
        padding-top: 3%;
        margin-top: 6%;
        margin-left: 3px; 
        padding-bottom: 10px;
        max-height: 200px;
        max-width: 200px;
    }
    .home-text{
        padding-left: 55px;
    }
    .home-text h1{
        font-size: 1.7rem;
        padding-left: 4px;
        padding-top: 10px;
    }
    .home-text h2{
        font-size: 1.3rem;
        margin-left: -18px;
    }
    */
    .header-keyword
    {
        font: bold 16px 'arial';
    }
    .second-header-keyword
    {
        font: 16px 'arial';
    }
    #theme-icon{
        width: 20px;
        height: auto;
        margin-left: 5px;
        margin-right: 5px;
    }
    .about{
            grid-template-columns: 1fr;
    }
    .about-img{
            text-align: center;
            order: 2;
    }
    .about-img img{
            width: 100%;
            height: auto;
            max-width: 100%;
    }
    .contact{
            grid-template-columns: 1fr;
    }
    #menu-icon{
		display: block;
	}
	.main-navlist{
		position: absolute;
		top: -1000px;
		right: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		background: #1B1B1B;
		text-align: left;
		transition: all .45s ease;
	}
	.main-navlist a{
		display: block;
		margin: 17px;
		font-size: 20px;
		transition: all .45s ease;
		color: var(--header-color);
	}
	.main-navlist a:hover{
		color: var(--main-color);
	}
	.main-navlist.open{
		top: 100%;
	}
        .read{
            margin-left: 42px;
            margin-right: 42px;
        }
        .read:hover{
            letter-spacing: 0px;
            background: var(--learn-color);
            color: var(--second-color);
        }
        .services-content .mhw-image-logo
        {
            width: 100%;
            height: 100%;
            padding-bottom: 20px;
        }
        .services-content .orisoft-image-logo{
            width: 100%;
            height: 100%;
            padding-bottom: 20px;
        }
}
@media (min-width: 540px) and (max-width: 767px)
{
    .col-xl-4
    {
        flex:0 0 auto;
        width:100%;
    }
    .service-box-box1 .mx-4
    {
        margin-right:4.5rem!important;
        margin-left:4.5rem!important
    }
    .service-box-box .mx-4
    {
        margin-right:4.5rem!important;
        margin-left:4.5rem!important
    }
    .home .home-text img
    {
        width: 200px; 
        height: 200px;  
        padding-bottom: 5px;      
    }
    .home-text{
        display: block;
        margin-left: 24%;
        margin-right: 24%;
        width: 70%;
    }
    .home-text h1{
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1.1;
        text-align: justify;
        padding-left: 15px;
        padding-top: 7px;
    }
    .home-text h2{
        font-size: 1.3rem;
        margin-left: -15px;
    }
    /*
    .home .home-text img
    { 
        padding-top: 3%;
        margin-top: 6%;
        margin-left: 3px; 
        padding-bottom: 10px;
        max-height: 180px;
        max-width: 180px;
    }
    .home-text{
        padding-left: 103px;
    }
    .home-text h1{
        font-size: 1.5rem;
        padding-left: 5px;
        padding-top: 10px;
    }
    .home-text h2{
        font-size: 1.2rem;
        margin-left: -18px;
    }
    */
    .header-keyword
    {
        font: bold 16px 'arial';
    }
    .second-header-keyword
    {
        font: 16px 'arial';
    }
    #theme-icon{
        width: 20px;
        height: auto;
        margin-left: 5px;
        margin-right: 5px;
    }
    .about{
            grid-template-columns: 1fr;
    }
    .about-img{
            text-align: center;
            order: 2;
    }
    .about-img img{
            width: 100%;
            height: auto;
            max-width: 100%;
    }
    .contact{
            grid-template-columns: 1fr;
    }
    #menu-icon{
		display: block;
	}
	.main-navlist{
		position: absolute;
		top: -1000px;
		right: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		background: #1B1B1B;
		text-align: left;
		transition: all .45s ease;
	}
	.main-navlist a{
		display: block;
		margin: 17px;
		font-size: 20px;
		transition: all .45s ease;
		color: var(--header-color);
	}
	.main-navlist a:hover{
		color: var(--main-color);
	}
	.main-navlist.open{
		top: 100%;
	}
        .read{
            margin-left: 85px;
            margin-right: 85px;
        }
        .read:hover{
            letter-spacing: 0px;
            background: var(--learn-color);
            color: var(--second-color);
        }
        .services-content .mhw-image-logo
        {
            width: 100%;
            height: 100%;
            padding-bottom: 20px;
        }
        .services-content .orisoft-image-logo{
            width: 100%;
            height: 100%;
            padding-bottom: 20px;
        }
}

/* Responsive Design
@media only screen and (max-width: 1480px){
	main-header{
		padding: 12px 2.5%;
		transition: .1s;
	}
	main-header.sticky{
		padding: 10px 2.5%;
		transition: .1s;;
	}
	section{
		padding: 110px 3% 60px;
	}
	.end{
		padding: 15px 3%;
	}
}

@media only screen and (max-width: 1100px){
	:root{
                transition: .1s;
	}
        .home-text h1{
                font-size: 2rem;
        }
        .home-text p{
                font-size: 1rem;
        }
	.home-text h3{
		font-size: 2.5rem;
	}
	.home{
		height: 87vh;
	}
        .about-text h2{
                font-size: 2.5rem;
        }
        .about-text p{
                font-size: 1rem;
        }
        .main-text h2{
                font-size: 2.5rem;
        }
        .contact-text h2{
                font-size: 2.5rem;
        }
        .contact-text p{
                font-size: 1rem;
        }
}

@media only screen and (max-width: 920px){
	.about{
		grid-template-columns: 1fr;
	}
	.about-img{
		text-align: center;
		order: 2;
	}
	.about-img img{
		width: 100%;
		height: auto;
		max-width: 100%;
	}
	.contact{
		grid-template-columns: 1fr;
	}
        .home .home-text img
        { 
            padding-top: 3%;
            margin-top: 6%;
            margin-left: 185px; 
            padding-bottom: 10px;
            max-height: 140px;
            max-width: 140px;
        }
        .home-text{
            padding-left: 10px;
        }
        .home-text h1{
            font-size: 1.5rem;
            padding-left: 74px;
            padding-top: 10px;
        }
        .home-text h2{
            font-size: 1.3rem;
            padding-left: 55px;
        }
}

@media only screen and (max-width: 840px){
	#menu-icon{
		display: block;
	}
	.main-navlist{
		position: absolute;
		top: -1000px;
		right: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		background: #1B1B1B;
		text-align: left;
		transition: all .45s ease;
	}
	.main-navlist a{
		display: block;
		margin: 17px;
		font-size: 20px;
		transition: all .45s ease;
		color: var(--header-color);
	}
	.main-navlist a:hover{
		color: var(--main-color);
	}
	.main-navlist.open{
		top: 100%;
	}
        .home .home-text img
        { 
            padding-top: 3%;
            margin-top: 6%;
            margin-left: 185px; 
            padding-bottom: 10px;
            max-height: 140px;
            max-width: 140px;
        }
        .home-text{
            padding-left: 10px;
        }
        .home-text h1{
            font-size: 1.5rem;
            padding-left: 74px;
            padding-top: 10px;
        }
        .home-text h2{
            font-size: 1.3rem;
            padding-left: 55px;
        }
}
*/





/* WHY US SECTION*/

#why-us {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ffffffcc; /* Light gray background */
    color: black; /* Dark gray text */
    scroll-snap-align: start; /* Add scroll snap */
    margin: auto 0;
    padding-left: 10%;
    padding-right: 10%;
}
#why-us h1 {
    font-size: 46px;
    font-weight: 600;
    letter-spacing: -3.2px;
    line-height: 76.8px;
    margin-bottom: 20px;
    color: #345587;
}
#why-us ul {
    list-style-type: none;
    padding: 0;
}
#why-us li {
    font-size: 1.5em;
    margin-bottom: 10px;
     color: black;
    
}
#why-us li::before {
    content: "✔";
    color: var(--main-color);
    margin-right: 10px;
}

  
#why-us .social-proof {
    width: 100%; /* Full width of the screen */
    display: flex;
    justify-content: center; /* Align images to the start of the container */
    align-items: center;
    flex-wrap: nowrap; /* Prevent images from wrapping onto the next line */
    margin-top: 10px;
    padding: 0; /* Add padding to the left side */
    overflow-y: auto; /*Add scrollbar if content overflows */
    scrollbar-color: #007 white;
    position:relative;
    overscroll-behavior-y: auto; /* Allow scrolling */
    padding: 1em;
    
   }
   
   
   

/*
@keyframes slide {
  0% { transform: translateX(100%); }
  50% { transform: translateX(-100%); }
  100% { transform: t   ranslateX(100%); }
}
*/

#why-us .social-proof img {
  width: 10rem;
  height: auto;
  padding-left: 1em;
  padding-right: 1em;
  /*animation: slide 20s linear infinite;  Apply the animation */
}


@media (max-width: 600px) { /* Adjust this value for the breakpoint */
   #why-us .social-proof {
    width: 90vw; /* Width for mobile */
    justify-content: flex-start; /* Align images to the start of the container */

   }
   #why-us .social-proof img {
    width: 100px;
    height: auto;


    /*animation: slide 20s linear infinite;  Apply the animation */
  }
  #why-us .social-proof-row{
    
    width: 100%;
}
}

@media (max-width: 376px) {
    #home h2 {
        color: white;
        font-size: 48px;
        font-weight: 600;
        letter-spacing: -1.6px;
        line-height: 38.4px;
        display: block;
        margin-left: 20%;
        margin-right: 20%;
    }
    #home p {
        margin-left: 10%;
        margin-right: 10%;
    }

}


@media (max-width: 770px) {
    html, body {
    overflow-x: hidden;
    }
  }

