@font-face {
    font-family: 'OliviarSans-Regular';
    src: url('https://iyba.org/home/fonts/OliviarSans/OliviarSans-RegularEx.otf') format('truetype');
}

@font-face {
    font-family: 'Lora-Variable';
    src: url('https://iyba.org/home/fonts/Lora/Lora-VariableFont_wght.ttf') format('truetype');
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 14px;
    overflow-x: hidden;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 18px 0 15px 0;
    border-radius: 0;
    float: left;
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

li {
    list-style: none;
}

.container {
    max-width: 1260px;
}

.mobile-view {
    display: none;
}

.logo-hover:hover {
    -ms-transform: scale(1.1);
    /* IE 9 */
    -webkit-transform: scale(1.1);
    /* Safari 3-8 */
    transform: scale(1.1);
    cursor: pointer;
}

.display-custom {
    display: none;
}

.btn-primary {
    background: #253C81;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 15px;
    line-height: normal;
}

.owner-text {
    font-size: 14px;
    margin-bottom: 0px;
    margin-top: 0px;
}

.modal-name-size {
    font-size: 18px;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #DBA555;
    box-shadow: none;
    color: #fff;
}

.disclaimer-section {
    color: #777;
    text-align: center;
    font-size: 12px;
    margin-top: 80px;
}


/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebarCollapse {
    display: none;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #7386D5;
    color: #fff;
    transition: all 0.3s;
    display: none;
}

#sidebar.inactive {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #f2f2f2;
    display: flex;
}

#sidebar ul.components {
    padding: 0;
    margin: 0;
    background: #3E434C;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    color: #fff;
}

#sidebar ul li a:hover {
    color: #2976B2;
    background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #2976B2;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    margin-right: 6px;
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #4996D2;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

#intro {
    display: inline-block;
    margin: unset;
    width: 100%;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 0px;
    /* min-height: 100vh;*/
    transition: all 0.3s;
}

.icon-bar {
    width: 100%;
    float: left;
    padding: 0;
    border-bottom: 1px solid #ccc;
    background: #fff;
    position: relative;
    z-index: 9;
}

.icon-bar a {
    float: left;
    text-align: center;
    padding: 10px 10px;
    transition: all 0.3s ease;
    color: #777;
    text-decoration: none;
}

.icon-bar-right {
    float: right;
    text-decoration: none;
}

.icon-bar a:hover {
    background-color: transparent;
    color: #253C81;
}

.icon-bar-right a:hover {
    background-color: transparent;
    text-decoration: none;
}

.topnav {
    background-color: #fff;
    position: relative;
    z-index: 3;
}

.topnav a {
    float: left;
    display: block;
    color: #253C81;
    text-align: center;
    text-decoration: none;
}

.topnav a.logo img {
    width: 120px;
    height: auto;
}

.active {
    background-color: #ffffff;
}

.topnav .icon {
    display: none;
}

.dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: #253C81;
    padding: 15px 22px;
    background-color: inherit;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 99;
    right: 0;
    border-top: 2px solid #253C81;
}

.dropdown-content a {
    float: none;
    color: #253C81;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 15px;
}

.dropbtn i {
    margin-left: 4px;
    font-size: 18px;
    top: 2px;
    position: relative;
}

.topnav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    box-shadow: 0 0 10px 0 #000;
    padding: 10px 0 10px 0;
}

.navbar .logo:hover {
    background: transparent;
}

.topnav a:hover,
.dropdown:hover .dropbtn {
    background-color: #f2f2f2;
    color: #253C81;
}

.dropdown-content a:hover {
    background-color: #f2f2f2;
    color: #253C81;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.topnav.fixed a.logo img {
    width: 100px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.tablink {
    background-color: #777;
    color: #fff;
    float: left;
    border: none;
    outline: thin;
    cursor: pointer;
    padding: 54px 16px;
    font-size: 17px;
    width: 19.18%;
    margin: 8px 5px;
}

.tablink:hover {
    background-color: #999;
}

.topnav .container {
    max-width: 96%;
}


/* Style the tab content */

.tab-sec {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.tabcontent {
    color: white;
    display: none;
    padding: 185px 0;
    text-align: center;
    float: left;
    width: 100%;
}

#Join {
    background-color: #253C81;
}

#IYBACare {
    background-color: green;
}

#MLS {
    background-color: blue;
}

#Events {
    background-color: orange;
}

#Yachts {
    background-color: black;
}

#navbarSupportedContent {
    float: right;
    flex-grow: 0;
}

.drop-main-menu {
    float: left;
    width: 100%;
}

.drop-main-menu .dropdown {
    float: left;
}

#navbarSupportedContent .icon-bar {
    display: none;
}

#sidebarCollapse {
    background: transparent;
    border: none;
}

#sidebarCollapse img {
    width: 20px;
}

.menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-btn img {
    width: 20px;
}

.menu-btn:focus {
    outline: none;
}

.sidebar-header .fa.fa-times {
    color: #666;
    font-size: 18px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.menu-dropdown {
    float: left;
    position: relative;
}

.menu-dropdown .dropdown-toggle {
    float: right;
    background: transparent;
}

.menu-dropdown .dropdown-toggle::after {
    right: 0px;
}

.menu-dropdown ul {
    width: 160px;
    position: absolute;
    background: #fff;
    margin-bottom: 0;
    top: 45px;
    z-index: 9;
    right: 3px;
    box-shadow: 0px 1px 7px 1px #A8A8A8;
    border-radius: 5px;
}

.menu-dropdown ul li {
    float: left;
    width: 100%;
}

.menu-dropdown a img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid #ccc;
    margin-right: 16px;
}

.menu-dropdown .dropdown-toggle:hover {
    background: transparent;
}

.menu-dropdown ul li a {
    padding: 10px;
    float: left;
    width: 100%;
}

.social-left-icon {
    float: left;
}

.user-icon-bar .social-left-icon {
    float: left;
    margin-top: 0px;
}

.user-icon-bar .icon-bar-right .join-link {
    margin-top: 11px;
}

.icon-bar a {
    padding: 10px 16px;
    float: left;
    text-align: center;
    transition: all 0.3s ease;
    color: #777;
    text-decoration: none;
    border-left: 1px solid lightgray;
}

.icon-bar .social-left-icon a:last-child {
    border-right: 1px solid lightgray;
    border-left: 1px solid lightgray;
}

.icon-bar a.join-link {
    background: #DBA555;
    color: #fff;
    border: none;
}

.icon-bar a.login-link {
    background: #253C81;
    color: #fff;
    border: none;
    margin-left: 10px;
}

.icon-bar a.login-link .fa {
    font-size: 17px;
    float: left;
    margin: 3px 8px 0 0;
}

.icon-bar-right .menu-dropdown a {
    padding: 5px;
    border: 1px solid lightgray;
    border-bottom: 0px;
}

span.mobileonly {
    display: none;
}

.main-slider-sec {
    float: left;
    width: 100%;
    display: none;
}

.slider-section {
    display: inline-block;
    width: 100%;
    position: relative;
    box-shadow: 4px 1px 6px 0px rgba(0, 0, 0, 0.35);
    margin-top: 0px;
}

.slick-slider {
    margin-bottom: 0;
    position: relative;
}

ul.slickslide {
    padding-left: 0;
    max-width: 100%;
    background: #000;
}

.slick-slider .slick-track {
    min-width: 100%;
}

ul.slickslide li img,
.slick-dots button img {
    width: 100%;
    height: auto;
}

.slick-dots {
    top: 0;
    right: 0px;
    position: absolute;
    background: rgba(0, 22, 39, 0.6);
    width: 25%;
    z-index: 9;
    padding: 30px 20px;
}

