2020-07-05 12:36:10 +00:00
|
|
|
/* *****************************************************************************
|
|
|
|
|
|
|
|
* ORGANIZATION HEADER
|
|
|
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.header-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding-top: 1em;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 13:03:30 +00:00
|
|
|
.header-title {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.return {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
color: #34495e;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all .2s;
|
2020-07-15 20:32:42 +00:00
|
|
|
text-decoration: none;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.return-icon {
|
2020-07-15 20:32:42 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-07-30 12:54:53 +00:00
|
|
|
margin-right: .75em;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.return-icon svg {
|
|
|
|
width: 1.3em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.return:hover {
|
|
|
|
opacity: 0.88;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
/* *****************************************************************************
|
|
|
|
|
|
|
|
* COVER
|
|
|
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
2020-07-30 12:54:53 +00:00
|
|
|
.cover-container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.cover-background {
|
2020-07-30 12:54:53 +00:00
|
|
|
z-index: -1;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
width: 100%;
|
2020-07-30 12:54:53 +00:00
|
|
|
height: 100%;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
2020-07-30 12:54:53 +00:00
|
|
|
.cover-content {
|
|
|
|
background-color: rgba(230, 126, 34, 0.75);
|
2020-07-05 11:59:03 +00:00
|
|
|
background-size: cover;
|
2020-07-30 12:54:53 +00:00
|
|
|
|
|
|
|
color: white;
|
|
|
|
padding-top: 1.5em;
|
|
|
|
padding-bottom: 1.5em;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
2020-07-30 12:54:53 +00:00
|
|
|
.cover-content .container {
|
2020-07-05 11:59:03 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cover-image {
|
|
|
|
background: white;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 3px solid #FD6E0B;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
width: 10em;
|
|
|
|
height: 10em;
|
2020-07-30 12:54:53 +00:00
|
|
|
min-width: 10em;
|
|
|
|
min-height: 10em;
|
2020-07-05 11:59:03 +00:00
|
|
|
margin-right: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cover-title {
|
|
|
|
font-family: 'Roboto Slab', serif;
|
2020-07-30 12:54:53 +00:00
|
|
|
font-size: 3em;
|
2020-07-05 11:59:03 +00:00
|
|
|
font-weight: normal;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cover-sub-title {
|
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: normal;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
/* *****************************************************************************
|
|
|
|
|
|
|
|
* MOSAIC
|
|
|
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
2020-08-27 10:56:21 +00:00
|
|
|
.media-mosaic-container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.media-mosaic {
|
|
|
|
margin-top: .75em;
|
|
|
|
width: 100%;
|
|
|
|
height: 25em;
|
|
|
|
display: grid;
|
|
|
|
|
|
|
|
grid-column-gap: .75em;
|
|
|
|
grid-row-gap: .75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-overlay {
|
|
|
|
background-color: rgba(196, 196, 196, 0.7);
|
|
|
|
color: #B12008;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-07-05 13:03:30 +00:00
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-container {
|
|
|
|
position: relative;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
2020-07-18 10:43:13 +00:00
|
|
|
.media-overlay svg {
|
|
|
|
width: 3.5em;
|
2020-07-05 11:59:03 +00:00
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.2s;
|
|
|
|
}
|
|
|
|
|
2020-07-18 10:43:13 +00:00
|
|
|
.media-overlay svg:hover {
|
2020-07-05 11:59:03 +00:00
|
|
|
transform: scale(1.2);
|
|
|
|
}
|
|
|
|
|
2020-07-17 22:12:11 +00:00
|
|
|
/**
|
|
|
|
* MOSAIC CASES
|
|
|
|
**/
|
|
|
|
/* Mosaic level 1 */
|
|
|
|
.mosaic-1 {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2020-08-05 12:38:14 +00:00
|
|
|
|
2020-07-17 22:12:11 +00:00
|
|
|
.mosaic-1 .media-container {
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mosaic level 2 */
|
|
|
|
.mosaic-2 {
|
2020-08-05 12:38:14 +00:00
|
|
|
width: 80%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2020-07-17 22:12:11 +00:00
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mosaic level 3 */
|
|
|
|
.mosaic-3 {
|
|
|
|
grid-template-columns: 1fr .5fr;
|
|
|
|
grid-template-rows: 1fr 1fr;
|
|
|
|
}
|
|
|
|
.mosaic-3 .media-container:first-of-type {
|
|
|
|
grid-row: 1 / span 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mosaic level 4 */
|
|
|
|
.mosaic-4 {
|
2020-08-05 12:38:14 +00:00
|
|
|
width: 70%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2020-07-17 22:12:11 +00:00
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-template-rows: 1fr 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* With five medias */
|
|
|
|
.mosaic-5 {
|
|
|
|
grid-template-columns: 1fr .5fr .5fr;
|
|
|
|
grid-template-rows: 1fr 1fr;
|
|
|
|
}
|
|
|
|
.mosaic-5 .media-container:first-of-type {
|
2020-07-05 11:59:03 +00:00
|
|
|
grid-row: 1 / span 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* .media-sec {
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: 50% 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-sec-row {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 50% 50%;
|
|
|
|
grid-template-rows: 100%;
|
|
|
|
} */
|
|
|
|
|
|
|
|
.media {
|
2020-07-23 10:43:20 +00:00
|
|
|
cursor: zoom-in;
|
2020-07-05 13:03:30 +00:00
|
|
|
height: 100%;
|
2020-07-05 11:59:03 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
2020-07-17 22:12:11 +00:00
|
|
|
/**
|
|
|
|
* Media modal
|
|
|
|
*/
|
|
|
|
.media-modal-container {
|
2020-07-18 10:43:13 +00:00
|
|
|
position: fixed;
|
2020-07-17 22:12:11 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
z-index: 99;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background-color: rgba(0, 0, 0, .80);
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
transition: visibility 0.1s linear,opacity 0.1s linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-modal {
|
|
|
|
position: relative;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
2020-07-18 10:43:13 +00:00
|
|
|
.media-modal .media-modal-content {
|
2020-07-17 22:12:11 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
width: 100%;
|
2020-08-05 12:38:14 +00:00
|
|
|
|
|
|
|
/** crop not very cool images in modal **/
|
|
|
|
max-height: 80vh;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2020-07-17 22:12:11 +00:00
|
|
|
}
|
|
|
|
|
2020-07-18 10:43:13 +00:00
|
|
|
.media-modal img, .media-modal video {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-07-17 22:12:11 +00:00
|
|
|
.media-close {
|
2020-08-11 20:33:03 +00:00
|
|
|
filter: drop-shadow(2px 4px 6px black);
|
2020-07-17 22:12:11 +00:00
|
|
|
position: absolute;
|
|
|
|
width: 1.5em;
|
|
|
|
height: 1.5em;
|
|
|
|
right: -.75em;
|
|
|
|
top: -.75em;
|
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
2020-08-11 20:33:03 +00:00
|
|
|
opacity: 0.9;
|
2020-07-17 22:12:11 +00:00
|
|
|
transition: all 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-close:hover {
|
|
|
|
transform: scale(1.2);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2020-08-19 09:50:53 +00:00
|
|
|
.media-nav {
|
|
|
|
position: absolute;
|
|
|
|
width: .5em;
|
|
|
|
color: white;
|
|
|
|
opacity: 0.8;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 1.25em;
|
|
|
|
transition: 0.2s all;
|
|
|
|
z-index: 9999;
|
|
|
|
width: 5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-nav.disabled {
|
|
|
|
opacity: 0.25 !important;
|
|
|
|
cursor: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-nav-btn svg {
|
|
|
|
height: 2em;
|
|
|
|
filter: drop-shadow(2px 4px 6px black);
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-nav-btn {
|
|
|
|
padding: 2em;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-nav:hover {
|
|
|
|
opacity: 1;
|
|
|
|
transition: 0.2s all;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-nav-left {
|
|
|
|
left: 2em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-nav-right {
|
|
|
|
right: 2em !important;
|
|
|
|
}
|
|
|
|
|
2020-08-27 10:56:21 +00:00
|
|
|
/**
|
|
|
|
Extra count
|
|
|
|
**/
|
|
|
|
.media-gallery-extra-count {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
margin-top: .25em;
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-gallery-extra-count a {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: .25em;
|
|
|
|
}
|
|
|
|
|
2020-08-19 09:50:53 +00:00
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
/* *****************************************************************************
|
|
|
|
|
|
|
|
* SECTION
|
|
|
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
section {
|
2020-07-05 12:36:10 +00:00
|
|
|
margin-top: 1.2em;
|
2020-07-05 11:59:03 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title {
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title h1, .section-title h2, .section-title h3 {
|
|
|
|
margin: 0;
|
|
|
|
font-weight: normal;
|
|
|
|
font-family: 'Roboto Slab', serif;
|
|
|
|
font-size: 1.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-divider {
|
|
|
|
background-color: rgba(194, 129, 0, 0.5);
|
|
|
|
width: 100%;
|
|
|
|
height: 3px;
|
|
|
|
border-radius: 1px;
|
|
|
|
}
|
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
/* *****************************************************************************
|
|
|
|
|
|
|
|
* DESCRIPTION
|
|
|
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.description {
|
|
|
|
line-height: 1.5em;
|
|
|
|
text-align: justify;
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 80%;
|
2020-07-21 14:41:07 +00:00
|
|
|
margin-top: 1em;
|
2020-07-05 11:59:03 +00:00
|
|
|
margin-bottom: .5em;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.description p {
|
|
|
|
margin-top: .75em;
|
|
|
|
}
|
2020-07-05 12:36:10 +00:00
|
|
|
.description p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.description h3 {
|
|
|
|
font-size: 1.4em;
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description h4 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description h3, .description h4 {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
2020-07-16 15:43:18 +00:00
|
|
|
.description blockquote {
|
|
|
|
border-left: 3px solid #95a5a6;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description blockquote p {
|
|
|
|
padding-top: 1em;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
|
|
|
|
2020-07-21 14:41:07 +00:00
|
|
|
.description-cutted {
|
|
|
|
max-height: 13em;
|
|
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
transition: max-height 0.1s ease-out;
|
2020-08-03 16:04:22 +00:00
|
|
|
text-align: justify;
|
2020-07-21 14:41:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.description-actions-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description-actions-container.closed {
|
|
|
|
box-shadow: 0px -16px 16px -3px rgb(255, 255, 255);
|
|
|
|
background: rgba(255,255,255,0.8);
|
|
|
|
position: relative;
|
|
|
|
top: -62px;
|
|
|
|
|
|
|
|
height: 62px;
|
|
|
|
margin-bottom: -62px;
|
|
|
|
}
|
|
|
|
|
2020-08-27 10:10:00 +00:00
|
|
|
.description-btn-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description-btn {
|
|
|
|
width: 13em;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#description-btn-icon {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#description-btn-text {
|
|
|
|
margin-left: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#description-btn-icon {
|
|
|
|
transition: all 0.1s ease-out;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
/* *****************************************************************************
|
|
|
|
|
|
|
|
* SCHEDULE
|
|
|
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
2020-08-29 19:27:38 +00:00
|
|
|
.schedule.dense {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
width: 100%;
|
|
|
|
column-gap: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule.dense .schedule-category-days-container {
|
|
|
|
margin-right: 7em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
.schedule-category {
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule-category-header {
|
|
|
|
background-color: rgba(189,195,199,.97);
|
|
|
|
border-radius: 4px;
|
2020-08-19 10:41:50 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1.5em;
|
2020-07-05 12:36:10 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 1em 2em 1em 2em;
|
2020-07-05 13:03:30 +00:00
|
|
|
cursor: pointer;
|
2020-07-05 12:36:10 +00:00
|
|
|
}
|
|
|
|
|
2020-08-19 10:41:50 +00:00
|
|
|
.schedule-category-collapse-icon-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2020-08-11 20:33:03 +00:00
|
|
|
.schedule-category-header .subtitle, .schedule-category-header .separator {
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
|
2020-08-27 10:14:57 +00:00
|
|
|
.schedule-category-name {
|
|
|
|
/*
|
|
|
|
may mess up some content
|
|
|
|
*/
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
.schedule-category-collapse-icon {
|
2020-07-21 14:41:07 +00:00
|
|
|
transform: rotate(180deg);
|
2020-07-05 12:36:10 +00:00
|
|
|
color: #B12008;
|
2020-07-15 20:32:42 +00:00
|
|
|
width: 1.5em;
|
2020-07-05 12:36:10 +00:00
|
|
|
transition: all 0.1s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule-category-table {
|
|
|
|
max-height: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: max-height 0.1s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule-category-days-container {
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #ECF0F1;
|
2020-07-05 13:03:30 +00:00
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
margin-left: 2em;
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
2020-08-04 11:05:56 +00:00
|
|
|
margin-right: 15em;
|
2020-07-05 13:03:30 +00:00
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
padding: 1em 2em 1em 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule-category-day-container {
|
|
|
|
display: flex;
|
2020-08-04 11:05:56 +00:00
|
|
|
flex-wrap: wrap;
|
2020-07-05 12:36:10 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule-category-day-container .separator {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.schedule-category-table div:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2020-07-21 14:41:07 +00:00
|
|
|
.schedule-category-hours {
|
|
|
|
color: #2c3e50;
|
2020-08-04 11:05:56 +00:00
|
|
|
text-align: right;
|
2020-07-21 14:41:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.schedule-category-hours .spearator {
|
|
|
|
color: #bdc3c7;
|
|
|
|
}
|
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
/* *****************************************************************************
|
|
|
|
|
|
|
|
* PRICING
|
|
|
|
|
|
|
|
********************************************************************************/
|
2020-07-05 11:59:03 +00:00
|
|
|
|
|
|
|
.pricing {
|
|
|
|
display: flex;
|
2020-07-15 20:32:42 +00:00
|
|
|
justify-content: center;
|
2020-08-04 15:28:44 +00:00
|
|
|
margin-bottom: -1em;
|
2020-08-15 15:40:18 +00:00
|
|
|
margin-left: -0.75em;
|
|
|
|
margin-right: -0.75em;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
2020-08-10 12:20:04 +00:00
|
|
|
.pricing.supra-dense {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.pricing-card {
|
2020-08-04 15:28:44 +00:00
|
|
|
min-width: 10em;
|
2020-07-15 20:32:42 +00:00
|
|
|
max-width: 14em;
|
2020-08-04 15:28:44 +00:00
|
|
|
min-height: 10em;
|
2020-07-05 11:59:03 +00:00
|
|
|
width: 100%;
|
2020-07-15 20:32:42 +00:00
|
|
|
padding: 1.5em 1em;
|
2020-07-05 11:59:03 +00:00
|
|
|
text-align: center;
|
|
|
|
border-radius: 4px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
color: white;
|
2020-08-04 15:07:37 +00:00
|
|
|
background-color: rgba(253, 110, 11, .780);
|
2020-08-15 15:40:18 +00:00
|
|
|
margin-right: .75em;
|
|
|
|
margin-left: .75em;
|
2020-08-04 15:28:44 +00:00
|
|
|
margin-bottom: 1em;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing .pricing-card:nth-child(1) {
|
|
|
|
background-color: rgba(177, 88, 8, .80);
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing .pricing-card:nth-child(2) {
|
|
|
|
background-color: rgba(253, 110, 11, .780);
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing .pricing-card:nth-child(3) {
|
|
|
|
background-color: rgba(177, 32, 8, .80);
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-label {
|
|
|
|
font-size: 1.5em;
|
2020-08-27 10:14:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
may mess up some content
|
|
|
|
*/
|
|
|
|
text-transform: capitalize;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.pricing-name {
|
|
|
|
font-size: 1.8em;
|
2020-08-27 10:14:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
may mess up some content
|
|
|
|
*/
|
|
|
|
text-transform: capitalize;
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|
|
|
|
|
2020-08-04 15:28:44 +00:00
|
|
|
.pricing-description {
|
|
|
|
opacity: 0.9;
|
2020-08-27 10:14:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
may mess up some content
|
|
|
|
*/
|
|
|
|
text-transform: capitalize;
|
2020-08-04 15:28:44 +00:00
|
|
|
}
|
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
/* *****************************************************************************
|
2020-07-05 11:59:03 +00:00
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
* CONTACT
|
2020-07-05 11:59:03 +00:00
|
|
|
|
2020-07-05 12:36:10 +00:00
|
|
|
********************************************************************************/
|
2020-07-05 11:59:03 +00:00
|
|
|
|
2020-07-21 14:41:07 +00:00
|
|
|
.org-container {
|
2020-07-05 11:59:03 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-item {
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2020-08-04 15:28:44 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 2.5em 1fr;
|
2020-07-05 11:59:03 +00:00
|
|
|
padding-top: .75em;
|
|
|
|
padding-bottom: .75em;
|
|
|
|
padding-left: 2em;
|
|
|
|
padding-right: 2em;
|
|
|
|
background-color: #ECF0F1;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
2020-07-30 12:54:53 +00:00
|
|
|
.contact-item.address .contact-content div {
|
|
|
|
margin-bottom: .25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-item.address .contact-content div:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2020-08-04 11:05:56 +00:00
|
|
|
.contact-item .long {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-item .short {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.contact-icon {
|
|
|
|
color: #B15808;
|
|
|
|
background-color: #C4C4C4;
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.contact-icon svg {
|
|
|
|
width: .7em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.contact-content {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.external-link {
|
|
|
|
margin-left: .25em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.external-link {
|
|
|
|
width: .8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.email .contact-icon svg {
|
|
|
|
width: .9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.website .contact-icon svg {
|
|
|
|
width: .9em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.facebook .contact-icon {
|
|
|
|
background-color: #3B5999;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.facebook .contact-icon svg {
|
|
|
|
width: .5em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.instagram .contact-icon {
|
|
|
|
background:linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.instagram .contact-icon svg {
|
|
|
|
width: .75em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.twitter .contact-icon {
|
|
|
|
background-color: #1DA1F2;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.twitter .contact-icon svg {
|
|
|
|
width: .75em;
|
|
|
|
}
|
|
|
|
|
2020-07-23 10:43:20 +00:00
|
|
|
/**
|
|
|
|
People cards
|
|
|
|
***/
|
|
|
|
.peoples {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.people-card {
|
|
|
|
width: 100%;
|
2020-07-30 12:54:53 +00:00
|
|
|
max-width: 50%;
|
2020-07-23 10:43:20 +00:00
|
|
|
margin-right: 1em;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 1.2em 1.5em;
|
|
|
|
border: 1px solid gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.people-card:last-of-type {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.people-header {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.people-name {
|
|
|
|
font-size: 1.4em;
|
|
|
|
margin-bottom: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.people-contacts {
|
|
|
|
margin-top: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.people-contact {
|
|
|
|
padding-top: .5em;
|
|
|
|
padding-bottom: .5em;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.people-name {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.people-role {
|
|
|
|
opacity: .8;
|
2020-08-27 10:14:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
may mess up some content
|
|
|
|
*/
|
|
|
|
text-transform: capitalize;
|
2020-07-23 10:43:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.people-contact-icon {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
margin-right: 1em;
|
|
|
|
color: #B15808;
|
|
|
|
}
|
2020-07-05 12:36:10 +00:00
|
|
|
/* *****************************************************************************
|
|
|
|
|
|
|
|
* FOOTER
|
|
|
|
|
|
|
|
********************************************************************************/
|
2020-07-05 11:59:03 +00:00
|
|
|
|
2020-07-19 13:26:57 +00:00
|
|
|
.mentions {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2020-07-21 14:41:07 +00:00
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
2020-07-19 13:26:57 +00:00
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
color: #d35400;
|
2020-07-21 14:41:07 +00:00
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
2020-07-19 13:26:57 +00:00
|
|
|
}
|
2020-07-21 14:41:07 +00:00
|
|
|
|
2020-07-19 13:26:57 +00:00
|
|
|
.mentions div {
|
|
|
|
margin-bottom: .5em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 11:59:03 +00:00
|
|
|
.footer {
|
|
|
|
width: 100%;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 50% 25% 25%;
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
height: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer div:nth-child(1) {
|
|
|
|
background-color: rgb(177, 32, 8, .83);
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer div:nth-child(2) {
|
|
|
|
background-color: rgb(177, 88, 8, .83);
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer div:nth-child(3) {
|
|
|
|
background-color: rgb(253, 110, 11, .83);
|
2020-07-05 13:03:30 +00:00
|
|
|
}
|
|
|
|
|
2020-07-19 13:26:57 +00:00
|
|
|
/**
|
|
|
|
RESPONSIVE
|
|
|
|
**/
|
2020-07-05 13:03:30 +00:00
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
@media (max-width: 1200px) {
|
|
|
|
.schedule-category-days-container {
|
2020-08-03 17:08:20 +00:00
|
|
|
margin-right: 5em;
|
2020-07-15 20:32:42 +00:00
|
|
|
}
|
2020-07-18 10:43:13 +00:00
|
|
|
.media-modal {
|
|
|
|
width: 70%;
|
|
|
|
}
|
2020-08-04 15:28:44 +00:00
|
|
|
.pricing {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2020-07-15 20:32:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-05 13:03:30 +00:00
|
|
|
@media (max-width: 900px) {
|
|
|
|
|
2020-08-04 11:05:56 +00:00
|
|
|
.contact-item .long {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-item .short {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2020-07-30 12:54:53 +00:00
|
|
|
.cover-content .container {
|
2020-07-05 13:03:30 +00:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cover-image {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-bottom: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cover-title {
|
2020-07-30 12:54:53 +00:00
|
|
|
font-size: 2.5em;
|
2020-07-05 13:03:30 +00:00
|
|
|
margin-bottom: .25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.media-mosaic {
|
2020-08-05 12:38:14 +00:00
|
|
|
width: 100% !important;
|
2020-07-05 13:03:30 +00:00
|
|
|
height: 33em;
|
2020-07-17 22:12:11 +00:00
|
|
|
}
|
|
|
|
|
2020-08-19 09:50:53 +00:00
|
|
|
/**
|
|
|
|
* MODAL
|
|
|
|
**/
|
|
|
|
.media-nav {
|
|
|
|
bottom: 0em;
|
|
|
|
}
|
|
|
|
.media-nav-btn {
|
|
|
|
padding-top: 1em;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
2020-07-17 22:12:11 +00:00
|
|
|
/**
|
|
|
|
* MOSAIC CASES
|
|
|
|
*/
|
|
|
|
/* Mosaic level 1 */
|
|
|
|
.mosaic-1 .media-container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mosaic level 2 */
|
2020-07-21 14:41:07 +00:00
|
|
|
.mosaic-2 {
|
|
|
|
grid-template-rows: 1fr 1fr;
|
|
|
|
}
|
|
|
|
|
2020-07-17 22:12:11 +00:00
|
|
|
.mosaic-2, .mosaic-3 {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mosaic level 3 */
|
|
|
|
.mosaic-3 {
|
|
|
|
grid-template-rows: 1fr 1fr 1fr;
|
|
|
|
}
|
|
|
|
.mosaic-3 .media-container:first-of-type {
|
|
|
|
grid-row: 1 / span 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mosaic level 4 */
|
|
|
|
.mosaic-4 {
|
|
|
|
grid-template-rows: 1fr 1fr 1fr;
|
|
|
|
}
|
|
|
|
.mosaic-4 .media-container:first-of-type, .mosaic-4 .media-container:nth-of-type(2) {
|
|
|
|
grid-column: 1 / span 2;
|
|
|
|
}
|
|
|
|
.mosaic-4 .media-container:first-of-type {
|
|
|
|
grid-row: 1 / span 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mosaic level 5 */
|
|
|
|
.mosaic-5 {
|
2020-07-05 13:03:30 +00:00
|
|
|
grid-template-columns: .5fr .5fr;
|
|
|
|
grid-template-rows: 1fr .5fr .5fr;
|
|
|
|
}
|
2020-07-17 22:12:11 +00:00
|
|
|
.mosaic-5 .media-container:first-of-type {
|
2020-07-05 13:03:30 +00:00
|
|
|
grid-row: 1 / span 1;
|
|
|
|
grid-column: 1 / span 2;
|
|
|
|
}
|
|
|
|
|
2020-07-18 10:43:13 +00:00
|
|
|
.media-modal {
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
2020-08-29 19:27:38 +00:00
|
|
|
/**
|
|
|
|
Schedule
|
|
|
|
**/
|
|
|
|
.schedule.dense {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.schedule-category-header {
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 13:03:30 +00:00
|
|
|
.schedule-category-days-container {
|
|
|
|
margin-right: 5em;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.pricing {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2020-07-05 13:03:30 +00:00
|
|
|
}
|
2020-08-04 15:28:44 +00:00
|
|
|
|
|
|
|
.pricing.dense {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing.dense .pricing-card {
|
|
|
|
min-height: 6em;
|
|
|
|
margin-right: .5em;
|
|
|
|
margin-left: .5em;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pricing.dense .pricing-name {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
2020-07-05 13:03:30 +00:00
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.pricing-card {
|
2020-08-04 15:28:44 +00:00
|
|
|
margin-left: 0;
|
2020-07-15 20:32:42 +00:00
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2020-07-21 14:41:07 +00:00
|
|
|
.org-container {
|
2020-07-05 13:03:30 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
.contact-icon {
|
|
|
|
width: 1.5em;
|
|
|
|
height: 1.5em;
|
|
|
|
}
|
|
|
|
|
2020-07-05 13:03:30 +00:00
|
|
|
.contact-item {
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contact-content {
|
|
|
|
word-break: break-all;
|
2020-07-15 20:32:42 +00:00
|
|
|
font-size: .9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.facebook .contact-content, .twitter .contact-content, .website .contact-content, .instagram .contact-content {
|
2020-08-04 11:05:56 +00:00
|
|
|
font-size: .9em;
|
2020-07-15 20:32:42 +00:00
|
|
|
}
|
2020-07-23 10:43:20 +00:00
|
|
|
|
|
|
|
.peoples {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.people-card {
|
2020-07-30 12:54:53 +00:00
|
|
|
max-width: 100%;
|
2020-07-23 10:43:20 +00:00
|
|
|
width: auto;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.people-contacts {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2020-08-04 11:05:56 +00:00
|
|
|
font-size: .9em;
|
2020-07-23 10:43:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.people-card:last-of-type {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2020-07-15 20:32:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
.schedule-category-days-container {
|
2020-08-04 11:05:56 +00:00
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0;
|
2020-07-15 20:32:42 +00:00
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
2020-08-04 11:05:56 +00:00
|
|
|
font-size: .9em;
|
2020-07-15 20:32:42 +00:00
|
|
|
}
|
|
|
|
.return-title {
|
|
|
|
display: none;
|
2020-07-05 13:03:30 +00:00
|
|
|
}
|
2020-07-18 10:43:13 +00:00
|
|
|
.media-modal {
|
|
|
|
width: 90%;
|
|
|
|
}
|
2020-07-21 14:41:07 +00:00
|
|
|
.description {
|
|
|
|
width: 95%;
|
|
|
|
}
|
2020-07-05 11:59:03 +00:00
|
|
|
}
|