@charset "UTF-8";
/* CSS Document */
/* ----- Custom CSS ----- */
	

div#c3_container {
	display: block;
	position: relative;
	width: 100%;
    /*max-width: 1380px;*/
	overflow: hidden;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
}

div#c3_container div.c3_outer {
    display: block;
    position: relative;
    height: auto;
	width: 100%;
    padding: 100px;
    overflow: hidden;
}

@media only screen and (max-width: 770px) {
    div#c3_container div.c3_outer {
        padding: 50px; 
    }
}

div#c3_container div.c3_outer::before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: calc(100% - 200px);
    top: 100px;
    left: calc(50% - 10px);
    border-left: 7px solid #f2f2f2;
    border-right: 7px solid #f2f2f2;
    background-color: #d04a02;
    z-index: 2;
    transition: all 0.5s ease;
}

div#c3_container.c3_not_animating div.c3_outer::before {
    height: 0%;
    top: 50%;
}

div#c3_container div.c3_outer::after {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% - 200px);
    height: 20px;
    top: calc(50% - 10px);
    left: 100px;
    border-top: 7px solid #f2f2f2;
    border-bottom: 7px solid #f2f2f2;
    background-color: #d04a02;
    z-index: 2;
    transition: all 0.5s ease;
    transition-delay: 0.5s;
}

div#c3_container.c3_not_animating div.c3_outer::after {
    left: 50%;
    width: 0%;
}

div#c3_container div.c3_outer div.div_box {
    display: block;
    position: relative;
	width: 50%;
    float: left;
    overflow: hidden;
}

div#c3_container div.c3_outer div.div_box_3 {
    clear: both;
}

div#c3_container div.c3_outer div.div_box a {
    text-align: center;
    padding: 20px;
    display: table;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    vertical-align: middle;
    text-align: center;
    transition: top 0.5s ease, left 0.5s ease;
}

div#c3_container div.c3_outer div.div_box_1 a {
    transition-delay: 1s;
}

div#c3_container div.c3_outer div.div_box_2 a {
    transition-delay: 1.5s;
}

div#c3_container div.c3_outer div.div_box_3 a {
    transition-delay: 2s;
}

div#c3_container div.c3_outer div.div_box_4 a {
    transition-delay: 2.5s;

}

div#c3_container.c3_not_animating div.c3_outer div.div_box_1 a {
    top: 100%;
    left: 100%;
    transition-delay: 0s;
}

div#c3_container.c3_not_animating div.c3_outer div.div_box_2 a {
    top: 100%;
    left: -100%;
    transition-delay: 0s;
}

div#c3_container.c3_not_animating div.c3_outer div.div_box_3 a {
    top: -100%;
    left: 100%;
    transition-delay: 0s;
}

div#c3_container.c3_not_animating div.c3_outer div.div_box_4 a {
    top: -100%;
    left: -100%;
    transition-delay: 0s;
}


div#c3_container div.c3_outer div.div_box a:focus {
    outline: 0;
}

div#c3_container div.c3_outer div.div_box a:hover, div#c3_container div.c3_outer div.div_box a.selected {
    text-decoration: none;
    background-color: #d04a02;
    color: #ffffff !important;
    transition: all 0.5s ease;
}

div#c3_container div.c3_outer div.div_box a strong {
    display: table-cell;
    vertical-align: middle;
    line-height: normal;
    font-size: 24px;
    font-weight: normal;
    color: rgb(125, 125, 125);
}

div#c3_container div.c3_outer div.div_box a:hover strong {
    color: #ffffff !important;
}

@media only screen and (max-width: 770px) {
    div#c3_container div.c3_outer div.div_box a strong {
        font-size: 18px;
    }
}

div#c3_container div.c3_outer div.div_box ul {
    display: block;
    position: relative;
    width: auto;
    height: auto;
    overflow: hidden;
    background-color: #ffffff;
    padding: 30px;
    min-height: 100%;
    top: 100%;
    transition: all 0.5s ease;
}

div#c3_container.c3_not_animating div.c3_outer div.div_box ul {
     top: 100%;
}

div#c3_container div.c3_outer div.div_box ul li  {
    display: block;
    position: relative;
    width: auto;
    height: auto;
    border-bottom: 1px dotted #d04a02;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 5px;
}

@media only screen and (max-width: 770px) {
    div#c3_container div.c3_outer div.div_box ul li  {
        font-size: 12px;
        line-height: 16px;
    }
}

