/*

/*------------------------------------*\
    General
\*------------------------------------*/


/* -- typography -- */

.font-lgr {
    font-size: 16px;
}

body {
    font-family: 'Varela Round', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    color: #868F9B;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 20px;
    color: #10161A;
}

h1 {
    font-size: 54px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

a {
    color: #1A1A1A;
    text-decoration: none;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
    opacity: 0.8;
    color: #1A1A1A;
}

.main-color {
    color: #1A1A1A;
}

.white-text {
    color: #FFF;
}

.grey-text {
    color: #FFF;
}


.home-content h1 { margin-bottom: 10px; }
.tagline { font-size: 20px; font-weight: normal; }

::-moz-selection {
    background-color: #1A1A1A;
    color: #FFF;
}

::selection {
    background-color: #1A1A1A;
    color: #FFF;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none
}

/* -- section  -- */

.section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 20px;
}

.sm-padding {
    padding-top: 30px;
    padding-bottom: 30px;
}
.logo_container {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
}
.logo_container .content-logo {
    color: #ffffff;
}
.logo_container .strapline_text {
    color: #ffffff;
}
.strapline_text {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}
.new-home-page {
    background-color: #192136;
    /*background-color: #ffffff;*/
}
.crossfade {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  animation: imageAnimation 24s linear infinite;
}

.bg-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slide1 {
  animation-delay: 0s;
}
.slide2 {
  animation-delay: 6s;
}
.slide3 {
  animation-delay: 12s;
}
.slide4 {
  animation-delay: 18s;
}

@keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  8% {
    animation-timing-function: ease-out;
    opacity: 1;
  }
  17% {
    opacity: 1
  }
  25% {
    opacity: 0
  }
  100% {
    opacity: 0
  }
}

@media screen and (min-width: 768px) {

    .section {
        padding-top: 100px;
        padding-bottom: 24px;
    }

}

@media screen and (min-width: 992px) {

    .section {
        padding-top: 120px;
        padding-bottom: 24px;
    }

    .sm-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

}


/* --  background section  -- */

.bg-grey {
    background-color: #FAFAFA;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.bg-dark {
    background-color: #1C1D21;
}

.bg-light {
    background-color: #fff;
    color: #10161A;
}


/* --  background image section  -- */

.bg-img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
}

.bg-img .overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .8;
    background: #1C1D21;
}

/* --  section header  -- */

.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-header .title {
    text-transform: capitalize;
}

.title:after {
    content:"";
    display:block;
    height:4px;
    width:40px;
    background-color: #1A1A1A;
    margin-top: 20px;
}

.text-center .title:after {
    margin: 20px auto 0px;
}

/*===================================
 ==            DNA Form            ==
 ===================================*/

.dna-form {
    position: relative;
}


/*====================================
 ==            DNA Input            ==
 ====================================*/

.dna-input-container {
    position: relative;
}


/*------------------------------------*\
    Material Lite Input
\*------------------------------------*/

.mdl-textfield {
    width: 100%;
    padding: 19px 0;
}

.mdl-textfield .mdl-textfield__input {
    height: 40px;
    width: 100%;
    border: none;
    background: #F4F4F4;
    color: #354052;
    padding: 0px 10px;
}

.mdl-textfield textarea.mdl-textfield__input {
    min-height: 160px;
    padding: 10px 10px;
    resize: vertical;
}

.dna-input-container.error .mdl-textfield .mdl-textfield__label {
    color: #FC3259;
}

.dna-input-container.error .mdl-textfield .mdl-textfield__label:after {
    background-color: #FC3259;
}

textarea {
    padding: 10px 10px;
    min-height: 140px;
    resize: vertical;
}

.mdl-textfield label {
    top: 26px;
    margin-bottom: 0; /* bootstrap override */
}

.mdl-textfield label {
    left: 10px;
    font-weight: normal;
}

.mdl-textfield.is-focused .mdl-textfield__label, .mdl-textfield.is-dirty .mdl-textfield__label {
    top: 0;
    left: 0;
    color: #354052;
}

.mdl-textfield .mdl-textfield__label:after {
    bottom: 19px;
    background-color: #1A1A1A;
}

.dna-input-container .error-label {
    display: none;
    position: absolute;
    bottom: -1px;
    left: 0;
    color: #FC3259;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1px;
}

.dna-input-container.error .error-label {
    display: block;
}


