/* Css reset */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

a,
li,
div {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

[hidden] {
    display: none;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0px;
}

a:focus {
    outline: none;
}

a:active,
a:hover {
    outline: 0;
}

b,
strong {
    font-weight: bold;
}

figure {
    margin: 0px;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0px;
}

button,
input {
    line-height: normal;
}

button,
select {
    text-transform: none;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

input[type='checkbox'],
input[type='radio'] {
    padding: 0px;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0px;
    padding: 0px;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
address,
blockqoute,
span,
ul,
ol,
li,
dl,
dd,
dt,
img,
form,
fieldset,
input {
    padding: 0px;
    margin: 0px;
}

/* General styles */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

img.vertical {
    max-width: none;
    width: auto;
    height: 100%;
}

.center {
    max-width: 1090px;
    margin: 0 auto 0 auto;
}

.trans {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
}

.clear {
    clear: both;
}

.no-scroll {
    overflow: hidden;
}

.group:after {
    content: '';
    display: table;
    clear: both;
}

.flex {
    display: flex;
}

.flex.equal {
    justify-content: space-between;
}

.flex.h-center {
    justify-content: center;
}

.flex.v-center {
    align-items: center;
}

.flex.middle {
    justify-content: center;
    align-items: center;
}

.flex.wrap {
    flex-wrap: wrap;
}

/* Buttons */
.button {
    display: inline-block;
    width: 145px;
    height: 50px;
    line-height: 50px;
    border: none;
}

.button.blue {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    background: #0380a5;
}

.button.blue:hover {
    background: #005c80;
}

.button.disabled {
    color: #cccccc;
    cursor: default;
}

.button.disabled:hover {
    color: #cccccc;
    background: #fff;
}

.button-rnd {
    position: relative;
    display: inline-block;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 10px 40px 10px 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.button-rnd::before {
    content: '';
    width: 22px;
    height: 22px;
    position: absolute;
    left: 7px;
    top: 9px;
    background: #fff;
    border-radius: 50%;
}

.button-rnd.blue {
    background: #0380a5;
    color: #fff;
}

.button-rnd.blue:hover {
    background: #005c80;
}

.button-rnd.pink {
    background: #c00084;
    color: #fff;
}

.button-rnd.pink:hover {
    background: #a80070;
}

.button-rnd.green {
    background: #009836;
    color: #fff;
}

.button-rnd.green:hover {
    background: #007e1d;
}

.button-rnd.red {
    background: #fc0202;
    color: #fff;
}

.button-rnd.red:hover {
    background: #df0000;
}

/* Form styles */
form {
    position: relative;
    margin: 0px auto;
}

form .form-sending-layer {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: url('../images/spinner.gif') no-repeat center center;
}

form .input-item {
    position: relative;
    display: flex;
    margin: 0px 0px 15px 0px;
    flex-wrap: wrap;
}

form .input-item .left > label {
    font-size: 20px;
    width: 100%;
    text-align: right;
    padding: 0px 30px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

form .input-item .left > label span {
    display: block;
    width: 100%;
    font-size: 16px;
    margin: 15px 0px 0px;
}

form input[type='text'],
form textarea,
form select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #0380a5;
    height: 38px;
    line-height: 38px;
    font-size: 20px;
    color: #020000;
    padding: 0px 0px 0px 15px;
    background: #d4f1fa;
}

form textarea {
    height: 350px;
    border: 1px solid #0380a5;
    padding: 20px;
    font-size: 18px;
    line-height: 24px;
}

form input[type='submit']:disabled,
form input[type='submit']:disabled:hover {
    background: #cccccc;
    color: #fff;
    cursor: default;
}

form ::-webkit-input-placeholder {
    font-size: 18px;
    color: #020000;
    opacity: 0.3;
    line-height: 21px;
}

form ::-moz-placeholder {
    font-size: 18px;
    color: #020000;
    opacity: 0.3;
    line-height: 21px;
}

form :-ms-input-placeholder {
    font-size: 18px;
    color: #020000;
    opacity: 0.3;
    line-height: 21px;
}

form :-moz-placeholder {
    font-size: 18px;
    color: #020000;
    opacity: 0.3;
    line-height: 21px;
}

/* General form */
form.general {
    background: #d4f1fa;
}

form.general h2 {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    background: #0380a5;
    padding: 12px 0px 12px 20px;
}

form.general .input-item {
    margin: 0px 80px 80px;
}

form.general .input-item .left {
    width: 33%;
}

form.general .input-item .right {
    width: 67%;
}

form.general .input-item .right .col-4 {
    width: 32%;
}

form.general .input-item .right .col-4 label {
    display: flex;
    align-items: center;
    padding: 10px 0px 0px 40px;
}

form.general .input-item.privacy .right {
    margin: 0px 0px 0px -40px;
}

/* Submission form */
#submission-form {
    margin: 40px 0px 60px;
}

#submission-form .hidden {
    display: none;
}

#submission-form .author:first-child {
    margin: 0px;
}

#submission-form .author:first-child .remove-author {
    display: none;
}

