@import url('https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.7/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/air-datepicker/2.2.3/css/datepicker.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.14.0-beta3/css/bootstrap-select.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/bootstrap-touchspin/4.7.3/jquery.bootstrap-touchspin.min.css');
@import url('https://www.w3schools.com/w3css/4/w3.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/tabulator/6.3.1/css/tabulator.min.css');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@48,400,1,0');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato.eot");
    src: url("../fonts/Lato.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato.woff2") format("woff2"), url("../fonts/Lato.woff") format("woff"), url("../fonts/Lato.ttf") format("truetype"), url("../fonts/Lato.svg#Gill Sans SemiBold") format("svg");
}

@font-face {
    font-family: "Gabriola";
    src: url("../fonts/Gabriola.eot");
    src: url("../fonts/Gabriola.eot?#iefix") format("embedded-opentype"), url("../fonts/Gabriola.woff2") format("woff2"), url("../fonts/Gabriola.woff") format("woff"), url("../fonts/Gabriola.ttf") format("truetype"), url("../fonts/Gabriola.svg#Gill Sans SemiBold") format("svg");
}

@font-face {
    font-family: "Gill Sans Semibold";
    src: url("../fonts/Gill Sans SemiBold.eot");
    src: url("../fonts/Gill Sans SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gill Sans SemiBold.woff2") format("woff2"), url("../fonts/Gill Sans SemiBold.woff") format("woff"), url("../fonts/Gill Sans SemiBold.ttf") format("truetype"), url("../fonts/Gill Sans SemiBold.svg#Gill Sans SemiBold") format("svg");
}

@font-face {
    font-family: "Helvetica Neue 45light";
    src: url("../fonts/Helvetica LT 45 Light.ttf") format("truetype");
}


/* Chatbot -- Start */

.chatbot-toggler {
    position: fixed;
    bottom: 30px;
    right: 35px;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff3e00;
    transition: all 0.2s ease;
}

body.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
}

.chatbot-toggler span {
    color: #fff;
    position: absolute;
}

.chatbot-toggler span:last-child,
body.show-chatbot .chatbot-toggler span:first-child {
    opacity: 0;
}

body.show-chatbot .chatbot-toggler span:last-child {
    opacity: 1;
}

.swal2-confirm {
    background-color: black !important;
    color: white !important;
    border: none;
}

.swal2-confirm:hover {
    background-color: green !important;
    color: white !important;
    border: none;
}

.swal2-cancel {
    background-color: grey !important;
    color: white !important;
    border: none;
}

.swal2-cancel:hover {
    background-color: red !important;
    color: white !important;
    border: none;
}

.chatbot {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 360px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
    transform-origin: bottom right;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease;
}

body.show-chatbot .chatbot {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
    transform: scale(1);
}

.chatbot header {
    padding: 1px 0;
    position: relative;
    text-align: center;
    color: #fff;
    background: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chatbot header span {
    position: absolute;
    right: 15px;
    top: 50%;
    display: none;
    cursor: pointer;
    transform: translateY(-50%);
}

.chatbot .chatbox {
    overflow-y: auto;
    height: 460px;
    padding: 30px 20px 100px;
}

.chatbot :where(.chatbox,
textarea)::-webkit-scrollbar {
    width: 6px;
}

.chatbot :where(.chatbox,
textarea)::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 25px;
}

.chatbot :where(.chatbox,
textarea)::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 25px;
}

.chatbox .chat {
    display: flex;
    list-style: none;
    font-family: Poppins, sans-serif;
}

.chatbox .outgoing {
    margin: 20px 0;
    justify-content: flex-end;
}

.chatbox .incoming span {
    width: 32px;
    height: 32px;
    color: #fff;
    cursor: default;
    text-align: center;
    line-height: 32px;
    align-self: flex-end;
    background: #000000;
    border-radius: 4px;
    margin: 0 10px 25px 0;
}

.chatbox .chat p {
    white-space: pre-wrap;
    padding: 12px 16px;
    border-radius: 10px 10px 0 10px;
    max-width: 100%;
    color: #fff;
    font-size: 0.9rem;
    background: #000000;
}

.chatbox .incoming p {
    border-radius: 10px 10px 10px 0;
}

.chatbox .chat p.error {
    color: #721c24;
    background: #f8d7da;
}

.chatbox .incoming p {
    color: #000;
    background: #f2f2f2;
}

.chatbot .chat-input {
    display: flex;
    gap: 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 3px 20px;
    border-top: 1px solid #ddd;
}

.chat-input textarea {
    height: 55px;
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    max-height: 180px;
    padding: 15px 15px 15px 0;
    font-size: 0.95rem;
}

.chat-input span {
    align-self: flex-end;
    color: #000000;
    cursor: pointer;
    height: 55px;
    display: flex;
    align-items: center;
    visibility: hidden;
    font-size: 1.35rem;
}

.chat-input textarea:valid~span {
    visibility: visible;
}

@media (max-width: 490px) {
    .chatbot-toggler {
        right: 20px;
        bottom: 20px;
    }
    .chatbot {
        right: 0;
        top: 0;
        height: 90%;
        border-radius: 0;
        width: 100%;
    }
    .chatbot .chatbox {
        height: 90%;
        padding: 25px 15px 100px;
    }
    .chatbot .chat-input {
        padding: 5px 15px;
    }
    .chatbot header span {
        display: block;
    }
}


/* Chatbot -- End */

.field-error {
    border: 2px solid red !important;
    background-color: #ffe6e6;
}

.pac-container {
    z-index: 2000 !important;
}

.datepicker {
    z-index: 99999 !important;
}

#preloader {
    z-index: 9999 !important;
    top: 50%;
    margin-top: -4em;
    left: 50%;
    margin-left: -4em;
    display: block;
    position: fixed;
    overflow: visible;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #e17324;
    width: 8em;
    height: 8em;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tabulator-tableholder {
    height: auto !important;
}

.tabulator-header {
    border-radius: 7px;
}

.tabulator .tabulator-row.tabulator-row-even {
    background-color: #ffefdb !important;
}

.tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {
    vertical-align: top;
}

.tabulator .tabulator-header {
    background: #535353;
    color: #ffffff;
}

.tabulator-row .tabulator-responsive-collapse table tr td {
    white-space: break-spaces;
}

.tabulator-row .tabulator-cell {
    white-space: break-spaces;
    height: auto !important;
    vertical-align: top;
}

.tabulator-row .tabulator-cell {
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    color: #000000;
    height: 40px;
}

.tabulator-col-content {
    background: #535353;
    color: #ffffff;
}

.tabulator-col-title {
    padding-left: 0px;
}

.tabulator-placeholder {
    text-align: center;
}

.tabulator .tabulator-tableHolder {
    height: auto !important;
}

.banner-spacing {
    margin-top: 1.5em;
}

.carousel-banner-spacing {
    margin-top: 1.5em;
    width: 100%;
}

.latest-updates {
    background-color: #fffbe5;
}

.havan-types {
    background-color: #ffffff;
    color: #000000;
    width: 33.33%;
    border-radius: 5px;
}

.havan-types:hover {
    cursor: pointer;
    background-color: #ffbe30;
    color: #000000;
}

.havan-types-selected {
    background-color: #e17324;
    color: #ffffff;
}

.image-thumbnail {
    border-radius: 50%;
    border: 3px solid #e17324;
    width: 150px;
    margin-bottom: 20px;
}

.profile-image-thumbnail {
    display: block;
    width: 150px;
    height: 150px;
    position: relative;
    top: 100px;
    overflow: hidden;
    object-fit: cover;
}

.sadhaka-thumbnail {
    border-radius: 50%;
    width: 4em;
    height: 4em;
    margin-top: 0.25em;
    margin-left: 1.75em;
    margin-right: 1.75em;
    cursor: pointer;
    overflow: hidden;
    object-fit: cover;
}

.locale-selector {
    background-color: transparent;
    border: 0px;
    outline: 0px;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    font-family: "Gill Sans Semibold", "Helvetica Neue 45light", "Helvetica", "Arial";
}

.locale-selector:hover {
    cursor: pointer;
}

.nugget {
    height: 6.5em;
    overflow: scroll;
    border-left: 15px solid #e37e36;
    box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    font-size: 14px;
    background: #eaeff6;
    padding: 5px 5px 5px 15px;
    text-align: left;
}

.nugget-small {
    height: 6.5em;
    overflow: scroll;
    border-left: 15px solid #e37e36;
    box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    font-size: 12px;
    background: #eaeff6;
    padding: 5px 5px 5px 15px;
    text-align: left;
}

 ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

 ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

.signin {
    background-color: transparent;
    border: 0px;
    outline: 0px;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13px;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    font-family: "Gill Sans Semibold", "Helvetica Neue 45light", "Helvetica", "Arial";
}

.signin:hover {
    color: #ffffff !important;
    cursor: pointer;
    font-size: 13px;
}

.signin_mobile {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    font-family: "Gill Sans Semibold", "Helvetica Neue 45light", "Helvetica", "Arial";
}

.signin_mobile:hover {
    color: #ffffff !important;
    font-size: 15px;
}

a {
    font-family: "Gill Sans Semibold", "Helvetica Neue 45light", "Helvetica", "Arial";
    color: #fdbd41 !important;
    font-size: 16px;
}

a:hover {
    font-family: "Gill Sans Semibold", "Helvetica Neue 45light", "Helvetica", "Arial";
    color: #e37e36 !important;
    font-weight: 700px;
    font-size: 16px;
}

.alt-menu-btn {
    padding: 0px;
    line-height: normal;
    color: #000000;
    font-size: 30px;
}

.btn-addnew {
    font-size: 14px !important;
    margin-left: 10px;
    margin-bottom: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
    background: #ffa500;
    color: #000000;
    outline: 0;
    border-radius: 10px;
    box-shadow: none !important;
}