/* --  Buttons  -- */

.main-btn, .white-btn, .outline-btn {
    display: inline-block;
    padding: 10px 35px;
    margin: 3px;
    border: 2px solid transparent;
    border-radius: 3px;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.main-btn {
    background: #1A1A1A;
    color: #FFF;
}

.white-btn {
    background: #FFF;
    color: #10161A !important;
}

.outline-btn {
    background: transparent;
    color: #1A1A1A !important;
    border-color: #1A1A1A;
}

.main-btn:hover, .white-btn:hover, .outline-btn:hover {
    opacity: 0.8;
}


/*------------------------------------*\
    Logo
\*------------------------------------*/

.contact-enquiry-header {
    margin-bottom: 81px;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand a {
    display: none;
    color: #fff;
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    line-height: 40px;
}

.navbar-brand.static a {
    display: flex;
    align-items: center;
    color: black;
    margin-left: 15px;
}

 .navbar-brand.static a img {
    margin-left: 6px;
} 

@media screen and (min-width: 280px) {
    .navbar-brand a {
        font-size: 18px;
    }

    .navbar-brand a img {
        height: 14px;
    }
}

@media screen and (min-width: 769px) {

    .navbar-brand a {
        font-size: 40px;
    }

    .navbar-brand a img {
        display: inline;
        height: 30px;
    }

}

.content-logo {
    color: #ffffff;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    line-height: 100px;
}

.navbar-brand .logo, .navbar-brand .logo-alt {
    max-height: 34px;
    display: block;
    margin: 8px 0 0 8px;
}

#nav:not(.nav-transparent):not(.fixed-nav) .navbar-brand .logo-alt {
    display: none;
}

#nav.nav-transparent:not(.fixed-nav) .navbar-brand .logo {
    display: none;
}

#nav.fixed-nav .navbar-brand .logo-alt {
    display: none;
}

@media screen and (max-width: 821px) {
    .navbar-brand a {
        font-size: 20px;
    }
    .home-content .text .content-logo {
        font-size: 70px !important;
    }
    .flexhero {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    #nav.nav-transparent .navbar-brand .logo-alt {
        display: none !important;
    }
    .investors .col-md-3 {
        height: auto !important;
    }
    #nav.nav-transparent .navbar-brand .logo {
        display: block !important;
    }
    .home-content .text .content-logo {
        font-size: 48px !important;
    }
    .strapline_text {
        font-size: 14px;
    }
    .strapline_text span {
        letter-spacing: 0.4px;
    }

    #nav .main-nav { margin-top: 8px; }

    #nav.fixed-nav .main-nav { margin-top: 13px; }
    .contact-enquiry-header {
        margin-bottom: 20px;
    }
    .hide_on_mob {
        display: none;
    }

    .about-page-flexible .free_content {
        font-size: 13px;
    }

    .about-page-flexible .free_content p {
        font-size: 13px;
    }

    .about-page-flexible .free_content .t-j {
        text-align: justify;
    }

    .about-page-flexible .free_content .board img {
        max-width: 600px;
    }

    .about-page-flexible .free_content .investors img {
        max-width: 600px;
        padding: 0 12.5%;
        margin: 20px auto 0 auto;
    }

    .about-page-flexible .free_content .about-us {
        padding: 0 12.5%;
    }

    .about-page-flexible .container {
        padding-right: 25px;
        padding-left: 25px;
    }
}

@media screen and (max-width: 550px) {
    .about-page-flexible .free_content .board img {
        width: 100%;
    }

    /* .about-page-flexible .free_content .investors img {
        max-width: 200px;
    } */
}

@media screen and (max-width: 320px) {
    .home-content .text .content-logo {
        font-size: 35px !important;
    }
    .strapline_text {
        font-size: 11px;
    }
    .navbar-brand a {
        font-size: 16px;
    }
}

/*------------------------------------*\
    Navigation
\*------------------------------------*/

#nav {
    padding: 16px 0px;
    background: #FFF;
    -webkit-transition: 0.2s padding;
    transition: 0.2s padding;
    z-index: 999;
}

#nav.navbar {
    border: none;
    border-radius: 0;
    margin-bottom: 0px;
}

#nav.fixed-nav {
    position: fixed;
    left: 0;
    right: 0;
    padding: 16px 0 0 0;
    background-color: #FFF !important;
    border-bottom: 1px solid #EEE;
}
#nav.fixed-nav .navbar-brand a { color: #000; }
#nav.nav-transparent {
    background: transparent;
}


