/*

Theme Name: Divi Child
Template: Divi
Author:  AltrueTECH
Author URI: http://altruetech.com

Developed by AltrueTECH Computer Services
Copyright 2016 - All rights reserved. Do not copy, modify, or distribute this code.

*/

@import url("../Divi/style.css");

/* Theme Custimization */

span a {
    color: #4f4fff;

}


#logo {max-height: 80%;}


.home .et_pb_toggle_title:before {
display: none;
}

.marquee {
    width: auto;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;  /* show the marquee just outside the paragraph */
    animation: marquee 15s linear infinite;
}

.marquee span:hover {
    animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}