.btn-addnew:hover {
    background: #ff3e00;
}

.auto-hide-header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    position: fixed;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s, -webkit-transform .5s;
}

.auto-hide-header.is-hidden {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.basic-info ul li {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
}

.basic-info ul li a {
    color: #ffffff;
}

.basic-info ul li i {
    margin-right: 5px;
    color: #ffbe30;
}

.basic-info ul li:last-child {
    margin-bottom: 0px;
}

.big-title {
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 42px;
    color: #ffffff;
    text-transform: none;
    align-items: center;
    justify-content: center;
}

.big-title strong {
    font-weight: 900;
    color: #ffffff;
}

.black-color {
    color: #222121;
    text-align: justify;
}

.blog-image {
    float: left;
    width: 200px;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-title h3 {
    font-weight: 900;
    font-size: 18px;
}

.body-header {
    padding-top: 100px;
    overflow: auto;
}

.book-event-content {
    display: table;
    padding: 0px 30px;
}

.book-event-image {
    float: left;
    width: 250px;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    -webkit-box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.2);
}

.book-event-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.book-event-title {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.book-tag {
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.book-tag i {
    color: #ffbe30;
}

.book-title-text {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 24px;
}

.breadcrumb-item {
    float: left;
    list-style: none;
    position: relative;
    margin-right: 10px;
    margin-bottom: 40px;
    padding-right: 10px;
    color: #fdae3d;
    font-size: 20px;
    text-transform: capitalize;
}

.breadcrumb-item:before {
    top: 0;
    bottom: 0;
    right: -5px;
    margin: 0px;
    padding: 0px;
    content: '|';
    font-weight: 700;
    position: absolute;
    color: #fdae3d;
}

.breadcrumb-item:last-child {
    margin-right: 0px;
    padding-right: 0px;
}

.breadcrumb-item:last-child:before {
    content: '';
}

.breadcrumb-item.active {
    color: #fdae3d;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .3rem;
}

.breadcrumb-link {
    font-weight: 700;
    color: #fdae3d;
    text-transform: capitalize;
}

.breadcrumb-link:hover {
    color: #fdae3d;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding-left: 0;
}

.breadcrumb-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.breadcrumb-title {
    padding: 0px 0px;
}

.breadcrumb-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding-left: 0;
}

.caption-bold-text {
    width: 100%;
    display: table;
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 50px;
    color: #ffbe30;
    font-family: "Helvetica Neue 45light", "Helvetica", "Arial";
}

.caption-summary {
    width: 100%;
    display: table;
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 60px;
    color: #ffffff;
    font-family: "Helvetica Neue 45light", "Helvetica", "Arial";
}

.caption-text {
    width: 100%;
    display: table;
    font-weight: 900;
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.caption-title {
    width: 100%;
    display: table;
    font-weight: 100;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.card {
    width: 100%;
    border: none;
    display: table;
    position: relative;
    border-radius: 0px;
}

.card-body {
    padding: 10px 30px 10px 30px;
    color: #333333;
    background-color: #f7f7f7;
    border-left: 3px solid #ffbe30;
}

.card-body>h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffbe30;
    font-size: 18px;
}

.card-btn {
    width: 100%;
    border: none;
    display: block;
    font-weight: 900;
    text-align: left;
    padding: 15px 30px;
    white-space: unset;
    border-radius: 0px;
    position: relative;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    background-color: #ffffff;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #f0f0f0;
}

.card-btn:after {
    top: 50%;
    right: 30px;
    content: '\f0aa';
    font-weight: 900;
    position: absolute;
    color: #878787;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: 'Font Awesome 5 Free';
}

.card-btn:not(.collapsed) {
    background-color: #f7f7f7;
    border-left: 3px solid #ffbe30;
    border-bottom: 1px solid #ffffff;
    box-shadow: none;
}

.card-header {
    width: 100%;
    padding: 0px;
    border: none;
    display: table;
    background: none;
    margin-bottom: 0;
    border-radius: 0px;
}

.card-action {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 16px;
    text-align: center;
    background-color: #f2f0ec;
    color: #727272;
}

.card-action:hover {
    background-color: #ffbe30;
    color: #000000;
    cursor: pointer;
}

.column {
    padding: 10px 20px 10px 20px;
}

.outline-none {
    outline: none;
}

.carousel-indicators li:hover {
    background: #e2001a !important;
    cursor: pointer;
}

.carousel-indicators li.active:hover {
    background: #e2001a !important;
    cursor: default;
}

.carousel-indicators li.active {
    background: #e2001a !important;
}

.carousel-indicators li {
    height: 0.5px !important;
    width: 20px !important;
    background: #ffbe30 !important;
    margin: 0 .5rem;
    border-radius: 50%;
}

.clients-comment {
    color: #323232;
    font-weight: 400;
    margin-bottom: 100px;
    font-size: 18px;
}

.coming-event-content {
    padding-right: 20px;
}

.coming-event-item .event-image .big-image {
    overflow: hidden;
    border-radius: 3px;
    position: relative;
    -webkit-box-shadow: 0 0 70px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 70px 3px rgba(0, 0, 0, 0.2);
}

.coming-event-item .event-image .small-image {
    top: 55%;
    left: 312px;
    z-index: 1;
    width: 45%;
    overflow: hidden;
    position: absolute;
    border-radius: 0px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-shadow: 0 0 70px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 70px 3px rgba(0, 0, 0, 0.2);
}

.coming-event-item .event-image {
    top: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    float: left;
    position: absolute;
}

.coming-event-item {
    position: relative;
}

.small-btn {
    color: #fdae3d;
    border: 1px solid #bebebe;
    background-color: #ffffff;
    font-weight: 400;
    padding: 15px 35px;
    border-radius: 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    text-transform: none;
    -webkit-box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
}

.small-btn:hover {
    color: #ffffff !important;
    border: 1px solid #ffffff;
    font-size: 14px;
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
}

.conference-btn {
    color: #fdae3d;
    border: 4px solid #bebebe;
    background-color: #ffffff;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
}

.conference-btn:hover {
    color: #ffffff !important;
    border: 4px solid #ffffff;
    font-size: 14px;
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
}

.contact-btn {
    height: 40px;
    margin: 0px 15px;
    padding: 0px 30px;
    line-height: 40px;
    text-align: center;
    border-radius: 30px;
    color: #ffbe30;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #333333;
}

.contact-btn:hover {
    color: #000000;
    background-color: #ffbe30;
}

.contact-info {
    font-weight: 400;
    padding: 0px 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
}

.quote-text {
    color: #575757;
    font-family: "Lato", "Helvetica Neue 45light", "Helvetica", "Arial";
    font-weight: 500;
    font-size: 23.71px;
}

.quote-signature {
    color: #d85010;
    font-family: "Gabriola", "Helvetica Neue 45light", "Helvetica", "Arial";
    font-weight: 700;
    font-size: 32.71px;
}

.special-text {
    color: #d85010;
    font-weight: 900;
    font-size: 18px;
}

.contact-info i {
    margin-right: 10px;
    color: #ffbe30;
}

.contact-info:last-child {
    margin-bottom: 0px;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
}

.content-para {
    margin-bottom: 0rem;
    font-size: 14px;
    font-weight: 600;
    color: #e37e36;
    font-family: "Gill Sans Light", "Helvetica Neue 45light", "Helvetica", "Arial";
}

.content-sticker {
    z-index: 1;
    left: 20px;
    right: 20px;
    bottom: -30px;
    padding: 10px;
    text-align: center;
    position: absolute;
    background-color: #ffffff;
    border-radius: 5px;
}

.content-title {
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    font-family: "Gill Sans Semibold", "Helvetica Neue 45light", "Helvetica", "Arial";
}

.copyright-text {
    color: #878787;
}

.custom-btn {
    z-index: 1;
    font-weight: 600;
    overflow: hidden;
    padding: 15px 35px;
    text-align: center;
    position: relative;
    border-radius: 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    text-transform: uppercase;
    color: #5a5a5a !important;
    background-color: #ffffff;
    border: 4px solid #ffbe30;
    -webkit-box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
}

.custom-btn:after,
.custom-btn:before {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: -1;
    content: '';
    position: absolute;
    border-radius: 10px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.custom-btn:hover {
    text-decoration: uppercase;
    -webkit-box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.1);
    color: #ffffff !important;
    background-color: #e37e36;
    border: 4px solid #ffffff;
    font-size: 14px;
    background: -webkit-gradient(linear, left top, right bottom, from(#ff3e00), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #ff3e00, #ffbe30);
    background: -o-linear-gradient(top left, #ff3e00, #ffbe30);
    background: linear-gradient(to bottom right, #ff3e00, #ffbe30);
}

.date {
    font-weight: 900;
    font-size: 24px;
    font-family: "Helvetica Neue 45light", "Helvetica", "Arial";
}

.event-content {
    padding: 30px;
    background-color: #ffffff;
}

.event-content-tab-block ul {
    padding: 0px;
    display: table;
    margin: 0px auto 50px;
}

.event-content-tab-block ul li .active {
    color: #333333 !important;
    background-color: #ffffff !important;
    -webkit-box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.1);
}

.event-content-tab-block ul li {
    float: left;
    width: auto;
    height: 50px;
    margin-right: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.event-content-tab-block ul li a {
    width: 100%;
    height: 100%;
    display: block;
    font-weight: 400;
    line-height: 50px;
    padding: 0px 25px;
    text-align: center;
    border-radius: 30px !important;
    color: #878787 !important;
    font-size: 16px;
    text-transform: capitalize;
    background-color: #f0f0f0 !important;
}

.event-content-tab-block ul li a:hover {
    color: #000000 !important;
    background-color: #ffbe30 !important;
}

.event-grid-item {
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 1px solid #f0f0f0;
}

.event-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.event-image-big {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.event-info ul {
    width: 100%;
    display: table;
}

.event-info ul li {
    margin-bottom: 5px;
    color: #ffffff;
}

.event-info ul li:last-child {
    margin-bottom: 0px;
}

.event-making-btn a {
    color: #fdae3d;
    border: 4px solid #bebebe;
    background-color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
}

.event-making-btn a:hover {
    color: #ffffff;
    border: 4px solid #ffffff;
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
}

.event-post-meta ul li .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
    text-align: center;
    border-radius: 100%;
    color: #ffffff;
    font-size: 14px;
    background-color: #ffbe30;
}

.event-post-meta ul li {
    margin-bottom: 5px;
    margin-left: -40px;
    font-size: 14px;
    list-style-type: none;
}

.event-tag {
    top: 0px;
    left: 3px;
    font-weight: 700;
    position: relative;
    color: #878787;
    font-size: 16px;
}

.event-title {
    position: relative;
}

.event-title:before {
    top: 0px;
    width: 6px;
    bottom: 0px;
    left: -33px;
    content: '';
    height: 100%;
    position: absolute;
    background-color: #ffbe30;
}

.expertise-item {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: block;
    width: 100%;
}

.expertise-item-big {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: block;
    width: 100%;
}

.expertise-item-big:hover .overlay-big {
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
    opacity: 1;
    transition: .5s ease;
    cursor: default;
}

.expertise-item-overlay-text {
    color: #ffffff;
    font-family: "Gill Sans Regular", "Helvetica Neue 45light", "Helvetica", "Arial";
    font-size: 16px;
    position: absolute;
    top: 5%;
    left: 10%;
    right: 10%;
    text-align: justify;
}

.expertise-item-overlay-text-big {
    color: #ffffff;
    font-size: 16px;
    position: relative;
    top: 50%;
    left: 50%;
    padding: 15px 15px 15px 15px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.expertise-item:hover .overlay {
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
    opacity: 1;
    transition: .5s ease;
    cursor: default;
}

.faq-accordion {
    width: 100%;
}

.followus-link {
    font-weight: 400;
    color: #878787;
    font-size: 16px;
}

.followus-link a {
    color: #ffbe30;
}

.footer-bottom {
    padding: 30px 0px;
    background-color: #2e2e2e;
}

.footer-item-title {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 24px;
}

.footer-item-title strong {
    font-weight: 900;
}

.footer-menu ul {
    margin: 0px;
    padding: 0px;
    float: right;
    display: table;
}

.footer-menu ul li {
    float: left;
    margin-right: 40px;
    list-style-type: none;
}

.footer-menu ul li a {
    color: #878787;
    text-transform: capitalize;
}

.footer-menu ul li a:hover {
    color: #ffbe30;
    padding-right: 10px;
}

.footer-top {
    background-color: #333333;
}

.btn-action {
    background: #e37e36;
    border-color: transparent;
    color: #ffffff;
}

.btn-action:hover {
    background: #ff3e00 !important;
}

.bootstrap-select>.dropdown-toggle {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}

.bootstrap-select .dropdown-menu li a {
    white-space: pre-wrap !important;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}

.bootstrap-select .dropdown-menu li a:hover {
    background: #bdbdbd !important;
}

.btn {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}

.btn-primary {
    background: #797979;
    border: 1px solid #797979;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}

.btn-success {
    background: #000000;
    border-color: transparent !important;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
}

.btn:hover {
    background: #e37e36;
    border-color: transparent;
    color: #ffffff;
}

.modal-backdrop {
    display: block;
}

.modal .modal-content .modal-xl {
    width: 600px;
}

.modal-header {
    background: #d3d3d3;
    color: #000000;
    padding-top: 7px;
    padding-bottom: 7px;
}

.modal-title {
    font-size: 18px;
    color: #000000;
}

.modal-body {
    font-size: 14px;
}

.form-item {
    margin-bottom: 5px;
    width: 100%;
    height: 40px;
    display: table;
    position: relative;
}

.nofocus-border:focus {
    outline-style: none;
    box-shadow: none;
    border-color: transparent;
}

.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 62, 0, 0.8);
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255, 62, 0, 0.8);
    cursor: pointer;
}

.form-item input {
    background-color: #4c4c4c;
    color: #ffffff;
    border-radius: 3px;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0px 25px;
    border: 1px solid #4c4c4c;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.form-item input:focus {
    outline: none;
    border-color: #ffbe30;
}

.form-item select {
    background-color: #4c4c4c;
    color: #ffffff;
    border-radius: 3px;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0px 25px;
    border: 1px solid #4c4c4c;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.form-item select:focus {
    outline: none;
    border-color: #ffbe30 !important;
}

.form-item textarea {
    background-color: #4c4c4c;
    border-color: #4c4c4c;
    border-radius: 3px;
    color: #ffffff;
    min-height: 100px;
    width: 100%;
    padding: 10px 25px;
    display: block;
    min-height: 150px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.form-item textarea:focus {
    outline: none;
    border-color: #ffbe30;
}

.go-top {
    right: 3em;
    bottom: 3em;
    color: #ffffff !important;
    text-decoration: none;
    background: #ffa500;
    padding: 5px;
    border-radius: 50%;
    position: fixed;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 999;
}

.go-top:hover {
    text-decoration: none;
    color: #000000 !important;
}

.grid .grid-item .item-content {
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 10px;
    position: absolute;
    background-color: rgb(0, 0, 0, 0.5);
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.grid .grid-item .item-content h3 {
    font-weight: 900;
    margin-bottom: 0px;
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.grid .grid-item .item-content span {
    color: #ffffff;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.grid .grid-item .overlay .text {
    color: #ffffff;
    font-size: 16px;
    position: absolute;
    padding: 10px;
    text-align: justify;
    opacity: 50;
}

.grid .grid-item .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
}

.grid .grid-item {
    position: relative;
    float: left;
}

.grid .grid-item a {
    position: relative;
}

.grid .grid-item a:after {
    top: 50%;
    left: 50%;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: 'Font Awesome 5 Free';
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}

.grid .grid-item a:before {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 62, 0, 0.8)), to(rgba(255, 190, 48, 0.8)));
    background: -webkit-linear-gradient(top left, rgba(255, 62, 0, 0.8), rgba(255, 190, 48, 0.8));
    background: -o-linear-gradient(top left, rgba(255, 62, 0, 0.8), rgba(255, 190, 48, 0.8));
    background: linear-gradient(to bottom right, rgba(255, 62, 0, 0.8), rgba(255, 190, 48, 0.8));
}

.grid .grid-item a:before,
.grid .grid-item a:after {
    z-index: 1;
    opacity: 0;
    content: '';
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.grid .grid-item img {
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 0px;
}

.grid .grid-item--height2 {
    width: 25%;
    max-height: 800px;
}

.grid .grid-item--width2 {
    width: 50%;
    max-height: 400px;
}

.grid .grid-item:hover .popup-link .overlay {
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
    opacity: 1;
    transition: .5s ease;
    cursor: default;
    display: block;
}

.grid .grid-item:hover .popup-link {
    display: inline-block;
}

.a-special {
    display: inherit !important;
}

.grid .grid-item:hover a:after,
.grid .grid-item:hover a:before {
    opacity: 0;
}

.grid {
    width: 100%;
    display: table;
}

.grid-item,
.grid-sizer {
    width: 25%;
    max-height: 395px;
    overflow: hidden;
}

.pt-banner {
    padding-top: 1em;
}

.header-alternative {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    display: none;
    position: fixed;
    padding: 0px 0px 10px 0px;
    background-color: #ffffff;
}

.header-bottom {
    padding: 0px 0px 0px 0px;
    background-color: #ffffff;
}

.hover-btn {
    font-weight: 700;
    padding: 12px 35px;
    text-align: center;
    color: #000000;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    border: 3px solid #ffbe30;
}

.hover-btn:hover {
    background: #ffbe30;
    color: #ffffff;
    border: 3px solid #ffbe30;
    text-decoration: none;
}

.icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
    text-align: center;
    border-radius: 100%;
    color: #ffffff;
    font-size: 14px;
    background-color: #ffbe30;
}

.signin-video {
    width: 100%;
    height: 288px;
    top: 0;
    left: 0;
    margin-top: 10px;
    border-radius: 5px;
}

.speaks-video {
    width: 100%;
    height: 576px;
    top: 0;
    left: 0;
    border-radius: 5px;
}

.founder-video {
    width: 100%;
    height: 280px;
    top: 0;
    left: 0;
    border-radius: 5px;
}

.video-quote {
    height: 100%;
    width: 800px;
    top: 0;
    left: 0;
    border-radius: 5px;
}

.image-left {
    margin-right: 1.5rem;
}

.image-right {
    margin-left: 1.5rem;
}

.image-wrapper {
    overflow: hidden;
    position: relative;
}

.instagram-wrapper ul {
    width: 100%;
    margin: -5px;
    display: table;
    margin-bottom: 30px;
}

.instagram-wrapper ul li {
    margin: 5px;
    width: 110px;
    height: 100px;
    padding: 0;
    float: left;
    list-style: none;
}

.instagram-wrapper ul li a {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    line-height: 100px;
    text-align: center;
    position: absolute;
    color: #ffffff;
    font-size: 24px;
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 62, 0, 0.9)), to(rgba(255, 190, 48, 0.9)));
    background: -webkit-linear-gradient(top left, rgba(255, 62, 0, 0.9), rgba(255, 190, 48, 0.9));
    background: -o-linear-gradient(top left, rgba(255, 62, 0, 0.9), rgba(255, 190, 48, 0.9));
    background: linear-gradient(to bottom right, rgba(255, 62, 0, 0.9), rgba(255, 190, 48, 0.9));
}

.instagram-wrapper ul li:hover a {
    opacity: 1;
}

.item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.jarallax {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.line-style {
    z-index: 1;
    top: -30px;
    left: -30px;
    width: 70px;
    height: 3px;
    position: absolute;
    background-color: #ffbe30;
}

.logo-area {
    max-width: 150px;
}

.logo-area a {
    width: 100%;
    height: 100%;
    display: block;
}

.main-event-content {
    bottom: 0px;
    right: 30px;
    padding: 30px;
    max-width: 300px;
    position: absolute;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 80px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 80px 1px rgba(0, 0, 0, 0.1);
}

.menu-item-list {
    padding: 25px 0px;
}

.menu-item-list>ul {
    float: center;
    display: -webkit-box;
}

.menu-item-list>ul>.active a {
    color: #ff3e00 !important;
}

.menu-item-list>ul>.active:before {
    bottom: -38px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.menu-item-list>ul>li {
    position: relative;
    display: block;
}

.menu-item-list>ul>li:before {
    left: 0;
    right: 0;
    opacity: 0;
    content: '';
    width: 100%;
    height: 3px;
    bottom: -40px;
    position: absolute;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
    background-color: #ffbe30;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-item-list>ul>li:hover a {
    color: #e37e36;
    font-size: 14px;
}

.menu-item-list>ul>li:last-child {
    margin-right: 0px;
}

.menu-item-list>ul>li>a {
    font-family: "Trebuchet MS";
    font-weight: 650;
    padding: 10px 10px;
    letter-spacing: 1px;
    text-align: center;
    color: #828282;
    font-size: 14px;
    text-transform: uppercase;
}

.menu-item-list>ul>li>a:hover {
    text-decoration: none;
}

.menu-link-list {
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333333;
}

.menu-link-list ul .active a {
    background-color: rgba(51, 51, 51, 0.5);
}

.menu-link-list ul {
    width: 100%;
    margin: 0px;
    padding: 0px;
    display: table;
}

.menu-link-list ul li {
    width: 100%;
    height: 45px;
    display: block;
}

.menu-link-list ul li a .icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
    margin-right: 10px;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
    color: #ffffff;
    background-color: #878787;
}

.menu-link-list ul li a {
    width: 100%;
    height: 100%;
    display: block;
    font-weight: 400;
    line-height: 45px;
    padding: 0px 14px;
    color: #878787 !important;
    font-size: 14px;
    text-transform: capitalize;
}

.menu-link-list ul li:hover a {
    background-color: rgba(51, 51, 51, 0.5);
}

.menu-title {
    margin: 0px;
    padding: 15px;
    font-weight: 700;
    color: #333333;
    font-size: 16px;
    text-transform: uppercase;
}

.message-content h2 {
    color: #ffffff;
    font-size: 30px;
}

.message-content p {
    color: #ffffff;
}

.month {
    font-size: 16px;
    text-transform: uppercase;
}

.nav-item {
    width: 100%;
    display: block;
    list-style: none;
    margin-bottom: 2px;
}

.nav-link .image {
    float: left;
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin-right: 30px;
    background: transparent;
}

.nav-link .image img {
    width: 100%;
    height: 100%;
}

.nav-link .price {
    width: 100%;
    display: block;
    font-weight: 700;
}

.nav-link .sub-title {
    line-height: normal;
    display: inline-block;
    font-size: 80%;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
}

.nav-link .title {
    width: 100%;
    display: block;
    font-size: 18px;
    font-family: "Helvetica Neue 45light", "Helvetica", "Arial";
}

.nav-link {
    width: 100%;
    height: 100%;
    padding: 30px;
    display: table;
    position: relative;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-link:after {
    top: 50%;
    opacity: 0;
    z-index: 1;
    width: 0px;
    height: 0px;
    content: '';
    right: -30px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-top: 15px solid transparent;
    border-left: 15px solid rgba(0, 0, 0, 0.2);
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.nav-link.active {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-link.active:after {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
}

.overlay-big {
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0px;
    right: 0;
    height: 100%;
    width: 89%;
    opacity: 0;
    transition: .5s ease;
}

.overlay-black {
    padding: 50px 0px;
    background: rgba(51, 51, 51, 0.2);
}

.overlay-black {
    padding: 68px 0px;
    background: rgba(255, 255, 255, 0.1);
}

.overlay-white {
    background: rgba(255, 255, 255, 0.2);
}

.post-date {
    top: 15px;
    left: 15px;
    z-index: 1;
    width: 70px;
    height: 70px;
    padding: 10px;
    text-align: center;
    position: absolute;
    color: #ffffff;
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
}

.quote-icon {
    z-index: 1;
    width: 80px;
    height: 60px;
    display: table;
    position: relative;
    border-radius: 5px;
    text-align: center;
    margin: 0 auto 50px;
    font-size: 36px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #f7f7f7;
    border-left: 3px solid #f7f7f7;
    border-right: 3px solid #f7f7f7;
}

.quote-icon i {
    font-size: 54px;
    line-height: 66px;
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-clip: padding-box;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.quote-icon:after {
    content: '';
    left: -59px;
    width: 51px;
    z-index: -1;
    height: 51px;
    bottom: -22px;
    position: absolute;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #f7f7f7;
    border-right: 3px solid #f7f7f7;
    border-bottom: 3px solid #f7f7f7;
    -webkit-transform: scale(1) rotate(45deg) translateX(50px) translateY(-50px) skewX(-10deg) skewY(-10deg);
    -ms-transform: scale(1) rotate(45deg) translateX(50px) translateY(-50px) skewX(-10deg) skewY(-10deg);
    transform: scale(1) rotate(45deg) translateX(50px) translateY(-50px) skewX(-10deg) skewY(-10deg);
}

.quote-icon:before {
    top: -22px;
    left: -59px;
    width: 51px;
    content: '';
    z-index: -1;
    height: 51px;
    position: absolute;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #f7f7f7;
    border-top: 3px solid #f7f7f7;
    border-left: 3px solid #f7f7f7;
    -webkit-transform: scale(1) rotate(45deg) translateX(50px) translateY(-50px) skewX(-10deg) skewY(-10deg);
    -ms-transform: scale(1) rotate(45deg) translateX(50px) translateY(-50px) skewX(-10deg) skewY(-10deg);
    transform: scale(1) rotate(45deg) translateX(50px) translateY(-50px) skewX(-10deg) skewY(-10deg);
}

.reg-form {
    padding: 30px;
    text-align: center;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.6);
}

.scrollUp {
    transform: translateY(-156px);
}

.section-big-title {
    margin: 0px;
    padding: 0px;
    font-size: 36px;
    font-weight: 400;
    color: #cb5611;
}

.section-big-subtitle {
    margin: 0px;
    padding: 0px;
    font-size: 24px;
    font-weight: 400;
    color: #cb5611;
}

.service-price {
    font-weight: 700;
    color: #4c4c4c;
}

.sidebar {
    top: 0;
    bottom: 0;
    left: -300px;
    height: 100%;
    z-index: 9999;
    position: fixed;
    min-width: 300px;
    max-width: 300px;
    overflow-y: scroll;
    padding-bottom: 0;
    font-size: 14px;
    background-color: #fff6e5;
    border: 1px solid #f0f0f0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.sidebar-dismiss {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 45px;
    cursor: pointer;
    text-align: center;
}

.sidebar-header {
    padding: 0px 0px;
    text-align: center;
    border: 1px #ffbe30;
}

.sidebar-menu-wrapper {
    display: block;
    position: relative;
}

.sidebar.active {
    left: 0px;
}

.slider-content {
    padding: 0px 70px;
}

.slider-content {
    padding: 0px 70px;
}

.small-title-text {
    font-weight: 900;
    font-size: 18px;
    color: #ffa500;
}

.social-links {
    padding: 15px 0px;
    margin-bottom: 0px;
    text-align: left;
}

.social-links a {
    color: #ffffff;
    font-size: 18px;
    padding-right: .5rem;
}

.social-links a:hover {
    color: #e37e36;
}

.social-links ul {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 26px;
    padding: 0px 13px;
    margin-bottom: 15px;
}

.social-links ul li {
    float: left;
    width: 35px;
    height: 35px;
    list-style: none;
    overflow: hidden;
    margin-right: 5px;
    text-align: center;
    border-radius: 100%;
    margin-right: 15px;
}

.social-links ul li a {
    width: 100%;
    height: 100%;
    line-height: 35px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 1);
}

.social-links ul li:hover a {
    color: #000000;
    background-color: #ffbe30;
}

.social-links ul li:last-child {
    margin-right: 0px;
}

.social-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 24px;
    text-transform: capitalize;
}

.speaker-section .card .card-actions {
    min-height: 30px;
    padding: 0 20px 20px 20px;
    margin: 20px 0 0 0;
}

.speaker-section .card .card-body {
    padding: 0 20px;
    margin-top: 20px;
}

.speaker-section .card .card-comments .comments-collapse-toggle {
    padding: 0;
    margin: 0 20px 12px 20px;
}

.speaker-section .card .card-comments .comments-collapse-toggle a,
.speaker-section .card .card-comments .comments-collapse-toggle span {
    padding-right: 5px;
    overflow: hidden;
    font-size: 12px;
    color: #999;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.speaker-section .card .card-comments {
    padding: 20px;
    margin: 0;
    background-color: #f8f8f8;
}

.speaker-section .card .card-heading {
    padding: 0 20px;
    margin: 0;
}

.speaker-section .card .card-heading.image .card-heading-header {
    display: inline-block;
    vertical-align: top;
}

.speaker-section .card .card-heading.image .card-heading-header h3 {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
    color: #262626;
}

.speaker-section .card .card-heading.image .card-heading-header span {
    font-size: 12px;
    color: #999999;
}

.speaker-section .card .card-heading.image img {
    display: inline-block;
    width: 46px;
    height: 46px;
    margin-right: 15px;
    vertical-align: top;
    border: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.speaker-section .card .card-heading.simple {
    font-size: 20px;
    font-weight: 300;
    color: #777;
    border-bottom: 1px solid #e5e5e5;
}

.speaker-section .card .card-media {
    padding: 0 20px;
    margin: 0 -14px;
}

.speaker-section .card .card-media img {
    max-width: 100%;
    max-height: 100%;
}

.speaker-section .card {
    padding-top: 20px;
    width: 180px;
    margin: 0;
    background-color: rgba(214, 224, 226, 0.2);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
}

.speaker-section .card-comments .media-heading {
    font-size: 13px;
    font-weight: bold;
}

.speaker-section .card.hovercard .avatar {
    position: relative;
    top: -50px;
    margin-bottom: -50px;
}

.speaker-section .card.hovercard .avatar img {
    width: 100px;
    height: 100px;
    max-width: 100px;
    max-height: 100px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 5px solid #ffffff;
}

.speaker-section .card.hovercard .cardheader {
    background: transparent;
    background-size: cover;
    height: auto;
}

.speaker-section .card.hovercard .info .desc {
    overflow: hidden;
    font-size: 12px;
    line-height: 20px;
    color: #737373;
    text-overflow: ellipsis;
}

.speaker-section .card.hovercard .info .title {
    margin-bottom: 4px;
    font-size: 24px;
    line-height: 1;
    color: #262626;
    vertical-align: middle;
}

.speaker-section .card.hovercard .info {
    padding: 4px 8px 10px;
}

.speaker-section .card.hovercard {
    position: relative;
    padding-top: 0;
    text-align: center;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.speaker-section .card.people .card-info .desc {
    display: block;
    margin: 8px 14px 0 14px;
    overflow: hidden;
    font-size: 12px;
    line-height: 16px;
    color: #737373;
    text-overflow: ellipsis;
}

.speaker-section .card.people .card-info .title {
    display: block;
    margin: 8px 14px 0 14px;
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
    color: #404040;
}

.speaker-section .card.people .card-info {
    position: absolute;
    top: 150px;
    display: inline-block;
    width: 100%;
    height: 101px;
    overflow: hidden;
    background: #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.speaker-section .card.people .card-top {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 170px;
    height: 150px;
    background-color: #ffffff;
}

.speaker-section .card.people .card-top.blue {
    background-color: #427fed;
}

.speaker-section .card.people .card-top.green {
    background-color: #53a93f;
}

.speaker-section .card.people {
    position: relative;
    display: inline-block;
    width: 170px;
    height: 300px;
    padding-top: 0;
    margin-left: 20px;
    overflow: hidden;
    vertical-align: top;
}

.speaker-section .card.people:first-child {
    margin-left: 0;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .section-title .big-title {
    margin: 0px;
    padding: 0px;
    font-size: 36px;
    font-weight: 400;
    color: #ffa500;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .section-title .line-style {
    z-index: 1;
    top: -30px;
    left: -30px;
    width: 70px;
    height: 3px;
    position: absolute;
    background-color: #ffbe30;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .section-title .sub-title {
    margin-bottom: 15px;
    letter-spacing: 5px;
    color: #878787;
    font-size: 18px;
    text-transform: uppercase;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-content .speaker-info .speaker-social-network {
    width: 100%;
    display: table;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-content .speaker-info .speaker-social-network ul {
    display: table;
    margin: 0px;
    padding: 0px;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-content .speaker-info .speaker-social-network ul li {
    margin: 0;
    margin-right: 15px;
    padding: 0;
    float: left;
    list-style: none;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-content .speaker-info .speaker-social-network ul li a {
    color: #878787;
    font-size: 18px;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-content .speaker-info .speaker-social-network ul li a:hover {
    color: #ffbe30;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-content .speaker-info .speaker-title .speaker-name {
    margin-right: 30px;
    padding-right: 30px;
    font-size: 24px;
    font-family: "Helvetica Neue 45light", "Helvetica", "Arial";
    border-right: 1px solid #878787;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-content .speaker-info .speaker-title {
    color: #333333;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-content .speaker-info {
    padding-right: 100px;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-content {
    padding-top: 50px;
    padding-bottom: 100px;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-image .speaker-name {
    z-index: 1;
    left: -250px;
    bottom: 160px;
    color: #cc7b00;
    position: relative;
    padding-left: 90px;
    font-size: 24px;
    text-transform: uppercase;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-image .speaker-name:after {
    left: 0;
    top: 50%;
    width: 80px;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #dddddd;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-image {
    padding: 0px 70px;
    position: relative;
    margin-bottom: -8px;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.speaker-section .carousel .carousel-inner .carousel-item .item .speaker-image.image-wrapper {
    overflow: hidden;
    position: relative;
}

.speaker-section .carousel-indicators .active .card.hovercard .info .desc {
    color: #fff;
}

.speaker-section .carousel-indicators .active .card.hovercard .info .title a {
    color: #fff;
    font-weight: bold;
}

.speaker-section .carousel-indicators .active .card.hovercard .info .title a:hover {
    text-decoration: none;
}

.speaker-section .carousel-indicators .active .card.hovercard {
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.speaker-section .carousel-indicators .card.hovercard .info .desc {
    color: #000;
}

.speaker-section .carousel-indicators .card.hovercard .info .title a {
    font-size: 1.3rem;
    color: #000;
    font-weight: 700;
}

.speaker-section .carousel-indicators .card.hovercard .info .title a:hover {
    text-decoration: none;
}

.speaker-section .carousel-indicators li {
    height: 0.5px !important;
    width: 20px !important;
    background: transparent;
    margin: 0 .5rem;
    border-radius: 50%;
}

.speaker-section .carousel-indicators li:hover .card.hovercard {
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.speaker-section .carousel-indicators li:hover {
    background: transparent;
    cursor: pointer;
}

.speaker-section .carousel-indicators li.active {
    background: transparent;
}

.speaker-section .carousel-indicators li.active:hover {
    background: transparent;
    cursor: default;
}

.speaker-section .slider-nav {
    left: 502px;
    right: 0;
    width: 50%;
    margin: 0px;
    height: auto;
    bottom: 145px;
    position: absolute;
    padding-bottom: 30px;
}

.speaker-section .slider-nav li {
    display: block;
    width: 33.3%;
    height: 100%;
    text-indent: 0;
    margin-right: 75px;
    margin-left: 100px;
}

.speaker-section .speaker-carousel {
    position: relative;
}

.special-offer {
    padding: 60px 0px;
    color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.sub-title {
    margin-bottom: 15px;
    letter-spacing: 5px;
    color: #878787;
    font-size: 18px;
    text-transform: uppercase;
}

.subscribe-form-item input {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    display: block;
    padding: 0px 25px;
    background-color: #f7f7f7;
    border: 1px solid #f0f0f0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.subscribe-form-item input:focus {
    outline: none;
}

.tab-nav {
    height: 424px;
    padding: 0px 70px;
    overflow-y: scroll;
    position: relative;
}

.tab-nav::-webkit-scrollbar {
    width: 6px;
    height: 60px;
}

.tab-nav::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background: -webkit-radial-gradient(top, #e37e36, #ffbe30);
    background: radial-gradient(to bottom, #e37e36, #ffbe30);
}

.tab-nav::-webkit-scrollbar-track {
    width: 10px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.5);
}

.tab-pane .image .custom-btn {
    top: 85%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.tab-pane .image {
    overflow: hidden;
    position: relative;
}

.tab-pane .image img {
    display: block;
}

.tab-wrapper {
    position: relative;
}

.tag {
    top: 35px;
    right: 30px;
    font-weight: 700;
    position: absolute;
    color: #ffffff;
    font-size: 18px;
}

.tag i {
    color: #ffbe30;
}

.tag:hover {
    text-decoration: none;
    color: #e37e36;
}

#count_timer {
    position: fixed;
    top: 120px;
    left: 5px;
    margin-right: 5px;
    background-color: blue;
    border: none;
    border-radius: 8px;
    padding: 5px 15px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
  
.testimonial-client-comment {
    color: #323232;
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 18px;
}

.testimonial-client-info {
    margin-bottom: 3rem;
}

.testimonial-client-name {
    font-weight: 800;
    color: #fdbd42;
    font-size: 28px;
    margin-top: 2rem;
}

.middle-button {
    margin-top: 4em;
}

.testimonial-image {
    border-radius: 50%;
    border: 3px solid #e17324;
}

.testimonial-item {
    padding: 10px 180px 0px 180px;
}

.ticket-price {
    font-weight: 700;
    color: #ffbe30;
    text-transform: capitalize;
}

.tickets-details-btn {
    display: block;
    z-index: 1;
    font-weight: 600;
    overflow: hidden;
    padding: 15px 35px;
    position: relative;
    border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fdae3d;
    border: 4px solid #bebebe;
    background-color: #ffffff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 60px 5px rgba(0, 0, 0, 0.2);
}

.tickets-details-btn:hover {
    color: #ffffff !important;
    font-size: 14px;
    border: 4px solid #ffffff;
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
}

.title-text-small {
    font-weight: 300;
    font-size: 25px;
    font-style: italic;
    color: #535353;
}

.title-text-small strong {
    font-weight: 900;
    color: #e17324;
}

.title-text {
    font-weight: 300;
    font-size: 30px;
    color: #535353;
}

.title-text strong {
    font-weight: 900;
    color: #e17324;
}

.title-text-special {
    font-weight: 400;
    font-size: 30px;
    color: #5a5a5a;
}

.title-text-special strong {
    font-weight: 900;
    color: #fdae3e;
}

.ul-li ul {
    margin: -5px;
    padding: 0px;
}

.ul-li-block ul {
    margin: -5px;
    padding: 0px;
}

.ul-li-block ul li {
    margin: 0;
    padding: 0;
    display: block;
    list-style: none;
}

.useful-links-wrapper {
    padding: 0px 30px;
}

.useful-links-wrapper ul li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #878787;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.useful-links-wrapper ul li a:before {
    top: 50%;
    left: 0px;
    content: '\f0a9';
    font-weight: 900;
    position: absolute;
    color: #878787;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: 'Font Awesome 5 Free';
}

.useful-links-wrapper ul li:hover a {
    padding-left: 40px;
    color: #ffbe30;
}

.useful-links-wrapper ul li:hover a:before {
    left: 15px;
    color: #ffbe30;
}

.useful-links-wrapper ul li:last-child a {
    border-bottom: none;
}

.vayu-header {
    z-index: 999;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.1);
    padding: 0px 0px;
    background: -webkit-gradient(linear, left top, right bottom, from(#ffffff), to(#ffffff));
    background: -webkit-linear-gradient(top left, #ffffff, #ffffff);
    background: -o-linear-gradient(top left, #ffffff, #ffffff);
    background: linear-gradient(to bottom right, #ffffff, #ffffff);
}

.vision-text {
    margin: 0px;
    display: table;
    font-weight: 900;
    position: relative;
    margin-bottom: 2rem;
    font-size: 24px;
    color: #ffa500;
}

.volunteer-form-item {
    margin-bottom: 10px;
    width: 100%;
    height: 50px;
    display: table;
    position: relative;
}

.volunteer-form-item {
    margin-bottom: 10px;
    width: 100%;
    height: 50px;
    display: table;
    position: relative;
}

.volunteer-form-item input {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0px 20px;
    border-radius: 2px;
    color: #ffffff;
    border: 1px solid #333333;
    -webkit-appearance: none;
    background: #333333;
}

.volunteer-form-item input,
.volunteer-form-item select {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0px 20px;
    border-radius: 2px;
    color: #ffffff;
    border: 1px solid #333333;
    background-color: #333333;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.volunteer-form-item select {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0px 20px;
    border-radius: 2px;
    color: #ffffff;
    border: 1px solid #333333;
    -webkit-appearance: none;
}

.volunteer-form-item:last-child {
    margin-bottom: 0px;
}

.yellow-color {
    color: #ffbe30;
}

.overlay-anchor {
    font-family: "Gill Sans Semibold", "Helvetica Neue 45light", "Helvetica", "Arial";
    color: #ffbe30 !important;
    padding-top: 1rem;
    font-size: 16px;
    font-weight: 700px;
}

.overlay-anchor:hover {
    text-decoration: underline;
    color: #ffbe30 !important;
}

.carousel-indicators li {
    color: transparent !important;
}

#testimonialCarousel .carousel-indicators li {
    height: 0.5px !important;
    width: 20px !important;
    background: #e8e8e8;
    margin: 0 .5rem;
    border-radius: 50%;
}

#testimonialCarousel .carousel-indicators li:hover {
    background: #ffbe30;
    cursor: pointer;
}

#testimonialCarousel .carousel-indicators li.active {
    background: #ffbe30;
}

#testimonialCarousel .carousel-indicators li.active:hover {
    background: #ffbe30;
    cursor: default;
}

#top-carousel .carousel-control-next-icon,
#top-carousel .carousel-control-prev-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    background-size: 100% 100%;
    color: #777;
    border-radius: 50%;
}

#top-carousel .carousel-item .carousel-caption .bold-text {
    width: 100%;
    display: table;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #8e8c8c;
    text-shadow: 2px 3px rgba(0, 0, 0, 0.1);
    font-family: "Helvetica Neue Medium", "Helvetica", "Arial";
}

#top-carousel .carousel-item .carousel-caption .custom-btn {
    margin-bottom: 120px;
}

#top-carousel .carousel-item .carousel-caption .title-special {
    font-size: 24px;
    color: #fdae3e;
    margin-bottom: 40px;
    font-family: "Helvetica Neue Medium", "Helvetica", "Arial";
}

#top-carousel .carousel-item .carousel-caption {
    left: 10%;
    text-align: left;
}

#top-carousel-mobile .carousel-control-next-icon,
#top-carousel-mobile .carousel-control-prev-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    background-size: 100% 100%;
    color: #777;
    border-radius: 50%;
}

#top-carousel-mobile .carousel-item .carousel-caption .bold-text {
    width: 100%;
    display: table;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #8e8c8c;
    text-shadow: 2px 3px rgba(0, 0, 0, 0.1);
    font-family: "Helvetica Neue Medium", "Helvetica", "Arial";
}

.banner-mobile {
    margin-bottom: -28px;
}

#top-carousel-mobile .carousel-item .carousel-caption .custom-btn {
    margin-bottom: 120px;
}

#top-carousel-mobile .carousel-item .carousel-caption .title-special {
    font-size: 24px;
    color: #fdae3e;
    margin-bottom: 40px;
    font-family: "Helvetica Neue Medium", "Helvetica", "Arial";
}

#top-carousel-mobile .carousel-item .carousel-caption {
    left: 10%;
    text-align: left;
}

.centre-map-media {
    cursor: pointer;
}

.centre-map-media img {
    width: 10em;
}

.centre-map-media:hover {
    background: #fff8ea;
}

.centres-root {
    background: transparent;
}

.centres-root.active {
    background: #fff8ea;
}

.special-menu {
    background: -webkit-gradient(linear, left top, right bottom, from(#ff3e00), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #ff3e00, #ffbe30);
    background: -o-linear-gradient(top left, #ff3e00, #ffbe30);
    background: linear-gradient(to bottom right, #ff3e00, #ffbe30);
    color: #ffffff !important;
}

.i-want-to-transform-floater {
    bottom: 5.5em;
    position: fixed;
    width: 14em;
    left: 50%;
    margin-left: -7em;
    text-align: center;
    border-radius: 0.3em;
    z-index: 9999;
    background: -webkit-gradient(linear, left top, right bottom, from(#ff3e00), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #ff3e00, #ffbe30);
    background: -o-linear-gradient(top left, #ff3e00, #ffbe30);
    background: linear-gradient(to bottom right, #ff3e00, #ffbe30);
    box-shadow: .1em .2em .3em #222111;
}

.i-want-to-transform-floater-mt {
    margin-top: .17em;
    color: #e5e5e5;
}

.i-want-to-transform-floater-text {
    color: #e5e5e5;
    text-align: center;
    text-transform: uppercase;
    font-family: "Trebuchet MS";
    font-weight: 900;
}

.i-want-to-transform-floater-text:hover {
    color: #ffffff;
}

.pointer {
    cursor: pointer;
}

.statistics {
    color: #ffffff;
    background: -webkit-gradient(linear, left top, right bottom, from(#ff3e00), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #ff3e00, #ffbe30);
    background: -o-linear-gradient(top left, #ff3e00, #ffbe30);
    background: linear-gradient(to bottom right, #ff3e00, #ffbe30);
}

.dotted-line {
    border-right: 4px dotted #ffff;
}

.profile-completion-percentage {
    background: -webkit-gradient(linear, left top, right bottom, from(#e37e36), to(#ffbe30));
    background: -webkit-linear-gradient(top left, #e37e36, #ffbe30);
    background: -o-linear-gradient(top left, #e37e36, #ffbe30);
    background: linear-gradient(to bottom right, #e37e36, #ffbe30);
}

img {
    border-radius: 3px;
}

a {
    color: #ffbe30;
}

a,
button {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    background: none;
    text-decoration: none;
    display: inline-block;
}

a:focus,
button:focus {
    outline: none;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "Helvetica Neue 45light", "Helvetica", "Arial";
    word-spacing: 2px;
    letter-spacing: 0.6px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    background-color: rgb(255, 255, 255);
    -webkit-font-smoothing: antialiased;
    margin: 0px;
    padding: 0px;
}

body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

body::-webkit-scrollbar-thumb {
    background: -webkit-radial-gradient(top, #ffffff, #ffbe30);
    background: radial-gradient(to bottom, #ffffff, #ffbe30);
}

body::-webkit-scrollbar-track {
    width: 5px;
    background-color: rgba(0, 0, 0, 0.5);
}

.form-control {
    border: 0;
    box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 10px;
}

label {
    margin-top: 5px !important;
    margin-bottom: 0px !important;
    letter-spacing: normal;
    font-size: 12px !important;
    margin-left: 5px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    text-transform: capitalize;
}

strong,
span,
small,
i {
    line-height: normal;
    display: inline-block;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #ffffff;
    color: #495057;
}

.bootstrap-select .dropdown-menu li.active small {
    color: #495057 !important;
}

.dropdown-header {
    color: blue;
    font-size: 1.1em;
    font-weight: 700;
}

.bootstrap-select .dropdown-menu li a span.text {
    color: #495057;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner:hover {
    color: #495057;
}

.bootstrap-select>.dropdown-toggle {
    background: #ffffff;
}

.bootstrap-select>.btn:not(:disabled):not(.disabled) {
    color: #495057;
}

@media screen and (max-width: 1349px) {}

@media screen and (max-width: 1199px) {}

@media screen and (max-width: 1024px) {
    .menu-item-list {
        padding-left: 2em;
    }
    .book-event-image {
        margin-left: 3em;
    }
    .coming-event-item .event-image .small-image {
        left: 240px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    #top-carousel .carousel-item .carousel-caption .title-text {
        font-size: 60px;
        margin-top: 30px;
    }
    #top-carousel .carousel-item .carousel-caption .details-btn {
        margin-top: 30px;
    }
}

@media only screen and (width:768px) and (resolution: 163dpi) {
    .desktop-header {
        display: none;
    }
    .header-alternative {
        display: block;
    }
}

@media only screen and (width:1024px) and (resolution: 163dpi) {
    .desktop-header {
        display: none;
    }
    .header-alternative {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    .desktop-header {
        display: none;
    }
    .header-alternative {
        display: block;
    }
    .speaker-section .slider-nav {
        left: 0px;
    }
    .centre-map-main-part .col-lg-12 {
        display: grid !important;
    }
    .centre-map-listing-section {
        height: auto !important;
    }
    .speaker-section .card.hovercard .avatar img {
        width: 75px;
        height: 75px;
        max-width: 75px;
        max-height: 75px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        border: 5px solid #ffffff;
    }
}

@media screen and (max-width: 839px) {
    .desktop-header {
        display: none;
    }
    .header-alternative {
        display: block;
    }
    .speaker-section .slider-nav {
        left: 0px;
    }
    .speaker-section .card.hovercard .avatar img {
        width: 75px;
        height: 75px;
        max-width: 75px;
        max-height: 75px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        border: 5px solid #ffffff;
    }
    .expertise-item-overlay-text-big {
        font-size: 12px;
    }
    .overlay-big {
        width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #top-carousel .carousel-item .carousel-caption {
        height: 100%;
        bottom: 5px;
        text-align: center;
    }
    #top-carousel .carousel-item .carousel-caption .title-text {
        font-size: 40px;
        margin-top: 30px;
    }
    #top-carousel .carousel-item .carousel-caption .bold-text {
        font-size: 35px;
    }
    #top-carousel .carousel-item .carousel-caption .title-special {
        font-size: 20px;
        margin-bottom: 20px;
    }
    #top-carousel .carousel-item .carousel-caption .custom-btn {
        padding: 8px 20px;
    }
    #top-carousel .carousel-item .carousel-caption .details-btn {
        padding: 6px 20px;
        margin-top: 20px;
    }
    .expertise-item-overlay-text-big {
        font-size: 12px;
    }
    .overlay-big {
        width: 100%;
    }
}

@media screen and (min-width: 601px) and (max-width: 767px) {
    #top-carousel .carousel-item .carousel-caption {
        height: 100%;
        bottom: 5px;
        text-align: center;
    }
    #top-carousel .carousel-item .carousel-caption .title-text {
        font-size: 30px;
    }
    #top-carousel .carousel-item .carousel-caption .bold-text {
        font-size: 25px;
    }
    #top-carousel .carousel-item .carousel-caption .title-special {
        font-size: 16px;
        margin-bottom: 10px;
    }
    #top-carousel .carousel-item .carousel-caption .custom-btn {
        padding: 8px 20px;
    }
    .expertise-item-overlay-text-big {
        font-size: 12px;
    }
    .overlay-big {
        width: 100%;
    }
}

@media screen and (max-width: 739px) {
    .desktop-header {
        display: none;
    }
    .header-alternative {
        display: block;
    }
    .speaker-section .slider-nav {
        left: 0px;
    }
    .speaker-section .card.hovercard .avatar img {
        width: 65px;
        height: 65px;
        max-width: 65px;
        max-height: 65px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        border: 5px solid #ffffff;
    }
    .expertise-item-overlay-text-big {
        font-size: 12px;
    }
    .overlay-big {
        width: 100%;
    }
}

@media screen and (max-width: 639px) {
    .desktop-header {
        display: none;
    }
    .header-alternative {
        display: block;
    }
    .speaker-section .slider-nav {
        left: 0px;
    }
    .speaker-section .card.hovercard .avatar img {
        width: 50px;
        height: 50px;
        max-width: 50px;
        max-height: 50px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        border: 5px solid #ffffff;
    }
    .speaks-video {
        height: 280px;
    }
    .signin-video {
        height: 140px;
    }
    .banner-spacing {
        margin-top: 0em;
    }
    .carousel-banner-spacing {
        margin-top: 0em;
        padding-top: 0em;
        margin-bottom: -28px;
    }
    .useful-links-wrapper {
        padding: 0px 0px;
    }
    .ul-li-block ul {
        padding: 0px 0px 20px 4px;
    }
    .footer-item-title {
        margin-bottom: 10px;
    }
    .instagram-wrapper ul li {
        width: 104.5px;
        height: 95px;
    }
    .footer-menu {
        display: inline-block;
    }
    .social-title {
        margin-bottom: 0px;
    }
    .book-event-image {
        margin-left: 0em;
        float: none;
    }
    .middle-button {
        margin-top: 0em;
    }
    .grid-item,
    .grid-sizer,
    .grid .grid-item--height2,
    .grid .grid-item--width2 {
        width: 100%;
        margin-bottom: 1em;
    }
    .coming-event-item,
    .event-image {
        position: inherit !important;
        width: 100%;
        margin-bottom: .5em;
    }
    .coming-event-item .event-image .small-image {
        left: 175px;
        top: 69%;
    }
    .force-margin-left {
        margin-left: .5em;
    }
    .book-event-content {
        padding: .25em .25em;
    }
    .expertise-item {
        margin-bottom: 0.5em;
    }
    .quote-text {
        font-size: 16px;
    }
    .message-signature {
        font-size: 20px;
    }
    .i-want-to-transform-floater {
        width: 3em;
        height: 6.35em;
        bottom: 16em;
    }
    .i-want-to-transform-floater-text {
        font-size: 0.5em;
        line-height: 0.15em;
        padding-top: 1em;
    }
    .p-floater-text {
        margin-bottom: 1.25em;
    }
    .fa-3x {
        font-size: 2em !important;
    }
    .pt-banner {
        padding-top: 0em;
    }
    .social-links a {
        padding-right: 0rem;
    }
    .thoughts-align {
        text-align: -webkit-center;
    }
    .blog-image {
        width: auto;
        float: none;
        padding-right: 0em;
    }
    .carousel-indicators {
        margin-right: 0;
        margin-left: 0;
    }
    .custom-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #ffbe30;
    }
    .conference-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #bebebe;
    }
    .event-making-btn .custom-btn {
        padding: 8px 16px;
        font-size: 14px !important;
        border: 2px solid #bebebe !important;
    }
    .banner-mobile .custom-btn {
        bottom: 44px !important;
    }
    .tab-wrapper .tab-nav {
        padding: 0 !important;
        overflow-x: hidden;
    }
    .center-title-mobile {
        text-align: center;
    }
    .coming-event-content {
        padding-right: 0px;
        text-align: justify;
    }
    .center-section {
        text-align: center !important;
    }
    .tickets-details-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #bebebe;
    }
    .remove-pading-right {
        padding-right: 0px !important;
    }
    .expertise-item-overlay-text-big {
        font-size: 7px;
    }
    .overlay-big {
        width: 100%;
    }
    .modal-footer {
        justify-content: center;
    }
    .founder-video {
        height: 193px;
    }
    .video-quote {
        width: 330px;
    }
    .big-title {
        font-size: 26px;
    }
    .quote-image {
        width: 25%;
    }
    .dotted-line {
        border-right: 0px dotted #ffff;
    }
    .header-alternative {
        position: absolute;
    }
    .content-sticker {
        bottom: 0px;
    }
    #my-events-list .tabulator-row {
        height: auto;
    }
    #events-list .tabulator-row {
        height: auto;
    }
}

@media screen and (max-width: 600px) {
    #top-carousel .carousel-item .carousel-caption {
        height: 100%;
        top: 2px;
        bottom: 10px;
        text-align: center;
    }
    #top-carousel .carousel-item .carousel-caption .title-text {
        font-size: 25px;
    }
    #top-carousel .carousel-item .carousel-caption .bold-text {
        font-size: 22px;
    }
    #top-carousel .carousel-item .carousel-caption .title-special {
        font-size: 16px;
        margin-bottom: 10px;
    }
    #top-carousel .carousel-item .carousel-caption .custom-btn {
        padding: 8px 20px;
    }
    .useful-links-wrapper {
        padding: 0px 0px;
    }
    .ul-li-block ul {
        padding: 0px 0px 20px 4px;
    }
    .footer-item-title {
        margin-bottom: 10px;
    }
    .instagram-wrapper ul li {
        width: 104.5px;
        height: 95px;
    }
    .footer-menu {
        display: inline-block;
    }
    .social-title {
        margin-bottom: 0px;
    }
    .book-event-image {
        margin-left: 0em;
        float: none;
    }
    .middle-button {
        margin-top: 0em;
    }
    .grid-item,
    .grid-sizer,
    .grid .grid-item--height2,
    .grid .grid-item--width2 {
        width: 100%;
        margin-bottom: 1em;
    }
    .coming-event-item,
    .event-image {
        position: inherit !important;
        width: 100%;
        margin-bottom: .5em;
    }
    .coming-event-item .event-image .small-image {
        left: 175px;
        top: 69%;
    }
    .force-margin-left {
        margin-left: .5em;
    }
    .book-event-content {
        padding: .25em .25em;
    }
    .expertise-item {
        margin-bottom: 0.5em;
    }
    .quote-text {
        font-size: 16px;
    }
    .message-signature {
        font-size: 20px;
    }
    .i-want-to-transform-floater {
        width: 3em;
        height: 6.35em;
        bottom: 16em;
    }
    .i-want-to-transform-floater-text {
        font-size: 0.5em;
        line-height: 0.15em;
        padding-top: 1em;
    }
    .p-floater-text {
        margin-bottom: 1.25em;
    }
    .fa-3x {
        font-size: 2em !important;
    }
    .pt-banner {
        padding-top: 0em;
    }
    .social-links a {
        padding-right: 0rem;
    }
    .thoughts-align {
        text-align: -webkit-center;
    }
    .blog-image {
        width: auto;
        float: none;
        padding-right: 0em;
    }
    .carousel-indicators {
        margin-right: 0;
        margin-left: 0;
    }
    .custom-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #ffbe30;
    }
    .conference-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #bebebe;
    }
    .event-making-btn .custom-btn {
        padding: 8px 16px;
        font-size: 14px !important;
        border: 2px solid #bebebe !important;
    }
    .banner-mobile .custom-btn {
        bottom: 44px !important;
    }
    .tab-wrapper .tab-nav {
        padding: 0 !important;
        overflow-x: hidden;
    }
    .center-title-mobile {
        text-align: center;
    }
    .coming-event-content {
        padding-right: 0px;
        text-align: justify;
    }
    .center-section {
        text-align: center !important;
    }
    .tickets-details-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #bebebe;
    }
    .remove-pading-right {
        padding-right: 0px !important;
    }
    .expertise-item-overlay-text-big {
        font-size: 7px;
    }
    .overlay-big {
        width: 100%;
    }
    .modal-footer {
        justify-content: center;
    }
    .founder-video {
        height: 193px;
    }
    .video-quote {
        width: 330px;
    }
    .big-title {
        font-size: 26px;
    }
    .quote-image {
        width: 25%;
    }
    .dotted-line {
        border-right: 0px dotted #ffff;
    }
    .header-alternative {
        position: absolute;
    }
    .content-sticker {
        bottom: 0px;
    }
    #my-events-list .tabulator-row {
        height: auto;
    }
    #events-list .tabulator-row {
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        width: 50%;
    }
    .desktop-header {
        display: none;
    }
    .header-alternative {
        display: block;
    }
    .speaker-section .slider-nav {
        left: 0px;
    }
    .speaker-section .card.hovercard .avatar img {
        width: 45px;
        height: 45px;
        max-width: 45px;
        max-height: 45px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        border: 5px solid #ffffff;
    }
    .speaks-video {
        height: 280px;
    }
    .signin-video {
        height: 140px;
    }
    .banner-spacing {
        margin-top: 0em;
    }
    .carousel-banner-spacing {
        margin-top: 0em;
        padding-top: 0em;
        margin-bottom: -28px;
    }
    .useful-links-wrapper {
        padding: 0px 0px;
    }
    .ul-li-block ul {
        padding: 0px 0px 20px 4px;
    }
    .footer-item-title {
        margin-bottom: 10px;
    }
    .instagram-wrapper ul li {
        width: 104.5px;
        height: 95px;
    }
    .footer-menu {
        display: inline-block;
    }
    .social-title {
        margin-bottom: 0px;
    }
    .book-event-image {
        margin-left: 0em;
        float: none;
    }
    .middle-button {
        margin-top: 0em;
    }
    .grid-item,
    .grid-sizer,
    .grid .grid-item--height2,
    .grid .grid-item--width2 {
        width: 100%;
        margin-bottom: 1em;
    }
    .coming-event-item,
    .event-image {
        position: inherit !important;
        width: 100%;
        margin-bottom: .5em;
    }
    .coming-event-item .event-image .small-image {
        left: 175px;
        top: 69%;
    }
    .force-margin-left {
        margin-left: .5em;
    }
    .book-event-content {
        padding: .25em .25em;
    }
    .line-style {
        top: -5%;
    }
    .expertise-item {
        margin-bottom: 0.5em;
    }
    .quote-text {
        font-size: 16px;
    }
    .message-signature {
        font-size: 20px;
    }
    .i-want-to-transform-floater {
        width: 3em;
        height: 6.35em;
        bottom: 16em;
    }
    .i-want-to-transform-floater-text {
        font-size: 0.5em;
        line-height: 0.15em;
        padding-top: 1em;
    }
    .p-floater-text {
        margin-bottom: 1.25em;
    }
    .fa-3x {
        font-size: 2em !important;
    }
    .pt-banner {
        padding-top: 0em;
    }
    .social-links a {
        padding-right: 0rem;
    }
    .thoughts-align {
        text-align: -webkit-center;
    }
    .blog-image {
        width: auto;
        float: none;
        padding-right: 0em;
    }
    .carousel-indicators {
        margin-right: 0;
        margin-left: 0;
    }
    .custom-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #ffbe30;
    }
    .conference-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #bebebe;
    }
    .event-making-btn .custom-btn {
        padding: 8px 16px;
        font-size: 14px !important;
        border: 2px solid #bebebe !important;
    }
    .banner-mobile .custom-btn {
        bottom: 44px !important;
    }
    .tab-wrapper .tab-nav {
        padding: 0 !important;
        overflow-x: hidden;
    }
    .center-title-mobile {
        text-align: center;
    }
    .coming-event-content {
        padding-right: 0px;
        text-align: justify;
    }
    .center-section {
        text-align: center !important;
    }
    .tickets-details-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #bebebe;
    }
    .remove-pading-right {
        padding-right: 0px !important;
    }
    .expertise-item-overlay-text-big {
        font-size: 7px;
    }
    .overlay-big {
        width: 100%;
    }
    .modal-footer {
        justify-content: center;
    }
    .founder-video {
        height: 193px;
    }
    .video-quote {
        width: 330px;
    }
    .big-title {
        font-size: 26px;
    }
    .quote-image {
        width: 25%;
    }
    .dotted-line {
        border-right: 0px dotted #ffff;
    }
    .header-alternative {
        position: absolute;
    }
    .content-sticker {
        bottom: 0px;
    }
    #my-events-list .tabulator-row {
        height: auto;
    }
    #events-list .tabulator-row {
        height: auto;
    }
}