/* -- default nav -- */

@media screen and (min-width: 768px) {
    .main-nav li {
        padding: 4px 15px;
    }
    .main-nav li a {
        font-size: 16px;
        -webkit-transition: 0.2s color;
        transition: 0.2s color;
    }
    .main-nav>li>a {
        color: #10161A;
        padding: 10px 0px;
    }

    #nav.nav-transparent:not(.fixed-nav) .main-nav>li>a {
        color: #fff;
    }
    .main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
        background: transparent;
        color: #1A1A1A;
    }
    .main-nav>li>a:after {
        content: "";
        display: block;
        background-color: #FFFFFF;
        height: 2px;
        width: 0%;
        -webkit-transition: 0.2s width;
        transition: 0.2s width;
    }

    .fixed-nav .main-nav>li>a:after {
        background-color: #1A1A1A;
    }

    .main-nav>li>a:hover:after, .main-nav>li.active>a:after {
        width: 100%;
    }
    /* dropdown */
    .has-dropdown {
        position: relative;
    }
    .has-dropdown>a:before {
        font-family: 'FontAwesome';
        content: "\f054";
        font-size: 6px;
        margin-left: 6px;
        float: right;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transition: 0.2s transform;
        transition: 0.2s transform;
    }
    .dropdown {
        position: absolute;
        right: -50%;
        top: 0;
        background-color: #1A1A1A;
        width: 200px;
        -webkit-box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
        box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
        -webkit-transform: translateY(15px) translateX(50%);
        -ms-transform: translateY(15px) translateX(50%);
        transform: translateY(15px) translateX(50%);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    .main-nav>.has-dropdown>.dropdown {
        top: 100%;
        right: 50%;
    }
    .main-nav>.has-dropdown>.dropdown .dropdown.dropdown-left {
        right: 150%;
    }
    .dropdown li a {
        display: block;
        color: #FFF;
        border-top: 1px solid rgba(250, 250, 250, 0.1);
        padding: 10px 0px;
    }
    .dropdown li:nth-child(1) a {
        border-top: none;
    }
    .has-dropdown:hover>.dropdown {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px) translateX(50%);
        -ms-transform: translateY(0px) translateX(50%);
        transform: translateY(0px) translateX(50%);
    }
    .has-dropdown:hover>a:before {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .nav-collapse {
        display: none;
    }
}


/* -- mobile nav -- */

@media screen and (max-width: 767px) {
    a {
        color: #000 !important;
    }
 
    #nav.fixed-nav { padding: 8px 8px 12px 8px; }

    .navbar-brand {
        padding: 8px 10px;
    }
    #nav {
        padding: 8px 0px;
    }
    #nav.nav-transparent {
        background: #FFF;
    }
    .main-nav {
        position: fixed;
        right: 0;
        height: calc(100vh - 80px);
        -webkit-box-shadow: 0px 80px 0px 0px #1C1D21;
        box-shadow: 0px 80px 0px 0px #1C1D21;
        max-width: 250px;
        width: 0%;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        margin: 0;
        overflow-y: auto;
        background: #1C1D21;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    #nav.open .main-nav {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        width: 100%;
    }
    .main-nav li {
        border-top: 1px solid rgba(250, 250, 250, 0.1);
    }
    .main-nav li a {
        display: block;
        color: #FFF !important;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    .main-nav>li.active {
        border-left: 6px solid #1A1A1A;
    }
    .main-nav li a:hover, .main-nav li a:focus {
        background-color: #1A1A1A;
        color: #FFF !important;
        opacity: 1;
    }
    .has-dropdown>a:after {
        content: "\f054";
        font-family: 'FontAwesome';
        float: right;
        -webkit-transition: 0.2s -webkit-transform;
        transition: 0.2s -webkit-transform;
        transition: 0.2s transform;
        transition: 0.2s transform, 0.2s -webkit-transform;
    }
    .dropdown {
        opacity: 0;
        visibility: hidden;
        height: 0;
        background: rgba(250, 250, 250, 0.1);
    }
    .dropdown li a {
        padding: 6px 10px;
    }
    .has-dropdown.open-drop>a:after {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .has-dropdown.open-drop>.dropdown {
        opacity: 1;
        visibility: visible;
        height: auto;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
}


/* -- nav btn collapse -- */

.nav-collapse {
    position: relative;
    float: right;
    width: 40px;
    height: 40px;
    margin-top: 5px;
    margin-right: 5px;
    cursor: pointer;
    z-index: 99999;
}

.nav-collapse span {
    display: block;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
}

.nav-collapse span:before, .nav-collapse span:after {
    content: "";
    display: block;
}

.nav-collapse span, .nav-collapse span:before, .nav-collapse span:after {
    height: 4px;
    background: #10161A;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.nav-collapse span:before {
    -webkit-transform: translate(0%, 10px);
    -ms-transform: translate(0%, 10px);
    transform: translate(0%, 10px);
}

.nav-collapse span:after {
    -webkit-transform: translate(0%, -14px);
    -ms-transform: translate(0%, -14px);
    transform: translate(0%, -14px);
}

#nav.open .nav-collapse span {
    background: transparent;
}

