﻿@font-face {
    font-family: "Poppins-Regular";
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: "Poppins-Bold";
    src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: "Poppins-Medium";
    src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: "Poppins-Light";
    src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: "Poppins-Thin";
    src: url(../fonts/Poppins-Thin.ttf);
}

:root {
    font-size: 14px;
    --primary: #e16937;
    --primary-hover: #4879F4;
    --black: #434343;
    --white: white;
    --dark-grey: #6F6F6F;
    --grey: #A0A0A0;
    --light-grey: #dee2e6;
    --blue-menu: #316c9d;
    --transition-speed: 600ms; /* velocidade de transição das animações */
    --text-color: var(--dark-grey);
    --cinza-color: #EFEFEF;
    --color-menuleft: #f8f8f8;
    --color-quick: #f7f7f7;
    /* 
		body text color
		.form-input color
		nav-icon color
		fill dos svg dos nav-icon
		grid-table color
	*/
    --menu-width: 5rem; /* tamanha do menu lateral sem estar expandido */
    --menu-width-expanded: 16.5rem; /* tamanho do menu lateral quando expandido */
    --menu-bg-color: var(--blue-menu); /* cor de fundo do menu */
    --header-bg-color: var(--primary); /* cor do fundo da header bar e cor principal da aplicação */


    --menu-left-bg-color: var(--blue-menu); /* cor de fundo do menu */
    /*
		cor da srollbar do side menu
		nav icon hover
		hover dos items da language div
		bg hover dos botoes da pageTitleBar
		selected color e hover dos quickfilters
		hover dos botoes das subgrids
		active e hover dos separadores
		hover dos botoes do form
		border e bg dos botoes das modais e cor do texto quando hover dos botoes das modais
	*/

    --button-text-color: var(--black);
    --button-bg-color: var(--primary);
    --button-hover-color: var(--primary-hover);
    --tab-color: var(--primary);
    --link-hover-color: var(--primary);
    --header-text-color: var(--white); /* cor do texto da header bar */
    --pageTitle-bg-color: var(--color-quick); /* cor do fundo da pageTitleBar*/
    --pageTitle-text-color: var(--black); /* cor do texto da pageTitleBar */
    --svg-fill-color: var(--white); /* cor dos icons svg */
    --svg-bg-color: var(--primary); /* cor de fundo dos icons svg */

    --primary-text-color: var(--black);
    /*
		links
		track da scrollbar do side menu
		fill dos svg da pesquisa e da paginacao
		close das modais
	*/
    /*
		subtitulo da pageTitleBar
	*/
    --subtitle-text-color: #656565;
    /*
    cor dos cabeçalhos das grids
        */
    --secondary-text-color: var(--grey);
    --form-label-text-color: var(--black);
    --form-input-border-color: #e6e6e6;
    --form-input-focus-border-color: #8c8c8c;
    --disabled-bg-color: var(--grey);
    /*cor dos textos nas disabled*/
    --tabDisabled-text-color: var(--grey);
}

body {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.8em;
    color: #585855;
    font-family: 'Poppins-Regular', sans-serif !important;
}

.font-bold {
    font-family: 'Poppins-Bold', sans-serif !important;
}

.font-semibold {
    font-family: 'Poppins-SemiBold', sans-serif !important;
}

.font-medium {
    font-family: 'Poppins-Medium', sans-serif !important;
}

h1, h2, h3, h5, h6 {
    font-weight: 400;
}

h4 {
    font-weight: 300;
    font-size: 15px;
}

a {
    color: #585855;
    text-decoration: none;
}

    a:hover {
        color: #34a7d3;
        text-decoration: none;
    }

    a:focus {
        outline: none;
    }

img {
    max-width: 100%;
    height: auto;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ------------------------------------------------------------------------------
   login
-------------------------------------------------------------------------------*/
.languageADdivPrinc {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.languageADdivImg {
    width: 40px;
    fill: var(--blue-menu);
}

.fontZizeLinksAd {
    font-size: 17px;
}

.login-info {
    margin-bottom: 0;
    margin-top: 15px;
    letter-spacing: normal;
}



.passwordText {
    text-security: disc;
    -webkit-text-security: disc;
    -moz-text-security: disc;
}



/*********************** GRITTER ***************************/
#gritter-wrapper {
    z-index: 7;
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 10px;
}

    #gritter-wrapper .alert {
        width: 60%;
    }

.account-gritter {
    top: 10%;
}

.alert p {
    margin-bottom: 0;
}

/*********************** ACCOUNT VIEWS ***************************/
.account-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #D6D6D6;
}

.loginContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
    min-height: 60vh;
    background-color: var(--white);
    border: 1px solid var(--white);
    border-radius: 20px;
    padding: 30px 30px 30px 30px;
}

    .loginContainer h1 {
        color: var(--header-bg-color);
    }

    .loginContainer h4 {
        color: var(--secondary-text-color);
    }

