
/*
 Theme Name:     Molti
 Theme URI:      https://samarj.com/molti
 Description:    A Modern Design Multipurpose Business Child Theme for Divi.
 Author:         SamarJ
 Author URI:     https://samarj.com/
 Template:       Divi
 Version:        1.1.1
*/

/* 
------------------------------------------------------- */

/*Font to Proxima Soft*/
h1, h2, h3, h4, h5, h6 {
	font-family: proxima-soft, sans-serif !important;
}

p, a {
	font-family: proxima-soft, sans-serif !important;
}

body, input, textarea, select {
	font-family: proxima-soft, sans-serif !important;
}

/*No Horizontal Scroll bar*/
#page-container {
	overflow: hidden;
}

/*Fixing the Button Position for Firefox for Newsletter*/
@-moz-document url-prefix() {
	.molti-newsletter.et_pb_newsletter .et_pb_button {
		margin-top: -69px !important;
	}
	
	.molti-newsletter-single-post.et_pb_newsletter .et_pb_button {
		margin-top: -83px !important;
	}
}

.molti-header-5 .et_mobile_menu {
	width: 280% !important;
	margin-left: -195px;
	margin-top: 45px;
}

/*Mobile Menu Customizations*/

/*To add Box Shadow and Corner Radius to Mobile Menu*/
.et_mobile_menu {
	margin-top: 15px;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, .21) 0px 15px 30px;
}

/*This will add Padding and Margin (Spacing) around the Mobile Menu Items*/
.et_mobile_menu li a {
	padding: 13px 5%;
	margin: 10px 0;
}

/*To hide the Sub Menu in mOBILE*/
#page-container .mobile_nav li ul.hide {
	display: none !important;
}

/**** This adjusts the positioning and the background transparency of the parent menu item on mobile ****/
#page-container .mobile_nav .menu-item-has-children {
	position: relative;
}

#page-container .mobile_nav .menu-item-has-children > a {
	background: transparent;
}

/**** This styles the icon and moves it to the right ****/
#page-container .mobile_nav .menu-item-has-children > a + span {
	position: absolute;
	right: 0;
	top: 0;
	padding: 10px 20px;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	z-index: 3;
}

.menu-closed {
	border-left: 1px solid #eee;
}

/**** Styling for the Sub Menu Toggle Icon in Mobile Menu ****/
#page-container span.menu-closed:before {
	content: "\"";
	display: block;
	color: #000;
	font-size: 14px;
	font-family: ETmodules;
	transition: .3s ease;
	background: rgba(255, 128, 87, .39);
	color: #f5701e;
	text-align: center;
	border-radius: 100px;
	width: 26px;
}

#page-container span.menu-closed.menu-open:before {
	content: "\"";
	transform: rotate(180deg);
	background: #ff8057;
	color: #fff;
}

/*For Link Animation - Add class to any module "link effect" to add this effect*/
.link-effect a {
	cursor: pointer;
	padding-bottom: 5px;
	transition: all .2s linear;
	background: linear-gradient(to bottom, #ff8057 0%, #ff8057 98%);
	/*Change color of the underline from here*/
	background-size: 0px 2px;
	background-repeat: no-repeat;
	background-position: left 100%;
}

.link-effect a:hover {
	background-size: 100% 2px;
}

/*Link effect CSS ends*/

/*Link effect - white underline add this class "link-effect-white"*/
.link-effect-white a {
	cursor: pointer;
	padding-bottom: 5px;
	transition: all .2s linear;
	background: linear-gradient(to bottom, #fff 0%, #fff 98%);
	/*Change color of the underline from here*/
	background-size: 0px 2px;
	background-repeat: no-repeat;
	background-position: left 100%;
}

.link-effect-white a:hover {
	background-size: 100% 2px;
}

/*END HERE*/

/*Dropdown Menu Animation and styling for Main Header - Desktop*/
.et-menu-nav .nav li li {
	padding: 0 !important;
}

/*Change the width of the Sub Menu*/
.et-menu-nav .nav li ul {
	width: 250px !important;
}

/*Remove the default hover background for Dropdown Menu Link*/
.et-menu-nav .nav ul li a:hover {
	background-color: transparent;
}

/*To add more padding and Spacing around menu Item*/
.et-menu-nav .et-menu li li a {
	padding: 10px 20px;
	margin: 3px 0;
}

/*This will add arrow Line to active Dropdown Menu link*/
.et-menu-nav .et_pb_menu .nav li ul.sub-menu li.current-menu-item a:before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	top: 0;
	bottom: 0;
	left: 0px;
	transition: all .2s ease-in-out;
	background: #f5701e;
	width: 4px;
	border-radius: 0px 3px 3px 0px;
}

/*Line shows on Hover on Sub Menu Link Hover*/
.et-menu-nav .et-menu li li a:before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	top: 0;
	bottom: 0;
	left: 0px;
	transition: all .2s ease-in-out;
	border-radius: 0px 3px 3px 0px;
}