#nav.open .nav-collapse span:before {
    -webkit-transform: translateY(0px) rotate(-135deg);
    -ms-transform: translateY(0px) rotate(-135deg);
    transform: translateY(0px) rotate(-135deg);
}

#nav.open .nav-collapse span:after {
    -webkit-transform: translateY(-4px) rotate(135deg);
    -ms-transform: translateY(-4px) rotate(135deg);
    transform: translateY(-4px) rotate(135deg);
}


/*------------------------------------*\
    Header
\*------------------------------------*/

header {
    position: relative;
}

.home-content h1 {
  text-transform: uppercase;
}
.home-content button {
  margin-top: 20px;
}

.header-wrapper h2 {
    display: inline-block;
    margin-bottom: 0px;
}

.header-wrapper .breadcrumb {
    float: right;
    background: transparent;
    margin-bottom: 0px;
}

.header-wrapper .breadcrumb .breadcrumb-item.active {
    color: #868F9B;
}

.breadcrumb>li+li:before {
    color: #868F9B;
}

.home-content .text .content-logo {
    font-size: 25px;
    line-height: 30px;
}

.home-content .text .tagline {
    font-size: 10px;
}

.home-content img {
    height: 38px;
    margin-left: 12px;
}

@media screen and (min-width: 280px) {
    .home-content .text .content-logo {
        font-size: 35px;
        line-height: 40px;
    }

    .home-content .text .tagline {
        font-size: 11px;
    }

    .home-content img {
        height: 28px;
    }
}

@media screen and (max-width: 340px) {
    .strapline_text span {
        letter-spacing: 0.4px;
    }
}


@media screen and (min-width: 340px) {

    .home-content .text .content-logo {
        font-size: 28px;
        line-height: 40px;
    }

    .home-content .text .tagline {
        font-size: 9px;
    }

    .home-content img {
        height: 20px;
    }

}

@media screen and (min-width: 375px) {
    .home-content .text .content-logo {
        font-size: 28px;
        line-height: 40px;
    }

    .home-content .text .tagline {
        font-size: 9px;
    }

    .home-content img {
        height: 20px;
    }
}

@media screen and (max-width: 411px) {
    .strapline_text span {
        letter-spacing: 0.2px;
    }
}

@media screen and (max-width: 340px) {
    .strapline_text span {
        letter-spacing: 0.4px;
    }
}

@media screen and (max-width: 320px) {
    .strapline_text span {
        letter-spacing: 0.2px;
    }
}

@media screen and (max-width: 280px) {
    .strapline_text span {
        letter-spacing: 0.5px;
    }
}

@media screen and (min-width: 411px) {
    .home-content .text .content-logo {
        font-size: 35px;
        line-height: 40px;
    }

    .home-content .text .tagline {
        font-size: 11px;
    }

    .home-content img {
        height: 28px;
    }
}

@media screen and (min-width: 450px) {
    .home-content .text .content-logo {
        font-size: 35px;
        line-height: 40px;
    }

    .home-content .text .tagline {
        font-size: 11px;
    }

    .home-content img {
        height: 28px;
    }
}

@media screen and (min-width: 481px) {

    .home-content .text .content-logo {
        font-size: 35px;
        line-height: 40px;
    }

    .home-content .text .tagline {
        font-size: 11px;
    }

    .home-content img {
        height: 28px;
    }

}

@media screen and (min-width: 568px) and (orientation: landscape) {
    .home-content .text .content-logo {
        font-size: 35px;
        line-height: 40px;
    }

    .home-content .text .tagline {
        font-size: 11px;
    }

    .home-content img {
        height: 28px;
    }
}