.loginAppLogo {
    width: 135px;
    height: 137px;
    /* UI Properties */
    opacity: 1;
}

.loginTitle1 {
    width: 100%;
    color: var(--blue-menu) !important;
    text-align: center;
    opacity: 1;
    font-size: 1.8rem;
}


.loginTitle2 {
    width: 100%;
    color: var(--blue-menu) !important;
    text-align: center;
    opacity: 1;
    font-size: 2rem;
    font-weight: bold;
}


.loginTitle3 {
    width: 100%;
    color: var(--blue-menu) !important;
    text-align: center;
    opacity: 1;
    font-size: 1.8rem;
    font-weight: bold;
}


.loginTitle {
    width: 100%;
}

.account-form {
    width: 85%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.account-input.form-input {
    margin-top: 10px;
    width: 100%;
}

.marginAdNodLogin {
    margin-top: 20px;
}

.labelAd {
    text-align: left;
    display: block;
    width: 100%;
}

.account-btn-row {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.account-btn {
    padding: 10px 40px;
    border: none !important;
    border-radius: 8px !important;
    height: 55px;
    font-size: 18px;
    margin-top: 1rem;
}

    .account-btn.register {
        margin-top: 12px;
    }

    .account-btn:not(:disabled) {
        background: var(--button-bg-color);
        color: var(--header-text-color);
    }

        .account-btn:not(:disabled):hover {
            background: var(--button-hover-color);
        }

.rememberMe-row {
    display: flex;
    text-align: center;
    justify-content: space-between;
}

.rememberMe {
    margin: 10px 0 10px 3px;
    font-size: 12px;
}

.account-link {
    color: var(--link-hover-color);
    font-size: 10px;
}

    .account-link:last-of-type {
        margin-top: 3px;
        margin-bottom: 20px;
    }

    .account-link:first-of-type {
        margin-top: 10px;
        font-size: 17px;
    }

    .account-link:hover {
        color: var(--button-hover-color);
    }

.loginSKLogo {
    max-width: 8rem;
    margin-bottom: 20px;
}

.loginSKLogo3 {
    height: 120px;
    margin-top: 15px;
}

.loginSKLogo1 {
    height: 61px;
}

.loginSKLogo2 {
    height: 52px;
    margin-bottom: 20px;
    width: auto;
    object-fit: contain;
}

.rowRadius {
    border-radius: 20px;
}

.fontZizeLinksAd {
    font-size: 17px;
}

.rowWidth {
    width: 100% !important;
}


.classLogiReg {
    width: 83% !important;
    margin-top: 30px;
}

.rowPadding {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.g-recaptcha {
    display: inline-block;
    margin-top: 20px;
}

.recaptcha-message {
    margin-bottom: 20px;
    font-size: 12px;
}


/* ------------------------------------------------------------------------------
   main
-------------------------------------------------------------------------------*/

#log_out-button {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    position: fixed;
    top: 0;
    right: 0;
    margin-top: 3em;
    margin-right: 3em;
    background-color: #E76929;
    border: none;
    z-index: 3;
    fill: white;
}

    #log_out-button:hover {
        background-color: #D04600;
    }

    #log_out-button svg {
        width: 3rem;
        fill: white;
    }


#language-button {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    position: fixed;
    top: 0;
    right: 0;
    margin-top: 3em;
    margin-right: 7em;
    background-color: #E76929;
    border: none;
    z-index: 3;
}

    #language-button:hover {
        background-color: #D04600;
    }

    #language-button svg {
        width: 3rem;
        fill: white;
    }

.language-select {
    right: 7rem;
    top: 3em;
    position: fixed;
    background: white;
    color: black;
    display: none;
    border: 1px solid #E76929;
}

    .language-select.show {
        display: block;
        z-index: 4;
    }

.language-item {
    display: block;
    padding: 5px 10px;
    cursor: pointer;
}

    .language-item:hover, .language-item.selected {
        background: #E76929;
        color: white;
    }

.up {
    position: fixed;
    z-index: 3;
    bottom: 0;
    right: 0;
    background-color: #E76929;
    margin: 2rem;
    opacity: 0;
    height: 4rem;
    width: 4rem;
}

    .up:hover {
        background: #D04600;
    }

    .up svg {
        width: 4rem;
        rotate: 180deg;
        fill: white;
    }

#main-up {
    position: absolute;
    z-index: -2;
    top: 0;
}

.menu ul {
    text-transform: uppercase;
}

.text-center {
    color: #0089C9 !important;
}

.imgTitle {
    height: 70px !important;
}

.main {
    background: url(../images/background.png);
    background-size: cover;
    background-position-y: center;
    padding: 3em 0 4.5em;
    position: relative !important;
    color: #fff;
    z-index: -1;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    z-index: -1;
}

.logo {
    text-align: center !important;
}

