/*
Theme Name:		Mischa Communications v3
Author:			801red
Author URI: 	http://www.801red.com
Version: 		1.0
Text Domain: 	mischa_v3
*/

/* IMPORTS */
@import url(assets/css/reset.css);
/* Improved Animations Stylesheet from https://element.how/elementor-improve-entrance-animations/ , works for the 'fade' animations */
@keyframes fadeDown {from {opacity: 0;transform: translate3d(0,-30px,0) }to {opacity: 1;transform: none }}.elementor-element.fadeInDown {animation-name: fadeDown }@keyframes fadeLeft {from {opacity: 0;transform: translate3d(-30px,0,0) }to {opacity: 1;transform: none }}.elementor-element.fadeInLeft {animation-name: fadeLeft }@keyframes fadeRight {from {opacity: 0;transform: translate3d(30px,0,0) }to {opacity: 1;transform: none }}.elementor-element.fadeInRight {animation-name: fadeRight }@keyframes fadeUp {from {opacity: 0;transform: translate3d(0,30px,0) }to {opacity: 1;transform: none }}.elementor-element.fadeInUp {animation-name: fadeUp }


/* Elementor off-canvas overlay hack */
.elementor-widget-off-canvas .e-off-canvas[aria-hidden="true"] .e-off-canvas__overlay {
    visibility: hidden !important;
    opacity: 0 !important;
    transition: visibility 300s linear 0s, opacity 300ms;
}
.elementor-widget-off-canvas .e-off-canvas[aria-hidden="false"] .e-off-canvas__overlay {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 300ms;
}

/**
 * 1.0 Global
 * ----------------------------------------------------------------------------- */
 
/* INNER BOX PADDING FOR RESPONSIVE COLUMNS */
* {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */	
}


/* BASIC SETUP */
body {
	font-size:14px;
}
body:not(.elementor-editor-active) .elementor-menu-anchor:before {
    content: "";
    display:block;
    height: 96px; /* fixed header height*/
    margin: -96px 0 0; /* negative fixed header height */
    visibility: hidden;
    pointer-events: none;
}

/* TYPOGRAPHY */

/* Headings */
h1, h2, h3, h4, h5, h6, p {
	margin:0 !important;
	padding:0;
}
h1, h1 a {
}
h2, h2 a {
}
h3 {
}
h4 {
}
h5 {
}
h6 {
}