@media screen and (min-width: 768px) {
    .home-content .text .content-logo {
        font-size: 70px;
        line-height: 40px;
    }
    .flexhero {
        margin-bottom: 15px;
    }
    .home-content .text .tagline {
        font-size: 11px;
    }

    .home-content img {
        height: 28px;
    }

}

@media screen and (min-width: 812px) and (orientation: landscape) {
    .home-content .text .content-logo {
        font-size: 65px;
        line-height: 64px;
    }

    .home-content .text .tagline {
        font-size: 20px;
    }

    .home-content img {
        height: 44px;
    }
}

@media screen and (min-width: 1024px) {
    .home-content .text .content-logo {
        font-size: 65px;
        line-height: 64px;
    }

    .home-content .text .tagline {
        font-size: 20px;
    }

    .home-content img {
        height: 44px;
    }
}

@media screen and (min-width: 1200px) {
    .home-content .text .content-logo {
        font-size: 65px;
        line-height: 64px;
    }

    .home-content .text .tagline {
        font-size: 20px;
    }

    .home-content img {
        height: 44px;
    }
}

/*------------------------------------*\
    Contact
\*------------------------------------*/

#contact.section {
    margin-bottom: 120px;
}

.contact {
    margin: 0 0 16px 0;
    text-align: center;
}

.contact i {
    font-size: 36px;
    color: #1A1A1A;
    margin-bottom: 20px;
}

#contact a .contact p {
    color: #868F9B;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

#contact a:hover .contact p {
    color: inherit;
}

.contact-enquiry-column {
    margin-top: 16px;
}

.contact-enquiry-container .contact-enquiry-header {
    text-align: center;
}

.contact-enquiry-container .contact-enquiry-header i {
    margin-bottom: 20px;
    font-size: 36px;
    color: #1A1A1A;
}

.enquiry-form .main-btn {
    display: block;
    width: 50%;
    margin: auto;
    opacity: 1.0;
}

.enquiry-form .main-btn[disabled] {
    opacity: 0.5;
    -webkit-transition: 0.2s opacitybackground-color;
    transition: 0.2s opacity;
}

.enquiry-form .success-message {
    display:  none;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 2px;
    padding: 10px;
    margin-bottom: 20px;
}

.enquiry-form .success-message i {
    position: relative;
    left: 10px;
    padding: 3px;
    cursor: pointer;
}

@media screen and (min-width: 768px) {

    .contact-enquiry-column {
        margin-top: 0;
    }

}

/*------------------------------------*\
    Footer
\*------------------------------------*/

#footer {
    position: relative;
    padding: 10px 0;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo>a>img {
    max-height: 80px;
}

.footer-follow {
    text-align: center;
}

.footer-follow li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 13px;
}

.footer-follow li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
  background-color: #666666;
  color:#FFF;
}

.footer-copyright p,
.footer-address p {
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

.footer-address {
    margin-bottom: 6px;
}

.footer-address.about {
    padding: 0 12.5%;
}

@media screen and (min-width: 280px) {
    .footer-copyright p,
    .footer-address p {
        font-size: 10px;
        line-height: 16px;
    }

    .footer-copyright p span,
    .footer-address p span {
        display: block;
    }
}

@media screen and (min-width: 1024px) {
    .footer-copyright p,
    .footer-address p {
        font-size: 14px;
        line-height: 18px;
    }

    .footer-copyright p span,
    .footer-address p span {
        display: inline;
    }
}


/*------------------------------------*\
    Responsive
\*------------------------------------*/

.board img, .investors img { width: 116px; height: auto; }
.investors .col-md-3 {
    height: 116px;
}

@media screen and (max-width: 1200px) {
    .board img, .investors img { width: 91px; height: 91px; }
}
@media screen and (max-width: 767px) {
    .board img { width: 100%; height: 100%; padding: 0 12.5%; }
    .investors img { width: 100%; height: auto; max-width: 200px; margin: 0 auto; }
    .board p, .investors p { text-align: center; padding: 0 12.5%; }

    .section-header h2.title {
        font-size:31.5px;
    }

    .main-btn , .default-btn , .outline-btn , .white-btn  {
        padding: 8px 22px;
        font-size:14px;
    }

    .home-content h1 {
        font-size:36px;
    }

    .header-wrapper h2 {
        margin-bottom: 20px;
        text-align: center;
        display: block;
    }

    .header-wrapper .breadcrumb {
        float: none;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
  #portfolio [class*='col-xs'] {
          width:100%;
    }

  #numbers [class*='col-xs'] {
          width:100%;
    }

  .contact-form .input:nth-child(1), .contact-form .input:nth-child(2) {
      width: 100%;
  }
  .contact-form .input:nth-child(2) {
      margin-left: 0px;
  }

  .reply-form form .input, .reply-form form .input {
      width: 100%;
  }
  .reply-form form .input:nth-child(2) {
      margin-left: 0px;
  }

  .content-logo { font-size: 50px; line-height:50px; }


  .blog-author .media .media-left {
      display: block;
      padding-right: 0;
      margin-bottom: 20px;
  }
  .blog-author .media {
      text-align: center;
  }
  .blog-author .media .media-heading .author-social {
      margin-top: 10px;
      float: none;
  }
  .blog-author .media .media-left img {
      margin: auto;
  }

  .blog-comments .media .media {
      margin:0px -15px;
  }
}

