*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins', 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: #e0ac1c;
        --learn-color: #656565;
        --header-color: #fff;
        --read-color: #fff;
        --background-image: url(../images/backgroundimage.png);
        --invert: invert(0%);
}
.dark{
        --bg-color: #2a2a2a;
    	--second-bg-color: gray;
    	--text-color: #fff;
    	--second-color: #ccc;
    	--main-color: #e0ac1c;
        --learn-color: #ffffff99;
        --header-color: #fff;
        --read-color: #000;
        --background-image: url(../images/backgroundimage.png);
        --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%;
	border-bottom: 1px solid transparent;
	transition: all .45s ease;
}
#theme-icon{
        width: 25px;
        height: 25px;
        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{
	color: var(--header-color);
	font-size: 17px;
	font-weight: 500;
	margin: 0 10px;
	transition: all .45s ease;
        text-decoration: none;
}
.main-navlist a:hover{
	color: var(--main-color);
}
#menu-icon{
	font-size: 35px;
	color: #fff;
	z-index: 10001;
	cursor: pointer;
	margin-left: 25px;
	display: none;
}
/* Navigation end */
/*Home*/
.home
{
    padding: 90px 15% 120px;
}
.about
{
    padding: 160px 15% 120px;
}
.services
{
    padding: 160px 15% 120px;
}
.contact
{
    padding: 160px 15% 120px;
}
.home{
	position: relative;
	height: 100vh;
	width: auto;
	background-image: var(--background-image);
	background-size: cover;
	background-position: center;
	align-items: center;
	justify-content: flex-start;
}
.home .home-text img
{
        width: 270px; 
        height: 270px;  
        padding-bottom: 5px;      
}
.slide{
	margin-bottom: 20px;
}
.home-text{
    display: block;
    margin-left: 37%;
    margin-right: 37%;
}
.home-text h1{
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-color);
	line-height: 1.1;
	text-align: justify;
	padding-left: 20px;
	padding-top: 10px;
}

/* 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;
}
.about-img img{
	max-width: 530px;
	height: auto;
	width: 100%;
	border-radius: 8px;
}
.about-text h2{
        color: var(--text-color);
	font-size: 3rem;
	line-height: 1;
}
.about-text h4{
	font-size: 24px;
	font-weight: 600;
	color: var(--text-color);
	line-height: 1.7;
	margin: 15px 0 30px;
}
.about-text p{
	color: var(--text-color);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 4rem;
}
.about-text .services-keyword{
    font-size: 32px;
    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: 50%;
        padding-bottom: 20px;
}
.services-content .orisoft-image-logo{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
        height: 50%;
        padding-bottom: 20px;
}

.services-box{
	background: var(--second-bg-color);
	padding: 35px 45px;
	border-radius: 8px;
	transition: all .45s ease;
}
.services-box h3{
        text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 15px;
}
.services-box img{
    width: 100px;
    height: 100px;
}
.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%);}


.read{
	display: inline-block;
	padding: 8px 18px;
	background: #333333;
	color: #ccc;
	font-size: 14px;
	font-weight: 500;
	border-radius: 8px;
	transition: all .45s ease;
}
.read:hover{
	letter-spacing: 1px;
	background: var(--learn-color);
	color: var(--read-color);
}
.services-box:hover{
	transform: translateY(-8px);
	cursor: pointer;
}
/*About us & Services end */

/* Contact section */
.contact{
	background: var(--second-bg-color);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 2.5rem;
}
.contact-text h4{
	color: var(--text-color);
	margin: 18px 0;
	font-size: 20px;
	font-weight: 600;
}
.contact-text h2{
        color: var(--text-color);
	font-size: 3rem;
	line-height: 1;
}
.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);
}
.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: 20px;
    }
}

@media (max-width: 1408px)
{
    .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: 20px;
    }
}

@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: 20px;
    }
}

@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: 20px;
    }
}

@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: 20px;
    }
}

/* 
  ##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: 20px;
        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);
        }
        .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: 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: 20px;
        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: 20px;
        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;
        }
}
*/