.et-menu-nav .et-menu li li a:hover:before {
	background: #f5701e;
	width: 4px;
}

/*To add Entrance and Exit Animation to Dropdown Menu*/

/*Header Codes - All the Codes for Main Header here*/
.molti-custom-dropdown-content {
	-webkit-animation: scale-in-tr .3s cubic-bezier(.25, .46, .45, .94) both;
	animation: scale-in-tr .3s cubic-bezier(.25, .46, .45, .94) both;
}

@-webkit-keyframes scale-in-tr {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		-webkit-transform-origin: 100% 0%;
		transform-origin: 100% 0%;
		opacity: 1;
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: 100% 0%;
		transform-origin: 100% 0%;
		opacity: 1;
	}
}

@keyframes scale-in-tr {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		-webkit-transform-origin: 100% 0%;
		transform-origin: 100% 0%;
		opacity: 1;
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transform-origin: 100% 0%;
		transform-origin: 100% 0%;
		opacity: 1;
	}
}

/*END*/

/*Keyframes for Dropdown menu Entrance Animation*/
@-webkit-keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

/*Keyframes for Dropdown Menu Exit Animation*/
@-webkit-keyframes fade-out-bottom {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
		opacity: 0;
	}
}

@keyframes fade-out-bottom {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
		opacity: 0;
	}
}

/*Entrance Animation for Dropdown Menu*/
.et-menu-nav .et-show-dropdown .sub-menu {
	-webkit-animation: fade-in-bottom .3s cubic-bezier(.39, .575, .565, 1) both;
	animation: fade-in-bottom .3s cubic-bezier(.39, .575, .565, 1) both;
}

/*To add Box Shadow Corner Radius and Exit Animation to Dropdwon Menu*/
.et-menu-nav .sub-menu {
	box-shadow: 0px 5px 40px rgba(0, 0, 0, .17) !important;
	border-radius: 8px;
	-webkit-animation: fade-out-bottom .7s cubic-bezier(.25, .46, .45, .94) both;
	animation: fade-out-bottom .7s cubic-bezier(.25, .46, .45, .94) both;
}

/*Will add Arrow indicator to Dropdown Menu*/
.et-menu-nav .sub-menu:after {
	content: "";
	display: block;
	position: absolute;
	left: 11%;
	top: -22px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
	border-left: 10px solid transparent;
	z-index: 1;
}

/*Stylings for the Homepage Starts here*/

/*This will fix the issue with the Buttom Module Animation*/
.et_pb_button_module_wrapper {
	transition: all .3s ease !important;
}

/*To make any column vertically centered - Enable Equal Column height in the Row Settings*/
.et_pb_equal_columns>.et_pb_column {
	margin-top: auto;
	margin-bottom: auto;
}

/*To make buttons inline anywhere, add the class "inline-buttons-row" to the Row*/
@media only screen and (min-width:800px) {
	.inline-buttons-row .et_pb_button_module_wrapper {
		display: inline-block;
	}
}