#mce-FNAME, #mce-LNAME {
    width: calc(50% - 10px) !important;
    display: inline !important;
}

#mc-embedded-subscribe {
    background-color: #1A1A1A !important;
    height: auto !important;
    padding: 8px 16px !important;
}


/*------------------------------------*\
    Back to top
\*------------------------------------*/

#back-to-top {
    display:none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #1A1A1A;
    border-radius:3px;
    color: #FFF;
    z-index: 9999;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
    cursor: pointer;
}

#back-to-top:after {
    content: "\f106";
    font-family: 'FontAwesome';
}

#back-to-top:hover {
    opacity: 0.8;
}

/*------------------------------------*\
    Preloader
\*------------------------------------*/


#preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    z-index: 99999;
}

.preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.preloader span {
    display: inline-block;
    background-color: #1A1A1A;
    width: 25px;
    height: 25px;
    -webkit-animation: 1s preload ease-in-out infinite;
            animation: preload 1s ease-in-out infinite;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    border-radius:50%;
}

.preloader span:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.preloader span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
}

.preloader span:nth-child(3) {
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
}

.preloader span:nth-child(4) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

@-webkit-keyframes preload {
    0% {
       -webkit-transform:scale(0);
               transform:scale(0);
    }
  50% {
    -webkit-transform:scale(1);
            transform:scale(1);
  }
  100% {
    -webkit-transform:scale(0);
            transform:scale(0);
  }
}

@keyframes preload {
    0% {
       -webkit-transform:scale(0);
               transform:scale(0);
    }
  50% {
    -webkit-transform:scale(1);
            transform:scale(1);
  }
  100% {
    -webkit-transform:scale(0);
            transform:scale(0);
  }
}

