/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

* {
    transition: 0.5s;
}

body {
    background: #fff;
    color: #333;
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem !important;
}

a {
    color: #4CBF00FF;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: #2dca98;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
    font-weight: lighter;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: lighter;
    margin: 0 0 20px 0;
    padding: 0;
}

h4 {
    margin-top: 37px !important;
}

div.member span {
    font-size: 85% !important;
}

.container,
.container-md,
.container-sm {
    max-width: 90% !important;
}

.tac {
    text-align: center;
}

.tal {
    text-align: left;
}

.tar {
    text-align: right;
}

.cp {
    cursor: pointer;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #4CBF00FF;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #49d6a9;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 90px;
    transition: all 0.5s;
    z-index: 997;
    background: rgba(52, 59, 64, 0.9);
}

#header #logo h1 {
    font-size: 32px;
    margin: 0;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: #fff;
}

#header #logo img {
    padding: 0;
    margin: 0;
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: rgba(52, 59, 64, 0.9);
    height: 70px;
    transition: all 0.5s;
}

.scrolled-offset {
    margin-top: 70px;
}

#header:not(.header-scrolled) h1.scr {
    display: none;
}

#header.header-scrolled h1.scr {
    display: block;
    font-size: 18px !important;
    text-align: center;
}

#header:not(.header-scrolled) h1.notscr {
    display: block;
}

#header.header-scrolled h1.notscr {
    display: none;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 15px;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 12px;
    padding: 0 4px;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.4px;
    position: relative;
    text-transform: uppercase;
}

.navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #4CBF00FF;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #666666;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #4CBF00FF;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(77, 77, 77, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #666666;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #4CBF00FF;
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #4CBF00FF;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Main Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background: url(../img/bg.jpg) top center;
    background-size: cover;
    position: relative;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#hero h1 {
    margin: 30px 0 10px 0;
    font-size: 48px;
    font-weight: lighter;
    line-height: 56px;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

#hero h2 {
    color: #eee;
    /*margin-bottom: 50px;*/
    font-size: 24px;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

#hero .btn-get-started {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#hero .btn-get-started:hover {
    background: #4CBF00FF;
    border: 2px solid #4CBF00FF;
}

#hero .icmlogo {
    max-width: 90%;
    width: 430px;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

section {
    overflow: hidden;
}


/* Sections Header
--------------------------------*/

.section-header .section-title {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: lighter;
    margin-bottom: 5px;
}

.section-header .section-description {
    font-size: 24px;
    text-align: center;
    padding-bottom: 40px;
    color: #999;
}

@media (max-width: 990px) {
    .section-header .section-title {
        font-size: 28px;
    }
    .section-header .section-description {
        font-size: 22px;
        padding-bottom: 30px;
    }
}

@media (max-width: 730px) {
    .section-header .section-title {
        font-size: 24px;
    }
    .section-header .section-description {
        font-size: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 660px) {
    .section-header .section-title {
        font-size: 20px;
    }
    .section-header .section-description {
        font-size: 18px;
        padding-bottom: 10px;
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 20px 0;
    background-color: whitesmoke;
    min-height: 40px;
    margin-top: 92px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


/* About Us Section
--------------------------------*/

#about {
    background: #fff;
    padding: 80px 0;
}

#about .topics_list_header {
    margin-top: 25px !important;
}

#about .about-container .background {
    min-height: 300px;
    background: url(../img/about-img.png) no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom: 10px;
}

#about .about-container .content {
    background: #fff;
}

#about .about-container .title {
    color: #333;
    font-weight: lighter;
    font-size: 32px;
}

@media (max-width: 768px) {
    #about .about-container .title {
        padding-top: 15px;
    }
}

#about .about-container p {
    line-height: 26px;
}

#about .about-container p:last-child {
    margin-bottom: 0;
}

#about .about-container .list-row {
    display: block;
    min-height: 80px;
}

#about .about-container .icon-box {
    background: #fff;
    background-size: cover;
    padding: 0 0 30px 0;
    display: table-row;
    min-height: 64px;
    max-height: 64px;
}


/* #about .about-container .icon-box div.description { display: table-cell; } */

#about .about-container .list-row div.description div {
    display: none;
}

#about .about-container .icon-box .icon {
    display: table-cell;
    background: #fff;
    width: 64px;
    height: 64px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #4CBF00FF;
}

#about .about-container .icon-box .icon i {
    color: #4CBF00FF;
    font-size: 24px;
    line-height: 0;
    margin-top: 30px;
}

#about .about-container .icon-box .title {
    margin-left: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: uppercase;
    height: 64px;
}