/* Text elements */
p {
}
p, li {
}
strong, .bold { font-weight:700; }
em { font-style:italic; }
p:last-child { margin-bottom:0; }
a,
a:focus {
	outline:none;
}
a:hover {
}
a[href^="tel:"] {
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
blockquote p:before { content: open-quote; }
blockquote p:after { content: close-quote; }
blockquote {
}



/* TABLES */
table { width:100%; }
tr { height:40; }
th { vertical-align:middle; text-align:right; padding:0 10; }
td { padding:6px; }
table.lined td { border-bottom:1px dotted #ddd; }	



/* FORMS */
input:not([type=checkbox]):not([type=radio]), textarea {
	border:solid 1px #999;;
	width:100%;
	padding:6px;
}
input.radio { width:auto; }


/* TAGS */
.overlay { position:relative; }
.overlay > div { position:relative; z-index:9; }
.overlay::after {
	position:absolute;
	top:0; left:0;
	width:100%;
	height:100%;
	content:'';
	background-color:rgba(0,0,0,.4);
}
.blur {
	backdrop-filter: blur(10px);    
}


/**
 * 2.0 Layout
 * ----------------------------------------------------------------------------- */

.flex-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex-container.justify {
	-webkit-box-pack:justify;
	    -ms-flex-pack:justify;
	        justify-content:space-between;
}
.flex-container.justify-left {
	-webkit-box-pack:start;
	    -ms-flex-pack:start;
	        justify-content:flex-start;
}
.flex-container.justify-center {
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
}
.flex-container.justify-right {
	-webkit-box-pack:end;
	    -ms-flex-pack:end;
	        justify-content:flex-end;
}
.flex-container.align-top {
	-webkit-box-align:start;
	    -ms-flex-align:start;
	        align-items:flex-start;
}
.flex-container.align-center {
	-webkit-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
}
.flex-container.align-bottom {
	-webkit-box-align:end;
		-ms-flex-align:end;
			align-items:flex-end;
}
.flex-container.wrap {
	-ms-flex-wrap:wrap;
	    flex-wrap:wrap;
}
.flex-container.column {
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	    -ms-flex-direction:column;
	        flex-direction:column;
}
.grid {
	max-width:1200px;
	margin:auto;
}


/**
 * 3.0 Header
 * ----------------------------------------------------------------------------- */

/**
 * 4.0 Navigation
 * ----------------------------------------------------------------------------- */

.e-off-canvas__content {
	max-width: 600px;
}
.main-menu .open {
    content: '';
    width: 20px;
    height: 20px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #cccdd2;
	font-size: 16px;
}
.main-menu .open span {
    position: absolute;
    transition: 300ms;
    background: white;
    border-radius: 2px;
}
.main-menu .open span:first-child {
    top: 25%;
    bottom: 25%;
    width: 10%;
    left: 45%;
}
.main-menu .open span:last-child {
    left: 25%;
    right: 25%;
    height: 10%;
    top: 45%;
}
.main-menu .close .open span {
    transform: rotate(90deg);
}
.main-menu .close .open span:last-child {
    left: 50%;
    right: 50%;
}
.main-menu .children,
.main-menu .grandchild {
    display: none;
}
.main-menu .children::before {
	content: '';
	width: 1px;
	background-color: rgba(255,255,255,.2);
	height: calc(100% - 24px);
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
}




/* MAIN NAVIGATION */



/**
 * 6.0 Content
 * ----------------------------------------------------------------------------- */

/*=========================
	HOME PAGE
=========================*/

/* Support */

.expand-wrapper .expand {
	background-size: auto 100% !important;
	display: flex;
    flex: 1 1 1% !important;
    position: relative;
    transition: flex 600ms cubic-bezier(0.25, 1, 0.5, 1), opacity 250ms ease;
    cursor: pointer;
}
.expand-wrapper .expand * {
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.expand-wrapper .expand.active {
    flex-basis: 60% !important;
}
.expand-wrapper .expand > div:first-child {
	transform: rotate(-90deg) translateY(-50%);
	width: 100% !important;
	display: flex;
	transform-origin: center left;
	position: absolute;
	bottom: 0;
	left: 50%;
}
.expand-wrapper .expand > div:last-child {
    height: 0;
    overflow: hidden;
}
.expand-wrapper .expand.active > div:first-child {
    width: auto !important;
    transform: rotate(0) translate(0);
    position: relative;
    left: 0;
}
.expand-wrapper .expand.active > div:last-child {
    height: auto;
    -webkit-animation: .6s ease 0s normal forwards 1 fadein;
    animation: .6s ease 0s normal forwards 1 fadein;
}
@keyframes fadein{
    0% { opacity:0; }
    66% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes fadein{
    0% { opacity:0; }
    66% { opacity:0; }
    100% { opacity:1; }
}


/* Services */

.services::before {
	mix-blend-mode: multiply !important;
}
.service-block a {
	width: 100% !important;
	height: 100%;
	align-items: center;
	display: flex;
}
.service-block .elementor-button-content-wrapper {
	justify-content: flex-start;
	align-items: center;
}
.service-block .elementor-button-text {
	text-align: left;
    line-height: 24px;
}
.service-block .elementor-button-icon svg {
	width: 1.4em;
}
.service-block .elementor-button-icon {
	background-color: rgba(0,159,227,0);
	border-radius: 8px;
	padding: 6px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.service-block:hover .elementor-button-icon {
	background-color: rgba(0,159,227,1);
}


/* Awards */

.awards-carousel .swiper-slide {
    transform: scale(.7);
    opacity: .8;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.awards-carousel .swiper-slide-active {
    transform: scale(.7) translateX(20%);
    opacity: .4;
}
.awards-carousel .swiper-slide-duplicate-prev {
    transform: scale(.7) translateX(-20%);
    opacity: .4;
}
.awards-carousel .swiper-slide-next + div {
    transform: scale(1);
    opacity: 1;
}


/* WORDPRESS */
.widgets, .widget ul { list-style: none; margin: 0; padding: 0; }
.alignleft { float: left; margin: 0 20px 0 0; }
.alignright { float: right; margin: 0 0 0 20px; }
.aligncenter { display: block; margin: 0 auto; }
p.postmetadata {}
.byline {}


/* SOCIAL ICONS */

/* BUTTONS */


/**
 * 7.0 Footer
 * ----------------------------------------------------------------------------- */

/* FOOTER */

/* COLOPHON */

/**
 * 8.0 Responsive
 * ----------------------------------------------------------------------------- */

@media all and (max-width: 1060) {
}
@media all and (max-width: 768px) {
}
@media all and (max-width: 568px) {
}
@media all and (max-width: 340px) {
}