/* arcon partners */
.flexbody {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.flexbody .home-wrapper,
.flexbody .content-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexbody.contact-page .main-nav>li>a:after,
.flexbody.about-page .main-nav>li>a:after {
    background-color: #1A1A1A;
}

.flexbody .mt-0 {
    margin-top: 0;
}

.flexbody .mb-0 {
    margin-bottom: 0;
}

/* home page */
.flexhero {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* about and contact page */
.flexbody .content-wrapper {
    align-items: flex-start;
}

/*.flexbody .content-wrapper .container {
    border: 10px solid #1C1D21;
}*/

/*.flexbody .content-wrapper .container .row > div:nth-child(2) {
    border-left: 10px solid #1C1D21;
}*/

/* about page */
.flexbody.about-page .content-wrapper .container .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.flexbody.about-page  .content-wrapper .container .row > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cor_row {
    margin-bottom: 40px;
}
@media screen and (min-width: 280px) {
    .flexbody.about-page  .content-wrapper .container .row > div:nth-child(1) {
        min-height: 200px;
    }
    /*.flexbody .content-wrapper .container .row > div:nth-child(2) {
        border-left: none;
    }*/

    /*.flexbody.about-page  .content-wrapper .container .row > div:nth-child(2) {
        padding-top: 40px;
    }*/
    .flexbody.about-page  .content-wrapper .container .cor_row .row > div:nth-child(2) {
        padding-top: 0;
    }
    
}

@media screen and (min-width: 769px) {
    /*.flexbody .content-wrapper .container .row > div:nth-child(2) {
        border-left: 10px solid #1C1D21;
    }*/
}

@media screen and (min-width: 812px) and (orientation: landscape) {
    .flexbody  .content-wrapper .container {
        margin-bottom: 30px;
    }
}

.flexbody.about-page .content-wrapper .content-bkgd {
    background-image: url('/img/about-background.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* contact page */
.flexbody.contact-page .content-wrapper .container .row > div:nth-child(1) {
    align-items: center;
}

.flexbody.contact-page .content-wrapper .container .row > div {
    padding: 20px;
}

.flexbody.contact-page .content-wrapper .contact.address p {
    color: #1A1A1A;
    margin-top: 16px;
}

@media screen and (min-width: 280px) {
    .flexbody.contact-page .content-wrapper .content-inner {
        width: 100%;
    }
}

.iframe-container {
  overflow: hidden;
  padding-top: 70%;
  position: relative;
}
 
.iframe-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

/* contact page */
.flexbody.contact-page .content-wrapper .container .row > div:nth-child(1) {
    align-items: center;
}

.flexbody.contact-page .content-wrapper .container .row > div {
    padding: 20px;
}

.flexbody.contact-page .content-wrapper .contact.address p {
    color: #1A1A1A;
    margin-top: 16px;
}

@media screen and (min-width: 280px) {
    .flexbody.contact-page .content-wrapper .content-inner {
        width: 100%;
    }
}

.iframe-container {
  overflow: hidden;
  padding-top: 70%;
  position: relative;
}
 
.iframe-container iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

/* Modals */
.login-modal-container {
  padding: 30px;
  max-width: 400px;
  width: 100% !important;
  background-color: #F4F4F4;
  margin: 80px auto 0;
  border-radius: 2px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.login-modal-container h1 {
  text-align: center;
  font-size: 1.5em;
}

.login-modal-container .error {
    text-align: center;
    margin-bottom: 10px;
    display: none;
}

.login-modal-container input[type=submit] {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.login-modal-container input[type=text], 
.login-modal-container input[type=email],
.login-modal-container input[type=password] {
  height: 44px;
  font-size: 16px;
  width: 100%;
  margin-bottom: 10px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.login-modal-container input[type=text]:hover, input[type=password]:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.login-modal {
  text-align: center;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  height: 36px;
  padding: 0 8px;
}

.login-modal-container a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  opacity: 0.6;
  transition: opacity ease 0.5s;
} 

.login-modal-container .forgot-password {
    cursor:  pointer;
}


/*new styles START*/
.images_row {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}

.images_row .img_wrap {
    max-width: 160px;
    height: 160px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}


.images_list {
    margin-top: 16px;
}

.images_list .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.images_list.images_row .item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}

.images_list.images_row .text {
    padding-left: 0;
    text-align: left;
}

.images_list .item:last-child {
    margin-bottom: 0;
}

.images_list .img_wrap {
    max-width: 130px;
    min-width: 130px;
}

.images_list .text {
    width: 100%;
    padding-left: 40px;
}

.images_list ul {
    font-size: 16px;
    margin-top: 6px;
    /*line-height: 1.25;*/
}

.images_list ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 2px;
}

.images_list ul li:before {
    position: absolute;
    left: 6px;
    top: 8px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    content: '';
    background-color: #868f9b;
}

.images_list ul ul li:before {
    background-color: transparent;
    border: solid 1px #868f9b;
}

.board img {
    object-fit: cover;
}

.navbar-brand.static a {
    white-space: nowrap;
}

.free_content p {
    margin-bottom: 1em;
}

.free_content h1.h3 {
    margin-top: 1.5em;
    margin-bottom: 1em;
}

.row.board {
    text-align: initial;
}

@media (max-width:  991px) {
    .images_row .img_wrap {
        height: auto;
        max-width: 160px;
        margin-bottom: 1em;
    }

    .images_row > div:not(:last-child) {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    
    ._mob_text-center {
        text-align: center;
    }

    .row.board {
        text-align: justify;
    }

    .board img {
        max-width: 400px;
        margin: 20px auto 0 auto;
    }

}

@media (max-width: 550px) {
    .images_list .item {
        flex-direction: column;
    }

    .images_list .text {
        padding-left: 0;
        margin-top: 20px;
    }

    .board img {
        width: auto;
        height: auto;
    }

}
/*new styles END*/