@media screen and (max-width: 360px) {
    .desktop-header {
        display: none;
    }
    .header-alternative {
        display: block;
    }
    .speaker-section .slider-nav {
        left: 0px;
    }
    .speaker-section .card.hovercard .avatar img {
        width: 35px;
        height: 35px;
        max-width: 35px;
        max-height: 35px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        border: 5px solid #ffffff;
    }
    .speaks-video {
        height: 280px;
    }
    .signin-video {
        height: 140px;
    }
    .banner-spacing {
        margin-top: 0em;
    }
    .carousel-banner-spacing {
        margin-top: 0em;
        padding-top: 0em;
        margin-bottom: -28px;
    }
    .useful-links-wrapper {
        padding: 0px 0px;
    }
    .ul-li-block ul {
        padding: 0px 0px 20px 4px;
    }
    .footer-item-title {
        margin-bottom: 10px;
    }
    .instagram-wrapper ul li {
        width: 104.5px;
        height: 95px;
    }
    .footer-menu {
        display: inline-block;
    }
    .social-title {
        margin-bottom: 0px;
    }
    .book-event-image {
        margin-left: 0em;
        float: none;
    }
    .middle-button {
        margin-top: 0em;
    }
    .grid-item,
    .grid-sizer,
    .grid .grid-item--height2,
    .grid .grid-item--width2 {
        width: 100%;
        margin-bottom: 1em;
    }
    .coming-event-item,
    .event-image {
        position: inherit !important;
        width: 100%;
        margin-bottom: .5em;
    }
    .coming-event-item .event-image .small-image {
        left: 175px;
        top: 69%;
    }
    .force-margin-left {
        margin-left: .5em;
    }
    .book-event-content {
        padding: .25em .25em;
    }
    .expertise-item {
        margin-bottom: 0.5em;
    }
    .quote-text {
        font-size: 16px;
    }
    .message-signature {
        font-size: 20px;
    }
    .i-want-to-transform-floater {
        width: 3em;
        height: 6.35em;
        bottom: 16em;
    }
    .i-want-to-transform-floater-text {
        font-size: 0.5em;
        line-height: 0.15em;
        padding-top: 1em;
    }
    .p-floater-text {
        margin-bottom: 1.25em;
    }
    .fa-3x {
        font-size: 2em !important;
    }
    .pt-banner {
        padding-top: 0em;
    }
    .social-links a {
        padding-right: 0rem;
    }
    .thoughts-align {
        text-align: -webkit-center;
    }
    .blog-image {
        width: auto;
        float: none;
        padding-right: 0em;
    }
    .carousel-indicators {
        margin-right: 0;
        margin-left: 0;
    }
    .custom-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #ffbe30;
    }
    .conference-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #bebebe;
    }
    .event-making-btn .custom-btn {
        padding: 8px 16px;
        font-size: 14px !important;
        border: 2px solid #bebebe !important;
    }
    .banner-mobile .custom-btn {
        bottom: 44px !important;
    }
    .tab-wrapper .tab-nav {
        padding: 0 !important;
        overflow-x: hidden;
    }
    .center-title-mobile {
        text-align: center;
    }
    .coming-event-content {
        padding-right: 0px;
        text-align: justify;
    }
    .center-section {
        text-align: center !important;
    }
    .tickets-details-btn {
        padding: 8px 16px;
        font-size: 14px;
        border: 2px solid #bebebe;
    }
    .remove-pading-right {
        padding-right: 0px !important;
    }
    .expertise-item-overlay-text-big {
        font-size: 7px;
    }
    .overlay-big {
        width: 100%;
    }
    .modal-footer {
        justify-content: center;
    }
    .founder-video {
        height: 193px;
    }
    .video-quote {
        width: 330px;
    }
    .big-title {
        font-size: 26px;
    }
    .quote-image {
        width: 25%;
    }
    .dotted-line {
        border-right: 0px dotted #ffff;
    }
    .header-alternative {
        position: absolute;
    }
    .content-sticker {
        bottom: 0px;
    }
    #my-events-list .tabulator-row {
        height: auto;
    }
    #events-list .tabulator-row {
        height: auto;
    }
}