#about .about-container .icon-box .title a {
    color: #111;
}


/*#about .about-container .icon-box .description { margin-left: 80px; line-height: 24px; font-size: 14px; }*/

#about .about-container .list-row table {
    display: block;
    min-height: 80px;
}

#about .about-container .list-row table td div.icon {
    font-size: 37px;
    font-weight: lighter;
    color: #4CBF00FF;
}

#about .about-container .list-row table td div.ltitle {
    padding-left: 20px;
    font-size: 18px;
    font-weight: lighter;
    text-transform: uppercase;
}

#about .about-container .list-row div.description {
    margin-top: -25px;
    padding-left: 20px;
    font-size: 14px;
    font-weight: lighter;
    text-transform: none;
    display: none;
    position: relative;
    z-index: 50000;
    width: 90%;
    background-color: #FFF;
    border-radius: 4px;
    border: 0px solid #888;
    box-shadow: 1px 1px 3px #ccc;
}

#about .about-container .list-row:hover div.description {
    display: block;
}

#about .main_text * {
    text-align: justify;
}

@media (max-width: 990px) {
    #about .container {
        max-width: 92% !important;
    }
    #about .about-container .title {
        font-size: 28px;
    }
    #about .about-container p {
        line-height: 24px;
        font-size: 1.0rem !important;
    }
    #about .about-container .list-row table td div.ltitle {
        padding-left: 15px;
        font-size: 1.0rem;
    }
}

@media (max-width: 730px) {
    #about .container {
        max-width: 94% !important;
    }
    #about .about-container .title {
        font-size: 24px;
    }
    #about .about-container p {
        line-height: 22px;
        font-size: 0.9rem !important;
    }
    #about .about-container .list-row table td div.ltitle {
        padding-left: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 660px) {
    #about .container {
        max-width: 96% !important;
    }
    #about .about-container .title {
        font-size: 20px;
    }
    #about .about-container p {
        line-height: 20px;
        font-size: 0.8rem !important;
    }
    #about .about-container .list-row table td div.ltitle {
        padding-left: 5px;
        font-size: 0.8rem;
    }
}


/* Registration Section
--------------------------------*/

#registration {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/bg.jpg) fixed center center;
    background-size: cover;
    padding: 80px 0;
}

@media (max-width: 1024px) {
    #registration {
        background-attachment: scroll;
    }
}

#registration .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: lighter;
    text-shadow: 0px 0px 2px #fff;
}

#registration p {
    color: #fff;
    text-shadow: 0px 0px 2px #fff;
}

#registration p a,
#registration p a:visited {
    color: #EDFE00FF;
    text-shadow: 0px 0px 2px #fff;
}

#registration p a:hover {
    color: #00FFF0FF;
    text-shadow: 0px 0px 2px #fff;
    text-decoration: underline;
}

@media (min-width: 769px) {
    #registration .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

#registration .cta-btn {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: lighter;
    font-size: 25px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#registration .cta-btn:hover {
    background: #4CBF00FF;
    border: 2px solid #4CBF00FF;
}

.finsupDetails label input[type=checkbox] {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: inherit;
    width: 1em;
    margin: 0;
    color: inherit;
    outline: none;
    font-family: "Font Awesome 5 Pro";
    transition: 300ms ease-out;
}

.finsupDetails label input[type=checkbox]::after {
    content: "✗";
    display: inline-block;
    text-align: center;
    width: 1em;
    color: red;
}

.finsupDetails label input[type=checkbox]:checked::after {
    font-weight: 900;
}

.finsupDetails label input[type=checkbox]:active {
    transform: scale(0.6);
}

.finsupDetails label input[type=checkbox]+span {
    margin-left: 0.35em;
}

.finsupDetails label input[type=checkbox]:checked::after {
    content: "✓";
    color: green;
}

.finsupDetails.square label input[type=checkbox]:after {
    content: "✗";
    color: red;
}

.finsupDetails.square label input[type=checkbox]:checked::after {
    content: "✓";
    color: green;
}


/* Speakers & Participants Section
--------------------------------*/

#speakers-divider {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url(../img/bg.jpg) fixed center center;
    background-size: cover;
    padding: 80px 0;
}

#speakers,
#participants {
    background: #fff;
    padding: 80px 0 60px 0;
}

#speakers div.container ul li,
div.prtcpnt {
    color: #777 !important;
    font-size: 1.3rem;
    font-weight: lighter;
}

div.prtcpnt {
    width: 700px;
    display: inline-block !important;
    margin-left: 10px;
}

#speakers div.container ul li span,
span.prtcpnt {
    color: #000 !important;
    text-shadow: 1px 1px 5px #bbb !important;
}