#submission-form .author {
    margin: 40px 0px 0px;
    padding: 40px 0px 0px 0px;
    background: #b5e0ee;
}

#submission-form .author input {
    background: #b5e0ee;
}

#submission-form .input-item.additional-author {
    padding: 0px 80px 20px;
    background: #b5e0ee;
    margin: 0px 0px 60px;
}

#submission-form .plus-author {
    background: url('../images/icons/icon_plus.png') no-repeat left;
    padding: 0px 0px 0px 25px;
    margin: 20px 0px 0px;
    cursor: pointer;
    font-size: 16px;
}

#submission-form .remove-author {
    background: url('../images/icons/icon_minus.png') no-repeat left;
    padding: 0px 0px 0px 25px;
    margin: 20px 0px 0px;
    cursor: pointer;
    font-size: 16px;
}

#submission-form .input-item.nomargin {
    margin: 0px 80px;
}

#submission-form .info-text {
    margin: 20px 0px 0px;
}

#submission-form .info-text p {
    font-size: 12px;
}

#submission-form .info-text p:first-child {
    margin: 0px 0px 10px;
}

#submission-form .input-item label.msg {
    display: block;
}

#submission-form .input-item .text {
    margin: 0px 0px 0px 20px;
}

#submission-form .input-item .text p {
    font-size: 16px;
    line-height: 20px;
}

#submission-form .input-item article p,
#submission-form .input-item article p a {
    line-height: 26px;
}

#submission-form .input-item article p a.underline {
    text-decoration: underline;
}

#submission-form #subject-other-input {
    display: none;
    margin: 20px 0px 0px;
    width: 100%;
}

#submission-form .input-item.talk-title {
    display: none;
}

#submission-form .input-item.talk-title.show {
    display: flex;
}

#submission-form #subject-other-input.show {
    display: block;
}

/* Contact form */
#contact-form .inner {
    padding: 60px 0px;
}

#contact-form .input-item.submit {
    margin: 0px 80px;
}

#contact-form .input-item.privacy .right label {
    font-weight: 700;
}

/* Validator */
.error-message {
    position: absolute;
    right: 10px;
    color: #f00;
    font-size: 11px;
    bottom: 5px;
}

.error-message.relative {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 10px 0px 0px;
    width: 100%;
    text-align: right;
}

.error-sum {
    font-size: 13px !important;
    color: #f00 !important;
    position: absolute;
    bottom: -30px;
    right: 0px;
}

.validation-failed {
    border-bottom: 1px solid #f00 !important;
}

div.validation-failed {
    padding: 0px 0px 30px;
}

textarea.validation-failed {
    border: 1px solid #f00 !important;
}

[type='checkbox'].validation-failed + label:before {
    border: 1px solid #f00 !important;
}

.response {
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 20px 0px;
    background: #fff;
}

.response.success {
    border-left: 10px solid #54b50b;
}

.response.error {
    border-left: 10px solid #d82121;
}

.response.error p {
    margin: 0px 0px 5px;
}

/* Custom checkbox */
[type='checkbox']:not(:checked),
[type='checkbox']:checked {
    position: absolute;
    left: -9999px;
}

[type='checkbox']:not(:checked) + label,
[type='checkbox']:checked + label {
    position: relative;
    cursor: pointer;
    padding: 4px 0px 0px 40px;
    text-align: left;
    display: block;
}

[type='checkbox']:not(:checked) + label:before,
[type='checkbox']:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 23px;
    height: 23px;
    border: 1px solid #0380a5;
    border-radius: 0px;
    background: #d4f1fa;
}