.slick-dots li,
.slick-dots li button::before {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.slick-dots li {
    margin: 0px;
    border: none;
    display: inline-block;
    width: 100%;
    height: auto;
    list-style: none;
}

.slick-slider .slick-track {
    min-width: 100%;
}

.slick-dots li button {
    margin: 0;
    height: auto;
    width: 100%;
    padding: 0;
}

.slick-dots li button.tab {
    clear: both;
    display: block;
}

.slick-dots li button img {
    width: 60px;
    max-width: 100%;
    height: 60px;
    border-radius: 100%;
    object-fit: cover;
    float: left;
}

.slick-thumbs {
    position: absolute;
    left: -9999px;
    display: none;
}

.slider-content {
    position: relative;
    float: left;
    width: 100%;
    height: 580px;
}

.slider-content figure {
    margin: 0;
}

.slider-desc {
    background: transparent;
    bottom: 0;
    color: #ffffff;
    padding: 5% 50px 60px 50px;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.slider-desc::after {
    content: '';
    display: inline-block;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 90%);
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.slider-title h3 {
    margin: 0 0 15px 0;
}

.slider-title h3 a {
    display: inline-block;
    width: 100%;
    font-size: 40px;
}

.slider-title:hover a,
.slider-title:active a {
    color: #ffffff;
    background-color: #253C81;
}

.slider-title span {
    background: #253C81;
    display: block;
    height: 3px;
    width: 75px;
    margin-bottom: 20px;
}

.desc-para span {
    font-size: 18px;
    margin: 0;
    cursor: pointer;
    line-height: 1.45;
}

.desc-para:hover span {
    background-color: #253C81;
}

.slide-inner-content {
    float: left;
    width: 75%;
}

.slick-thumb-content {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.left-con {
    float: left;
    width: 27%;
}

.left-con figure {
    margin: 0;
    float: left;
    width: 100%;
}

.right-con {
    color: #d1d1d1;
    font-size: 15px;
    margin-top: 5px;
    width: 72%;
    float: right;
    text-align: left;
    margin-left: 0;
    line-height: 20px;
}

.slick-dots .thumb-ring {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 5px solid #0062a6;
    display: block;
    left: 0px;
    opacity: 0;
    position: absolute;
    top: 0px;
    transition: all 250ms ease-out;
    z-index: 1;
}

.slick-dots li:hover .thumb-ring,
.slick-dots li:active .thumb-ring,
.slick-dots li.slick-active .thumb-ring {
    transform: scale(1.03) perspective(1px);
    opacity: 0.8;
}

.slick-dots li:hover .right-con,
.slick-dots li:active .right-con,
.slick-dots li.slick-active .right-con {
    color: #ffffff;
}


/****************footer*************/

.footerinfo {
    float: left;
    width: 100%;
    z-index: 8;
    position: relative;
}

.top-footer {
    float: left;
    width: 100%;
    background: #ebebeb;
}

.top-footer-content {
    float: left;
    width: 100%;
    padding: 20px 0;
}

.footer-logo {
    float: left;
    width: 20%;
}

.top-gray-menu {
    float: left;
    width: 50%;
    margin-top: 18px;
}

.top-gray-menu ul {
    padding: 0;
    margin: 0;
}

.top-gray-menu ul li {
    float: left;
    padding: 0 20px 0 0;
}

.top-gray-menu ul li a {
    font-size: 17px;
    color: #212529;
}

.top-gray-menu ul li a:hover {
    color: #253C81;
}

.chat-content {
    float: right;
    width: 30%;
    text-align: right;
    margin-top: 18px;
    color: #212529;
}

.chat-content a {
    font-size: 17px;
    position: relative;
    padding-left: 30px;
    color: #212529;
}

.chat-content a:hover {
    color: #212529;
}

.chat-content a::before {
    content: "";
    position: absolute;
    background: url(https://iyba.org/home/images/chat.svg);
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
}

.bottom-footer {
    float: left;
    width: 100%;
    background: #0E153E;
    padding: 30px 0;
}

.footer-left-sec {
    float: left;
    width: 30%;
}

.footer-left-content {
    display: inline-block;
    width: 100%;
}

.footer-address {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.address {
    float: left;
    width: 100%;
    color: #d1d1d1;
}

.address .fa {
    width: 20px;
    margin-bottom: 7px;
}

.footer-title {
    color: #fff;
    font-size: 17px;
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

.footer-social-icons ul {
    padding: 0;
    margin: 0;
}

.footer-social-icons ul li {
    float: left;
    margin-right: 20px;
}

.footer-social-icons ul li a {
    color: #d1d1d1;
    font-size: 20px;
    line-height: normal;
}

.footer-social-icons ul li a:hover {
    color: #253C81;
}

.footer-social-icons ul li.more a span {
    font-size: 17px;
    margin-right: 6px;
}

.footer-social-icons ul li.more a .fa {
    font-size: 16px;
    position: relative;
    top: 1px;
}

.footer-social-icons {
    float: right;
    width: 40%;
    margin-bottom: 30px;
}

.footer-left-menu {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    display: none;
}

.footer-left-menu ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
}

.footer-left-menu ul li {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.footer-left-menu ul li a {
    color: #fff;
    font-size: 15px;
}

.footer-left-menu ul li a:hover {
    color: #253C81;
}

.footer-right-sec {
    float: left;
    width: 70%;
}

.footer-blocks {
    float: left;
    width: 100%;
}

.footer-right-info {
    float: left;
    width: 50%;
}

.footer-right-desc {
    display: inline-block;
    width: 100%;
}

.footer-right-desc p {
    color: #e3e3e3;
    letter-spacing: 1px;
}

.footer-mem-info {
    color: #fff;
}

.footer-mem-info img {
    width: 22px;
    float: left;
    margin-right: 10px;
}

.iyba-logo {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.iyba-logo img {
    width: 120px;
}

.footer-t-and-c {
    float: left;
    width: 100%;
    color: #fff;
    margin-top: 30px;
}

.footer-t-and-c a {
    min-width: 100%;
}

.footer-p-and-p {
    float: left;
    width: 100%;
    color: #fff;
}

.footer-p-and-p a {
    min-width: 100%;
}

.block-sec {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
}

.block-left {
    float: left;
    width: 12%;
    margin-right: 10px;
}

.block-left .fa,
.block-left .fas,
.block-left .fab {
    color: #fff;
}

.block-left .fa.fa-user-md {
    font-size: 48px;
}

.block-left .fas.fa-ship,
.block-left .fas.fa-newspaper,
.block-left .fas.fa-anchor,
.block-left .fas.fa-user-shield {
    font-size: 36px;
}

.block-left .fab.fa-searchengin,
.block-left .fas.fa-globe-americas,
.block-left .fas.fa-info-circle {
    font-size: 42px;
}

.block-right {
    float: left;
    width: 80%;
}

.block-right h4 {
    font-size: 19px;
}

.block-right h4 a {
    color: #d1d1d1;
}

.block-sec:hover .block-right h4 a {
    color: #253C81;
}

.block-right p {
    float: left;
    width: 100%;
    color: #d1d1d1;
    font-size: 15px;
    line-height: 22px;
}

.footer-bottom-sec {
    float: left;
    width: 100%;
    position: relative;
}

.footer-bottom-left {
    float: left;
    width: 25%;
    display: none;
}

.footer-bottom-left a.footer-logo {
    color: #fff;
    float: left;
    padding-top: 10px;
    border-top: 1px solid #727272;
    position: relative;
    cursor: pointer;
    width: 50%;
}

.footer-bottom-left a.properties-toggle:hover {
    color: #253C81;
}

.footer-bottom-right {
    float: left;
    border-top: 1px solid #727272;
    width: 100%;
}

.bottom-right-left {
    float: left;
    width: 100%;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #d1d1d1;
    margin-bottom: 0px;
}

.footer-bottom-logo-content a {
    color: #fff;
}

.footer-bottom-logo-content a:hover {
    color: #253C81;
}

.footer-bottom-logo-content a img {
    float: left;
    width: 100px;
}

.footer-bottom-logo-content a span {
    float: left;
    margin-top: 10px;
    margin-left: 10px;
}

.bottom-right-right {
    float: right;
    margin-top: 20px;
    position: relative;
    display: none;
}

.bottom-right-right a.properties-toggle {
    color: #fff;
    position: relative;
    padding: 0px 20px 0px 0px;
    font-size: 15px;
    background: transparent;
    cursor: pointer;
}

.bottom-right-right a.properties-toggle:hover {
    color: #253C81;
}

.bottom-right-right a.properties-toggle::before {
    content: "\f0da";
    position: absolute;
    font-family: fontawesome;
    right: 4px;
    top: -2px;
    transition: transform 250ms cubic-bezier(0.46, 0.03, 0.23, 0.98);
}

.bottom-right-right a.properties-toggle.active-sec::before {
    transform: rotate(-90deg);
}

.all-property-sec {
    position: absolute;
    bottom: calc(100%);
    width: 75%;
    left: 25%;
    background: #40505d;
    border: 0 solid #42444b;
    border-width: 1px 0 0 1px;
    min-height: 450px;
}

.property-title {
    background: #40505d;
    display: block;
    left: 020px;
    padding: 8px 15px;
    position: absolute;
    top: -17px;
    color: #fff;
    font-size: 14px;
}

.close-toggle {
    background-color: #40505d;
    display: block;
    position: absolute;
    right: 0;
    cursor: pointer;
    top: -13px;
    color: #fff;
    font-size: 16px;
    padding: 1px 8px 0 8px;
}

.links-sec {
    display: inline-block;
    width: 100%;
}

.links-sec h4 {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 20px;
    border-bottom: 1px solid #666;
    padding-bottom: 10px;
}

.links-sec ul {
    padding: 15px 20px;
    margin: 0;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.links-sec ul li {
    float: left;
    width: 50%;
    margin-bottom: 10px;
}

.links-sec ul li a {
    color: #fff;
}

.links-sec ul li a:hover {
    color: #253C81;
}

.shape {
    position: absolute;
    width: 25%;
    height: 1px;
    background: #23252d;
    bottom: -1px;
    right: 100%;
    border-top: 1px solid #42444b;
}

.footer-right-sec.hide {
    display: none;
}

.panel-title>a:before {
    float: right !important;
    font-family: FontAwesome;
    content: "\f068";
    padding-right: 5px;
}

.panel-title>a.collapsed:before {
    float: right !important;
    content: "\f067";
}

.panel-title>a:hover,
.panel-title>a:active,
.panel-title>a:focus {
    text-decoration: none;
}

.responsive-sec {
    display: none;
}

.responsive-sec .panel.panel-default {
    border-top: 1px solid #727272;
    float: left;
    width: 100%;
}

.responsive-sec .panel-title {
    font-size: 15px;
    float: left;
    width: 100%;
    padding: 0px;
    margin: 0;
}

.responsive-sec .panel-title a {
    color: #fff;
    float: left;
    width: 100%;
    padding: 20px 15px;
    background: transparent;
}

.panel-body {
    padding: 10px 30px;
    display: inline-block;
    width: 100%;
}

.panel-body .footer-content .block-right {
    width: 100%;
}

.panel-body .footer-content .block-right p {
    margin: 0;
}

.panel-body .footer-content .links-sec ul {
    margin: 0 0 0 20px;
    float: left;
    width: 100%;
    padding: 0;
}

.panel-body .footer-content .links-sec ul li {
    width: 100%;
    margin-bottom: 15px;
}


/**************middle section*****************/

.middle-block-section {
    display: inline-block;
    width: 100%;
}

.first-block-sec {
    float: left;
    width: 100%;
    padding: 50px 0;
}

.first-block-sec.block-event-sec {
    background: #40505d;
}

.first-block-sec.first-block-padding {
    padding-top: 30px;
}

.first-left-sec h4 {
    font-size: 20px;
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}

.first-left-sec h5 {
    font-size: 16px;
    line-height: 25px;
    color: #666;
}

.left-sec-block {
    float: left;
    width: 50%;
    padding: 0 15px;
}

.first-right-sec img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    min-height: 200px;
    max-width: 200px;
    display: table;
    margin: 0 auto;
}

.main-title {
    font-size: 30px;
    color: #253C81;
    float: left;
    width: 100%;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.main-title::before {
    content: "";
    background: #253C81;
    height: 2px;
    left: 0;
    width: 50px;
    position: absolute;
    bottom: 0;
}

.center-title h3 {
    font-size: 22px;
    color: #253C81;
    float: left;
    width: 100%;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.left-sec-con {
    float: left;
}

.left-sec-block h4 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 25px;
    letter-spacing: 1px;
}

.left-sec-block a:hover {
    color: #253C81;
}

.block-event-sec .left-sec-block h4,
.block-event-sec .left-sec-block p {
    color: #ffffff;
}

.block-event-sec .left-sec-block a:hover {
    color: #45ADE0;
}

.left-sec-block p {
    color: #666;
    font-size: 14px;
    letter-spacing: 1px;
}

.title-btn .main-title {
    float: left;
    width: auto;
    color: #fff;
}

.title-btn .main-title::before {
    background: #ffffff;
}

.view-all-btn {
    float: right;
    padding: 10px 15px 8px 15px;
    background: #253C81;
    color: #fff;
    line-height: normal;
    border-radius: 2px;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: #DBA555;
    color: #fff;
}

.first-right-sec {
    float: left;
    width: 100%;
    margin-top: 0px;
    background: #f8f8f8;
    padding: 30px 20px 25px 20px;
}

.first-right-sec figure {
    margin-bottom: 0;
}

.first-right-sec h5 {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
    color: #777;
}

.home-third-block-sec .row {
    float: left;
}

.title-desc {
    display: inline-block;
    width: 100%;
    padding: 20px 20px 20px 20px;
}

.title-desc h4 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 25px;
    letter-spacing: 1px;
}

.title-desc h4 a:hover {
    color: #253C81;
}

.title-desc p {
    color: #666;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.home-third-block-sec {
    float: left;
    width: 100%;
    padding: 50px 0;
    background: #f8f8f8;
}

.block-list {
    float: left;
    width: 100%;
}

.block-list-con h4 {
    text-align: center;
    float: left;
    width: 100%;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.block-list-con p {
    float: none;
    width: 90%;
    text-align: center;
    color: #666;
    letter-spacing: 1px;
    display: table;
    margin: 0 auto 10px;
    line-height: 22px;
}

.fourth-left-sec .left-sec-block {
    float: left;
    width: 33.33%;
    padding: 0 15px;
}

.scrollup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #253C81;
    width: 45px;
    height: 45px;
    display: none;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 9;
}

.scrollup:hover {
    background: rgba(0, 77, 137, 0.6);
}

.scrollup i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 13px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: fontawesome;
}

.video-left-sec img {
    width: 250px;
    display: table;
    margin: 0 auto 30px;
}

.video-left-para {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 25px;
}

.video-left-sec {
    margin-top: 25px;
}

.req-member-btn {
    display: table;
    margin: 0 auto;
    padding: 9px 15px;
    background: #253C81;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    letter-spacing: 1px;
}

.req-member-btn:hover {
    background: #DBA555;
    color: #fff;
}

.logo-sec {
    float: left;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.logo-sec-logo img {
    width: 70%;
    margin: 0 auto;
    display: table;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.sponsors-slider.slick-slider {
    float: left;
    width: 100%;
    margin: 0;
}

.sponsor {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sponsor:hover {
    cursor: pointer;
    -moz-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.sponsor a {
    width: 90%;
    text-align: center;
    display: table;
    margin: 0 auto;
    position: relative;
    height: 100px;
}

.sponsors-slider img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    max-height: 90px;
    vertical-align: middle;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: auto;
    filter: gray;
    -webkit-filter: grayscale(100%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sponsor:hover img {
    filter: none;
    /* filter: none; */
    -webkit-filter: grayscale(0%);
}

.sponsors-slider button.slick-prev,
.sponsors-slider button.slick-next {
    position: absolute;
    top: 50%;
    z-index: 3;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    color: transparent;
    border-radius: 50%;
    border: 0;
    outline: 0;
    text-align: center;
    padding: 0;
    margin: 0;
}

.sponsors-slider .slick-prev {
    left: -30px;
}

.sponsors-slider .slick-prev:before {
    content: '\f104';
    font-family: fontawesome;
    color: #000;
    font-size: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    display: block;
}

.sponsors-slider .slick-next {
    right: -30px;
}

.sponsors-slider .slick-next:before {
    content: '\f105';
    font-family: fontawesome;
    color: #000;
    font-size: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    display: block;
}

.block-event-sec .left-sec-block figure img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.event-name {
    float: left;
    width: 100%;
}

.fourth-sec .first-right-sec {
    margin: 0;
}


/*******Event Section**********/

.event-section {
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}

.event-top-content h3 {
    color: #253C81;
    display: inline-block;
    width: 100%;
    font-size: 30px;
    font-weight: 600;
}

.event-section .row {
    float: none;
}

.event-tags {
    display: inline-block;
    width: 100%;
    background: #f5f5f5;
    padding: 10px 15px;
}

.event-tags ul {
    margin: 0;
    padding: 0;
}

.event-tags ul li {
    color: #555;
    display: inline-block;
    font-size: 15px;
    list-style: outside none none;
    vertical-align: middle;
    margin: 0 35px 0px 0;
}

.event-tags ul li i.fa {
    margin-right: 5px;
}

.carousel-event-img,
.carousel-news-img {
    max-width: 100% !important;
    max-height: 100% !important;
    height: auto;
    margin: auto;
}

.carousel-item img {
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
    min-height: 500px;
}

.carousel-item:hover img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.event-slider-sec {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.event-info-content {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.event-info-left {
    float: left;
    width: 50%;
}

.event-info-left h4 {
    font-size: 22px;
    color: #253C81;
    margin-bottom: 15px;
}

.event-list ul,
.reg-info-list ul {
    padding-left: 20px;
    margin: 0;
}

.event-list ul li,
.reg-info-list ul li {
    color: #666;
    margin-bottom: 5px;
    font-size: 15px;
    letter-spacing: 1px;
}

.event-list ul li span {
    margin-left: 10px;
}

.reg-info-list ul li a {
    color: #253C81;
    padding-left: 5px;
}

.event-info-right {
    float: left;
    width: 50%;
}

.reg-info {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.reg-info span {
    float: left;
    margin-top: 7px;
    margin-right: 5px;
}

.mem-btn {
    float: left;
}

.mem-btn a {
    background: #253C81;
    color: #fff;
    padding: 6px 10px;
    border-radius: 2px;
    float: left;
    margin: 0 5px;
}

.mem-btn a:hover {
    background: #DBA555;
}

.event-para {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.event-para p {
    color: #666;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 25px;
}

.speaker-sponsor-sec {
    display: inline-block;
    width: 100%;
    background: #eeeeee;
    padding: 15px 30px;
    margin-top: 20px;
}

.ss-sec {
    float: left;
    width: 50%;
}

.ss-sec h4 {
    color: #222222;
    font-size: 22px;
    margin-bottom: 10px;
}

.ss-list ul {
    padding-left: 20px;
    margin: 0;
}

.ss-list ul li {
    color: #444;
    margin-bottom: 5px;
    font-size: 15px;
    letter-spacing: 1px;
}

.ss-list ul li img.avatar {
    border-radius: 30px;
}

.ss-list ul li a {
    color: #253C81;
    padding-left: 5px;
}

.location-sec {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
}

.location-sec h4 {
    font-size: 22px;
    color: #253C81;
    margin-bottom: 10px;
}

.location-add {
    letter-spacing: 1px;
    color: #444;
    font-size: 15px;
}

.location-add span {
    margin-left: 6px;
}

.location-add {
    letter-spacing: 1px;
    color: #444;
}

.map-sec {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.tag-share-sec {
    background: #eeeeee;
    padding: 15px 30px;
    display: inline-block;
    width: 100%;
}

.tag-title {
    float: left;
    color: #222;
    font-weight: 500;
    font-size: 18px;
    margin: 6px 5px 0 0;
}

.tag-list {
    float: left;
    margin-left: 10px;
}

.tag-list ul {
    padding: 0;
    margin: 0;
}

.tag-list ul li {
    display: inline-block;
    margin: 0 2px 0px 0;
    vertical-align: top;
}

.tag-list ul li a {
    border: 1px solid #d6d3d3;
    border-radius: 30px;
    color: #555;
    display: block;
    font-size: 14px;
    padding: 8px 15px 7px 15px;
    line-height: normal;
}

.tag-list ul li a:hover {
    color: #fff;
    background: #0063a6 none repeat scroll 0 0;
    border-color: #0063a6;
}

.share-article {
    float: right;
    margin-top: 3px;
}

.share-list {
    float: left;
}

.share-article .tag-title {
    margin: 2px 10px 0 0;
}

.share-list ul {
    margin: 0;
    padding: 0;
}

.share-list ul li {
    float: left;
    border: 1px solid #0063a6;
    border-radius: 50%;
    height: 26px;
    width: 26px;
    margin: 0 4px;
    text-align: center;
    display: inline-block;
    line-height: 26px;
    cursor: pointer;
}

.share-list ul li a {
    color: #0063a6;
}

.share-list ul li:hover {
    background: #0063a6;
}

.share-list ul li:hover a {
    color: #fff;
}

.sidebar-block {
    border: 1px solid #e6e6e6;
    margin: 0 auto 40px;
    padding: 20px 16px 30px;
    position: relative;
    float: left;
    width: 100%;
}

.sidebar-block.searched-event {
    padding: 24px 0px 0px 17px;
    margin: 0 auto 10px;
    vertical-align: central;
}

.sidebar-block.searched-event label {
    font-weight: bold;
}

.sidebar-block.searched-event span {
    /*	font-size: 110%;*/
}

.sidebar-heading {
    margin-bottom: 26px;
}

.sidebar-heading h5 {
    font-size: 20px;
    line-height: 25px;
    color: #222222;
}

.blog_search {
    position: relative;
    margin-bottom: 20px;
}

.blog_search .form-control {
    background: #eeeeee none repeat scroll 0 0;
    border: 0 none;
    border-radius: 3px;
    box-shadow: none;
    color: #888888;
    font-size: 15px;
    height: 46px;
    line-height: 30px;
    padding: 0 50px 0 15px;
}

.search_btn {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    font-size: 16px;
    padding: 5px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    cursor: pointer;
    color: #253C81;
}

.sidebar-ads figure {
    margin-bottom: 0;
}

.sidebar-ads img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    min-height: 200px;
    max-width: 200px;
    display: table;
    margin: 0 auto;
}

.sidebar-ads h5 {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #777;
}

.popular-post ul {
    margin: 0;
    padding: 0;
}

.popular-post ul li {
    list-style: outside none none;
    margin: 0 auto 20px;
    overflow: hidden;
}

.popular-post-img {
    float: left;
    width: 34%;
    overflow: hidden;
}

.popular-post-img img {
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    width: 100%;
}

.popular-post-img:hover img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.popular-post ul li a {
    color: #222;
}

.popular-post-title {
    float: right;
    width: 61%;
}

.popular-post-title a {
    float: left;
    width: 100%;
}

.popular-post-title a:hover {
    color: #0063a6;
}

.categories-list ul {
    padding: 0px;
    margin: 0px;
}

.categories-list ul li {
    list-style: none;
    padding: 5px;
}

.categories-list ul li a {
    color: #555;
    display: inline-block;
    font-size: 15px;
    padding-left: 15px;
    position: relative;
}

.categories-list ul li a::after {
    content: "\f0da";
    font-family: fontawesome;
    left: 0;
    position: absolute;
    top: 0;
}

.categories-list ul li a:hover {
    color: #0063a6;
}

.sidebar-block .tag-list {
    margin: 0;
}

.sidebar-block .tag-list ul li a {
    margin-bottom: 10px;
}

.col-md-pull-9 {
    right: 75%;
}

.col-md-push-3 {
    left: 25%;
}

.event-list-block {
    float: left;
    width: 100%;
}

.news-section .event-list-block {
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 60px;
    padding: 0 0 54px;
    float: left;
    width: 100%;
}

.event-list-image {
    position: relative;
    overflow: hidden;
    margin: 0 auto 30px;
    min-height: 300px;
}

.event-list-image.news-section-list {
    min-height: 220px;
    max-height: 220px;
}

.news-section-list .event-image-content {
    bottom: 0;
    left: 0;
    padding: 5px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.news-section-list .event-image-content .event-tags ul li {
    color: #fff;
    font-size: 10px;
    margin: 0 8px 0 0;
}

.news-section-list .event-image-content h3 {
    font-size: 16px;
}


/* custom style */

.event-wrapper {
    position: relative;
}

.event-wrapper .event-image-content {
    box-sizing: border-box;
    width: 100%;
}

.eventdata-left {
    float: left;
}

.eventdata-right {
    float: right;
}

.btn-group .dropdown-toggle-split {
    cursor: pointer;
}

.news-section .event-list-image {
    min-height: 500px;
}

.event-register-section h4 {
    font-size: 22px;
    color: #253C81;
}

.event-register-data {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.website-section {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
}

.website-section ul {
    margin: 0px;
    padding: 0px;
}

.blue-text {
    font-size: 22px;
    color: #253C81;
    margin-bottom: 15px;
}

.youtube-section {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
}

.event-register-btn {
    width: 100%;
    margin-bottom: 5px;
}

.event-register-title {
    width: auto;
    float: left;
}

.event-register-price {
    float: right;
}

.event-list-image img {
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    max-width: 100%;
    object-fit: cover;
    min-height: 300px;
    max-height: 300px;
}

.event-list-image iframe {
    max-width: 100%;
    object-fit: cover;
    min-height: 300px;
    max-height: 300px;
}

.event-list-image>a {
    height: 300px;
    width: 300px;
}

.event-list-image>a::before {
    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-transition: background-color .3s ease;
    -moz-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(0, 22, 39, 0.3) 40%, rgba(0, 22, 39, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 22, 39, 0.3)), color-stop(100%, rgba(0, 22, 39, 0.8)));
    background: -webkit-linear-gradient(top, rgba(0, 22, 39, 0.3) 40%, rgba(0, 22, 39, 0.8) 100%);
    background: -o-linear-gradient(top, rgba(0, 22, 39, 0.3) 40%, rgba (0, 22, 39, 0.8) 100%);
    background: -ms-linear-gradient(top, rgba(0, 22, 39, 0.3) 40%, rgba(0, 22, 39, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(0, 22, 39, 0.3) 40%, rgba(0, 22, 39, 0.8) 100%);
}

.news-section .event-list-image img {
    min-height: 500px;
    max-height: 500px;
}

.event-list-image:hover img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.event-image-content {
    bottom: 0;
    left: 0;
    padding: 15px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.news-section .event-image-content {
    padding: 30px;
}

.event-image-content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0px;
}

.news-section .event-image-content h3 {
    font-size: 35px;
}

.event-list-block:hover .event-image-content h3 a {
    color: #DBA555;
}

.event-image-content .event-tags {
    background: transparent;
    padding: 0;
}

.event-image-content .event-tags ul li {
    color: #fff;
    font-size: 12px;
    margin: 0 20px 0px 0;
}

.news-section .event-image-content .event-tags ul li {
    font-size: 15px;
    margin: 0 35px 0px 0;
}

.event-tags ul li a:hover {
    color: #DBA555;
}

.event-list-info p {
    color: #666;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 28px;
}

.event-detail-btn {
    background: #253C81;
    padding: 12px 15px 11px 15px;
    display: inline-block;
    border-radius: 4px;
    line-height: normal;
    color: #fff;
    font-size: 15px;
    margin-top: 30px;
}

.event-detail-btn:hover,
.event-detail-btn:focus {
    background: #DBA555;
    color: #fff;
}

.event-list-info {
    display: none;
}

.news-section .event-list-info {
    display: block;
}

.angle-arrow .fa {
    font-size: 20px;
    float: right;
    margin-left: 10px;
    line-height: 18px;
}

.pagination {
    display: table;
    margin: 0 auto;
}

.pagination ul {
    padding: 0;
    display: table;
    margin: 0 auto;
}

.pagination ul li {
    background: #f5f5f5 none repeat scroll 0 0;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    height: 32px;
    line-height: 34px;
    list-style: outside none none;
    margin: 0 2px;
    text-align: center;
    vertical-align: middle;
    width: 32px;
}

.pagination ul li a {
    display: block;
    color: #555;
}

.pagination ul li.current,
.pagination ul li:hover a {
    color: #fff;
}

.pagination ul li.current {
    background: #0063a6 none repeat scroll 0 0;
}

.pagination ul li:hover {
    background: #0063a6 none repeat scroll 0 0;
}

.compass-issues {
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}

.mag-new {
    border-radius: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.mag-new:hover {
    -moz-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    cursor: pointer;
}

.mag-new .image img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    float: left;
    width: 100%;
}

.mag-new:hover .image img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}

.publish-date {
    background: #253C81;
    color: #fff;
    font-weight: bold;
    padding: 6px 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    float: left;
    width: 100%;
}

.mag-new:hover .publish-date {
    background: #DBA555;
    color: #fff;
}

.news-detail-sec .event-slider-sec {
    margin-top: 0;
}

.news-detail-sec .event-top-content {
    margin-top: 15px;
}

.news-detail-sec .event-para {
    margin-top: 0;
}

.news-detail-sec .share-article {
    float: left;
}

.news-video-sec {
    background: #eee;
    padding: 20px 10px;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.news-video-sec iframe {
    display: table;
    margin: 0 auto;
    width: 500px;
    height: 300px;
}

.return-news {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.returen-news-btn {
    border: none;
    background: #253C81;
    color: #fff;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 15px;
    line-height: normal;
    cursor: pointer;
}

.returen-news-btn:hover {
    background: #DBA555;
    color: #fff;
}

.contact-form {
    float: left;
    width: 100%;
    padding: 30px 0;
}

.contact-title .main-title {
    margin-bottom: 10px;
    font-size: 25px;
}

.contact-title p {
    float: left;
    width: 100%;
    color: #666;
    font-size: 16px;
    letter-spacing: 1px;
}

.contact-content {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
}

.con-form {
    display: inline-block;
    width: 100%;
}

.form-field.row {
    width: 100%;
}

.form-control {
    font-size: 14px;
    margin-bottom: 15px;
}

.sidebar_filter .form-control {
    margin-bottom: 0px;
}

.info-list {
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.info-list .fa {
    float: left;
    margin-top: 3px;
    margin-right: 7px;
}

.info-list p {
    margin-bottom: 0;
}

.contact-address {
    margin-top: 15px;
    float: left;
    width: 100%;
}

.contact-address h4 {
    font-size: 20px;
    color: #253C81;
    letter-spacing: 1px;
}

.contact-address p {
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.contact-address p {
    margin-bottom: 2px;
}

a.map {
    float: left;
    width: 100%;
    margin-top: 10px !important;
    letter-spacing: 1px;
}

a.map:hover {
    color: #253C81;
}

.con-btn {
    padding: 10px 15px;
    background: #253C81;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 15px;
    line-height: normal;
}

.con-btn:hover {
    background: #DBA555;
}

#map-canvas {
    position: relative;
    height: 400px;
    width: 100%;
    border: none;
}

.past-title {
    float: left;
    font-size: 20px;
    color: #253C81;
    margin: 0 0 20px 0;
    padding: 10px;
    background: #f5f5f5;
    width: 100%;
    text-align: center;
    line-height: normal;
}


/**********Banner section***********/

.slider-news-sec {
    float: left;
    width: 100%;
}

.slider-news-content {
    float: left;
    width: 100%;
}

.slider-left-big-sec {
    float: left;
    width: 50%;
}

.news-post-sec {
    position: relative;
    overflow: hidden;
}

.slider-left-big-sec .big-img-sec {
    width: 100%;
    height: 600px;
}

.image-wrap {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
}

.slider-news-sec .module-title a:hover {
    color: #DBA555 !important;
}

.image-wrap::before {
    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-transition: background-color .3s ease;
    -moz-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(0, 22, 39, 0.3) 40%, rgba(0, 22, 39, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 22, 39, 0.3)), color-stop(100%, rgba(0, 22, 39, 0.8)));
    background: -webkit-linear-gradient(top, rgba(0, 22, 39, 0.3) 40%, rgba(0, 22, 39, 0.8) 100%);
    background: -o-linear-gradient(top, rgba(0, 22, 39, 0.3) 40%, rgba (0, 22, 39, 0.8) 100%);
    background: -ms-linear-gradient(top, rgba(0, 22, 39, 0.3) 40%, rgba(0, 22, 39, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(0, 22, 39, 0.3) 40%, rgba(0, 22, 39, 0.8) 100%);
}

.news-post-sec:hover .image-wrap::before {
    background-color: rgba(0, 0, 0, .1);
}

.news-post-sec:hover .module-title a {
    color: #fff;
}

.img-thumb {
    opacity: 1;
    transition: opacity .3s;
    transition-timing-function: cubic-bezier(.39, .76, .51, .56);
    transition: transform .3s ease, opacity .3s;
    -webkit-transition: -webkit-transform .3s ease, opacity .3s;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.news-post-sec:hover .img-thumb {
    transform: scale3d(1.1, 1.1, 1);
    -webkit-transform: scale3d(1.1, 1.1, 1);
    -moz-transform: scale3d(1.1, 1.1, 1) rotate(0.02deg);
}

.info-container {
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0;
    padding: 10px 20px 15px 20px;
}

.post-category {
    font-size: 10px;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 0 5px;
    padding: 6px 8px 3px 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    line-height: normal;
    font-weight: bold;
    display: none;
}

.news-post-sec:hover .post-category {
    background-color: #253C81;
    color: #fff;
}

.module-title {
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    display: inline-block;
    width: 100%;
}

.module-title a {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
    float: left;
    width: 100%;
}

.module-meta-info {
    display: none;
}

.post-author-name {
    font-weight: 500;
    display: inline-block;
    position: relative;
    font-size: 13px;
}

.post-date {
    font-size: 11px;
}

.post-author-name a,
.post-author-name span,
.post-date {
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
}

.slider-right-grid-sec {
    float: right;
    width: 49.7%;
}

.grid-first-img-sec {
    height: 100%;
}

.grid-post-1 {
    width: 100%;
    height: 350px;
    margin-bottom: 3px;
}

.grid-post-2 {
    float: left;
    width: 50%;
    height: 247px;
}

.grid-post-3 {
    float: right;
    width: 49.5%;
    height: 247px;
}

.grid-post-2 .module-title,
.grid-post-3 .module-title {
    font-size: 16px;
    line-height: 22px;
}

.grid-post-2 .img-thumb,
.grid-post-3 .img-thumb {
    height: 247px;
    min-height: 247px;
}


/** staff pages **/

.officers-staff-section {
    display: inline-block;
    width: 100%;
    margin: 50px 0;
}

.inner-title {
    font-size: 25px;
    color: #253C81;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.staff-inner-title {
    margin-left: 15px;
    width: 93%;
}

#staff_list {
    background: url(https://iyba.org/home/css/img/staff.jpg) 50% 0 fixed;
    height: auto;
    margin: 0 auto;
    width: 100%;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    padding: 105px 0;
    z-index: 21;
    overflow: visible;
}

.staff-container {
    background: transparent;
    text-align: center;
    margin-bottom: 15px;
    float: left;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #253C81;
    width: 100%;
}

.staff-container:hover {
    cursor: pointer;
    background: #bde9ff;
}

.staff-photo {
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    height: 220px;
}

.staff-container .staff-photo:after {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: #DBA555;
    content: '';
    z-index: 8;
    left: 0;
    height: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.staff-container:hover .staff-photo:after {
    height: 8px;
}

.staff-photo img {
    -webkit-filter: grayscale(70%);
    filter: grayscale(70%);
    max-width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: auto;
    max-width: 100%;
    max-height: 220px;
    float: none;
    display: table;
    margin: 0 auto;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
}

.staff-container:hover .staff-photo img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.staff-name {
    float: left;
    width: 100%;
    background: #253C81;
}

.staff-name h2 {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: none;
    font-weight: bold;
    padding: 7px 8px 7px 8px;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    min-height: 35px;
    align-items: center;
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
}

.staff-sidebar {
    padding: 0px;
}

.staff-sidebar .staff-name h2 {
    background: #DBA555;
}

.staff-sidebar .staff-container .staff-photo:after {
    background: #253C81;
}

.staff-container:hover .staff-name h2 {
    color: #45ADE0;
}

.staff-sidebar .staff-container:hover .staff-name h2 {
    color: #253C81;
}

.staff-title {
    float: left;
    width: 100%;
}

.staff-title p {
    padding: 8px;
    font-size: 15px;
    min-height: 30px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.staff-container.past-pres {
    top: 0;
    left: 0;
    text-align: center;
    background: #253C81;
    height: 296px;
    width: 100%;
    bordeR: 0px !important;
}

.staff-container.past-pres:hover {
    background: #253C81;
}

.staff-container.past-pres h4 {
    color: #fff;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.pastpres .staff-container {
    width: 100%;
}

.pastpres .staff-photo {
    max-height: 100%;
}

.pastpres .staff-photo img {
    width: 100%;
}

.pastpres .staff-name h2 {
    font-size: 15px;
}

.staff-sidebar .col-sm-12 {
    padding-left: 0px;
    padding-right: 0px;
}

.staff-sidebar .widget {
    border: 1px solid #253C81;
    padding: 0px;
    float: none;
    width: 93%;
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    margin: 0 auto 10px;
    display: table;
}

.staff-sidebar .widget .title {
    background: #253C81;
    color: #fff;
    padding: 5px 15px 8px 15px;
}

.staff-sidebar .widget .title span {
    float: left;
    line-height: 30px;
    margin-left: 30px;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.staff-sidebar .widget .title span.one {
    opacity: 1;
    margin-left: 60px;
}

.staff-sidebar .widget .title span.two {
    opacity: 0;
    margin-left: 90px;
}

.staff-sidebar .widget:hover .title span.two {
    opacity: 1;
    margin-left: 60px;
}

.staff-sidebar .widget:hover .title span.one {
    opacity: 0;
}

.staff-sidebar .widget.form .content {
    overflow: hidden;
    height: 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.staff-sidebar .widget.form:hover .content {
    height: 405px;
    padding: 15px 10px;
}

.staff-sidebar .widget.form label {
    color: #253C81;
    font-size: 12px;
    float: left;
    font-weight: bold;
}

.staff-widget .content {
    padding: 20px;
    color: #000;
    font-size: 15px;
}


/** staff detail page **/

#staff_detail {
    height: auto;
    margin: 0 auto;
    margin-top: 90px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 180px rgba(0, 0, 0, 1);
    padding: 420px 0px 0px;
    z-index: 21;
    overflow: hidden;
}

#staff_detail .header {
    margin-top: 100px !important;
    padding: 10px !important;
}

#staff_detail .staff_bg {
    position: fixed;
    z-index: -1px;
    width: 100%;
    top: 0px;
    left: 0px;
}

.staff_detail_content {
    margin: 50px 0;
    display: inline-block;
    width: 100%;
}

.staff_detail_content .head_info .name {
    display: inline-block;
    width: auto;
    display: inline-block;
    float: left;
}

.staff_detail_content .head_info .title {
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.3em;
    opacity: 0.8;
}

.staff_contact {
    color: #fff;
    font-weight: bold;
    line-height: 1.3em;
    margin-top: 48px;
}

.staff_contact span {
    text-transform: uppercase;
    display: block;
}

.side_staff {
    padding-left: 10px;
    margin-top: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    padding-top: 25px;
}

.side_staff .titlle {
    margin-top: 0px !important;
    color: #6F6F6F;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0) !important;
}

.side_staff ul {
    line-height: 1.2em;
    list-style: none;
    padding-left: 5px;
}

.side_staff ul li {
    color: #818181;
    padding-bottom: 4px;
}

.side_staff ul li strong {
    text-transform: uppercase;
}

.side_staff ul li span {
    opacity: 0.6;
    font-size: 12px;
    display: inline-block;
    margin-left: 8px;
    text-transform: uppercase;
}

.member-list {
    display: table;
    margin: 0 auto;
    width: 100%;
}

.member-list .row {
    float: none;
    padding: 0;
    justify-content: center;
}

.life-time-members {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.life-time-title {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    color: #253C81;
}

.return-officers {
    padding: 12px 20px 10px 20px;
    background: #253C81;
    color: #fff;
    border-radius: 2px;
    letter-spacing: 1px;
    line-height: normal;
}

.return-officers:hover,
.return-officers:focus {
    background: #DBA555;
    color: #fff;
}

.staff_detail_content .content p {
    color: #666;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 1px;
}

.staff_detail_content .bio-pic {
    max-height: 100%;
    overflow: hidden;
    height: 250px;
    width: 100%;
    position: relative;
    border: 2px solid #bbb;
    /*background: #ededed;*/
}

.staff_detail_content .bioPhoto {
    margin-left: 25%;
}

.staff_detail_content .bioPhoto img {
    width: auto;
    max-height: 200px;
    max-width: 100%;
}

.staff_detail_content .profileContact {
    text-align: center;
    max-width: 100%;
    margin-left: 0;
}

.before-thick-blue-line {
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: 20px;
    padding: 10px;
    padding-left: 5px;
    border: 0px;
    border-left: 5px #253C81 solid;
    position: relative;
}

.child-avatar {
    height: 150px;
}

.thick-border-theme-color {
    border: 3px #253C81 solid;
    position: relative;
    min-height: 468px;
}


/** resources**/

.resources-section {
    display: inline-block;
    width: 100%;
    margin: 50px 0;
}

.resources-section .panel {
    background-color: transparent;
    border: 0px solid transparent;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
    border-radius: 0px !important;
}

.resources-section .hero-unit h5 {
    color: #253C81;
    font-weight: bold;
    margin: 0;
    font-size: 16px;
}

.resources-section .hero-unit>a {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #253C81;
    text-transform: uppercase;
    background: transparent;
}

.resources-section .panel-default>.panel-heading {
    padding: 10px 15px 10px 25px;
    position: relative;
}

.resources-section .panel-default>.panel-heading::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    left: 0;
    top: 15px;
    background: #45ADE0;
    border-radius: 50%;
}

.resources-section .panel-body {
    border-top: 1px solid #d5d5d5;
    padding-top: 20px;
}

.resources-section .panel-body ul {
    list-style: none;
    float: left;
    width: 100%;
    padding-left: 20px;
}

.resources-section .panel-body ul li {
    padding-left: 20px;
    position: relative;
    float: left;
    width: 100%;
}

.resources-section .panel-body ul li::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #45ADE0;
    left: 0;
    top: 7px;
    border-radius: 50%;
}

.resources-section .panel-body ul li .code-section {
    font-size: 15px;
    color: black;
    width: 100%;
    background-color: #cccccc;
    background-repeat: no-repeat;
    margin-top: 20px;
    padding: 5px;
}

.resources-section .panel-body ul li a {
    font-size: 15px;
    color: #222;
    margin-bottom: 5px;
    float: left;
    width: 100%;
}

.resources-section .panel-body ul li a:hover {
    color: #253C81;
}

.resources-section .cpyb {
    border-left: 1px solid #c9c9c9;
}

.resources-section .cpyb img {
    display: table;
    margin: 0 auto;
    width: 100%;
}

.resources-section .cpyb ul {
    list-style: none;
    float: left;
    width: 100%;
    padding: 10px 0 0 20px;
}

.resources-section .cpyb h3 {
    text-transform: uppercase;
    font-weight: bold;
    color: #333;
    font-size: 24px;
    margin: 15px 0;
}

.resources-section .right-rec-text {
    color: #253C81;
    font-size: 20px;
    font-style: italic;
    font-weight: bold;
}

.resources-section .cpyb p {
    font-size: 14px;
    line-height: 21px;
    text-align: center;
}

h5.learn-more-title {
    color: #253C81;
}

.resources-section .cpyb ul li {
    float: left;
    width: 100%;
    margin-bottom: 5px;
}

.resources-section .cpyb ul li a {
    float: left;
}

.resources-section .cpyb ul li a:hover {
    color: #253C81;
}

.resources-section .cpyb ul li i {
    color: #45ADE0;
    padding-right: 10px;
    font-size: 20px;
    float: left;
}

#cboxLoadedContent {
    background: #45ADE0 !important;
}

#cboxContent {
    background: transparent;
}

.cpyb-iframe {
    padding: 20px;
}

.cpyb-iframe h3 {
    text-transform: uppercase;
    font-weight: bold;
    color: #253C81;
}

.cpyb-iframe p {
    font-size: 15px;
    line-height: 25px;
}

.cpyb-iframe ul {
    padding-bottom: 30px;
    float: left;
}

.cpyb-iframe ul li {
    width: 48%;
    float: left;
    line-height: 1.2em;
}

.cpyb-iframe ul li span {
    display: block;
    color: #fff;
    font-size: 12px;
}

.cpyb-iframe a {
    color: #253C81;
    font-size: 18px;
    font-weight: bold;
}

.cpyb-iframe li {
    list-style: decimal;
    margin-bottom: 5px;
}

.thick-border-theme-color .row {
    width: 100%;
}

#cboxTitle {
    color: #253C81 !important;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 32px;
    top: -38px !important;
}

#map-view {
    min-height: 300px;
}


/*** Member Directory **/

.directory-section {
    display: inline-block;
    width: 100%;
    margin: 50px 0;
}

.alphasoup {
    width: 100%;
    display: inline-block;
    margin-bottom: 25px;
}

.alphaLinks {
    background: #253C81;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px;
}

.alphaLinks a {
    color: #fff;
}

#CFForm_2 .row {
    float: none;
}

.directory-section .row {
    float: none;
}

table.responsive.dir-table {
    margin-top: 10px;
    float: left;
    background: #fff;
    font-size: 14px;
    min-width: 100%;
}

.responsive.dir-table tr:nth-of-type(even) {
    background: #f2f2f2;
}

.responsive.dir-table tr {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #fff;
}

.responsive.dir-table tr:hover {
    -moz-transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -o-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.responsive.dir-table td {
    padding: 8px 15px;
}

table.responsive.dir-table th {
    text-align: left;
    padding: 8px 15px;
}

.responsive.dir-table a.link {
    display: block;
}

.responsive.dir-table a.memberDirectory {
    display: block;
    width: 100%;
    height: 100%;
}

#searchh {
    font-size: 14px;
    background: #E9E9E9;
    padding: 15px 15px 30px;
    position: sticky;
    top: 0;
}

#searchh h2 {
    font-size: 25px;
    color: #253C81;
}

.sidebar-search {
    padding: 10px 25px;
}

.memberDetail {
    padding-top: 10px;
}

photo img.this {
    border: 0px solid #002959;
}

.memberDetail .row {
    padding: 7px;
    float: none;
}

.memberDetail h2 {
    font-size: 25px;
}

.memberDetail .row:nth-child(even) {
    background: #bde9ff;
}

.memberDetail .row span {
    min-width: 155px;
    displaY: inline-block;
    color: #002959;
    text-align: right;
    margin-right: 15px;
}

#detailsSubmit {
    opacity: 0.2
}


/** job boards **/

.job-board-list .heading {
    font-size: 18px;
    padding: 8px 0px;
    color: #fff;
    background: #253C81;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
}

.job-board-list .post {
    border-bottom: 1px solid #c9c9c9;
    padding: 15px 0px;
    position: relative;
    width: 100%;
}

.job-board-list .post:last-child {
    border-bottom: 0px solid #c9c9c9;
}

.job-board-list .post div {
    height: 100%;
    position: relative;
}

.job-board-list .post div:last-child {
    border-right: 0px solid #c9c9c9;
}

.job-board-list .post.sticky .title a {
    color: #253C81;
}

.job-board-list .post .title a {
    font-size: 16px;
    text-transform: uppercase;
    color: #45ADE0;
    display: block;
    font-weight: bold;
}

.job-board-list .post .subtitle {
    font-size: 12px;
}

.job-board-list .post .subtitle i {
    font-weight: bold;
    text-transform: none;
    font-style: normal !important;
}

.job-board-list .post .lastpost {
    font-size: 13px;
    line-height: 1.28em;
}

.job-board-list .post .lastpost a {
    font-weight: bold;
    color: #333;
    word-wrap: break-word;
}

.job-board-section {
    display: inline-block;
    width: 100%;
    margin: 50px 0;
}


/** History **/

.history-timeline::after {
    content: '';
    display: block;
    width: .3rem;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #FFFFFE;
    height: 100%;
}

.history-timeline {
    position: relative;
    margin: 0 auto;
    display: inline-block;
}

.histroy-top-content {
    position: relative;
    clear: both;
    text-align: center;
    background: #021527;
    display: table;
    margin: 0 auto 10px;
    padding: 7px 22px;
    color: #fff;
    font-size: 17px;
    z-index: 1;
}

.history-timeline-list {
    float: left;
    width: 100%;
}

.history-timeline-block {
    float: left;
    padding-right: 52.5%;
    position: relative;
    margin: 25px 0;
    width: 100%;
}

.history-timeline-block:nth-child(2n) {
    float: right;
    padding-left: 52.5%;
    padding-right: 0;
}

.history-timeline-block:last-child {
    margin-bottom: 0;
}

.history-timeline-year {
    width: 70px;
    height: 70px;
    background: #DBA555;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0;
    z-index: 1;
    font-size: 20px;
    left: 50%;
    font-weight: bold;
}

.history-year-wrapper {
    margin: auto;
}

.history-timeline-text {
    padding: 20px;
    background: #ffffffcf;
    float: right;
    width: 90%;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.history-timeline-block:nth-child(2n) .history-timeline-text {
    float: left;
}

.histroy-section .history-container {
    margin-bottom: 50px;
}

.history-timeline-text p {
    color: #000000;
    letter-spacing: 1px;
    line-height: 22px;
    margin-bottom: 10px;
}

.history-timeline-text p:last-child {
    margin-bottom: 0px;
}


/** Job Detail **/

.job-detail-section {
    background: url(https://iyba.org/home/images/bg-jobboard.jpg);
    background-size: cover;
    margin: 0;
    padding: 50px 0;
    float: left;
    width: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.job-detail {
    display: table;
    margin: 0 auto;
    width: 80%;
}

.job-detail .back-to-rev {
    padding: 10px 15px 10px 15px;
}

.job-detail .back-to-rev>.fa {
    font-size: 20px;
    float: left;
    margin-right: 10px;
    line-height: 19px;
}

.job-detail .back-to-rev>span {
    float: left;
    margin-top: 1px;
}

.job-detail .detail-block {
    float: left;
    width: 100%;
    background: #fff;
    padding: 25px;
    margin: 30px auto;
    -webkit-box-shadow: 3px 2px 5px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 3px 2px 5px 2px rgba(0, 0, 0, 0.1);
}

.job-detail .detail-block p {
    letter-spacing: 1px;
    color: #333;
    line-height: 25px;
}

.job-detail .detail-block .title {
    padding-bottom: 20px;
    border-bottom: 1px solid #c9c9c9;
    margin-bottom: 30px;
}

.job-detail .detail-block .title>h1 {
    font-size: 30px;
    letter-spacing: 1px;
    color: #253C81;
    margin: 0;
}

.job-detail .detail-block .detail-info {
    border-bottom: 1px solid #c9c9c9;
    margin-bottom: 15px;
    padding-bottom: 20px;
    float: left;
    width: 100%;
}

.job-detail .detail-info .contact-icons {
    position: relative;
    float: left;
    width: 35%;
}

.job-detail .detail-info .content-info {
    float: left;
    width: 65%;
}

.job-detail .detail-info .contact-icons span {
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
    font-size: 15px;
    letter-spacing: 1px;
}

.job-detail .detail-info .contact-icons span>i {
    color: #45ADE0;
    opacity: 0.65;
    padding: 0px 8px;
}

.job-detail .detail-info .contact-icons span:hover>i {
    opacity: 1;
}

.job-detail .job-content p.intro-para {
    letter-spacing: 1px;
    line-height: 25px;
    font-size: 15px;
}

.job-detail .job-content .m-title {
    font-size: 20px;
    color: #253C81;
    margin-bottom: 15px;
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 7px;
}

.job-detail .job-content .sub-title {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.job-detail .job-content .job-list {
    margin-bottom: 25px;
}

.job-detail .job-content .job-list>li {
    list-style: disc;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: #333;
    line-height: 22px;
}

.job-detail .job-content .job-list>li>p {
    margin: 0;
}

.job-detail .job-content .job-list>li>p .mail-to {
    color: #253C81;
}

.job-detail .detail-block .job-contact-form {
    display: table;
    width: 80%;
    margin: 0 auto;
}

.job-detail .detail-block .job-contact-form>h2 {
    color: #253C81;
    letter-spacing: 1px;
    font-size: 25px;
    margin-top: 10px;
}


/** Association **/

.association-section {
    display: inline-block;
    width: 100%;
    margin: 50px 0;
}

.association-section .sec-para p {
    letter-spacing: 1px;
    color: #333;
    line-height: 24px;
}

.association-section .asso-block-list h3 {
    font-size: 18px;
    color: #253C81;
    font-weight: 600;
}

.association-section .association-list {
    width: 100%;
    margin-top: 20px;
    float: left;
}

.association-section .asso-block-list {
    float: left;
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 1px 10px 2px #e6e6e6;
}

.association-section .asso-block-list:hover {
    background: #f8f8f8;
}

.association-section .asso-block-list h3 {
    font-size: 18px;
    color: #253C81;
    font-weight: 600;
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

.association-section .asso-block-list h3 i {
    width: 30px;
    font-size: 25px;
    float: left;
    margin-right: 10px;
}

.association-section .asso-block-list h3 span {
    float: left;
    margin-top: 3px;
}

.association-section .asso-block-list p {
    letter-spacing: 1px;
    color: #666;
    line-height: 25px;
}

.association-section .asso-block-list p:last-child {
    margin-bottom: 0;
}

.association-section .display-flex {
    display: flex;
}


/**** sponsors section***/

#sponsors-section {
    background: url(https://iyba.org/home/images/sponsorsBG.jpg);
    margin: 0px auto;
    width: 100%;
    position: relative;
    float: left;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0;
}

#sponsors-section .top-title {
    margin-bottom: 30px;
    color: #253C81;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 40px;
}

#sponsors-section .sponsors {
    text-align: center;
    display: block;
    background: #fff;
    min-height: 238px;
    margin: 0 0 30px;
    padding: 0px 15px 15px;
    height: auto;
    float: left;
    width: 100%;
    position: relative;
    height: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sponsors-section .sponsors:hover {
    background: #fff;
    -moz-transform: scale(1.02) translateY(10px);
    -webkit-transform: scale(1.02) translateY(10px);
    -o-transform: scale(1.02) translateY(10px);
    -ms-transform: scale(1.02) translateY(10px);
    transform: scale(1.02) translateY(10px);
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

#sponsors-section .row {
    float: none;
}

#sponsors-section .sponsors .dollars {
    color: #253C81;
    font-size: 40px;
    line-height: 1.2em;
    margin: 0px -15px 15px -15px;
    background: rgba(23, 61, 80, 0.06);
    padding: 12px 0px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 600;
}

#sponsors-section .sponsors .dollars>span {
    color: #45ADE0;
    display: inline-block;
    margin-top: -5px;
    vertical-align: top;
    font-size: 20px;
    font-weight: bold;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0px 5px;
}

#sponsors-section .sponsors .logo {
    width: 100%;
    min-height: 135px;
    text-align: center;
    position: relative;
}

#sponsors-section .sponsors .logo img {
    max-width: 100%;
    max-height: 100px;
    margin-bottom: 15px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#sponsors-section .sponsors .title {
    left: 0px;
    float: none;
    width: 100%;
    text-align: center;
    font-size: 15px;
    letter-spacing: 1px;
    color: #253C81;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

#sponsors-section .sponsors:hover .dollars {
    color: #fff;
    background: #45ADE0;
}

#sponsors-section .sponsors:hover .dollars span {
    color: #fff;
}

#sponsors-section .sponsors img {
    opacity: 0.5;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#sponsors-section .sponsors:hover img {
    opacity: 1;
}

#sponsors-section .sponsors .s-sponsor {
    min-height: 163px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#sponsors-section .sponsors .s-sponsor:hover {
    cursor: pointer;
    -moz-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

#sponsors-section .sponsors .s-sponsor img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    /* Firefox 10+, Firefox on Android */
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(100%);
    /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#sponsors-section .sponsors .s-sponsor:hover img {
    filter: none;
    /* Firefox 10+, Firefox on Android */
    filter: none;
    /* IE6-9 */
    -webkit-filter: grayscale(0%);
    /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

#sponsors-section .sponsors .s-sponsor:hover .title {
    color: #45ADE0;
}


/**** IYBA PAC Fund section***/

.pac-fund-section .fund-content p {
    letter-spacing: 1px;
    color: #333;
    line-height: 24px;
}

.pac-fund-section .fund-image {
    float: left;
    width: 100%;
}

.pac-fund-section .fund-image .pop {
    cursor: pointer;
}

.pac-fund-section .fund-image a img {
    width: 100%;
}

.pac-fund-section .fund-big-img {
    display: table;
    margin: 0 auto;
}

.pac-fund-section .fund-big-img img {
    width: 70%;
    display: table;
    margin: 0 auto;
}

.pac-fund-section #imagemodal .modal-content {
    background: transparent;
    border: none;
}

.pac-fund-section #imagemodal .modal-body {
    background: transparent;
    padding: 0;
}

.pac-fund-section #imagemodal .close {
    color: #fff;
    text-shadow: none;
    opacity: 1;
}


/*** Benefits **/

.benefits-content {
    display: inline-block;
    width: 100%;
}

.benefit-block {
    float: left;
    width: 100%;
    border-bottom: 1px solid #45ADE0;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.bene-left {
    float: left;
    width: 33.33%;
}

.bene-right {
    float: right;
    width: 65%;
}

.benefit-block:nth-child(2n+1) .bene-right {
    float: left;
}

.benefit-block:nth-child(2n+1) .bene-left {
    float: right;
}

.benefits-section .benefit-block:nth-child(2n+1) .bene-left img {
    float: right;
}

.benefit-block .bene-right h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #253C81;
    line-height: 27px;
}

.bene-right p {
    letter-spacing: 1px;
    color: #666;
    line-height: 25px;
}

.benefits-section img {
    max-width: 100%;
}

.spe-price {
    color: #333;
    font-style: italic;
}

.benefit-block:last-child {
    border: none;
    padding: 0;
    margin: 0;
}

.bene-right p a {
    color: #333;
}

.bene-right p a:hover {
    color: #253C81;
}

.see-details .btn.btn-primary {
    padding: 10px 15px;
}


/*** Inner page banner section **/

#sponsor-banner {
    background: url(https://iyba.org/home/images/home.jpg);
    background-attachment: fixed;
}

.inner-page-banner {
    float: left;
    width: 100%;
    position: relative;
    min-height: 360px;
}

.banner-title {
    position: absolute;
    bottom: 60px;
}

.banner-title h1 {
    color: #fff;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}


/**
Login modal
*/

#login-modal .modal-body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #212529;
    text-align: left;
    background-color: #f5f8fa;
}

#register-modal .modal-body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #212529;
    text-align: left;
    background-color: #f5f8fa;
}

#register-modal .nav-item a {
    border: 0px;
}

#register-modal .nav-item a.active {
    border-bottom: 2px #253C81 solid;
}


/*** Homepage welcome section **/

.welcome-sec {
    float: left;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.section-title {
    display: table;
    margin: 0 auto;
}

.section-title h3 {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: bold;
    margin: 0 0 30px 0;
    line-height: 25px;
}

.welcome-sec .welcome-info {
    display: inline-block;
    width: 100%;
    margin: 20px 0 0 0;
}

.welcome-info .info-icons {
    float: left;
    width: 100%;
}

.welcome-info .info-icons .icon-images {
    display: table;
    margin: 0 auto 30px;
    position: relative;
    padding-bottom: 20px;
    width: 100%;
}

.welcome-info .info-icons .icon-images::before {
    content: "";
    width: 100px;
    height: 2px;
    position: absolute;
    background: #545454;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.welcome-info .info-icons .icon-images img {
    max-width: 100%;
    display: table;
    margin: 0 auto;
}

.welcome-info .info-content {
    float: left;
    width: 100%;
}

.welcome-info .info-content h3 {
    display: table;
    margin: 0 auto 20px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    color: #010101;
    text-align: center;
}

.welcome-info .info-content h3 a:hover {
    color: #253C81;
}

.welcome-info .info-content p {
    color: #666;
    line-height: 23px;
    text-align: center;
    font-size: 15px;
    font-weight: normal;
}


/*** Homepage industry section **/

.industry-sec {
    float: left;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.industry-sec .industry-content {
    display: inline-block;
    width: 100%;
}

.industry-sec .industry-content .industry-img {
    max-height: 100%;
    width: auto;
    height: 235px;
    max-width: 100%;
}

.industry-sec .industry-content .industry-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.industry-content .industry-detail {
    float: left;
    width: 100%;
    margin-top: 20px;
}

.industry-content .industry-detail h3 {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #010101;
    width: 100%;
}

.industry-content .industry-detail h3 a:hover {
    color: #253C81;
}

.industry-content .industry-detail p {
    color: #666;
    line-height: 23px;
    font-size: 15px;
    font-weight: normal;
}

.become-member a:hover {
    color: #253C81;
}

.font-weight-bold.color777 {
    color: #004e89;
}


/* brokerage list*/

.dealers-list-section {
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}

.dealers-list-section .alphasoup {
    margin: 0;
}

.dealers-list-section .alphasoup .alphaLinks a {
    padding: 4px;
}

.dealers-list-section .result-sorting-wrapper {
    background: #f5f5f5 none repeat scroll 0 0;
    border-bottom: 1px solid #e5e5e5;
    border-left: 4px solid #0063a7;
    margin-bottom: 40px;
    overflow: hidden;
    padding: 5px 2px 0px 5px;
}

.dealers-list-section .sorting-count {
    float: left;
    padding: 18px 0 5px 12px;
}

.dealers-list-section .sorting-count p {}

.dealers-list-section .sorting-count span {
    color: #777;
}

.dealers-list-section .dealers_list_wrap {
    margin: 0 auto 50px;
}

.dealers-list-section .dealers_listing {
    border-bottom: 1px solid #e7e7e7;
    padding: 0 0px 20px;
    margin: 0 auto 20px;
}

.dealers-list-section .dealer_info h5 {
    color: #253C81;
}

.dealers-list-section .dealer_info h5 a {
    font-weight: 900;
}

.dealers-list-section .dealers_listing .dealer_logo {
    padding: 12px;
    width: 100%;
}

.dealers-list-section .dealers_listing .dealer_info {
    width: 100%;
}

.dealers-list-section .view_profile {
    padding: 12px 0;
    text-align: right;
}

.dealers-list-section .view_profile p {
    margin: 10px 0;
    font-size: 18px;
}

.dealers-list-section .dealer_logo img {
    width: 350px;
}

.dealers-list-section #search-field-text {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #dddddd;
    border-radius: 50px;
    color: #555555;
    font-size: 12px;
    height: auto;
    margin-top: 5px;
    padding: 12px 30px 12px 12px;
    float: right;
    margin-right: 10px;
}

.dealers-list-section #search-field-text::placeholder {
    /* Firefox, Chrome, Opera */
    text-align: center;
}

.dealers-list-section #search-field-text:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    text-align: center;
}

