/* ==========================================================================
CUSTOM CSS
========================================================================== */

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/gotham-book.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-bold';
    src: url('../fonts/gotham/gotham-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
}

#status {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

body {
    padding-top: 63px;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    font-weight: 500;
    color: #000;
}

header {
    padding: 80px 0px;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}
h1, h2 {
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gotham-bold';
    font-weight: 700;
}

.section-title {
    margin-bottom: 2rem;
}

b, strong {
    font-family: 'Gotham-bold';
    font-weight: 700;
}

.lead {
    font-weight: 500;
}

.alert#cookie-consent {margin-bottom: 0px; border-radius: 0px; border: 1px solid #eeeeee;}

.full-size-background {
    background: url(../img/website-header-2022.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/website-header-2022.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/website-header-2022.jpg', sizingMethod='scale')";
}

/* ==========================================================================
COLOURS
========================================================================== */

.bg-white {
    background-color: #ffffff;
}

.bg-dark {
    background-color: #000000 !important;
}

.bg-warm-white {
    background-color: #FFF8F5 !important;
}

.bg-grey {
    background-color: #5B5D60;
    color: #fff;
}

.bg-light-grey {
    background-color: #DCE1E5;
}

.bg-fuchsia {
    background-color: #E1237b;
}

.bg-teal {
    background-color: #009F9F;
}

.text-dark {
    color: #000000 !important;
}

.text-grey {
    color: #5B5D60;
}

.text-teal {
    color: #009F9F;
}


.text-light-grey {
    color: #DCE1E5;
}


.text-fuchsia {
    color: #E1237b;
}


.border-black {
    border-color: #000;
}

.border-white {
    border-color: #ffffff;
}

a {
    color: #E1237b;
}

a:hover {
    color: #E1237b;
}


.bg-teal a, .bg-teal a:hover {
    color: #DCE1E5;

}

/* ==========================================================================
BUTTONS
========================================================================== */

.btn-bmo {
    cursor: pointer;
    display: inline-block;
    font-size: 1.2rem;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
    transition: all .2s ease;
    border-radius: 1.75rem;
    box-sizing: border-box;
    letter-spacing: .2em;
    line-height: 3.5rem;
    min-width: 200px;
    text-transform: uppercase;
    font-family: 'Gotham-bold';
    font-weight: 700;
}

.btn-bmo.btn-sm {
    font-size: .675rem;
    line-height: 2.5rem;
}

.btn-white {
    background-color: #ffffff;
    color: #E1237b;
}

.btn-white:hover {
    color: #E1237b;
}

.btn-fuchsia {
    border: 2px solid #ee007d;
    background-color: #E1237b;
    color: #ffffff;
}

.btn-fuchsia:hover {
    background-color: #FFF8F5 ;
    color: #E1237b;
}


.btn-teal {
    background-color: #009F9F;
    color: #ffffff;
}

.btn-teal:hover {
    background-color: #048b8b;
    color: #ffffff;
}

.btn-fuchsia-outline {
    background-color: transparent;
    color: #ee007d;
    border: 2px solid #ee007d;
}

.btn-fuchsia-outline:hover {
    background-color: #ee007d;
    color: #ffffff;
    border: 2px solid #ee007d;
}

.btn-light-grey {
    background-color: #DCE1E5;
    color: #000;
}

.btn-light-grey:hover {
    background-color: #ced4d8;
    color: #000;
}

.btn-black-outline {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-black-outline:hover {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

/* ==========================================================================
NAVIGATION
========================================================================== */

.navbar {
    padding-top: 0px;
    padding-bottom: 0px;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}


.navbar-brand {
    padding-top: 16px;
    padding-bottom: 16px;
    margin-right: 30px;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
    text-align: left;
}

.navbar-brand img {
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
    text-align: left;
}

.nav-item .nav-link {
    font-size: 0.9rem;
    padding: 1rem 1rem;
    color: #000 !important;
    text-transform: uppercase;
    font-family: 'Gotham-bold';

}

.nav-item .nav-link:hover {
    background-color: #DCE1E5;
}

.dropdown-menu {
    border-radius: 0px;
    background-color: #fff;
    color: #000 !important;
}

.dropdown-menu .dropdown-item {
    color: #000;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #d42f7c;
    text-decoration: none;
    background-color: #fff;
}

.navbar .navbar-nav>li>a {
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.nav-container {
    max-width: 100%;
}

/*.bmo-nav-logo {
    height: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.fcit-nav-logo {
    width: 140px;
    height: 20px;
}*/


/* ==========================================================================
HEADER
========================================================================== */


/* ==========================================================================
AGENDA
========================================================================== */

.table tbody tr:first-child td, .table tbody tr:first-child th {
    border-top: 0px;
}


/* ==========================================================================
SPEAKER
========================================================================== */

.speaker-container img {
    max-width: 70%;
    margin:auto;
    border-radius: 50%;
    margin-bottom: 40px;
}

/* ==========================================================================
MAP
========================================================================== */

.map-container {
    position: relative;
    color: #222;
    background-attachment: scroll;
    background-image: url(../img/map-image.jpg);
    background-position: center center;
    background-repeat: none;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    min-height: 500px;
}

#map {
    position:absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* Set z-index to 0 as it will be on a layer below the contact form */
}

/* ==========================================================================
FORM
========================================================================== */

.form-control {
    padding: 1.5rem 1rem;
    border: 1px solid #d2d2d2;
    border-radius: 0px;
}

.custom-select {
    height: calc(3rem + 2px);
    padding: 0.5rem 1rem;
    border: 1px solid #d2d2d2;
    border-radius: 0px;
}

form .card {
    border: 1px solid #d2d2d2;
    border-radius: 0px;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #ee007d;
}

.custom-control-input.is-valid~.custom-control-label, .was-validated .custom-control-input:valid~.custom-control-label {
    color: #000;
}

.custom-select.is-valid, .form-control.is-valid, .was-validated .custom-select:valid, .was-validated .form-control:valid {
    border-color: #d2d2d2;
}

.custom-control-input.is-valid~.custom-control-label::before, .was-validated .custom-control-input:valid~.custom-control-label::before {
    background-color: #dee2e6;
}

.custom-control-input.is-valid:checked~.custom-control-label::before, .was-validated .custom-control-input:valid:checked~.custom-control-label::before {
    background-color: #ee007d;
}

/* ==========================================================================
FOOTER
========================================================================== */

footer {
    padding-top: 80px;
    padding-bottom: 80px;
}


footer a {
    color: inherit !important;
}

/* ==========================================================================
FORM
========================================================================== */

.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: #E1237b;
}


/* ==========================================================================
VIDEOS
========================================================================== */

.play-icon-container {
    position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail:hover .play-icon-container {
    background-color: rgba(255, 255, 255, 0.1);
}

.play-icon-container i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* ==========================================================================
VIMEO CHAPTERS
========================================================================== */

.chapter-btn {
    position: relative;
    margin-right: 30px;
}

.chapter-btn-inner {
    padding: 10px;
    background-color: #ffffff;
    /*color: #212529;*/
    min-height: 220px;
}

.chapter-btn p {
    font-size: 0.8rem;
    line-height: 1.2rem;
}

.chapter-btn:hover {
    text-decoration: none;
}

.chapters-carousel .carousel-control-prev {
    color: #E1237b!important;
    top: -12%;
    left: -8%;
    width: 5%;
}

.chapters-carousel .carousel-control-next {
    color: #E1237b!important;
    top: -12%;
    right: -8%;
    width: 5%;
}

/* ==========================================================================
MODAL
========================================================================== */

.modal-content {
    border-radius: 0px;
    border: 0px;
}

/* ==========================================================================
ANIMATED HAMBURGER MENU
========================================================================== */

.hamburger {
    padding: 15px 15px 5px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:focus {
    outline: none;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background-color: #000000;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 3px;
    background-color: #000000;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}