.logo2 {
    text-align: center !important;
    margin-bottom: 1em !important;
    margin-top: 1em !important;
}

.main h3 {
    font-size: 18px;
    font-weight: 700;
}

.welcome-message {
    padding-top: 5px;
}

.rotate {
    text-shadow: none !important;
}

.first-section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

    .first-section * {
        text-align: center;
        color: white;
    }

    .first-section h1 {
        font-weight: 600;
        letter-spacing: 3px;
        line-height: 35px;
        text-transform: uppercase;
    }

    .first-section h2 {
        font-weight: 700;
        margin-top: 1rem;
        margin-bottom: 3rem;
    }

    .first-section p {
        font-size: 20px;
    }

/* ------------------------------------------------------------------------------
   Subscription form 
-------------------------------------------------------------------------------*/

.form-control::-webkit-input-placeholder {
    color: #727272;
    font-weight: 300;
}

.form-control:-moz-placeholder {
    color: #727272;
    font-weight: 300;
}

.form-control::-moz-placeholder {
    color: #727272;
    font-weight: 300;
}

.form-control:-ms-input-placeholder {
    color: #727272;
    font-weight: 300;
}

.sub-form {
    padding-top: 1.5em;
    text-align: center;
}

.center-block {
    float: none;
}

.form-control {
    background-color: #fff;
    border: 1px solid #fff;
    box-shadow: none;
    height: 50px;
    font-weight: 300;
}

    .form-control:focus {
        border-color: #fff;
        outline: 0;
        box-shadow: none;
    }

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
    z-index: 1;
}

.btn-default {
    color: #fff;
    background-color: #34a7d3;
    border-color: #34a7d3;
    font-size: 13px;
    margin-top: 78px;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

    .btn-default:hover, .btn-default:focus, .btn-default:active {
        color: #fff;
        background-color: #20758d;
        border-color: #20758d;
    }

.btn-hotel {
    color: #fff;
    background-color: #34a7d3;
    border-color: #34a7d3;
    font-size: 14px;
    height: 50px;
    width: 200px;
    margin-top: 5px;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    padding: 12px 1.5em;
}





    .btn-hotel:hover, .btn-default:focus, .btn-default:active {
        color: #fff;
        background-color: #20758d;
        border-color: #20758d;
    }

    .btn:active:focus, .btn-hotel:focus, .btn:focus, .btn-default:active {
        outline: none;
    }


.btn-presentation {
    color: #fff;
    background-color: #34a7d3;
    border-color: #34a7d3;
    font-size: 11px;
    height: 28px;
    text-align: center;
    width: 75px;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    cursor: pointer;
}

    .btn-presentation:hover {
        color: #fff;
        background-color: #20758d;
        border-color: #20758d;
    }


#mc-notification {
    margin: .75em 0 0;
    color: #FFF;
}

.alert, .success {
    padding: .5em 1em;
    border-radius: 4px;
    display: inline-block;
}

.alert {
    background-color: rgba(231, 76, 60, 0.7);
}

.success {
    background-color: rgba(39, 174, 96, 0.7);
}

    .alert i, .success i {
        padding-right: .5em;
    }

.fa-paper-plane {
    padding-left: .5em;
}
/* ------------------------------------------------------------------------------
   Countdown styles
-------------------------------------------------------------------------------*/

ul.countdown {
    list-style: none;
    display: block;
    color: black;
    margin-bottom: 0;
    padding: 1.5em 0 0;
}

.countdown p {
    color: black;
}

ul.countdown li {
    display: inline-block;
}

    ul.countdown li span {
        font-size: 27px;
        font-weight: 600
    }

    ul.countdown li.seperator {
        font-size: 30px;
        color: black;
        vertical-align: top;
        padding: 0 8px;
    }

    ul.countdown li p {
        font-size: 17px;
        color: black;
        margin-bottom: 0;
        letter-spacing: 3px;
    }
/* ------------------------------------------------------------------------------
   Menu
-------------------------------------------------------------------------------*/

.menu li {
    display: inline-block;
    padding-right: .8em;
}

    .menu li:last-child {
        padding-right: 0;
    }

    .menu li a {
        display: block;
        width: 123px;
        font-size: 12px;
        color: #fff;
        background: #E76929;
        margin-bottom: 15px;
        -webkit-transition: all .8s ease;
        transition: all .8s ease;
    }

        .menu li a:hover {
            color: #fff;
            background: #D04600;
        }
/* ------------------------------------------------------------------------------
   Features
-------------------------------------------------------------------------------*/

.features-container {
    display: flex;
    flex-direction: column;
}

    .features-container img {
        margin: 30px 0;
    }

.section-spacing {
    padding: 4.5em 0;
}

.features.section-spacing {
    padding-bottom: 2.25em;
}

.features-intro {
    color: black;
    font-size: 16px;
}

.features h2, .product-features h4 {
    margin-top: 0;
}