[type='checkbox']:not(:checked) + label:after,
[type='checkbox']:checked + label:after {
    content: '✔';
    width: auto;
    height: auto;
    color: #0380a5;
    background: none;
    border-radius: 0px;
    position: absolute;
    top: 8px;
    left: 6px;
    transition: all 0.2s;
    font-size: 16px;
}

[type='checkbox']:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}

[type='checkbox']:checked + label:after {
    opacity: 1;
    transform: scale(1);
}

/* Custom radio button */
[type='radio']:not(:checked),
[type='radio']:checked {
    position: absolute;
    left: -9999px;
}

[type='radio']:not(:checked) + label,
[type='radio']:checked + label {
    position: relative;
    cursor: pointer;
    padding: 9px 0px 0px 30px;
}

[type='radio']:not(:checked) + label:before,
[type='radio']:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 23px;
    height: 23px;
    border: 1px solid #0380a5;
    border-radius: 50%;
}

[type='radio']:not(:checked) + label:after,
[type='radio']:checked + label:after {
    content: '';
    width: 13px;
    height: 13px;
    background: #0380a5;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 6px;
    transition: all 0.2s;
}

[type='radio']:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}

[type='radio']:checked + label:after {
    opacity: 1;
    transform: scale(1);
}

/* Custom file upload */
.choosed {
    font-size: 14px;
    display: block;
    float: left;
}

.choosed ul li {
    margin: 5px 0px;
    list-style: none;
}

.choosed ul li span {
    color: #f00;
    font-weight: bold;
    font-size: 13px;
}

.upload-wrapper {
    position: relative;
    overflow: hidden;
    width: 145px;
    height: 35px;
    line-height: 35px;
    border: none;
    z-index: 9000;
    background: #020000;
    text-align: center;
    flex-shrink: 0;
}

.upload-wrapper span {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.upload-wrapper input {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

/* Post styles */
article.landing h1 {
    font-size: 20px;
    color: #020000;
    margin: 0px 0px 10px;
    font-weight: 700;
    margin: 0px 0px 30px;
}

article h1 {
    font-size: 50px;
    color: #005f9a;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0px 0px 50px;
}

article h2 {
    font-size: 28px;
    color: #0380a5;
    font-weight: 700;
    margin: 0px 0px 30px;
}

article h3 {
    font-size: 20px;
    color: #020000;
    margin: 0px 0px 10px;
}

article p,
article ul,
article ol,
article td,
article a {
    font-size: 20px;
    color: #020000;
    line-height: 36px;
}

article a {
    color: #0380a5;
    text-decoration: none;
}

article a:hover {
    text-decoration: underline;
}

article ul,
article ol {
    margin: 0px 0px 0px 20px;
}

article ul li,
article ol li {
    margin: 0px 0px 20px;
}

article ul ul {
    margin-top: 20px;
}

article p {
    margin: 0px 0px 20px;
}

article p:last-child {
    margin: 0px;
}

/* Header landing */
header.landing {
    background: #0380a5;
}

header.landing .wrapper {
    height: 137px;
}

header.landing .deadline {
    font-size: 28px;
    color: #fff;
    letter-spacing: 7px;
    text-transform: uppercase;
}

header.landing .deadline span {
    font-weight: 700;
}

header.landing .timer {
    width: 36.7%;
    position: relative;
    background: #000;
    padding: 20px 0px 0px 30px;
}

header.landing .timer p {
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 34px;
}

header.landing .timer p span {
    display: inline-block;
    width: 55px;
    font-weight: 700;
    text-align: right;
    margin: 0px 10px 0px 0px;
    visibility: hidden;
}

header.landing .timer .left {
    position: absolute;
    right: 0px;
    top: 48px;
}

header.landing .timer .left p {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
}

header.landing .timer .left.rotate {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

/* Header */
header.main {
    /* background: #0380a5 url('../images/header_bg.jpg') bottom no-repeat; */
    background: #0380a5;
}

header.main .wrapper {
    height: 125px;
    padding: 12px 0px 0px;
}

header.main h1 {
    font-size: 34px;
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
    margin: 4px 0px 0px 7px;
}

/* Menu */
#menu.screen {
    padding: 0px 0px 0px 50px;
}

#menu.screen > ul {
    list-style: none;
    margin: 14px 0px 0px;
}

#menu.screen > ul > li {
    position: relative;
    display: flex;
    align-items: flex-end;
    margin: 0px 0px 0px 30px;
}