.dealers-list-section #search-field-text::-ms-input-placeholder {
    /* Microsoft Edge */
    text-align: center;
}

.dealers-list-section .list-filter-by-alphabet.orange {
    background-color: #DBA555 !important;
}


/* brokerage list ends*/


/* brokerage detail*/

.dealers-detail-section {
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}

.dealers-detail-section .row {
    float: none;
}

.dealers-detail-section #offices-list {
    height: 500px;
    overflow: auto;
    padding: 5px;
    border: 1px solid lightgray;
}

.dealers-detail-section #offices-list .hero-unit.panel-heading:hover {
    background-color: #DBA555;
}

.dealers-detail-section #offices-list .hero-unit.panel-heading.orange {
    background-color: #DBA555;
}

.dealers-detail-section #offices-list h5 {
    font-size: 0.95rem;
}

.dealers-detail-section #offices-list .hero-unit {
    border: 1px solid #e6e6e6;
    margin: 0 auto 5px;
    padding: 9px 0px 9px;
    position: relative;
    float: left;
    width: 100%;
    color: #fff;
    text-align: center;
    background-color: #253C81;
}

.dealers-detail-section #offices-list .hero-unit a {
    color: #fff;
}

.dealers-detail-section .dealer-detail-content {
    padding: 0px 0px 20px 20px;
}