.features h2 {
    margin-bottom: 1.5em;
    font-weight: 700;
    margin-top: 30px;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #217492;
}

.features h1 {
    margin-bottom: 0.2px;
    margin-top: 1.5em;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #bb282d;
}

.features h3 {
    margin-bottom: 20px;
    font-size: 15px;
    color: #585855;
    text-align: left;
}

.product-features {
    margin-bottom: 3em;
}

    .product-features p {
        margin-bottom: 0;
        color: black;
        font-size: 16px;
        margin-bottom: 15px;
        margin-top: 2rem;
    }



.target, .galery, .accreditation, .bilateralmeeting, .threecolumns, .security, .timeline-container {
    background: #D6D6D6;
}

    .bilateralmeeting p {
        color: #585855;
    }

    .bilateralmeeting h2 {
        margin-bottom: 1.5em;
        font-weight: 700;
        font-size: 27px;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    .bilateralmeeting ul {
        padding-left: 2rem;
        color: #585855;
        text-align: left;
        width: fit-content;
        margin: auto;
    }

    .bilateralmeeting li {
        list-style: disc;
    }

    .bilateralmeeting a {
        color: #0089C9;
    }

        .bilateralmeeting a:hover {
            text-decoration: underline;
        }

    .threecolumns .container {
        display: flex;
        justify-content: space-between;
        column-gap: 8rem;
    }

    .threecolumns .t-col {
        width: 50%;
    }

    .threecolumns p {
        text-align: left;
        color: #585855;
    }

    .threecolumns h2 {
        margin-bottom: 1.5em;
        font-weight: 700;
        font-size: 27px;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    .security h2 {
        margin-bottom: 1.5em;
        font-weight: 700;
        font-size: 27px;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

        .security h2:last-of-type {
            margin-top: 2.5em;
        }

    .security p {
        color: #585855;
        text-align: left;
    }

    .security ul {
        padding-left: 2rem;
        color: #585855;
        text-align: left;
    }

    .security li {
        list-style: disc;
    }

    .accreditation p {
        color: #585855;
        text-align: left;
    }

    .accreditation h2 {
        margin-bottom: 1.5em;
        font-weight: 700;
        font-size: 27px;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    .accreditation .register-button {
        display: flex;
        justify-content: center;
    }

    .accreditation .link-button {
        background: #E76929;
        color: white;
        padding: 5px 10px;
    }

        .accreditation .link-button:hover {
            background: #D04600;
            text-decoration: none;
        }

    .accreditation a {
        color: #0089C9;
    }

        .accreditation a:hover {
            text-decoration: underline;
        }

/* ------------------------------------------------------------------------------
   Theme
-------------------------------------------------------------------------------*/
.center-block {
    float: none;
}

.theme {
    background: url(../images/diner-bg.jpg) center center no-repeat fixed;
    background-size: cover;
    color: #fff;
    position: relative;
}

.overlay-t {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(27, 32, 38, 0.8);
    top: 0;
    z-index: -1;
}

.theme h2 {
    margin-bottom: 1.5em;
    font-weight: 700;
    font-size: 27px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #217492;
    position: relative;
}

.theme h4 {
    margin-bottom: 1em;
    font-size: 18px;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    line-height: 24px;
}

.theme p {
    margin-bottom: 1em;
    font-size: 16px;
    text-align: left;
    color: #fff;
    text-align: center;
}


/* ------------------------------------------------------------------------------
   accordion
-------------------------------------------------------------------------------*/
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}



    .accordionactive, .accordion:hover {
        background-color: #ccc;
    }

button.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2212";
}

.accordion-panel {
    padding: 0 18px;
    display: none;
    background-color: #f8f8f8;
    overflow: hidden;
}

.accordionoff {
    background-color: #eee;
    color: #444;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.ulSpeacker {
    list-style: inside !important;
    padding: 2.5px !important;
    margin: 0 !important;
}

    .ulSpeacker li {
        list-style: inside !important;
        padding: 2.5px !important;
        margin: 0 !important;
    }

.imgSpeacker {
    height: 350px;
}

.divSpeacker {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 16px;
}
/* ------------------------------------------------------------------------------
   speaker
-------------------------------------------------------------------------------*/
.textOradores {
    color: #585855;
    font-size: 20px;
    text-align: left;
    line-height: 16px;
    font-weight: 300;
    font-family: inherit;
}

    .textOradores:nth-of-type(1) {
        border-bottom: 1px solid #E76929;
    }

    .textOradores:nth-of-type(2) {
        border-bottom: 1px solid #E76929;
    }

    .textOradores:nth-of-type(3) {
        border-bottom: 1px solid #E76929;
    }

    .textOradores:nth-of-type(4) {
        border-bottom: 1px solid #E76929;
    }

.speaker span.star {
    color: #E76929;
}

.speaker ul {
    padding-left: 2rem;
}

.speaker li {
    list-style: disc;
}

.last-speaker-intro-p {
    margin-bottom: 5px !important;
}

.last-speaker-outro-p {
    margin-top: 30px !important;
}

.speaker span, .speaker li {
    font-size: 16px;
}

.speaker a {
    color: #217492;
}

.speaker h2 {
    margin-bottom: 1.5em;
    font-weight: 700;
    font-size: 27px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #217492;
}

.speaker h3 {
    margin-bottom: 30px;
    margin-top: 45px;
    font-weight: 700;
    font-size: 19px;
    text-align: center !important;
    text-transform: uppercase;
    color: #bb282d;
}

.speaker h4 {
    margin-bottom: 0;
    color: #585855;
    font-size: 14px;
    text-align: center !important;
    text-align: left;
    margin-bottom: 14px;
    line-height: 16px;
}

.speaker h5 {
    margin-bottom: 0;
    color: #585855;
    font-size: 14px;
    text-align: left;
    margin-bottom: 14px;
    line-height: 18px;
}

.speaker p {
    margin-bottom: 0;
    font-size: 16px;
    text-align: left;
    margin-bottom: 30px;
}

.speaker p1 {
    margin-bottom: 0;
    color: #34a7d3;
    font-size: 14px;
    text-align: left;
    margin-bottom: 15px;
}

.speaker-form {
    margin-top: 3em;
}

    .speaker-form .form-control {
        border-color: #ddd;
        margin-bottom: .75em;
        padding: .75em 12px;
    }

    .speaker-form label.error {
        margin-bottom: 12px;
        font-weight: 300;
        color: #ea5050;
    }

.speaker .btn-default {
    width: 100%;
}

.speaker-column {
    float: left;
    width: 50%;
}


/* ------------------------------------------------------------------------------
   hotel
-------------------------------------------------------------------------------*/

.hotel h2 {
    margin-bottom: 1.5em;
    font-weight: 700;
    font-size: 27px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #217492;
}

.hotel h3 {
    margin-bottom: 30px;
    margin-top: 45px;
    font-weight: 700;
    font-size: 19px;
    text-align: center !important;
    text-transform: uppercase;
    color: #bb282d;
}

.hotel h4 {
    margin-bottom: 0;
    color: #585855;
    font-size: 14px;
    text-align: center !important;
    text-align: left;
    margin-bottom: 14px;
    line-height: 16px;
}

.hotel h5 {
    margin-bottom: 0;
    color: #585855;
    font-size: 14px;
    text-align: left;
    margin-bottom: 14px;
    line-height: 18px;
}

.hotel p {
    margin-bottom: 0;
    color: #34a7d3;
    font-size: 14px;
    text-align: center !important;
    text-align: left;
    margin-bottom: 15px;
}

.hotel p1 {
    margin-bottom: 0;
    color: #34a7d3;
    font-size: 14px;
    text-align: left;
    margin-bottom: 15px;
}

.hotel-form {
    margin-top: 3em;
}

    .hotel-form .form-control {
        border-color: #ddd;
        margin-bottom: .75em;
        padding: .75em 12px;
    }

    .hotel-form label.error {
        margin-bottom: 12px;
        font-weight: 300;
        color: #ea5050;
    }

.hotel .btn-default {
    width: 100%;
}

.hotel-column {
    float: left;
    width: 50%;
}

/* ------------------------------------------------------------------------------
   schedule
-------------------------------------------------------------------------------*/

.schedule h2 {
    margin-bottom: 1.5em;
    font-weight: 700;
    font-size: 27px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #217492;
}

.schedule h3 {
    margin-bottom: 30px;
    margin-top: 45px;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    color: #E76929;
}

.schedule h4 {
    margin-bottom: 0;
    color: #585855;
    font-size: 14px;
    text-align: left;
    margin-bottom: 14px;
    line-height: 16px;
}

.schedule span {
    color: #585855;
}

.schedule h5 {
    margin-bottom: 0;
    color: #585855;
    font-size: 14px;
    text-align: left;
    margin-bottom: 14px;
    line-height: 18px;
}

.schedule p {
    margin-bottom: 0;
    color: #34a7d3;
    font-size: 16px;
    text-align: left;
    margin-bottom: 15px;
}

.schedule-form {
    margin-top: 3em;
}

    .schedule-form .form-control {
        border-color: #ddd;
        margin-bottom: .75em;
        padding: .75em 12px;
    }

    .schedule-form label.error {
        margin-bottom: 12px;
        font-weight: 300;
        color: #ea5050;
    }

.schedule .btn-default {
    width: 100%;
}

.schedule-column {
    float: left;
    width: 50%;
}

.schedule-cols {
    display: flex;
    column-gap: 10rem;
}

    .schedule-cols div {
        width: 50%;
    }

.otherinformations {
    padding-top: 0 !important;
}

    .otherinformations h2 {
        margin-bottom: 1.5em;
        font-weight: 700;
        font-size: 27px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #217492;
    }

    .otherinformations p {
        margin-bottom: 0;
        color: #585855;
        font-size: 15px;
        text-align: center;
        margin-bottom: 15px;
    }
/* ------------------------------------------------------------------------------
   sidewaysessions
-------------------------------------------------------------------------------*/
.sessionPlay {
    height: 20px;
}

.sessionDownload {
    height: 24px;
}

.sidewaysessions h2 {
    margin-bottom: 1.5em;
    font-weight: 700;
    font-size: 27px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #217492;
}

.sidewaysessions h3 {
    margin-bottom: 30px;
    margin-top: 45px;
    font-weight: 700;
    font-size: 19px;
    text-align: left !important;
    text-transform: uppercase;
    color: #34a7d3;
}

.sidewaysessions h4 {
    margin-bottom: 0;
    color: #34a7d3;
    font-size: 14px;
    text-align: left !important;
    text-align: left;
    margin-bottom: 15px;
}

.sidewaysessions h5 {
    margin-bottom: 0;
    color: #585855;
    font-size: 14px;
    text-align: left;
    margin-bottom: 14px;
    line-height: 18px;
}

.sidewaysessions p {
    margin-bottom: 0;
    color: #585855;
    font-size: 14px;
    text-align: left !important;
    text-align: left;
    margin-bottom: 14px;
    line-height: 16px;
}

.sidewaysessions p1 {
    margin-bottom: 0;
    color: #34a7d3;
    font-size: 14px;
    text-align: left;
    margin-bottom: 15px;
}

.sidewaysessions-form {
    margin-top: 3em;
}

    .sidewaysessions-form .form-control {
        border-color: #ddd;
        margin-bottom: .75em;
        padding: .75em 12px;
    }

    .sidewaysessions-form label.error {
        margin-bottom: 12px;
        font-weight: 300;
        color: #ea5050;
    }

.sidewaysessions .btn-default {
    width: 100%;
}

.sidewaysessions-column {
    float: left;
    width: 50%;
}

/* ------------------------------------------------------------------------------
   app
-------------------------------------------------------------------------------*/

.document ul {
    padding-left: 2rem;
    color: #585855;
    text-align: left;
    width: fit-content;
    margin: auto;
}

.document li {
    list-style: disc;
}

.document span:hover {
    color: #0089C9;
    text-decoration: underline;
}

.document .row {
    text-align: center;
}

/* ------------------------------------------------------------------------------
   Contact
-------------------------------------------------------------------------------*/

.contact h2 {
    margin-bottom: 1.5em;
    font-weight: 700;
    font-size: 27px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #217492;
}

.contact h3 {
    margin-bottom: O.5em;
    margin-top: O.8em;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    color: #bb282d;
}

.contact h4 {
    margin-bottom: 0;
    color: #585855;
    font-size: 15px;
    text-align: left;
    margin-bottom: 15px;
}

.contact p {
    margin-bottom: 0;
    color: #585855;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.contact-form {
    margin-top: 3em;
}

    .contact-form .form-control {
        border-color: #ddd;
        margin-bottom: .75em;
        padding: .75em 12px;
    }

.contact li {
    display: block;
    padding-right: .8em;
}

    .contact li i {
        padding-right: 8px;
        color: #bb282d;
    }

.contact .btn-default {
    width: 100%;
}

.contact .row {
    text-align: center;
}

.contact a {
    color: #0089C9;
}

    .contact a:hover {
        text-decoration: underline;
    }
/* ------------------------------------------------------------------------------
   galery
-------------------------------------------------------------------------------*/

.galery h2 {
    margin-bottom: 1.5em;
    font-weight: 700;
    font-size: 27px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #217492;
}

.galery h3 {
    margin-bottom: O.5em;
    margin-top: O.8em;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    color: #bb282d;
}

.galery h4 {
    margin-bottom: 0;
    color: #585855;
    font-size: 15px;
    text-align: left;
    margin-bottom: 15px;
}

.galery p {
    margin-bottom: 0;
    color: #585855;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.galery-form {
    margin-top: 3em;
}

    .galery-form .form-control {
        border-color: #ddd;
        margin-bottom: .75em;
        padding: .75em 12px;
    }

.galery li {
    display: block;
    padding-right: .8em;
}

    .galery li i {
        padding-right: 8px;
        color: #bb282d;
    }


/* ------------------------------------------------------------------------------
   target
-------------------------------------------------------------------------------*/

.target h2 {
    margin-bottom: 1.5em;
    font-weight: 700;
    font-size: 27px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #217492;
}

.target h3 {
    margin-bottom: O.5em;
    margin-top: O.8em;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    color: #bb282d;
}

.target h4 {
    margin-bottom: 0;
    color: #585855;
    font-size: 15px;
    text-align: left;
    margin-bottom: 15px;
}

.target p {
    margin-bottom: 0;
    color: #585855;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.target-form {
    margin-top: 3em;
}

    .target-form .form-control {
        border-color: #ddd;
        margin-bottom: .75em;
        padding: .75em 12px;
    }

.target li {
    display: block;
    padding-right: .8em;
}

    .target li i {
        padding-right: 8px;
        color: #bb282d;
    }

/* ------------------------------------------------------------------------------
   contact Form Validation
-------------------------------------------------------------------------------*/


.contact-form label.error i {
    padding-right: 8px;
}

.success-cf, .error-cf {
    display: none;
}

    .success-cf p {
        background: rgba(39, 174, 96, 0.7);
    }

    .error-cf p {
        background: rgba(231, 76, 60, 0.7);
    }

.contact-form {
    position: relative;
}

    .contact-form .success-cf p, .contact-form .error-cf p {
        position: absolute;
        display: block;
        top: 40%;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 10;
        color: #fff;
        border-radius: 2px;
        padding: .75em;
    }
/* ------------------------------------------------------------------------------
   Map
-------------------------------------------------------------------------------*/
.map {
    position: relative;
    box-shadow: 0 0 0 4px #fff;
    border-radius: 2px;
}

#map-canvas {
    width: 100%;
    height: 320px;
    margin: 0px;
    padding: 0px
}

    #map-canvas img {
        max-width: none;
    }