#menu.screen > ul > li:first-child {
    margin: 0px;
}

#menu.screen > ul > li a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 7px 10px;
}

#menu.screen > ul > li:hover,
#menu.screen > ul > li:hover a {
    background: rgba(2, 0, 0, 0.25);
}

#menu.screen > ul > li:hover > ul {
    display: block;
    list-style: none;
}

#menu.screen > ul > li ul {
    position: absolute;
    display: none;
    z-index: 50000;
    left: 0px;
    top: 36px;
    background: rgba(2, 0, 0, 0.25);
    width: 100%;
}

#menu.screen > ul > li ul li a {
    display: block;
}

/* Mobile menu */
#mobile-menu,
#mobile-menu.hide {
    display: none;
}

#mobile-menu {
    position: absolute;
    width: 32px;
    height: 24px;
    z-index: 900000;
    cursor: pointer;
    right: 35px;
    top: 45px;
}

#mobile-menu span.top,
#mobile-menu span.bottom,
#mobile-menu span.middle {
    position: absolute;
    right: 0px;
    background: #fff;
    width: 32px;
    height: 2px;
}

#mobile-menu span.top {
    top: 3px;
}

#mobile-menu span.middle {
    top: 50%;
    transform: translateY(-50%);
}

#mobile-menu span.bottom {
    bottom: 3px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    z-index: 900000;
    background: #0380a5;
    padding: 100px 0px 0px;
    text-align: center;
    overflow: scroll;
}

#menu.overlay h1 {
    font-size: 26px;
    margin: 0px 0px 20px;
}

.overlay a {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    padding: 8px 0px;
    text-decoration: none;
}

.overlay span {
    color: #fff;
}

.overlay ul.flex {
    display: block;
}

.overlay > ul > li {
    animation: fadeInRight 0.35s ease forwards;
    animation-delay: 0.35s;
    opacity: 0;
    position: relative;
    list-style: none;
}

.overlay > ul > li > a {
    text-transform: uppercase;
}

.overlay ul li ul {
    display: none;
}

.overlay ul li ul.open {
    display: block;
}

.overlay ul li ul {
    margin: 25px 0px;
}

.overlay ul li ul li a {
    font-size: 16px;
}

.overlay.open {
    opacity: 0.95;
    visibility: visible;
    height: 100%;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
}

#btn-close {
    position: absolute;
    top: 30px;
    background: transparent;
    width: 50px;
    height: 50px;
    z-index: 900000;
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

#btn-close span {
    position: absolute;
    left: 0;
    background: #fff;
    width: 100%;
    height: 2px;
    top: 20px;
}

#btn-close > span.left {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

#btn-close > span.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

/* Content */
.content {
    position: relative;
    padding: 60px 0px 80px;
}

/* Main image */
#main-image {
    position: relative;
    max-width: 1920px;
    margin: 0px auto;
}

#main-image .layer {
    position: absolute;
    top: 44%;
    right: 50px;
}

#main-image .layer h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 42px;
    margin: 0px 0px 20px;
}

#main-image .layer p {
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
}

#main-image .layer p:first-of-type {
    margin: 0px 0px 20px;
}

/* Homepage */
.homepage .buttons {
    margin: 0px 0px 50px;
}

.homepage .buttons a {
    margin: 0px 10px 0px 0px;
}

.homepage .buttons a:last-child {
    margin: 0px;
}

.homepage article.main p {
    font-size: 28px;
    line-height: 36px;
    margin: 0px 0px 50px;
}

.homepage .image-text {
    margin: 0px 0px 60px;
}

.homepage .image-text h2 {
    font-size: 28px;
    color: #0380a5;
    line-height: 36px;
    font-weight: 700;
    margin: 40px 0px;
}

.homepage .image-text p {
    font-size: 20px;
    color: #020000;
    line-height: 36px;
}

.homepage .image-text .wrapper > .left,
.homepage .image-text .wrapper > .right {
    width: 48%;
}

.homepage .image-text .text.right {
    padding: 0px 0px 0px 25px;
}