/*Styling for the ""Homepage"" END here.*/

/*Stylings for the "Contact Page"" Starts here*/

/*Keyframes for the Button to show with Animation - entrance*/
@-webkit-keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

/*Keyframe for the button to go away with animation - exit*/
@-webkit-keyframes fade-out-bottom {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
		opacity: 0;
	}
}

@keyframes fade-out-bottom {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
		opacity: 0;
	}
}

/*FAQ Toggle Module - Desiging the Toggle Module*/
.molti-faq .et_pb_toggle_title:before {
	content: "L" !important;
	font-weight: 900;
	transition: .3s ease;
}

/*Stylings for when the Toggle is open*/
.molti-faq.et_pb_toggle_open .et_pb_toggle_title:before {
	transform: rotate(180deg);
	content: "\"" !important;
	color: #ff8057 !important;
}

/*Keyframes for animation for all elements in member card*/
@-webkit-keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fade-in-bottom {
	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

/*Styling for About Page Ends here*/

/*Styling for the Services Page Starts here*/

/*This will add a white background to blurb image when hover to service card*/
.service-card-2:hover .et_pb_main_blurb_image {
	background: #fff;
	width: 50px;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, .36);
}

/*Animation keyframes*/
@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}
	
	100% {
		opacity: 1;
	}
}

/*Blog Wrapped Styling*/

/*move wrapped title, meta, and text up over the image*/
.molti-blog-content {
	position: absolute;
	bottom: -10%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 30px;
	z-index: 1;
}

/*keep the moved items positioned with their parent items*/
.molti-blog-latest .et_pb_blog_grid article {
	position: relative;
}

/*remove spacing around entire blog post*/
.molti-blog-latest .et_pb_blog_grid .et_pb_post {
	padding: 0px;
}

/*remove negative margins on blog featured image*/
.molti-blog-latest .et_pb_image_container {
	margin: 0;
}

/*remove the margin below the featured image frame*/
.molti-blog-latest .et_pb_post .entry-featured-image-url {
	margin: 0;
}

/*Adds overlay to the Latest Post Featured Image*/
.molti-blog-latest .entry-featured-image-url::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
}

@media only screen and ( max-width: 479px ) {
	.molti-blog-content {
		bottom: -45%;
	}
}

/*Blog List layout Styling*/

/*add media query so changes only affect tablet and desktop*/

/*set the image width*/
.molti-blog-list .entry-featured-image-url {
	width: 25%;
	float: left;
	margin-bottom: 0 !important;
}

/*set the details width*/
.molti-blog-list .entry-title, .molti-blog-list .post-meta, .molti-blog-list .post-content {
	width: 75%;
	float: left;
	padding-left: 10px;
	margin-top: -5px;
}

/*To reduce bottom margin of the list blog*/
.molti-blog-list .et_pb_post {
	margin-bottom: 27px;
	-webkit-animation: fade-in .5s cubic-bezier(.39, .575, .565, 1) both;
	animation: fade-in .5s cubic-bezier(.39, .575, .565, 1) both;
}

/*Blog Grid layout Styling*/

/*make the parts of the blog post flexible*/
.molti-blog-grid .et_pb_post {
	display: flex;
	flex-direction: column;
	position: relative;
}

/*featured image*/
.molti-blog-grid .et_pb_image_container, .molti-blog-grid .entry-featured-image-url {
	order: 2;
}

/* post title*/
.molti-blog-grid .entry-title {
	order: 3;
}

/* post meta*/
.molti-blog-grid .post-meta {
	order: 1;
	z-index: 1;
	margin: -10px 0px -13px -5px;
}

/*This will give Blog Post & Portfolio Meta Link button looks of Molti Theme */
.et_pb_portfolio_item .post-meta a {
	background-image: linear-gradient(151deg, #32b5e3 38%, #32b5e3 100%);
	padding: 6px 15px;
	color: #fff !important;
	border-radius: 5px;
	margin-left: -10px;
	margin-right: 10px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .3);
	transition: .2s ease;
	text-transform: capitalize;
	font-weight: bold;
	font-size: 10px;
}