.address {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.71);
    color: #666;
    text-align: center;
    padding: 1em;
}

    .address li i {
        padding-right: 8px;
        color: #bb282d;
    }

    .address li {
        padding-bottom: .5em;
        color: #585855;
    }

        .address li:last-child {
            padding-bottom: 0;
        }
/* ------------------------------------------------------------------------------
   footer
-------------------------------------------------------------------------------*/

.site-footer {
    background: #F1F1F1;
}

    .site-footer.section-spacing {
        padding: 1.5em 0;
    }

    .site-footer h3 {
        margin: 0;
    }

    .site-footer small {
        color: #585855;
        display: block;
        margin-top: 20px;
    }



.footer1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.logos-sgmai {
    width: 65%;
}

.supported-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
    flex: initial;
}

    .supported-footer small {
        font-size: 12px;
        margin-top: 0;
    }

    .supported-footer .supported-logo {
        width: 30%;
    }
/* ------------------------------------------------------------------------------
   scroll top
-------------------------------------------------------------------------------*/
.scroll-top {
    margin-bottom: 0;
}

    .scroll-top a {
        position: fixed;
        bottom: 2em;
        right: 2em;
        text-decoration: none;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.3);
        font-size: 12px;
        padding: .8em 1em;
        display: none;
        z-index: 200;
        border-radius: 5px;
        -webkit-transition: background .5s ease-in;
        transition: background .5s ease-in;
    }

        .scroll-top a:hover {
            background: #bb282d;
        }