.dealers-detail-section .dealer-detail-content a i.fa {
    padding: 0px 0px 10px 10px;
}

.dealers-detail-section .dealer-detail-content h4 {
    color: #253C81;
}

.dealers-detail-section .dealer-detail-content p {
    color: #253C81;
    margin-bottom: 4px;
}

.dealers-detail-section #staff-list>div {
    margin-top: 10px;
    padding: 4px;
}

.dealers-detail-section .staff-image img {
    max-height: 178px;
    max-width: 200px;
}

.dealers-detail-section .staff-contact {
    color: #000;
    background-color: lightgray;
    padding: 15px;
}

.dealers-detail-section .staff-contact p {
    color: #253C81;
    text-align: center;
    margin-bottom: 10px;
}

.dealers-detail-section .maps {
    position: relative;
    height: 400px;
    width: 100%;
    border: none;
}

.dealers-detail-section .accordion-container-data {
    min-height: 400px;
}


/* brokerage detail ends*/

.icon-bar-right .register-link-group {
    float: left;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
    color: #fff;
}

.icon-bar-right .register-link-group .dropdown-toggle::after {
    display: none;
}

.icon-bar-right .register-link-group {
    position: relative;
    display: -ms-inline-flexbox;
    display: block;
    vertical-align: middle;
}