div#c3_container div.c3_outer div.c3_arrow {
    display: block;
    width: 80px;
    height: 80px;
    background-color: #d04a02;
    border: 10px solid #f2f2f2;
    border-radius: 50%;
    position: absolute;
    z-index: 3;
    transition: all 0.5s ease;
}

@media only screen and (max-width: 770px) {
    div#c3_container div.c3_outer div.c3_arrow {
        width: 40px;
        height: 40px;
        border: 5px solid #f2f2f2;
    }
}

div#c3_container div.c3_outer div.c3_arrow_top {
    top: 60px;
    left: calc(50% - 40px);
}

div#c3_container div.c3_outer div.c3_arrow_bottom {
    bottom: 60px;
    left: calc(50% - 40px);
    transform: rotate(180deg);
}

div#c3_container div.c3_outer div.c3_arrow_left {
    left: 60px;
    top: calc(50% - 40px);
    transform: rotate(-90deg);
    transition-delay: 0.5s;
}

div#c3_container div.c3_outer div.c3_arrow_right {
    right: 60px;
    top: calc(50% - 40px);
    transform: rotate(90deg);
    transition-delay: 0.5s;
}

div#c3_container.c3_not_animating div.c3_outer div.c3_arrow_top {
    top: calc(50% - 40px);
}

div#c3_container.c3_not_animating div.c3_outer div.c3_arrow_bottom {
    bottom: calc(50% - 40px);
    left: calc(50% - 40px);
}

div#c3_container.c3_not_animating div.c3_outer div.c3_arrow_left {
    left: calc(50% - 40px);
    top: calc(50% - 40px);
}

div#c3_container.c3_not_animating div.c3_outer div.c3_arrow_right {
    right: calc(50% - 40px);
    top: calc(50% - 40px);
}

@media only screen and (max-width: 770px) {
    div#c3_container div.c3_outer div.c3_arrow_top {
        left: calc(50% - 20px);
    }

    div#c3_container div.c3_outer div.c3_arrow_bottom {
        left: calc(50% - 20px);
    }

    div#c3_container div.c3_outer div.c3_arrow_left {
        top: calc(50% - 20px);
    }

    div#c3_container div.c3_outer div.c3_arrow_right {
        top: calc(50% - 20px);
    }
}

div#c3_container div.c3_outer div.c3_arrow::before {
    content: " ";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 20px;
    left: 15px;
    border-left: 3px solid #ffffff;
    border-top: 3px solid #ffffff;
    transform: rotate(45deg);
}

@media only screen and (max-width: 770px) {
    div#c3_container div.c3_outer div.c3_arrow::before {
        width: 15px;
        height: 15px;
        top: 10px;
        left: 7.5px;  
    }
}

div#c3_container div.c3_outer p.c3_label {
    width: 100%;
    height: auto;
    text-align: center;
    position: absolute;
    font-size: 28px;
    font-weight: bold;
    transition: all 0.5s ease;
}

@media only screen and (max-width: 770px) {
    div#c3_container div.c3_outer p.c3_label {
        font-size: 18px;
    }
}

div#c3_container div.c3_outer p.c3_label_top {
    top: 10px;
    left: 0px;
}

div#c3_container div.c3_outer p.c3_label_bottom {
    bottom: 10px;
    left: 0px;
}

div#c3_container div.c3_outer p.c3_label_left {
    top: calc(50% - 40px);
    left: calc(-50% + 40px);
    transform: rotate(-90deg);
    transition-delay: 0.5s;
}

div#c3_container div.c3_outer p.c3_label_right {
    top: calc(50% - 40px);
    right: calc(-50% + 40px);
    transform: rotate(90deg);
    transition-delay: 0.5s;
}

div#c3_container.c3_not_animating div.c3_outer p.c3_label_top {
    margin-top: -100px;
}

div#c3_container.c3_not_animating div.c3_outer p.c3_label_bottom {
    margin-bottom: -100px;
}

div#c3_container.c3_not_animating div.c3_outer p.c3_label_left {
   margin-left: -100px;
}

div#c3_container.c3_not_animating div.c3_outer p.c3_label_right {
    margin-right: -100px;
}

@media only screen and (max-width: 770px) {
    div#c3_container div.c3_outer p.c3_label_bottom {
        bottom: 0px;
        left: 0px;
    }
    
    div#c3_container div.c3_outer p.c3_label_left {
        left: calc(-50% + 25px);
        top: calc(50% - 20px);
    }
    
    div#c3_container div.c3_outer p.c3_label_right {
        right: calc(-50% + 25px);
        top: calc(50% - 20px);
    }
}