.homepage .image-text .text.left {
    text-align: right;
}

.homepage #quotation p {
    font-size: 20px;
    font-weight: 700;
}

.homepage #quotation p:first-child {
    font-size: 40px;
    color: #0380a5;
    font-weight: 700;
    line-height: 50px;
    margin: 0px 0px 10px;
}

/* Subpages */
#logo-image {
    margin: 50px 0px 0px;
}

#bottom-buttons {
    float: right;
    margin: 80px 0px 0px;
}

#bottom-buttons a {
    display: block;
    float: right;
    clear: both;
    margin: 60px 0px 0px;
}

#bottom-buttons a:first-child {
    margin: 0px;
}

/* Apply page */
.apply-page article.main p:first-child {
    font-size: 28px;
    line-height: 36px;
}

.apply-page article.main h2 {
    font-size: 28px;
    color: #0380a5;
    font-weight: 700;
    margin: 30px 0px;
}

.apply-page article p,
.apply-page article ul,
.apply-page article ol,
.apply-page article td,
.apply-page article a {
    font-size: 20px;
    color: #020000;
    line-height: 26px;
}

/* Submission page */
.submission-page article.main p:first-child {
    font-size: 28px;
    line-height: 34px;
}

.submission-page article.main h2 {
    font-size: 28px;
    color: #0380a5;
    font-weight: 700;
    margin: 30px 0px;
}

.submission-page article p,
.submission-page article ul,
.submission-page article ol,
.submission-page article td,
.submission-page article a {
    font-size: 20px;
    color: #020000;
    line-height: 36px;
}

/* Speakers page */
.speakers-page article h4 {
    font-size: 20px;
    color: #0380a5;
    line-height: 36px;
}

.speakers-page #speakers .speaker:last-child {
    margin: 0px;
}

#speakers {
    margin: 80px 0px 0px;
}

.speaker {
    margin: 0px 0px 60px;
}

.speaker .image {
    width: 20.9%;
}

.speaker .text {
    width: 79.1%;
    padding: 0px 0px 0px 20px;
}

.speaker .text h3 {
    font-size: 20px;
    color: #fd4343;
    font-weight: 700;
}

.speaker .text h2 {
    font-size: 28px;
    color: #020000;
    font-weight: 700;
    margin: 20px 0px 40px;
}

.speaker .text p,
.speaker .text li {
    font-size: 16px;
    line-height: 36px;
}

.speaker .text ol,
.speaker .text ul {
    margin: 0px 0px 0px 20px;
}

.speaker .text a {
    color: #0380a5;
    text-decoration: none;
}

.speaker .text a:hover {
    text-decoration: underline;
}

.speaker .text .position {
    margin: 5px 0px 20px;
}

.speaker .text .position p {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
}

/* Speakers arhive */
#speakers .year {
    border-top: 1px solid #707070;
}

#speakers .year > h2 {
    font-size: 50px;
    color: #fc0202;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 50px 0px;
}

/* Program page */
.program-page article h2 {
    margin: 0px;
}

/* Program archive page */
.program-archive-page .year {
    border-top: 1px solid #707070;
    padding: 0px 0px 80px;
}

.program-archive-page .year h3 {
    font-size: 50px;
    color: #005f9a;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 40px 0px;
    margin: 0px;
}

.program-archive-page article h2 {
    margin: 0px;
}

.program-archive-page .download {
    float: right;
    margin: 80px 0px 0px;
}

.program-archive-page .download a {
    display: block;
    float: right;
    clear: both;
    line-height: normal;
    text-decoration: none;
}

/* Gallery page */
#gallery {
    margin: 40px 0px 0px;
}

#gallery .box {
    display: block;
    width: 48%;
    border-top: 2px solid #d4d4d4;
    padding: 40px 0px;
    text-decoration: none;
}

#gallery .box h2 {
    font-size: 20px;
    color: #fc0202;
    margin: 0px 0px 60px;
}

/* Gallery arhcive */
#gallery.archive .year {
    border-top: 2px solid #d4d4d4;
    padding: 0px 0px 80px;
}

#gallery.archive .year h3 {
    font-size: 50px;
    color: #005f9a;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 40px 0px;
    margin: 0px;
}