.membership-register-section {
    width: 100%;
    display: inline-block;
    overflow: hidden;
}

.membership-register-section .membership-register-title {
    font-size: 46px;
    line-height: normal;
    color: #253C81;
    text-transform: capitalize;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
    padding: 0 0 10px 0;
    text-align: center;
}

.membership-register-section .sub-title {
    font-size: 20px;
    color: red;
    margin: 10px 0;
    text-align: center;
    width: 100%;
    display: inline-block;
}

.membership-register-section .category-title {
    font-size: 24px;
    background-color: #253C81;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
    margin: 20px 0;
}

.membership-register-section .membership_register_form {
    width: 100%;
    display: inline-block;
}

.membership-register-section .form-group {
    margin-bottom: 10px;
}

.membership-register-section .form-group input,
.form-group select,
.form-group textarea {
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    font-weight: 400;
}

.membership-register-section .control-label {
    text-align: right;
}

.membership-register-section .control-input {
    text-align: left;
}

.membership-register-section .form-group .control-label i.fa.fa-asterisk {
    color: red;
}

.membership-register-section .form-group .control-label {
    font-weight: bold;
    text-transform: capitalize;
}

.membership-register-section form.membership_register_form .form-group {
    padding: 8px 15px;
}

.membership-register-section form.membership_register_form .form-group.row {
    margin: 0 15px;
}