/* ------------------------------------------------------------------------------
   Small devices (tablets, 768px and up)
-------------------------------------------------------------------------------*/

@media (min-width: 768px) {
    .main {
        padding: 3em 0 7.5em;
    }

    .logo {
        text-align: center !important;
        margin-bottom: 0;
    }

    .welcome-message {
        padding-top: 6em;
    }

    .menu {
        margin: auto;
    }

    ul.countdown {
        padding-top: 4em;
    }

        ul.countdown li span {
            font-size: 27px;
        }

        ul.countdown li.seperator {
            font-size: 27px;
            padding: 0 20px;
        }
}

/* ------------------------------------------------------------------------------
   Medium devices (desktops, 992px and up) 
-------------------------------------------------------------------------------*/
.imgLogo {
    width: 25%;
}

.btnContact {
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .imgLogo {
        height: 250px;
        width: auto;
    }
}


@media (max-width: 770px) {
    .video-container {
        margin-top: 60px;
    }
}



@media (min-width: 992px) {
    .main {
        position: fixed !important;
        top: 0;
        width: 100%;
    }

    .features, .twitter-feed, .contact, .hotel, .speaker, .schedule, .sidewaysessions, .target, .theme, .app, .galery, .site-footer {
        position: relative;
        z-index: 2;
    }

    .welcome-message {
        padding-top: 4em;
    }

    .section-spacing {
        padding: 4em 0;
    }

    .features.section-spacing {
        padding: 6em 0 3em;
    }

    .product-features {
        margin-bottom: 3.75em;
    }

    .contact, .hotel, .speaker {
        background: #fff;
    }


    .contact-form {
        margin-top: 0;
    }

    .animated {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }

    @-webkit-keyframes fadeInUp {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }

        100% {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            -webkit-transform: translate3d(0, 100%, 0);
            -ms-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
        }

        100% {
            opacity: 1;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }
    }

    .fadeInUp {
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
    }
}