#gallery.archive .year .box {
    border-top: none;
    padding: 0px;
}

#gallery.archive .year .box a:first-child {
    font-size: 20px;
    color: #020000;
    line-height: 36px;
    font-weight: 700;
    margin: 0px 0px 40px;
    text-decoration: none;
}

#gallery.archive .year .box a:first-child:hover {
    color: #fc0202;
}

#gallery.archive .year .box a {
    border-top: 2px solid #d4d4d4;
    display: block;
    padding: 80px 0px 0px;
}

/* Gallery details page */
.gallery-details-page article p:first-child {
    margin: 0px 0px 40px;
}

.gallery-details-page article h1 {
    font-size: 46px;
    text-transform: none;
    letter-spacing: 0px;
}

.gallery-details-page .image,
.gallery-details-page .desc {
    width: 48.5%;
}

.gallery-details-page .desc article p:first-child {
    font-size: 20px;
    font-weight: 700;
    color: #fc0202;
    margin: -8px 0px 40px;
}

.gallery-details-page .desc article p:first-child span {
    color: #0380a5;
}

.gallery-details-page .desc,
.gallery-details-page .desc p {
    font-size: 16px;
    line-height: 36px;
    margin: 0px 0px 40px;
}

.gallery-details-page .desc ul {
    font-size: 16px;
    line-height: 36px;
    margin: 0px 0px 40px 20px;
}

.gallery-details-page .desc a {
    font-size: 16px;
}

.gallery-details-page .arrow {
    position: absolute;
    width: 16px;
    height: 26px;
    background: url('../images/icons/icons_arrow.png');
    display: none;
}

.gallery-details-page .arrow.left {
    left: -80px;
}

.gallery-details-page .arrow.right {
    right: -80px;
    background-position: -16px 0px;
}

.gallery-details-page .nav {
    position: relative;
    height: 24px;
}

.gallery-details-page .nav a,
.gallery-details-page .back a {
    display: block;
    font-size: 20px;
    color: #020000;
    text-decoration: none;
    font-weight: 700;
}

.gallery-details-page .nav a:hover,
.gallery-details-page .back a:hover {
    color: #fc0202;
}

.gallery-details-page .nav a {
    position: absolute;
}

.gallery-details-page .nav a.prev {
    left: 0px;
}

.gallery-details-page .nav a.prev::before,
.gallery-details-page .nav a.next::after {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    background: url('../images/icons/icons_arrow.png') no-repeat;
    width: 16px;
    height: 26px;
}

.gallery-details-page .nav a.prev::before {
    left: -80px;
}

.gallery-details-page .nav a.next {
    right: 0px;
    background-position: -16px 0px;
}

.gallery-details-page .nav a.next::after {
    right: -80px;
    background-position: -16px 0px;
}

.gallery-details-page .back {
    margin: 60px 0px 0px;
}

.gallery-details-page .back a {
    background: url('../images/icons/arrow_down.png') no-repeat center 50px;
    padding: 0px 0px 50px;
    width: 255px;
    margin: 0px auto;
}

/* Contact page */
.contact-page article p {
    font-size: 28px;
}

.contact-page #contact-form .input-item p {
    font-size: 20px;
    color: #020000;
    line-height: 28px;
    margin: 0px 0px 20px;
}

.contact-page #contact-form .input-item p a {
    color: #0380a5;
    text-decoration: none;
}

.contact-page #contact-form .input-item p a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #0380a5;
}

footer span,
footer a {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .wrapper {
    height: 116px;
    padding: 10px 0px 20px;
}

footer .wrapper .left {
    width: 50%;
    display: flex;
    align-items: center;
}

footer .wrapper .left > div{
    display: flex;
    gap: 0px 20px;
}


footer .wrapper .right {
    width: 50%;
    justify-content: flex-end;
    align-items: flex-end;
}

footer .wrapper .right a {
    margin: 0px 0px 0px 20px;
}

/* Footer landing */
footer.landing {
    background: #0380a5;
}

footer.landing p,
footer.landing a {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

footer.landing .wrapper {
    height: 75px;
}

footer.landing .wrapper .left {
    width: 50%;
}

footer.landing .wrapper .right {
    width: 50%;
}

footer.landing .wrapper .right a:first-child {
    margin: 0px 30px 0px 0px;
}