#participants span.prtcpnt,
#participants span.aff {
    white-space: nowrap;
}

#participants span.aff {
    color: #555 !important;
    text-shadow: 1px 1px 5px #ddd !important;
    font-size: 80%;
    display: block;
    margin-left: 15px;
}

#participants span.bul {
    color: #4CBF00FF !important;
    font-size: 125%;
    margin-right: 5px;
}

img.fl {
    height: 26px;
    vertical-align: sub;
}

@media (max-width: 2420px) {
    div.prtcpnt {
        margin-left: 400px;
    }
}

@media (max-width: 2220px) {
    div.prtcpnt {
        margin-left: 200px;
    }
}

@media (max-width: 1820px) {
    div.prtcpnt {
        margin-left: 100px;
    }
}

@media (max-width: 1620px) {
    div.prtcpnt {
        margin-left: 20px;
    }
}

@media (max-width: 1460px) {
    div.prtcpnt {
        margin-left: 300px;
    }
}

@media (max-width: 1200px) {
    #speakers div.container ul li {
        font-size: 1.2rem;
    }
    img.fl {
        height: 24px;
    }
}

@media (max-width: 1100px) {
    #speakers div.container ul li {
        font-size: 1.1rem;
    }
    img.fl {
        height: 22px;
    }
}

@media (max-width: 1000px) {
    div.prtcpnt {
        margin-left: 100px;
    }
}

@media (max-width: 990px) {
    #speakers .container {
        max-width: 92% !important;
    }
    #speakers div.container ul li {
        font-size: 1.0rem;
    }
    img.fl {
        height: 20px;
    }
}

@media (max-width: 800px) {
    div.prtcpnt {
        margin-left: 20px;
    }
}

@media (max-width: 730px) {
    #speakers .container {
        max-width: 94% !important;
    }
    #speakers div.container ul li {
        font-size: 0.9rem;
    }
    img.fl {
        height: 18px;
    }
}

@media (max-width: 700px) {
    div.prtcpnt {
        font-size: 1.0rem;
    }
}

@media (max-width: 660px) {
    #speakers .container {
        max-width: 96% !important;
    }
    #speakers div.container ul li {
        font-size: 0.8rem;
    }
    img.fl {
        height: 18px;
    }
}

@media (max-width: 600px) {
    div.prtcpnt {
        font-size: 0.8rem;
    }
}


/* Schedule Section
--------------------------------*/

#schedule {
    background: #f7f7f7;
    padding: 80px 0 50px 0;
}


/* Contact & Venue Section
--------------------------------*/

#contacts {
    background: #f7f7f7;
    padding: 80px 0 10px 0;
}

#venue {
    background: #f7f7f7;
    padding: 80px 0 0 0;
}

#venue #map {
    height: 500px;
}

#venue #map * {
    transition: 0s;
}

#contacts .info {
    color: #333333;
}

#contacts .info i {
    font-size: 32px;
    color: #4CBF00FF;
    float: left;
    line-height: 0;
    margin-top: 12px;
}

#contacts .info p {
    padding: 0 0 10px 50px;
    margin-bottom: 20px;
    line-height: 22px;
    font-size: 1.1rem;
}

#contacts .info .email p {
    padding-top: 5px;
}

#contacts .social-links {
    padding: 20px 0;
}

#contacts .social-links a {
    font-size: 18px;
    background: #333;
    color: #fff;
    line-height: 1;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#contacts .social-links a i {
    line-height: 0;
}

#contacts .social-links a:hover {
    background: #4CBF00FF;
    color: #fff;
}

#contacts .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

#contacts .php-email-form .error-message br+br {
    margin-top: 25px;
}

#contacts .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#contacts .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

#contacts .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

#contacts .php-email-form input,
#contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

#contacts .php-email-form input::focus,
#contact .php-email-form textarea::focus {
    background-color: #4CBF00FF;
}

#contacts .php-email-form button[type="submit"] {
    background: #4CBF00FF;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

#contacts .php-email-form button[type="submit"]:hover {
    background: #51d8ad;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#contacts .col-lg-6 {
    padding-top: 10px;
    padding-left: 10%;
}

@media (max-width: 990px) {
    #venue .container {
        max-width: 92% !important;
    }
    #venue .container p:not(.section-description) {
        line-height: 24px;
        font-size: 1.0rem !important;
    }
    #venue .container img {
        width: 200px !important;
    }
}

