/* RESETING DEFAULT STYLES */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
	display: block;
}

*[hidden] {
    display: none;
}
body {
	line-height: 1;
}
menu, ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* STYLING */
* {
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.content-wrapper {
    width: 1310px;
    margin: 0 auto;
    padding: 25px;
    position: relative;
    border: 2px dotted #006f1e;
}

.container {
    width: 1260px;
    margin: 0 auto;
}

.container-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
}

.main-title {
    display: flex;
    align-items: center;
    column-gap: 15px;
    font-family: 'Marcellus', serif;
    font-weight: 400;
    font-size: 33px;
    text-align: center;
}

.main-title_sup {
    font-size: 18px;
}

.subtitle {
    font-size: 20px;
    font-weight: 500;
}

.blue-text {
    color: #2b328f;
}

.red-text {
    color: #ed2526;
}

.logo {
    font-family: 'Marcellus', serif;
    font-weight: 400;
}

.logo img {
    width: 75px;
}

.logo-container {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block {
    padding: 15px 0;
    align-items: end;
    column-gap: 50px;
}

.second-block {
    max-width: 1080px;
}

.arrow-wrapper {
    position: relative;
}

.arrow {
    position: relative;
    padding: 15px 10px;
    column-gap: 20px;
    background-color: #c7c7c7;
    background-image: linear-gradient(to right, white, #c7c7c7);
}

.arrow-icon {
    height: 60px;
}

.arrow__container {
    column-gap: 20px;
}

.arrow__arrowhead {
    border-left: 60px solid #c7c7c7;
    width: 0px;
    height: 0px;
    border-top: 80px solid transparent;
    border-bottom: 80px solid transparent;
    position: absolute;
    right: -60px;
}

.circle {
    width: 210px;
    height: 210px;
    padding: 20px 15px;
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    border: 10px solid #c7c7c7;
    transform: scale(0);
}

.circle__title {
    margin-bottom: 10px;
    font-size: 38px;
    font-weight: bold;
}

.circle__subtitle {
    font-size: 20px;
}

.list {
    display: flex;
    align-items: end;
    column-gap: 10px;
}

.block__bottom {
    align-items: start;
}

.item {
    flex-direction: column;
    text-align: center;
}

.top-item {
    padding: 0 0 7px 0;
}

.bottom-item {
    padding: 7px 0 0 0;
}

.dotted {
    padding: 5px;
    flex-direction: column;
    row-gap: 15px;
    border: 2px dotted #ed2526;
    border-radius: 15px;
}

.child-container {
    column-gap: 5px;
}

.child {
    flex-direction: column;
}

.child__image {
    column-gap: 5px;
}

.title {
    width: 130px;
    height: 45px;
    justify-content: center;
    text-align: center;
}

.grey {
    border: 2px solid #cccccc;
    background-color: white;
}

.green {
    border: 2px dotted #006f1e;
    background-color: white;
}

.legend {
    column-gap: 10px;
}

.legend-container {
    display: flex;
    flex-direction: column;
    align-items: end;
    row-gap: 68px;
}

.legend__title {
    width: 150px;
    height: 50px;
    padding: 5px 15px;
    text-align: center;
}

.legend_sup {
    font-size: 8px;
}

.epex-logo {
    width: 165px;
}

.jepx-logo {
    width: 130px;
}

.icon {
    width: 60px;
}

.rotated {
    transform: rotate(180deg);
}

.gears {
    width: 90px;
}

.second-gears {
    width: 70px;
}

.chart-parent {
    position: relative;
}

.chart {
    position: absolute;
    top: -87px;
    width: 100%;
}

.chart img {
    width: 130px;
}

.animated {
    opacity: 0;
}

.animated .circle__subtitle {
    opacity: 0;
}

.transition-delay {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.transition-delay input {
    width: 55px;
}

.transition-delay_title {
    margin-bottom: 5px;
}