.membership-register-section form.membership_register_form .white-band .form-group.row {
    margin: 0;
}

.membership-register-section form.membership_register_form .form-group label {
    margin-bottom: 0;
}

.membership-register-section form.membership_register_form .form-group:nth-child(odd) {
    background: rgba(62, 169, 223, 0.05);
}

.membership-register-section .primary-contact {
    width: 100%;
}

.membership-register-section form.membership_register_form .gray-band .form-group:nth-child(odd) {
    background: rgba(62, 169, 223, 0);
}

.membership-register-section .membership-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: #253C81;
    margin: 5px 0 15px 0;
}

.membership-register-section .type-of-membership.row,
.secure-online-payment.row {
    margin: 0;
}

.membership-register-section .radio-band {
    position: relative;
    display: block;
    margin-top: 10px;
    padding-left: 20px;
}

.membership-register-section .radio-band label {
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 0;
}

.membership-register-section .radio-band input[type="radio"] {
    position: absolute;
    left: 0;
    top: 3px;
}

.membership-register-section .radio-band i.fa.fa-question-circle {
    color: #253C81;
}

.membership-register-section .gray-band {
    background: rgba(62, 169, 223, 0.05);
    padding: 15px;
}

.membership-register-section .white-band {
    padding: 15px 0;
}

.membership-register-section .csc-img {
    margin-top: 20px;
    text-align: left;
}

.membership-register-section .add-company {
    width: 100%;
    text-align: center;
    margin: 10px;
}

.membership-register-section .iyba-agreement {
    border: 1px solid #253C81;
    margin: 20px auto;
    padding: 0 15px;
    margin: 20px 15px;
}

.membership-register-section .checkbox input[type=checkbox] {
    width: auto;
}

.membership-register-section .form-group .checkbox .control-label a {
    font-weight: bold;
    color: #0063a6;
    text-decoration: underline;
    transition: all 0.3s linear 0s;
}

.membership-register-section .form-group .checkbox .control-label a:hover {
    color: #0063a6;
    transition: all 0.3s linear 0s;
}

.membership-register-section .csc-img img {
    max-width: 215px;
    width: 100%;
}

.membership-register-section .submit-btn {
    transition: all 0.3s linear 0s;
    cursor: pointer;
    padding: 8px 50px;
    font-size: 18px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: #253C81;
    border: 0;
}

.membership-register-section .submit-btn:hover {
    transition: all 0.3s linear 0s;
    background-color: #0063a6;
}

.membership-register-section .submit-form {
    margin: 30px auto;
}

.membership-register-section .radio-band input[type="radio"] {
    position: absolute;
    left: 0;
    top: 3px;
}

.membership-register-section .tooltips {
    position: relative;
    display: inline;
    color: #0063a6;
    cursor: pointer;
}

.membership-register-section .tooltips[tooltip-position="right"]:hover span {
    left: 100%;
    top: 10%;
    margin-top: -28%;
    margin-left: 15px;
}

.membership-register-section .tooltips[tooltip-type="primary"]>span {
    background-color: #0063a6;
}

.membership-register-section .tooltips:hover span {
    visibility: visible;
    opacity: 1;
    z-index: 999;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    filter: alpha(opacity=100);
}

.membership-register-section .tooltips[tooltip-position="right"] span {
    margin-top: 10px;
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.membership-register-section .tooltips[tooltip-type="primary"][tooltip-position="left"]>span:after {
    border-left: 8px solid #0063a6;
}

.membership-register-section .tooltips span {
    font: 300 14px 'Open Sans', sans-serif;
    position: absolute;
    color: #FFFFFF;
    background: #000000;
    padding: 15px 10px;
    width: 320px;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: transform .3s, opacity .6s, margin-left .2s, margin-top .2s;
}

.membership-register-section .tooltips[tooltip-type="primary"][tooltip-position="right"]>span:after {
    border-right: 8px solid #0063a6;
}

.membership-register-section .tooltips[tooltip-position="right"] span:after {
    top: 5%;
    right: 100%;
    margin-top: 0px;
    border-right: 8px solid black;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.membership-register-section .tooltips[tooltip-position="left"] span:after {
    top: 5%;
    left: 100%;
    margin-top: 0;
    border-left: 8px solid black;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.membership-register-section .tooltips span:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
}

.membership-register-section .tooltips i {
    margin-left: 5px;
}

.membership-register-section .tooltips[tooltip-position="left"]:hover span {
    right: 100%;
    top: 10%;
    margin-top: -28%;
    margin-right: 15px;
}

.membership-register-section .new-company {
    display: none;
    width: 100%;
}

.membership-register-section .form-details.row {
    margin: 0;
}

.membership-register-section .companyinlist {
    width: 100%;
}

.membership-register-section .broker-license.euro .fa-asterisk {
    display: none;
}

.membership-register-section .addNewCompany {
    color: #253C81;
    cursor: pointer;
}

.newsletter-sec .main-title::before {
    width: 230px;
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 992px;
    }
}

.committee-section .panel-group {
    margin-bottom: 20px;
}

.committee-section .panel {
    background-color: transparent;
    border: 0px solid transparent;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
    border-radius: 0px !important;
}

.committee-section .panel-default>.panel-heading {
    cursor: pointer;
    background-color: transparent;
    border: 0px solid transparent;
    padding-left: 30px;
    background: url(https://iyba.org/home/css/img/list-bullet.png) center left no-repeat;
}

.committee-section .hero-unit h4 {
    color: #253C81;
    font-weight: bold;
}

.committee-section .panel-title>a {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #253C81;
    text-transform: uppercase;
    top: 7px;
}

.committee-section .panel-body p {
    padding-bottom: 16px;
    font-size: 16px;
}

.committee-section .panel-body h2 {
    font-size: 15px;
    font-weight: normal;
    margin-top: 4px;
    margin-bottom: 8px;
    color: #253C81;
}

.committee-section .panel-body h2 span {
    color: #DBA555;
    display: block;
    padding-right: 15px;
    min-height: 60px;
    float: left;
    min-width: 250px;
    text-align: right;
    text-transform: uppercase;
    font-weight: bold;
}

.committee-section .panel-default>.panel-heading {
    cursor: pointer;
    background-color: transparent;
    border: 0px solid transparent;
    padding: 10px 15px 10px 45px;
    background: url('https://iyba.org/assets/img/bullet.png') center left no-repeat;
}

#comittee {
    background-image: url(https://iyba.org/assets/img/committee.jpg);
    background-repeat: repeat;
    background-size: 100% 550px, cover;
}

.committee-section h1 {
    text-transform: uppercase;
}

.committee-section .header {
    margin-top: 80px;
    padding: 280px 0px 20px;
}

.committee-section .header h1 {
    font-size: 58px;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.committee-section #intro {
    background: url(https://iyba.org/assets/img/intro.png) 50% 0 fixed;
    height: auto;
    margin: 0 auto;
    width: 100%;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    padding-top: 45px;
    z-index: 2;
    overflow: visible;
    -webkit-box-shadow: inset 0 -50px 45px 0 rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 -50px 45px 0 rgba(255, 255, 255, 0.15);
    background-position: 50% -33.3333px;
}

.committee-section .pull-right.absolute {
    bottom: 0 !important;
    padding: 0;
}

.committee-section .hero-unit img {
    float: right;
    width: 100%;
    padding: 0;
    z-index: 9;
}

.committee-section .panel-title>a.collapsed:before,
.committee-section .panel-title>a:before {
    display: none;
}

.committee-section .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ddd;
}

.committee-section a[aria-expanded="true"] {
    background: none;
}

.committee-section .panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 1px solid #ddd;
}

.committee-section #intro .container {
    padding-right: 0;
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    z-index: 1030;
}

.btn-iyba {
    background: #253C81;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 15px;
    line-height: normal;
}

.btn-iyba:hover,
.btn-iyba:focus {
    background: #004a89;
    box-shadow: none;
    color: #fff;
}

.btn-iyba.orange {
    background: #DBA555;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    line-height: normal;
}

.btn-iyba.orange:hover,
.btn-iyba.orange:focus {
    background: #DBA555;
    box-shadow: none;
    color: #fff;
}

.btn-iyba.orange-on-hover:focus,
.btn-iyba.orange-on-hover:hover {
    background: #DBA555;
    box-shadow: none;
    color: #fff;
}


/** about IYBA page styling [10-9-2019] **/

.sec-para .row .img-order {
    order: 2;
}

.sec-para .content-img {
    text-align: center;
    margin-top: -95px;
}

.sec-para .content-img img {
    max-width: 100%;
    max-height: 480px;
}

.sec-para .custom-content {
    text-align: left;
}

.asso-box {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-content: flex-start;
    align-content: flex-start;
}

.asso-imgbox {
    width: 30%;
    text-align: center;
    padding: 0 5px;
    order: 2;
    -webkit-align-self: center;
    /* Safari 7.0+ */
    align-self: center;
}

.asso-imgbox img {
    max-width: 100%;
    max-height: 215px;
}

.asso-details {
    width: 70%;
    order: 1;
    text-align: left
}

.mob-title {
    display: none;
}

.ybr-data-feed-auth-section .page-header h1 {
    font-size: 30px;
    line-height: 38px;
}