@media (max-width: 730px) {
    #venue .container {
        max-width: 94% !important;
    }
    #venue .container p:not(.section-description) {
        line-height: 22px;
        font-size: 0.9rem !important;
    }
    #venue .container img {
        width: 180px !important;
    }
}

@media (max-width: 660px) {
    #venue .container {
        max-width: 96% !important;
    }
    #venue .container p:not(.section-description) {
        line-height: 20px;
        font-size: 0.8rem !important;
    }
    #venue .container img {
        width: 150px !important;
    }
}


/*--------------------------------------------------------------
# Subscribe Form
--------------------------------------------------------------*/

.subscribeForm button[type="submit"] {
    background: #4CBF00FF;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    vertical-align: top;
    height: 50px;
    display: inline-block;
}

.subscribeForm button[type="submit"]:hover {
    background: #51d8ad;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.subscraddr {
    vertical-align: top;
    height: 50px;
    display: inline-block;
    border-radius: 0px;
    width: 175px;
}

.disBut {
    background: #CCC !important;
}

@media (max-width: 990px) {
    #contacts .container {
        max-width: 92% !important;
    }
    #contacts .container p {
        line-height: 24px;
        font-size: 1.0rem !important;
    }
    h4 {
        font-size: calc(1.1rem + .3vw) !important;
    }
    h5 {
        font-size: 1.1rem !important;
    }
    .subscraddr,
    .subscrBut {
        font-size: 0.9rem !important;
        height: 45px !important;
    }
    .subscraddr {
        padding: .2rem .5rem !important;
    }
    .subscrBut {
        padding: 8px 20px !important;
    }
}

@media (max-width: 730px) {
    h4 {
        font-size: calc(1.0rem + .3vw) !important;
    }
    h5 {
        font-size: 1.0rem !important;
    }
    #contacts .container {
        max-width: 94% !important;
    }
    #contacts .container p {
        line-height: 22px;
        font-size: 0.9rem !important;
    }
    .subscraddr,
    .subscrBut {
        font-size: 0.8rem !important;
        height: 40px !important;
    }
    .subscraddr {
        padding: .15rem .3rem !important;
    }
    .subscrBut {
        padding: 5px 15px !important;
    }
}

@media (max-width: 660px) {
    h4 {
        font-size: calc(0.9rem + .3vw) !important;
    }
    h5 {
        font-size: 0.9rem !important;
    }
    #contacts .container {
        max-width: 96% !important;
    }
    #contacts .container p {
        line-height: 20px;
        font-size: 0.8rem !important;
    }
    .subscraddr,
    .subscrBut {
        font-size: 0.7rem !important;
        height: 30px !important;
    }
    .subscraddr {
        padding: .1rem .2rem !important;
    }
    .subscrBut {
        padding: 3px 12px !important;
    }
}


/* Finansional Support Section
--------------------------------*/

#finsup {
    background: #fff;
    padding: 80px 0 40px 0;
}

#finsup .text2,
#finsup .text3 {
    font-size: 125%;
}

#finsup .text2 {
    margin-top: 20px;
}

@media (max-width: 990px) {
    #finsup .container {
        max-width: 92% !important;
    }
    #finsup .container p {
        line-height: 24px;
        font-size: 1.0rem !important;
    }
    #finsup .container img {
        width: 200px !important;
    }
}

@media (max-width: 730px) {
    #finsup .container {
        max-width: 94% !important;
    }
    #finsup .container p {
        line-height: 22px;
        font-size: 0.9rem !important;
    }
    #finsup .container img {
        width: 180px !important;
    }
}

@media (max-width: 660px) {
    #finsup .container {
        max-width: 96% !important;
    }
    #finsup .container p {
        line-height: 20px;
        font-size: 0.8rem !important;
    }
    #finsup .container img {
        width: 150px !important;
    }
}


/*--------------------------------------------------------------
# Register&Confirm Form
--------------------------------------------------------------*/

.dn {
    display: none;
}

.cp {
    cursor: pointer;
}