/* ------------------------------------------------------------------------------
   small devices 
-------------------------------------------------------------------------------*/



@media (max-width: 320px) {
    ul.countdown li span {
        font-size: 21px;
    }

    ul.countdown li.seperator {
        font-size: 25.629px;
        vertical-align: top;
        padding: 0 2px;
    }

    ul.countdown li p {
        font-size: 12.642px;
    }


    .contact-column {
        text-align: center;
        width: 100%;
    }
}

@media(max-width:480px) {
    .contact-column {
        text-align: center;
        width: 100%;
    }
}

/* ------------------------------------------------------------------------------
   Modal
-------------------------------------------------------------------------------*/


.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transition: -webkit-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
        transition: transform .3s ease-out;
        -webkit-transform: translate3d(0, -25%, 0);
        -o-transform: translate3d(0, -25%, 0);
        transform: translate3d(0, -25%, 0);
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .modal-backdrop.in {
        filter: alpha(opacity=50);
        opacity: .5;
    }

.modal-header {
    min-height: 16.42857143px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}

.modal-footer:after {
    clear: both;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

    .fade.in {
        opacity: 1;
    }

.timeline-sub-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.header {
    color: #0089C9;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .header::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        transform: translateX(-50%);
        border-radius: 2px;
    }

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.header p {
    font-size: 14px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    padding: 4rem 2rem;
    position: relative;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #0089C9;
        transform: translateX(-50%);
        border-radius: 2px;
    }

.timeline-item {
    position: relative;
    margin: 3rem 0;
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
}

    .timeline-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .timeline-item:nth-child(2) {
        animation-delay: 0.3s;
    }

    .timeline-item:nth-child(3) {
        animation-delay: 0.5s;
    }

    .timeline-item:nth-child(4) {
        animation-delay: 0.7s;
    }

    .timeline-item:nth-child(5) {
        animation-delay: 0.9s;
    }

    .timeline-item:nth-child(6) {
        animation-delay: 1.1s;
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: calc(50% + 2rem);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 2rem);
    margin-right: 0;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    border: 1px solid #e0e6ed;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-right-color: white;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #0089C9;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #0089C9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.date {
    font-size: 13px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .date::before {
        font-size: 1rem;
    }

.event-title {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.event-description {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

.partnership-banner {
    background: #D6D6D6;
    color: #585855;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

    .partnership-banner h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .partnership-banner p {
        font-size: 16px;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1rem;
    }

    .timeline::before {
        left: 2rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 4rem;
        margin-right: 1rem;
        text-align: left;
    }

        .timeline-item:nth-child(odd) .timeline-content::after {
            display: none;
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            right: auto;
            left: -15px;
            border-right-color: white;
            border-left-color: transparent;
        }

    .timeline-dot {
        left: 2rem;
    }

    .timeline-number {
        left: 2rem;
    }

    .partnership-banner h2 {
        font-size: 1.5rem;
    }
}

/*********************** BANNER ***************************/
.banner-slider {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 49em;
    margin-top: 47em;
    background: #a2c1cf;
    min-height: 650px;
}

.carousel {
    width: 100%;
    margin-right: 14rem;
    margin-left: 14rem;
}

.carousel-item p {
    font-size: 20px;
    color: black;
}

.carousel-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.carousel-caption {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

    .carousel-caption h1 {
        font-size: 40px;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption h5 {
        line-height: 1.7;
    }

#banner .carousel-item.active, #banner .carousel-item-next, #banner .carousel-item-prev {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#banner .carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    opacity: 1;
    z-index: 0;
    margin-top: auto;
    margin-bottom: auto;
    border: 1px solid var(--green);
}

    #banner .carousel-control:hover {
        background-color: transparent;
    }

        #banner .carousel-control:hover svg {
            fill: var(--green);
        }

#banner .carousel-control-next {
    right: 100px;
}

#banner .carousel-control-prev {
    left: 100px;
}

#banner .carousel-control svg {
    fill: black;
    width: 30px;
    height: 30px;
}

#banner .carousel-control-prev svg {
    margin-left: -2px;
}

#banner .carousel-control-next svg {
    margin-right: -2px;
}

.image-frame {
    width: 200px;
    margin-bottom: 20px;
}

.image-frame2 {
    margin-bottom: 20px;
}

.active.carousel-item-start, .carousel-item-prev:not(.carousel-item-end) {
    display: none !important;
}

.active.carousel-item-end, .carousel-item-next:not(.carousel-item-start) {
    display: none !important;
}

.carousel .link-button {
    background: #E76929;
    color: white;
    padding: 15px 29px;
    text-transform: uppercase;
    font-weight: bolder;
    margin-top: 1em;
}

    .carousel .link-button:hover {
        background: #D04600;
        text-decoration: none;
    }

.carousel-item h3 {
    color: #0089C9;
    margin-bottom: 1em;
    font-weight: 700;
    margin-top: 30px;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