.ybr-data-feed-auth-section .page-content h4 {
    font-size: 19px;
    line-height: 29px;
    margin-top: 24px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.ybr-data-feed-auth-section .page-content p {
    margin: 26px 0;
}

.ybr-data-feed-auth-section p {
    line-height: 26px;
    font-size: 17px;
}

.ybr-data-feed-auth-section ol li {
    list-style-type: decimal;
    display: list-item;
    font-size: 17px;
    line-height: 26px;
}

.ybr-data-feed-auth-section ol {
    margin-bottom: 26px;
    padding-left: 20px;
}

.ybr-data-feed-auth-section .feed-auth-sub-title {
    text-transform: uppercase;
}

.ybr-data-feed-auth-section .feed-auth-list-section {
    margin-top: 70px;
}

.ybr-data-feed-auth-section ul li {
    list-style-type: circle;
}

.ybr-data-feed-auth-section .feed-auth-list-section ul {
    margin-bottom: 26px;
}

.ybr-data-feed-auth-section .feed-auth-list-section a {
    color: #007bff;
}

.ybr-data-feed-auth-section .feed-auth-list-section a:hover {
    text-decoration: underline;
}

.ybr-data-feed-auth-section .feed-auth-sub-title {
    text-transform: uppercase;
    margin-left: -20px !important;
}

.ybr-data-feed-auth-section .definitions-section li {
    margin-bottom: 26px;
}

.ybr-data-feed-auth-section .definitions-section {
    margin-top: 26px;
}

.ybr-data-feed-auth-section .definitions-sub-section {
    margin-left: -20px;
}

.sign-up-section .sign-up-heading {
    margin-bottom: 26px;
}

.sign-up-section .sign-up-heading h1 {
    font-size: 30px;
}

.sign-up-section .section-content p {
    font-size: 17px;
}

.sign-up-section .section-content a {
    color: #007bff;
}

.sign-up-section .section-content a:hover {
    text-decoration: underline;
}

.sign-up-section .quick-link-title h4 {
    font-size: 16px;
    padding: 3px 10px;
    border-left: 5px solid #0275d8;
    font-weight: 500;
}

.sign-up-section .quick-link-title h4 {
    margin-bottom: 20px;
}

.sign-up-section .quick-link-content ul {
    padding: 0 10px;
}

.sign-up-section .quick-link-content li {
    line-height: 30px;
    color: #111111;
}

.sign-up-section .quick-link-content li:hover {
    color: #0275d8;
}

.ybr-data-feed-auth-section,
.sign-up-section {
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}

.about-your-mls-section .section-banner {
    background-image: url(https://iyba.org/home/img/flib.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 50px;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 120px;
}

.about-your-mls-section .section-banner img {
    padding: 40px 0;
}

.about-mls-container {
    margin-top: 20px;
}

.about-your-mls-section .horizontal-line {
    width: 20%;
    background-color: #0275d8;
}

.about-your-mls-section .banner-content h4 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 30px;
}

.about-your-mls-section .banner-content button {
    padding: 10px;
}

.about-your-mls-section .banner-link-content a span {
    padding-right: 10px;
}

.about-your-mls-section .banner-link-content a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    float: left;
}

.about-your-mls-section .banner-link-content .link {
    display: flex;
    line-height: 30px;
}

.about-your-mls-section .banner-link-content {
    float: left;
}

.about-your-mls-section .banner-link-content a:hover {
    color: #0275d8;
}

.about-your-mls-section .banner-link-content a:hover i {
    color: #0275d8;
}

.about-your-mls-section .social-content p,
.about-your-mls-section i {
    color: #fff;
}

.about-your-mls-section .banner-link-content {
    margin-top: 70px;
    width: 50%;
}

.about-your-mls-section .banner-link {
    display: flex;
    align-items: flex-end;
    flex: 1;
}

.about-your-mls-section .social-content {
    float: right;
    width: 50%;
}

.about-your-mls-section .social-content p {
    display: inline;
    margin-right: 15px;
}

.about-your-mls-section .social-content a {
    padding: 0 10px;
}

.about-your-mls-section .social-content i:hover {
    color: #0275d8;
}

.about-your-mls-section .banner-footer {
    background-color: #000;
    margin-top: 30px;
    padding: 20px 0;
    display: flex;
}

.about-your-mls-section .banner-footer .call-us span,
.about-your-mls-section .banner-footer .email-us span,
.about-your-mls-section .banner-footer .login span {
    display: table;
    color: #fff;
}

.about-your-mls-section .banner-footer h3 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
}

.about-your-mls-section .benefits-block .block-subtitle {
    font-size: 90px;
    text-transform: uppercase;
    position: relative;
    top: -70px;
    z-index: -1;
    white-space: nowrap;
    color: #f3f3f3;
    line-height: 1;
    font-weight: 800;
}

.about-your-mls-section .benefits-block .block-title {
    text-align: center;
    /* margin-top: 140px; */
    /* margin-bottom: 60px; */
}

.about-your-mls-section .benefits-block .block-title span {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin: 40px 0;
}

.about-your-mls-section .benefits-block .benefits-content .api-block,
.about-your-mls-section .benefits-block .benefits-content .partners-block,
.about-your-mls-section .benefits-block .benefits-content .boat-specs-block {
    width: 100%;
    height: 360px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 25px;
}

