﻿:root {
    --bg: #fdfdfd;
    --highlight1: #ED4264;
    --highlight2: #FFEDBC;
    --color: #1a1e24;
    --font-number: Montserrat, Roboto, Helvetica, Arial, sans-serif;
    --font-head: "Space Mono", Consolas, Menlo, Monaco, "Courier New", monospace;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.email-editor-info-box{
    position: relative;
}

.email-editor-info-box .email-editor-box-inner {
    position: relative;
    width: 100%;
    height: 200px;
    line-height: 200px;
    font-size: 4em;
    font-family: sans-serif;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
}

.email-editor-info-box .email-editor-box-inner:first-child {
    background-color: indianred;
    color: darkred;
    transform-origin: right;
    transform: perspective(100px) rotateY(-15deg);
    -o-transform: perspective(100px) rotateY(-15deg);
    -ms-transform: perspective(100px) rotateY(-15deg);
    -moz-transform: perspective(100px) rotateY(-15deg);
    -webkit-transform: perspective(100px) rotateY(-15deg);
}

.email-editor-info-box .email-editor-box-inner:last-child {
    background-color: lightcoral;
    color: antiquewhite;
    transform-origin: left;
    transform: perspective(100px) rotateY(15deg);
    -o-transform: perspective(100px) rotateY(15deg);
    -ms-transform: perspective(100px) rotateY(15deg);
    -moz-transform: perspective(100px) rotateY(15deg);
    -webkit-transform: perspective(100px) rotateY(15deg);
}

.email-editor-info-box .email-editor-box-inner span {
    position: absolute;
    left: 0%;
    animation: marquee 5s linear infinite;
}

.email-editor-info-box .email-editor-box-inner:first-child span {
    animation-delay: 2.5s;
    left: -100%;
}

@keyframes marquee {
    from {
        left: 100%;
    }

    to {
        left: -100%;
    }
}

.editor-iconbox-1 {
    text-align: center;
    width: 100%;
    position: relative;
    border: 2px solid var(--secondary-border-color);
    padding: 0 10px 20px 10px;
    margin-top: 50px;
    max-width: 100%;
    width: calc(100% - 10px);
    box-sizing: border-box;
    margin-left: 10px !important;
    margin-right: 10px !important;
    background: #ffffff;
}

.editor-iconbox-1:after, .editor-iconbox-1:before {
	top: calc(100% - 15px);
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	transform: rotate(180deg) translateY(12px);
}		
		
.editor-iconbox-1:after {
	border-color: rgba(136, 183, 213, 0);
	border-top-color: var(--secondary-border-color);
	border-width: 15px;
	margin-left: -15px;
}

.editor-iconbox-1:before {
	border-color: rgba(194, 225, 245, 0);
	border-top-color: var(--secondary-border-color);
	border-width: 15px;
	margin-left: -15px;
}

.editor-iconbox-1 .editor-icon{
	position: absolute;
	width: 100px;
	height: 100px;
	transform: translateY(-55%) translateX(-50%);
	background: #ffffff;
	line-height: 100px;
	text-align: center;
	border-radius: 50%;
	border:2px solid var(--accent-color);
	display:inline-block;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-o-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
}

.editor-iconbox-1 .editor-icon i{
	font-size: 50px;
	color: var(--secondary-border-color);
    color: var(--accent-color);
	vertical-align:middle;
}

.editor-iconbox-1 .editor-title{
	margin-top: 60px;
	font-family: "Oswald", sans-serif;
    font-size: 22px !important;
}

.editor-iconbox-1:hover{
    border-color: var(--primary-border-color);
}

.editor-iconbox-1:hover:after {
	border-top-color: var(--primary-border-color);
}

.editor-iconbox-1:hover:before {
	border-top-color: var(--primary-border-color);
}

.editor-iconbox-1:hover .editor-icon {
    background-color: var(--primary-border-color);
    border-radius: 0 100px 100px;
    border-color: var(--primary-border-color);
}

.editor-iconbox-1:hover .editor-icon i {
    color: #ffffff;
}

.editor-btn {
    border-radius: 30px;
    margin-bottom: 15px;
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    padding: 5px 15px;
    font-size: 70%;
    border-color: #cccccc;
}

.editor-iconbox-1:hover .editor-btn {
    border-color: var(--primary-border-color);
    border-radius: 15px 0 15px;
    border-width: 2px;
}

.email-editor-title {
    font-family: "Oswald", sans-serif;
}

.service-img-1 {
    display: block;
    width: 100%;
    max-width: 100%;
}

.editor-slide-in-box {
    position: relative;
    overflow: hidden;
    background-color: #bbb;
    text-align: center;
    box-shadow: 0 3px 5px rgba(0,0,0,0.7);
}

.editor-slide-in-box .slide-in-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform 0.5s ease-out;
    -moz-transition: transform 0.5s ease-out;
    -o-transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
}

.editor-slide-in-box:hover .slide-in-overlay {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.editor-feature-list {
    list-style: none;
    width: 600px;
    max-width: 90%;
}

.editor-feature-list .editor-feature-list-item {
    display: block;
    clear: both;
    counter-increment: list;
    padding-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.375;
    position: relative;
    border-radius: 50%;
}

.editor-feature-list .editor-feature-list-item:before {
    font: bold 1.25rem/1 var(--font-number);
    content: counter(list);
    width: 1.5rem;
    height: 1.5rem;
    float: left;
    margin: 0 1.5rem 0.75rem 0;
    color: var(--bg);
    background: var(--highlight1) linear-gradient(to bottom right, var(--highlight1) 25%, var(--highlight2));
    text-shadow: 0 0 2px var(--highlight1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    shape-outside: ellipse();
    z-index: 1;
}

.editor-feature-list .editor-feature-list-item:after {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: var(--highlight1);
    z-index: -1;
    border-radius: 50%;
    border-top-left-radius: 3px;
}