.molti-blog-grid .post-meta a {
	background-image: linear-gradient(151deg, #32b5e3 38%, #32b5e3 100%) !important;
	padding: 6px 15px;
	color: #fff !important;
	border-radius: 5px;
	margin-left: -10px;
	margin-right: 10px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .3);
	transition: .2s ease;
	text-transform: capitalize;
	font-weight: bold;
	font-size: 13px;
}

/*Some adjustments for Meta links*/
.et_pb_portfolio_item .post-meta a {
	position: relative;
	left: 10px;
	top: 10px;
	margin-left: -6px !important;
	margin-right: 7px !important;
}

/*To add hover effect to meta links*/
.molti-blog-grid .post-meta a:hover, .et_pb_portfolio_item .post-meta a:hover {
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, .3);
}

/*To style the Post publish date for Blog Grid*/
.molti-blog-grid .published {
	background: #fff;
	position: absolute;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, .1);
	top: 155px;
	right: -18px;
	font-weight: bold;
	color: #000;
	letter-spacing: 1px;
}

/*Reordering the Blog Post Content*/

/*excerpt and button*/
.molti-blog-grid .post-content {
	order: 4;
}

/*Styling for Single Post page starts here*/

/*To add button looks to the Cateofy and Tags*/
.molti-category a, .molti-tags a {
	background-image: linear-gradient(151deg, #33b4e3 38%, #33b4e3 100%);
	color: #fff;
	padding: 6px 15px;
	border-radius: 5px;
	margin-left: -10px;
	margin-right: 20px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .2);
	transition: .2s ease;
}

/*hover effect*/
.molti-category a:hover, .molti-tags a:hover {
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, .3);
}

/*Adjusting the Tags positioning*/
.molti-tags a {
	margin: 0 0 0 10px !important;
}

/*Post Navigation Module on single post page styling*/
.nav-label {
	position: relative;
	top: 13px;
	left: -2px;
}

@media only screen and ( max-width: 479px ) {
	.nav-label {
		top: 0px;
	}
	
	/*Adjusting the the Comments section styling for single post page*/
	#respond .comment-form-comment {
		width: 100% !important;
		margin-right: 0px;
	}
	
	/*To add active indicator to the current tab link on single post page*/
	
	/*To move the active indicator to Discussion link */
	.active-link-discussion:after {
		left: 155px;
	}
}

@media only screen and ( min-width: 768px ) and ( max-width: 980px ) {
	.active-link-discussion:after {
		left: 200px;
	}
}

@media only screen and ( min-width: 480px ) and ( max-width: 767px ) {
	.active-link-discussion:after {
		left: 155px;
	}
}

/*End adjusting indicator*/

/*To change the post of next label of post navigation module*/
.nav-next .nav-label {
	left: -10px;
}

/*Adjusting animation for tabs*/
.molti-comments, .molti-article {
	animation: .3s;
}

/*CSS for Showcase Page*/

/*To hide the "View Demo" text by default*/
.demo-text {
	opacity: 0;
}

/*To show it on hover*/
.image:hover .demo-text {
	opacity: 1;
	transition: .2s ease;
}

mark-showcase {
	background: rgba(255, 128, 87, .2);
	padding: 9px 30px;
	border-radius: 100px;
	color: #ff8057;
}

mark1-showcase {
	background: #ff8057;
	padding: 9px 30px;
	border-radius: 100px;
	color: #fff;
}

/*To add a close Icon when clicked on the Info Floating Icon on SHowcase Page*/
.open:before {
	content: "M";
	position: absolute;
	font-family: ETMOdules;
	z-index: 999;
	background: #fff;
	padding: 5px;
	font-size: 30px;
	right: 8px;
	color: #ff8057;
	font-weight: bold;
}