.about-your-mls-section .benefits-block .benefits-content .api-block {
    background-image: url(https://iyba.org/home/img/api.jpg);
}

.about-your-mls-section .benefits-block .benefits-content .partners-block {
    background-image: url(https://iyba.org/home/img/partners.png);
}

.about-your-mls-section .benefits-block .benefits-content .boat-specs-block {
    background-image: url(https://iyba.org/home/img/boat-specs.jpg);
}

.about-your-mls-section .benefits-block .api-block::before,
.about-your-mls-section .benefits-block .partners-block::before,
.about-your-mls-section .benefits-block .boat-specs-block::before {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-your-mls-section .benefits-block .benefits-content {
    margin-bottom: 80px;
}

.about-your-mls-section .benefits-block h3 {
    position: absolute;
    top: 20px;
    color: #fff;
    font-size: 28px;
    line-height: 30px;
    font-weight: 600;
}

.about-your-mls-section .benefits-block p {
    bottom: 20px;
    position: absolute;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    margin-right: 15px;
}

.about-your-mls-section .serivce-section span {
    display: inherit;
    padding: 20px 0;
}

.about-your-mls-section .serivce-section h4 {
    color: #0275d8;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}

.about-your-mls-section .serivce-section h3 {
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 46px;
    line-height: 56px;
}

.about-your-mls-section .serivce-section p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
}

.about-your-mls-section .serivce-section small {
    display: inherit;
}

.about-your-mls-section .serivce-section img {
    width: 100%;
}

.about-your-mls-section .our-feed-section {
    background-image: url(https://iyba.org/home/img/flib.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.about-your-mls-section .our-feed-section h3 {
    font-weight: 600;
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 25px;
    color: #0275d8;
    width: 100%;
    text-align: center;
}

.about-your-mls-section .our-feed-section .right-content {
    text-align: right;
    color: #fff;
    margin-bottom: 25px;
    width: 80%;
    float: left;
    /* margin-right: 20px; */
}

.about-your-mls-section .our-feed-section .about-right::after {
    content: "";
    background-image: url(https://iyba.org/home/img/information.png);
    float: right;
    width: 15%;
    height: 50px;
    background-size: 50px;
    background-repeat: no-repeat;
    position: relative;
    top: 20px;
}

.about-your-mls-section .our-feed-section .about-right:hover::after {
    background-image: url(https://iyba.org/home/img/information-hover.png);
}

.about-your-mls-section .our-feed-section .right-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 28px;
}

.about-your-mls-section .our-feed-section .left-content {
    text-align: left;
    color: #fff;
    margin-bottom: 25px;
    width: 80%;
    float: right;
}

.about-your-mls-section .our-feed-section .about-left::after {
    content: "";
    background-image: url(https://iyba.org/home/img/information.png);
    float: left;
    width: 15%;
    height: 50px;
    background-size: 50px;
    background-repeat: no-repeat;
    position: relative;
    top: 20px;
}

.about-your-mls-section .our-feed-section .about-left:hover::after {
    background-image: url(https://iyba.org/home/img/information-hover.png);
}

.about-your-mls-section .our-feed-section .left-content p {
    /* padding-top: 20px; */
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 28px;
}

.about-your-mls-section .our-feed-section .right {
    padding-right: 40px;
}

.about-your-mls-section .our-feed-section .left {
    padding-left: 40px;
}

.about-your-mls-section .strength-number-section .strength {
    padding: 120px 0;
}

.about-your-mls-section .strength-number-section {
    margin-bottom: 0px;
}

.about-your-mls-section .strength-number-section h3 {
    font-size: 46px;
    line-height: 56px;
    font-weight: 600;
    color: #111;
    padding-bottom: 30px;
}

.about-your-mls-section .strength-number-section p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
}

.about-your-mls-section .strength-number-section .counter {
    margin: 60px 0;
}

.about-your-mls-section .strength-number-section .counter h2 {
    font-size: 70px;
    line-height: 70px;
    color: #0275d8;
    font-weight: 700;
}

.about-your-mls-section .strength-number-section .counter span {
    display: inherit;
    font-size: 20px;
    font-weight: 500;
    line-height: 21px;
    color: #000;
}

.about-your-mls-section .strength-number-section {
    background-image: url(https://iyba.org/home/img/yachts-counter.jpg);
    position: relative;
    width: 100%;
    height: 700px;
}

.about-your-mls-section .strength-number-section::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(#ffffff, rgba(255, 255, 255, 0.8));
}

.about-your-mls-section .strength-number-section .experience p {
    font-size: 140px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    position: relative;
}

.about-your-mls-section .strength-number-section .experience h3 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}

.about-your-mls-section .strength-number-section .experience span {
    display: inherit;
    z-index: 999;
    padding-top: 10px;
}

.about-your-mls-section .strength-number-section .experience {
    padding-bottom: 25px;
    margin-left: 70px;
    margin-top: 30px;
    background-image: url(https://iyba.org/home/img/small-yacht-counter.png);
    background-size: cover;
    width: 80%;
    height: 80%;
    position: relative;
}

.about-your-mls-section .strength-number-section .experience .year {
    padding-top: 120px;
    padding-left: 40px;
    padding-bottom: 40px;
}

.about-your-mls-section .strength-number-section .experience::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(rgba(30, 115, 190, 0.8), rgba(11, 65, 119, 0.8));
    box-shadow: -49px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-your-mls-section .contact-us h3 {
    font-weight: 600;
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 25px;
    color: #000;
}

.about-your-mls-section .contact-us .contact-us-content p {
    padding-bottom: 8px;
    font-size: 20px;
}

.about-your-mls-section .contact-us .contact-us-content span {
    display: inherit;
}

.about-your-mls-section .contact-us .contact-us-content img {
    width: 40%;
}

.about-your-mls-section .contact-us .contact-us-content h3 {
    padding-top: 30px;
    font-size: 20px;
    margin-bottom: 0;
}

.about-your-mls-section .contact-us .contact-us-right h3 {
    padding-top: 30px;
    font-size: 16px;
    margin-bottom: 0;
    color: #bcbcbc;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left !important;
}

.about-your-mls-section .contact-us .contact-us-right a {
    font-size: 46px;
    line-height: 56px;
    font-weight: 600;
    margin-bottom: 30px;
}

.about-your-mls-section .contact-us .contact-us-right p {
    color: #000;
    margin-bottom: 30px;
    display: inherit;
    font-weight: 500;
    font-size: 18px;
}

.mls-ul li::before {
    content: "\2022";
    color: black;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.title-color-mls {
    color: #253C81;
}

.about-your-mls-section .contact-us .contact {
    padding: 80px 60px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
    z-index: 1;
}

.about-your-mls-section .contact-us {
    position: relative;
}

.join-iyba-section,
.sitemap-section,
.about-iyba-events-section,
.benefit-section {
    display: inline-block;
    width: 100%;
}

.join-iyba-section .banner-section,
.sitemap-section .banner-section,
.about-iyba-events-section .banner-section {
    display: inline-block;
    width: 100%;
    background-image: url(https://iyba.org/assets/img/banner.png);
    height: 210px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}

.custom-banner-height {
    height: 155px !important;
}

.custom-banner-height .banner-section h1 {
    bottom: 20px !important;
}

.testimonial-img {
    min-width: 100%;
    max-width: 100%;
}

.mls-tips-section .carousel-item img {
    max-height: 100% !important;
}

.mls-tips-section .carousel-indicators {
    z-index: 8 !important;
}

.mls-tips-section .carousel-indicators li {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 10px;
    text-indent: 0;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    background-color: #a1a1ca;
    box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.mls-tips-section .carousel-indicators .active {
    background-color: #000;
}

.mls-tips-section .carousel-inner img {
    width: 100%;
    height: 100%;
}

.mls-tips-section .carousel-control-next-icon,
.mls-tips-section .carousel-control-prev-icon {
    background-color: black;
    height: 53px;
    width: 53px;
    outline: black;
}

.mls-tips-section .carousel-item:hover img {
    transform: unset;
    -moz-transform: unset;
    -o-transform: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
}

.histroy-section .banner-section {
    display: inline-block;
    width: 100%;
    background-image: url(https://iyba.org/assets/img/banner.png);
    height: 130px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}

.histroy-section .banner-section h1 {
    position: absolute;
    bottom: 20px;
    width: 100%;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
}

.histroy-section {
    display: inline-block;
    width: 100%;
    background-image: url(https://iyba.org/assets/img/waves.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.join-iyba-section .banner-section h1,
.sitemap-section .banner-section h1,
.about-iyba-events-section h1 {
    position: absolute;
    bottom: 90px;
    width: 100%;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
}

.benefit-section .banner-section {
    display: inline-block;
    width: 100%;
    background-image: url(https://iyba.org/assets/img/banner.png);
    height: 114px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}

.benefit-section .banner-section h1 {
    position: absolute;
    bottom: 10px;
    width: 100%;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
}

.join-iyba-section .description-section,
.benefit-section .description-section {
    margin: 60px 0;
}

.join-iyba-section .description-section h2 {
    color: #253C81;
    font-weight: 600;
    font-size: 2.9rem;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-top: 50px;
}

.benefit-section .description-section h2 {
    color: #253C81;
    font-weight: 600;
    font-size: 2.5rem;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-top: 50px;
}

.benefit-section .btn-benefit {
    background-color: #DBA555;
    color: #fff !important;
    margin: 10px 20px;
    -webkit-appearance: none !important;
}

.join-iyba-section .description-section p,
.benefit-section .description-section p {
    font-size: 18px;
}

.imageclass {
    position: relative;
    margin-top: 10px;
    margin-bottom: 5px;
}

.text-block {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: #0E153Eb0;
    color: #f1f1f1;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 1px;
}

.join-iyba-section .description-section img {
    height: 280px;
    vertical-align: bottom;
}

.benefit-section .description-section img {
    height: auto;
    vertical-align: bottom;
    width: 70%;
}

.benefit-section .benefit-image {
    margin: auto;
}

.join-iyba-section .become-member,
.benefit-section .become-member {
    margin: 50px 0;
}

.join-iyba-section .become-member a:hover,
.benefit-section .become-member a:hover {
    background: #DBA555;
    color: #fff;
}

.sitemap-section .sitemap-title {
    color: #253C81;
}

.sitemap-section .sitemap-content li:before {
    display: inline-block;
    width: 20px;
    font-weight: 700;
}

.sitemap-section .sitemap-content ul {
    padding-left: 0;
}

.sitemap-section .sitemap-content li {
    line-height: 1.4em;
    font-size: 16px;
}

.sitemap-section .sitemap-content {
    margin: 50px 0;
}

.sitemap-section .sitemap-content h3 {
    text-transform: uppercase;
    color: #253C81;
    font-weight: 600;
}

.sitemap-section ul.sm-list-view li {
    text-align: center;
    list-style: inside;
    list-style-type: decimal;
    padding: 7px;
    font-size: 16px;
    width: 100%;
    color: #333333;
}

.sitemap-section ul.sm-list-view li a {
    color: #000;
}

.sitemap-section ul.sm-list-view li a:hover {
    color: black;
    -webkit-transition: color 2s ease-out;
    -moz-transition: color 2s ease-out;
    -o-transition: color 2s ease-out;
    transition: color 2s ease-out;
    text-decoration: underline;
}

.become-member-section {
    display: inline-block;
    width: 100%;
    background-image: url(https://iyba.org/assets/img/waves.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.become-member-section .banner-section {
    display: inline-block;
    width: 100%;
    background-image: url(https://iyba.org/assets/img/banner.jpg);
    height: 80px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}

.become-member-section .banner-section h1 {
    position: absolute;
    width: 100%;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    padding-top: 7px;
}

.become-member-section .member-content .content {
    background-color: rgba(255, 255, 255, 0.65);
    width: 80%;
    margin: 0 auto;
    border-radius: 10px;
    min-height: 600px;
}

.become-member-section .content label {
    display: inherit;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.become-member-section .content-holder {
    margin-bottom: 30px;
    position: relative;
}

.become-member-section .content-holder #content-1 {
    display: block;
}

.become-member-section .content h2 {
    font-weight: 600;
}

.become-member-section .content {
    padding: 20px;
}

.become-member-section .content label span {
    font-size: 16px;
    padding-right: 5px;
    font-weight: 600;
    color: #000;
}

.become-member-section .content label span i {
    color: #0cb0ef;
    padding-left: 5px;
}

.become-member-section .content input {
    border-radius: 5px;
    border-style: none;
    width: 100%;
    margin-bottom: 10px;
    padding: 3px 10px;
}

.become-member-section .content input[type='radio'],
.become-member-section .content input[type='checkbox'] {
    border-radius: 5px;
    background-color: #0062a6;
}


/* For error purpose  */

.become-member-section .content input.required-field {
    border: 1px solid #ff0000;
    border-radius: 5px;
}

.become-member-section .content {
    display: none;
}

.become-member-section button {
    margin-top: 30px;
}

.become-member-section .back {
    display: none;
}

.become-member-section .next {
    margin-left: 50px;
}

.become-member-section .end {
    display: none;
}

.become-member-section .contact-num-form {
    width: 35%;
    margin: 0 auto;
    padding: 0 20px;
}

.become-member-section .membership-type {
    text-align: center;
    margin-top: 15px;
}

.become-member-section .membership-type .brokerage,
.become-member-section .membership-type .charter,
.become-member-section .membership-type .affiliate {
    background: rgba(234, 236, 237, 0.7);
    padding: 15px 0;
    border-radius: 5px;
    height: 100%;
    margin: 0 0 20px 0;
}

.become-member-section .content span.require-icon {
    color: #ff0000;
}

.become-member-section .content .tag-description p {
    background: #EAECED;
    width: 30%;
    padding: 3px 10px;
    margin: 10px auto;
    border-radius: 5px;
    color: #000;
}

.become-member-section .content .tag-description i {
    color: #0cb0ef;
}

.become-member-section .company-profile {
    width: 75%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.become-member-section .company-profile select {
    border-radius: 5px;
    padding: 3px 10px;
}

.become-member-section .company-profile label {
    font-size: 16px;
}

.become-member-section .company-profile .add-company p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 10px;
}

.become-member-section .company-profile .add-company {
    margin-top: 30px;
}

.become-member-section .company-profile .add-company a {
    font-size: 18px;
    color: #0a8bbe;
    font-weight: 600;
}

.become-member-section .phone-number,
.become-member-section .internet-sources {
    width: 35%;
    margin: 20px auto 0;
    padding: 0 20px;
}

.become-member-section .sponsors .sponsor1,
.become-member-section .sponsors .sponsor2 {
    width: 70%;
    margin: 0 auto 20px auto;
    background: rgba(234, 236, 237, 0.7);
    padding: 20px;
    border-radius: 5px;
    height: 100%;
}

.become-member-section .sponsors .sponsor-content p {
    width: 70%;
    margin: 15px auto;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.become-member-section .sponsors .sponsor-content {
    margin: 20px 0;
}

.become-member-section .sponsors .sponsor-content a.btn {
    margin-top: 0;
    background: #0062a6;
    color: #fff;
    cursor: pointer;
}

.become-member-section #content-10 .sponsor-content a.btn {
    margin-top: 0;
    background: #0062a6;
    color: #fff;
    cursor: pointer;
}

.become-member-section .industry-information {
    width: 50%;
    margin: 40px auto 0;
    padding: 0 20px;
    text-align: center;
}

.become-member-section .industry-information select {
    border-radius: 5px;
    padding: 3px 10px;
    width: 80%;
}

.become-member-section .industry-information label {
    font-size: 16px;
}

.become-member-section .login-detail {
    width: 35%;
    margin: 0 auto;
    padding: 0 20px;
}

.become-member-section .agreement {
    width: 50%;
    margin: 20px auto;
    text-align: center;
}

.become-member-section .agreement p {
    margin-top: 30px;
    font-style: italic;
    font-weight: 500;
}

.become-member-section .agreement input {
    height: 15px;
}

.become-member-section .agreement label {
    font-size: 17px;
}

.become-member-section .online-payment .payment1,
.become-member-section .online-payment .payment2 {
    width: 90%;
    margin: 0 auto;
    padding: 0px;
}

.become-member-section .online-payment .name-card input#first {
    margin-right: 27px;
}

.become-member-section .online-payment .cvv-content label {
    font-size: 14px;
    width: 100%;
}

.become-member-section .online-payment .cvv-content .divide-content {
    padding: 0 10px;
}

.become-member-section .content select {
    border-radius: 5px;
    border-style: none;
    width: 100%;
    margin-bottom: 5px;
    padding: 4px 20px 4px 4px;
    cursor: pointer;
}

.become-member-section .content textarea {
    border-radius: 5px;
    border-style: none;
    width: 100%;
    margin-bottom: 5px;
    padding: 3px 10px;
}

.become-member-section .content-holder .pagination button {
    background: #ffa500;
    margin: 10px;
}

.become-member-section .content-holder .pagination .btn.next {
    margin: 10px 10px 10px auto;
}

.become-member-section .content-holder .pagination {
    display: flex;
    margin: 0 auto;
    position: absolute;
    top: auto;
    bottom: 0px;
    width: 100%;
    padding: 0 150px;
    justify-content: space-between;
}

.become-member-section .content-holder .pagination .page-number {
    width: 100%;
    text-align: center;
    vertical-align: bottom;
    margin-top: 30px;
    font-weight: 600;
    color: #253C81;
}

.become-member-section .membership-type .label-question-tag label {
    display: inline-block;
    position: relative;
}

.become-member-section .membership-type .label-question-tag i {
    color: #0cb0ef;
}

.become-member-section .company-profile select,
.become-member-section .industry-information select,
.become-member-section .online-payment select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 2;
    background: transparent;
    margin-bottom: 0;
}

.become-member-section .company-profile .add-arrow:after,
.become-member-section .industry-information .add-arrow:after,
.become-member-section .online-payment .add-arrow:after {
    content: url(https://iyba.org/assets/img/double-arrow.png);
    position: absolute;
    right: 7px;
    top: 7px;
    z-index: 1;
}

.become-member-section .company-profile .add-arrow,
.become-member-section .industry-information .add-arrow,
.become-member-section .online-payment .add-arrow {
    position: relative;
    background-color: white;
    border-radius: 5px;
    margin-bottom: 5px;
}

.become-member-section .membership-type .tooltip-section {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.become-member-section .membership-type .tooltip-section .tooltip-text {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 3px 0;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    bottom: -150px;
    right: -35px;
    font-size: 14px;
    font-weight: 200;
}

.become-member-section .membership-type .tooltip-section:hover .tooltip-text {
    visibility: visible;
}

.about-iyba-events-section .about-event-content .host-content {
    color: #253C81;
    font-weight: bold;
    text-align: center;
    padding: 40px 0 0;
}

.about-iyba-events-section .about-event-content {
    padding: 0 0 40px 0;
}

.about-iyba-events-section .about-event-content .btn-event {
    background-color: #DBA555;
    color: #fff;
    margin: 10px 20px;
}

.about-iyba-events-section .about-event-content .seminar-content {
    margin: 30px 0;
    color: #253C81;
}

.about-iyba-events-section .about-event-content .seminar-content h4 {
    color: #253C81;
    font-weight: bold;
    text-transform: uppercase;
}

.about-iyba-events-section .about-event-content p,
.about-iyba-events-section .about-event-content li {
    color: rgba(0, 77, 137, 0.6);
}

.about-iyba-events-section .about-event-content img {
    width: 100%;
    height: auto;
}

.about-iyba-events-section .about-event-content .seminar-content ul {
    padding-left: 0;
}

.about-iyba-events-section .about-event-content .seminar-content h5 {
    font-weight: bold;
}

.about-iyba-events-section .about-event-content .seminar-content .florida-content,
.about-iyba-events-section .about-event-content .seminar-content .monaco-content {
    float: left;
    margin: 20px 0;
    width: 50%;
}

.about-iyba-events-section .about-event-content .broker-content {
    display: inline-block;
    width: 100%;
    color: #253C81;
}

.about-iyba-events-section .about-event-content .broker-content h4 {
    font-weight: bold;
}

.about-iyba-events-section .about-event-content .broker-content em {
    width: 70%;
    display: flex;
    margin: 0 auto;
}

.become-member-section .membership-type .radio {
    position: relative;
}

.become-member-section .membership-type input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.become-member-section .membership-type .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    border: 2px solid #333;
    border-radius: 50%;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.become-member-section .membership-type .radio:hover input~.checkmark {
    background-color: #fff;
}

.become-member-section .membership-type .radio input:checked~.checkmark {
    border: 2px solid #333;
}

.become-member-section .membership-type .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.become-member-section .membership-type .radio input:checked~.checkmark:after {
    display: block;
}

.become-member-section .membership-type .radio .checkmark:after {
    top: 2px;
    left: 2px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #333;
}

.become-member-section .content .membership-type input {
    z-index: 2;
    width: 100%;
    height: 100%;
}

.become-member-section .content .membership-type label span {
    display: inline-block;
}

.become-member-section .content .membership-type span.label-text {
    padding-top: 18px;
    font-size: 14px;
}

.become-member-section .content .agreement .custom-control.custom-checkbox {
    padding-left: 0;
}

.become-member-section .content .agreement label.custom-control-label {
    position: relative;
    padding-bottom: 1.5rem;
}

.become-member-section .content .agreement label.custom-control-label::before,
.become-member-section .content .agreement label.custom-control-label::after {
    right: 0;
    left: 0;
    bottom: 0;
    top: auto;
    margin: 0 auto;
}

.become-member-section .content .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #253C81;
}

.become-member-section .content .custom-checkbox .custom-control-label::before {
    border: 2px solid #253C81;
}

.loading-div {
    text-align: center;
    font-size: 20px;
    color: #DBA555;
}

.event-section .checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float: inherit;
    margin-left: 10px;
}

.event-section .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.event-section .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: #eee;
    border: 1px solid;
    border-radius: 6px;
}

.event-section .checkbox-container:hover input~.checkmark {
    background-color: #ccc;
}

.event-section .checkbox-container input:checked~.checkmark {
    background-color: #154d89;
}

.event-section .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.event-section .checkbox-container input:checked~.checkmark:after {
    display: block;
}

.event-section .checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.show-full-img {
    display: block;
    width: 100%;
    height: 600px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
}

.grid-post-1 .show-full-img {
    height: 350px;
}

.grid-post-2 .show-full-img,
.grid-post-3 .show-full-img {
    height: 247px;
}


/********************************** membership-rates page style **********************************/
.d-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.py {
    padding: 15px 25px;
}

.mb-0 {
    margin-bottom: 0;
}

.membership-page {
    padding: 20px 0;
}

.section-boxes {
    padding: 20px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.selection-list {
    margin: 0 -35px;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.selection-list>div {
    width: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.selection-contentbox {
    padding: 20px 35px;
}

.selectionbox-inner {
    border: 1px solid #ceced0;
    background: #ecedef;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    min-height: 255px;
    width: 100%;
}

.select-title {
    background: #f9f9f9;
}

.selectbox-title {
    font-weight: 600;
}

.text-small {
    font-size: 1.4rem;
    line-height: normal;
}

.selectbox-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 100%;
}

.selectbox-content p {
    color: #646567;
    margin-bottom: 15px;
}

.selectbox-content p:last-child {
    margin-bottom: 0;
}

.block-btn-bottom {
    padding: 40px 0;
}

.btn.c-btn-lg {
    padding: 10px 15px;
    background: #DBA555;
    color: #ffffff;
    font-size: 1rem;
    line-height: normal;
}

.btn.c-btn-lg:hover {
    background: #253C81;
}

.c-btn-icon {
    max-width: 22px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: top;
}

html, body {
    font-family: sans-serif !important;
    /* Fallback to sans-serif if Lora-Variable is not available */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'OliviarSans-Regular', sans-serif !important;
    /* Use Outfit-Medium for all headers */
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: sans-serif !important;
    font-size: inherit;
    line-height: inherit;
}
