/*
===================================================
    Case Study.CSS
    --------------
    - This CSS file works only for case-study.
===================================================
*/

/* Box Element CSS */

body #mk-theme-container .mk-page-section .box-row{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 50%;
	background: #fff;
	max-width: 60%;
	transform: translateX(-50%);
	padding: 60px 40px;
	box-shadow: 0px 18px 20px rgba(0,0,0,0.1);
	overflow: hidden;
}

body #mk-theme-container .mk-page-section .box-row.yellow-row{
	background: #F7D54E;
}

body #mk-theme-container .mk-page-section .box-row .col-2{
	padding-right: 80px;
}

body #mk-theme-container .mk-page-section .box-row .main-heading{
	display: flex;
	align-items: center;
	justify-content: center;
}

body #mk-theme-container .mk-page-section .box-row p{
	margin-bottom: 0px;
}

body #mk-theme-container .mk-page-section .box-row svg{
	position: absolute;
	z-index: -1;
}

/* Shape Backgrounds CSS */

body #mk-theme-container .circle-shape-bg,
body #mk-theme-container .rectangle-shape-bg{
	position: relative;
	overflow: visible;
}

body #mk-theme-container .circle-shape-elem{
	position: absolute;
	top: 20px;
	left: -70px;
	width: 160px;
	height: 160px;
	background: #F7D54E;
	border-radius: 50%;
	z-index: -1;
}

body #mk-theme-container .rectangle-shape-bg.mk-image .mk-image-inner{
	overflow: visible;
	padding-bottom: 40px;
}

body #mk-theme-container .rectangle-shape-elem{
	position: absolute;
	top: 160px;
	right: -60px;
	width: 120px;
	height: 95%;
	background: #F7D54E;
	z-index: -1;
}

/* Headings Backgrounds */

body .heading-side-bg{
	position: relative;
	max-width: 48vw;
	margin: 0 auto;
}

body .heading-side-bg .heading-side-elem{
	position: absolute;
	display: flex;
	align-items: center;
	top: 0;
	left: -15vw;
	height: 100%;
	width: 25vw;
    z-index: -1;
}

body .heading-side-bg .heading-side-elem .circle-bg-elem{
	position: absolute;
	height: 50px;
	width: 50px;
	background: #202945;
	border-radius: 50%;
}

body .heading-side-bg .heading-side-elem .line-bg-elem{
	position: absolute;
	height: 2px;
	width: 100%;
	background: #202945;
    left: -25vw;
}

/* First Fold Section CSS */

body #mk-theme-container .first-fold-section{
	position: relative;
}


body #mk-theme-container .first-fold-section .box-row{
	margin-bottom: 40vh;
}

body #mk-theme-container .first-fold-section .box-row svg{
	top: 5%;
	left: -4%;
	width: 30%;
	height: 90%;
	opacity: 0.25;
}

/* Approach Us Section CSS */

body #mk-theme-container .approach-us-section{
	position: relative;
}

body #mk-theme-container .approach-us-section:before{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	height: 120px;
	width: 100%;
	background: #FBF9F2;
}

/* Testimonial Section CSS */

body #mk-theme-container .testimonial-section .testimonial-text svg{
	display: none;
}

body #mk-theme-container .testimonial-section .testimonial-name p{
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 0px;
}

body #mk-theme-container .testimonial-section .testimonial-triangle-elem{
	position: relative;
}

body #mk-theme-container .testimonial-section .testimonial-triangle-elem svg{
	position: absolute;
	top: -5%;
	left: -20%;
	width: 150%;
	height: 150%;
	z-index: -1;
}

/* Highlights Section CSS */

body #mk-theme-container .highlights-section{
	position: relative;
}

body #mk-theme-container .highlights-section .box-row{
	top: -120px;
}

body #mk-theme-container .highlights-section .box-row svg{
	top: 5%;
	right: -4%;
	width: 30%;
	height: 90%;
	opacity: 1;
}

/* Back Work CSS */

body .first-fold-section .back-to-work-row{
	position: absolute;
	top: 0;
	left: 0;
	width: 20%;
}

body .first-fold-section .back-to-work-row .back-work-html{
	position: relative;
	margin-bottom: 0px;
}

body .first-fold-section .back-to-work-row .back-work-html .back-to-work-text{
	position: relative;
	display: flex !important;
	align-items: center;
	justify-content: center;
	margin-top: 70px;
}

body .first-fold-section .back-to-work-row .back-work-html .back-to-work-text svg{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	background: #202945;
	border-radius: 50%;
	padding: 15px;
}

body .first-fold-section .back-to-work-row .back-work-html .back-to-work-text svg path,
body .first-fold-section .back-to-work-row .back-work-html .back-to-work-text svg rect{
	fill: #FFF;
}

body .first-fold-section .back-to-work-row .back-work-html .back-to-work-text p{
	text-align: center;
	font-weight: 600;
	margin-top: 5px;
}

body .back-to-work-link a{
	position: relative;
	font-weight: 600;
}

body .back-to-work-link a:before{
    position: absolute;
    content: '';
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 100%;
    background: #202945;
}

/* Mid Large Screen Desktops */

@media only screen and (min-width: 1440px){

}

/* Large Screen Desktops */

@media only screen and (min-width: 1920px){

}

/* Mobile Devices */

@media only screen and (max-width: 765px){

    /* Box Element CSS */

	body #mk-theme-container .mk-page-section .box-row{
		display: block;
		max-width: 90%;
		padding: 40px 20px;
	}

	body #mk-theme-container .mk-page-section .box-row .col-1{
		margin-bottom: 10px;
	}

	body #mk-theme-container .mk-page-section .box-row .col-2{
		padding-right: 0px;
	}

	/* First Fold Section CSS */

	body #mk-theme-container .first-fold-section{
		min-height: 100vh !important;
	}

	body #mk-theme-container .first-fold-section .box-row{
		margin-bottom: 15vh;
	}

	body #mk-theme-container .first-fold-section:before{
		height: 35%;
		width: 100%;
	}

    /* Headings Backgrounds CSS */

	body .heading-side-bg{
		max-width: 60vw;
	}

    /* Highlights CSS */

    body #mk-theme-container .highlights-section .box-row{
    	top: -60px;
    }

    /* Back Work CSS */

	body .first-fold-section .back-to-work-row{
		position: relative;
		width: 25%;
	}
}