.regFormDiv,
.confFormDiv,
.updReqFormDiv,
.updRegFormDiv,
.RTP {
    z-index: 50000;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.regForm,
.confForm,
.regUpdReqForm,
.regUpdForm {
    position: relative;
    top: 15%;
    margin: auto;
    width: 75%;
    min-width: 350px;
    height: 70%;
    background-color: rgba(255, 255, 255, 1);
    border: 3px solid #4CBF00FF;
    border-radius: 4px;
    color: #000;
    padding: 10px;
    overflow-y: scroll;
}

.RTP div.rt {
    position: relative;
    top: 10%;
    margin: auto;
    width: 90%;
    min-width: 350px;
    height: 80%;
    background-color: rgba(255, 255, 255, 1);
    border: 3px solid #4CBF00FF;
    border-radius: 4px;
    color: #000;
    padding: 10px;
    overflow-y: scroll;
}

.regForm div,
.confForm div {
    color: #616161;
    font-size: 1.0rem !important;
}

.form__group {
    position: relative;
    padding: 15px 0 0;
    top: 5px;
    left: 5%;
    width: 90%;
    margin-top: 30px !important;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #9b9b9b;
    border-radius: 0px;
    outline: 0;
    font-size: 1.0rem;
    font-weight: bold;
    color: #000;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
    border-width: 3px;
}

.form__field.req~.form__label::before,
span.req::before {
    content: "* ";
    left: 0px;
    color: rgb(250 0 0);
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown~.form__label {
    font-size: 1.0rem;
    cursor: text;
    top: 20px;
}

.form__label {
    position: absolute;
    top: -10px;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #9b9b9b;
}

.form__field:focus,
.form__field:hover {
    width: 100%;
    padding-bottom: 6px;
    /*font-weight: 700;*/
    border-width: 3px;
    border-top: none;
    border-image: linear-gradient(to right, #4CBF00FF, #777);
    border-image-slice: 1;
}

.form__field:focus~.form__label,
.form__field:hover~.form__label {
    position: absolute;
    top: -10px;
    display: block;
    transition: 0.2s;
    font-size: 0.9rem;
    color: #11998e;
}

#phone_number::placeholder {
    color: #bbb !important;
}

#phone_number,
#arrival_date,
#departure_date,
#dates,
.datepicker__wrapper {
    width: 260px;
}

.toggle {
    position: relative;
    border: solid var(--border-width) var(--accent);
    border-radius: var(--border-radius);
    transition: transform cubic-bezier(0, 0, 0.30, 2) .4s;
    transform-style: preserve-3d;
    perspective: 800px;
}

.toggle>input[type="radio"] {
    display: none;
}

.toggle>#choice1:checked~#flap {
    transform: rotateY(-180deg);
}

.toggle>#choice1:checked~#flap>.content {
    transform: rotateY(-180deg);
}

.toggle>#choice2:checked~#flap {
    transform: rotateY(0deg);
}

.toggle>label {
    display: inline-block;
    min-width: 170px;
    padding: 30px;
    font-size: var(--font-size);
    text-align: center;
    color: var(--accent);
    cursor: pointer;
}

.toggle>label,
.toggle>#flap {
    font-weight: bold;
    text-transform: capitalize;
}

.toggle>#flap {
    position: absolute;
    top: calc( 0px - var(--border-width));
    left: 50%;
    height: calc(100% + var(--border-width) * 2);
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size);
    background-color: var(--accent);
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    transform-style: preserve-3d;
    transform-origin: left;
    transition: transform cubic-bezier(0.4, 0, 0.2, 1) .5s;
}

.toggle>#flap>.content {
    color: #333;
    transition: transform 0s linear .25s;
    transform-style: preserve-3d;
}

.regForm button,
.confForm button,
.regUpdForm button,
.okbutton {
    margin-top: 30px !important;
    background: #4CBF00FF;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.ferr {
    font-size: 75% !important;
    color: #d00 !important;
}

.ferr .bx,
.ferr span {
    vertical-align: middle;
}

.ferr .bx {
    font-size: 120%;
}

.iti__country-list {
    z-index: 10000 !important;
}

.errinfo {
    color: #d00 !important;
    font-size: 90% !important;
}

.regOK p {
    font-size: 125%;
    color: #333;
}

@media (max-width: 990px) {
    .regForm,
    .confForm {
        top: 10%;
        width: 80%;
    }
}

@media (max-width: 730px) {
    .regForm,
    .confForm {
        top: 7%;
        width: 85%;
        height: 86%;
    }
    .regForm div,
    .confForm div,
    .form__label,
    .form__field:placeholder-shown~.form__label,
    .regForm textarea {
        font-size: 0.9rem !important;
    }
    .form__field:focus~.form__label,
    .form__field:hover~.form__label {
        font-size: 0.8rem;
    }
}

@media (max-width: 660px) {
    .regForm,
    .confForm {
        top: 5%;
        width: 85%;
        height: 90%;
    }
    .regForm div,
    .confForm div,
    .form__label,
    .form__field:placeholder-shown~.form__label,
    .regForm textarea {
        font-size: 0.8rem !important;
    }
    .form__field:focus~.form__label,
    .form__field:hover~.form__label {
        font-size: 0.7rem;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #343b40;
    padding: 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .copyright {
    text-align: center;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #ccc;
}