'Titillium'/* FONTS BEGIN */

@font-face {
    font-family: kiona;
    src: url(Kiona-Regular.ttf);
}

@font-face {
  font-family: 'Josefin Sans';
  src: url('/css/webfonts/JosefinSans-Regular.ttf') format('truetype')
}
@font-face {
  font-family: 'Titillium';
  src: url('/css/webfonts/Titillium-Regular.otf');
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('/css/webfonts/SourceSansPro-Regular.otf');
}
/* FONTS END */


/* GLOBAL STYLES BEGIN */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium';
}
.ignore {
  color: unset;
}
* a {
  color: #007983;
  cursor: pointer;
  outline: 0;
}

.necunos_title {
    font-family: 'Josefin Sans';
}
.n_title {
  font-family: 'Josefin Sans';
  color: #007983;
}

.necunos_font {
    font-family: 'Josefin Sans';
}

.white {
  color: #f0f0f1;
}


/* GLOBAL STYLES END */


/* HTML BODY */

html {
    overflow-x: hidden;
}

#news_html {
    overflow: auto;
    background-color: #f0f0f1;
}

body {
    overflow-x: hidden;
    background-color: #f0f0f1;
}

#news_body {
    overflow: auto;
    background-color: #f0f0f1;
}

/* HTML BODY ENDS */


/* MAIN CONTAINER BEGINS*/

#main_container {
    display: block;
    position: relative;
    height: auto;
    width: 100%;
    transition: all 1s linear;
}

/* MAIN CONTAINER ENDS */


/* TOP MENU BEGINS */

#master_menu {
    position: fixed;
    top: -0.7rem;
    left: 1%;
    height: auto;
    z-index: 100;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

@media (max-width: 800px) {
    #master_menu {
        visibility: visible;
    }
}

#master_menu_lines {
    font-size: 3rem;
    color: #f0f0f1;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    font-weight: 400;
}
.necunos_title {
    font-family: 'Josefin Sans';
}

.side_menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99;
    left: 0;
    background-color: rgb(32, 32, 32);
    overflow-x: hidden;
    overflow: hidden;
    display: none;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 5rem;
    padding-bottom: 5rem;
    padding-top: 5rem;
    opacity: 0;
    transition: all 0.15s ease-in-out;

}

@media (max-width: 800px) {
    .side_menu {
        padding-top: 10rem;
    }
}

@media (max-height: 400px) {
    .side_menu {
        padding-top: 20rem;
    }
}

.side_menu_hover {
    transition: all 0.3s linear;
}

.side_menu_hover:hover {
    color: #f0f0f1;
    cursor: pointer;
    text-shadow: 0px 0px 1px #f0f0f1;
}

.side_menu_h1 {
    color: rgb(200, 200, 200);
    font-family: 'Titillium';
    font-weight: 400;
    font-size: 1.5rem;
}

.side_menu_p {
    color: rgb(200, 200, 200);
    font-family: 'Titillium';
    font-weight: 200;
    font-size: 1.1rem;
    padding: 0.5rem;
}


.section_necuno_title {
    cursor: pointer;
}

/* TOP MENU ENDS */


/* LANDING BEGINS */

#home_entry1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: rgb(255, 255, 255);
    /*  some browsers do not support linear gradient */
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.1)), url("/images/banner-front.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
    opacity: 0.9;
}

#home_entry1::after {
  background-color: black;
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
}

@media (max-width: 800px) {
    #home_entry1 {
    }
}

#home_entry_overlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50vw;
    min-width: 20rem;
    min-height: 50vh;
    margin: auto;
    height: auto;
    background-color: rgba(255, 255, 255, 0.0);
    padding: 2rem;
}


@media (max-width: 800px) {
    #home_entry_overlay {
        width: 100vw;
        min-height: 100vh;
    }
}

@media (max-height: 400px) {
    #home_entry_overlay {
        padding-top: 10rem;
    }
}

#home_entry_overlay_h1 {
    font-size: 5rem;
    text-align: center;
    color: #f0f0f1;
    font-family: 'Titillium';
    font-weight: 300;
    letter-spacing: 0.1rem;

}

@media (max-width: 800px) {
    #home_entry_overlay_h1 {
        font-size: 4rem;
    }
}

#home_entry_overlay_h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #f0f0f1;
    letter-spacing: 0.2rem;
    font-family: 'Titillium';
    font-weight: 300;

}

@media (max-width: 800px) {
    #home_entry_overlay_h2 {
        font-size: 1.5rem;
    }
}

.home_entry_overlay_p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: center;
    color: #f0f0f1;
    letter-spacing: 0.1rem;
    font-family: 'Titillium';
    font-weight: 300;

}

@media (max-width: 800px) {
    .home_entry_overlay_p {
        color: #272d29;
    }
}

/*landing services*/

#home_services {
    display: flex;
    height: auto;
    width: 100%;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;
    background-color: #272d29;
}

.h_services {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin: 3rem 5rem 3rem 5rem;
    height: auto;
    width: 20%;
    border-bottom: 2px solid #007983;
    position: relative;
}


@media (max-width: 800px) {
    .h_services {
        margin-top: 5rem;
        width: 100%;
    }
}

.home_services_p {
    margin: 1rem;
    color: #f0f0f1;
    font-family: 'Titillium';
    font-size: 1.5rem;
    line-height: 2.2rem;
    text-align: left;
}

#h_services_title {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 0 0 100%;
    margin-top: 2rem;
    margin-bottom: 0rem;
    padding: 1rem;
    font-size: 4rem;
    letter-spacing: 0.3rem;
    font-family: 'Titillium';
    font-weight: 300;
}

@media (max-width: 800px) {
    #services_title {
        font-size: 3.5rem;
    }
}

/* BUSINESS HOW */

#businessHow {
    display: flex;
    height: auto;
    min-height: 200px;
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: white;
}

.home_how_diagram {
    margin: 4rem;
    width: 50%;
    position: relative;
    text-align: center;
}

.home_how_diagram img {
  max-width:100%;
  max-height:100%;
}

@media (max-width: 800px) {
    .home_how_diagram {
        width: 80%;
        margin: 0;
    }
}

/* BUSINESS TO PRODUCTS */

#businessToProducts {
    height: auto;
    height: 800px;
    width: 100%;
    position: relative;
}

#businessToProducts::before {
  background-image: url(/images/hero-images/NC_1_holding_banner_1920.png);
  background-size: cover;
  background-position: top center;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.5;
}

/*#businessToProducts::after {
  background-color: #007983;
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}*/

#hero-title {
  position: absolute;
  top: 10%;
  margin: 0;
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.3rem;
  font-family: 'Titillium';
  font-weight: 300;
}

.hero-text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.hero-text p {
  position: absolute;
  top: 25%;
}

.home_solutionbutton {
  display: table;
  width: 200px;
  height: 40px;
  position: absolute;
  bottom: 20%;
  border: 2px solid #007983;
  text-align: center;
}

.home_solutionbutton:hover {
  background-color: #007983;
}
.home_solutionbutton:hover > a {
  color: #f0f0f1;

}

.home_solutionbutton a {
  display: table-cell;
  vertical-align: middle;
  color: #007983;
}

@media (max-width: 800px) {
    #businessToProducts {
        height: 500px;
    }
    #businessToProducts::before {
        background-position: bottom center;
    }

}

/* BUSINESS FOR WHO */

#businessForWho {
  display: flex;
  height: auto;
  min-height: 800px;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  /*background-color: #007983;*/
}

@media (max-width: 800px) {
    #businessForWho {
        flex-direction: column;
    }
}

#businessForWho::before {
  background-image: url(/images/hero-images/city_1500.png);
  background-size: cover;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.8;
}


.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 50px 0;
    height: auto;
    width: 100%;
    position: relative;
}

.hero-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: #fff;
  min-width: 50%;
  max-width: 50%;
  min-height: 400px;
  position: relative;
}

.hero-icons::before {
  content: "";
  display: block;
  position: absolute;
  margin-left: 0;
  width: 100%;
  min-height: 100%;
  z-index: -1;
  opacity: 0.8;
  background-color: #f0f0f1;
}


.sidebyside {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 50px 50px;
    height: auto;
    width: 30%;
    position: relative;
}

.smaller {
  width: 22%;
}
.larger {
  width: 48%;
}

.icon-image {
  margin: 0.5rem;
  width: 50px;
}
.icon-image img {
  width: 100%;
  max-width: 100%;
}

.home_forwho_header {
  margin: auto 1rem;
  padding: 20px 0;
  font-size: 2.5rem;
  line-height: 2.2rem;
  text-align: left;
  color: #f0f0f1;
}

.home_forwho_p {
  margin: auto 1rem;
  padding: 20px 0;
  font-size: 1.5rem;
  line-height: 2.2rem;
  text-align: left;
  color: #272d29;
}

@media (max-width: 1300px) {
    .hero-icons {
        max-width: 80%;
        margin-bottom: 4rem;
    }
    .sidebyside {
       margin: 0;
    }
    .smaller {
      width: 30%;
      height: 75%;
    }
    .icon-image {
        width: 30px;
    }
}


/* BUSINESS QUESTION */


#businessQuestion {
  display: table;
  height: 1000px;
  width: 100%;
  background-color: #1B2321;
  background-image: url("/images/world-map.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hover-header {
  margin: auto;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #f0f0f1;
  font-size: 3rem;
}

.home_question_p {
  font-size: 2.5rem;
  line-height: 2.2rem;
  color: #f0f0f1;
}

@media (max-width: 800px) {
    #businessQuestion {
        height: 500px;
        background-position: center;
    }
    .hover-header {
      font-size: 1.2rem;
    }
}

/*landing*/

#landing_section {
    background-image: url("/images/banner_necuno.png");
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    padding-right: 10rem;

}

@media (max-width: 1200px) {
    #landing_section {
        background-image: none;
        align-items: center;
        padding-right: 0;
    }
}

/* ABOUT US OVERLAY ON MAIN PAGE (PART OF LANDING) */
#about_us {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
    padding: 20%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 100;
}

@media (max-width: 800px) {
    #about_us {
        width: 100%;
        height: 100%;

    }
}

#close_about_us {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-weight: 600;
    font-size: 2rem;
    cursor: pointer;
    color: #f0f0f1;
}

#about_us_h2 {
    font-family: 'Titillium' !important;
    font-size: 4rem;
    font-weight: 300;
    padding: 2rem;
    border-bottom: 1px solid rgb(255, 255, 255);
    width: 100%;
    color: rgb(235, 235, 235);
}

@media (max-width: 700px) {
    #about_us_h2 {
        padding-left: 0;
        font-size: 3rem;
        padding-top: 40rem;

    }
}

#about_us_h5 {
    font-family: 'Titillium' !important;
    font-size: 1.3rem;
    font-weight: 200;
    padding-top: 2rem;
    padding-bottom: 2rem;
    color: rgb(235, 235, 235);
}

@media (max-width: 700px) {
    #about_us_h5 {
        font-size: 1.3rem;
        padding-top: 3rem;

    }
}

/* ABOUT US ENDS */

#landing_meta {
    margin-bottom: 1rem;
}

#landing_h1 {
    font-size: 4rem;
    font-family: 'Titillium';
    font-weight: 300;
    letter-spacing: 0.1rem;
}

@media (max-width: 800px) {
    #landing_h1 {
        text-align: center;
        font-size: 3rem;
    }
    #landing_h2 {
        text-align: center;
        font-size: 3rem;
    }
}

#landing_h2 {
    font-size: 2rem;
    font-family: 'Titillium';
    font-weight: 200;
    font-style: italic;
}

#landing_selection {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 7rem;
    width: 35rem;
    text-align: left;
    margin-top: 5rem;
    border-top: 1px solid #272d29;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 800px) {
    #landing_selection {
        width: 24rem;
        margin-top: 5rem;
        height: 5rem;
    }
}

#landing_bus,
#landing_com,
#landing_contact,
#landing_shop {
    padding: 1.5rem;
    background-color: transparent;
    color: #272d29;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    width: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 800px) {

    #landing_bus,
    #landing_com,
    #landing_contact,
    #landing_shop {
        padding: 1rem;
        width: 6rem;
    }
}

#landing_com:hover,
#landing_bus:hover,
#landing_contact:hover,
#landing_shop:hover {
    color: #f0f0f1;
    background-color: rgb(46, 46, 46);
    margin-top: 2rem;
}

.landing_select_h1 {
    font-weight: 200;
    font-family: 'Titillium';
    background-image: linear-gradient(#007983, #007983), linear-gradient(transparent, transparent);
    background-size: 0 1px, auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    transition: background-size 0.5s ease-in-out;
    font-size: 1.4rem;
    text-align: center;
}

@media (max-width: 800px) {
    .landing_select_h1 {
        font-size: 1rem;
    }
}
@media (max-width: 500px) {
    .landing_select_h1 {
        font-size: 0.8rem;
    }
    #landing_bus,
    #landing_com,
    #landing_contact,
    #landing_shop {
        padding: 1rem 2.5rem 1rem 2.5rem;
        width: 4.5rem;
    }
}

#landing_bus:hover .landing_select_h1 {
    background-size: 99% 1px, auto;
}


#landing_com:hover .landing_select_h1 {
    background-size: 99% 1px, auto;
}


#landing_contact:hover .landing_select_h1 {
    background-size: 99% 1px, auto;
}


#landing_shop:hover .landing_select_h1 {
    background-size: 99% 1px, auto;
}

#contact_us {
    position: fixed;
    left: -4rem;
    bottom: 40%;
    width: auto;
    height: 3rem;
    padding: 1rem;
    background-color: rgb(30, 30, 30);
    z-index: 10;
    transform: rotate(270deg);
    cursor: pointer;
    transition: all 1s ease-in-out;
    justify-content: center;
    align-items: center;
    display: flex;
}

@media (max-width: 900px) {
    #contact_us {
        visibility: hidden;
    }
}

#contact_us_a {
    text-decoration: none;
    color: #f0f0f1;
}

#social_icons_side_id {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    transform: all 0.5s ease-in-out;
}

a {
    text-decoration: none;
}

.fa {
    font-size: 20px !important;
    padding: 0.5rem;
    padding-bottom: 0.5rem;
    color: #f0f0f1;
    transform: rotate(90deg);
    transition: all 0.3s ease-in-out;
}
.fab {
    font-size: 20px !important;
    padding: 0.5rem;
    padding-bottom: 0.5rem;
    color: #f0f0f1;
    transform: rotate(90deg);
    transition: all 0.3s ease-in-out;
}
.far {
    font-size: 20px !important;
    padding: 0.5rem;
    padding-bottom: 0.5rem;
    color: #f0f0f1;
    transform: rotate(90deg);
    transition: all 0.3s ease-in-out;
}
.fas {
  font-size: 20px !important;
  padding: 0.5rem;
  padding-bottom: 0.5rem;
  color: #f0f0f1;
  transition: all 0.3s ease-in-out;
}

.fa_normal {
    transform: none;
    cursor: pointer;
}

.fa-envelope:hover {
    color: rgb(226, 172, 24) !important;
}

.fa-twitter:hover {
    color: cyan !important;
}

.fa-linkedin:hover {
    color: rgb(108, 198, 253) !important;
}

.fa-rss:hover {
    color: rgb(192, 66, 27) !important;
}

.fa-download {
    color: rgb(69, 188, 209);
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.fa-satellite-dish {
  color: #272d29;
}

/* LANDING ENDS */


/* COMMUNITY SECTION AS A WHOLE BEGINS */

/* COMMUNITY ENTRY */
#community_page {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #272d29, #071d23);
}

/* IF YOU WANT A BACKGROUND IMAGE FOR COMMUNITY LIKE BUSINESS HAS, ADD IT IN THE EMPTY URL */
#community_entry {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    text-align: center;
    background-image: url("");
    background-position: center center;
    background-size: cover;
}

/* COMMUNITY TECHNICAL */
#community_technical {
    width: 70%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    margin: auto;
    padding-bottom: 5rem;
    padding-top: 1rem;
    color: #f0f0f1;
    font-family: 'Titillium';
    position: relative;
}

#community_buy_now {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 100%;
    margin: 2rem;
    height: auto;
    flex-direction: column;
    text-align: center;
}

.buy_now_btn {
   font-size: 1.4rem;
   padding: 0.6em 1.5em;
}

#community_tech_section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    overflow: auto;
    overflow-x: hidden;
}

#community_tech_image {
    flex: 0 0 49.9%;
    min-width: 20rem;
    height: 100%;
    min-height: 38rem;
    background-image: url("/images/NC_1/Necuno_front.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    /*background-color: #f0f0f1;*/
}

@media (max-width: 1000px) {
    #community_tech_image {
        min-height: 20rem;
        min-width: 18rem;
        flex: 0 0 100%;
        margin-top: 3rem;

    }
}


#technical_text {
    font-family: 'Titillium';
    font-weight: 300;
    width: 100%;
    height: auto;
    min-height: 38rem;
    flex: 0 0 49.9%;
}

@media (max-width: 1000px) {
    #technical_text {
        flex: 0 0 100%;

    }
}

#pdf_link {
    color: #272d29;
    background-color: #f0f0f1;
    font-family: 'Titillium';
    font-weight: 400;
    margin-top: 3rem;
    border: 1px solid #272d29;
    padding: 1rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

#pdf_link:hover {
    color: #f0f0f1;
    background-color: transparent;
    border: 1px solid #f0f0f1;
}

#community_entry_h1 {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 0.1rem;
    color: #f0f0f1;
    padding: 1rem;
    font-family: 'Titillium';
    font-weight: 200;
}

@media (max-width: 800px) {
    #community_entry_h1 {
        font-size: 2.5rem;
    }
}

.community_entry_h2 {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.1rem;
    color: #f0f0f1;
    padding: 1rem;
    font-family: 'Titillium';
    font-weight: 200;
}

@media (max-width: 800px) {
    .community_entry_h2 {
        font-size: 1.8rem;

    }
}

.community_technical_h2 {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.1rem;
    color: #f0f0f1;
    padding-top: 1rem;
    font-family: 'Titillium';
    font-weight: 200;
    z-index: 5;
    word-wrap: break-word;
}

@media (max-width: 800px) {
    .community_technical_h2 {
        font-size: 1.8rem;

    }
}

.community_technical_h3 {
    color: #f0f0f1;
    font-size: 2rem;
    font-weight: 200;
    font-family: 'Titillium';
    font-weight: 400;
    padding-top: 4rem;
}

@media (max-width: 800px) {
    .community_technical_h3 {
        font-size: 1.5rem;

    }
}

.community_entry_h3 {
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 0.1rem;
    color: #f0f0f1;
    padding: 0.5rem;
    font-family: 'Titillium';
    font-weight: 200;
}

@media (max-width: 800px) {
    .community_entry_h3 {
        font-size: 1.3rem;

    }
}

.community_technical_h4 {
    font-family: 'Titillium';
    font-weight: 400;
    border: none;
    padding-top: 2rem;
}

.community_technical_p {
    color: #f0f0f1;
    font-family: 'Titillium';
    font-weight: 300;
    font-size: 1.2rem;
    z-index: 5;
}

/* COMMUNITY IMAGE SLIDESHOW BEGINS */

.prev_img_slide, .next_img_slide {
    cursor: pointer;
    position: absolute;
    width: auto;
    padding: 16px;
    font-weight: bold;
    font-size: 2rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next_img_slide {
    right: 0;
    border-radius: 3px 0 0 3px;
}

#community_image_slide {
    display: flex;
    flex: 0 0 49.9%;
    min-width: 20rem;
    align-items: center;
}

.image_slide_container {
    display: flex;
    align-items: center;
    width: 100%;
}

.image_slides {
    width: 100%;
    justify-content: center;
    align-items: center;
    max-height: 40vh;
}

.image_slides img {
    display: inline-block;
    width: 100%;
    opacity: 0;
    vertical-align: middle;
    object-fit: scale-down;
    height:auto;
    max-height: 40vh;
}

@supports (object-fit: cover) {
    .image_slides img{
        opacity: 1;
    }
}

@media (max-width: 1000px) {
    #community_image_slide {
        min-height: 20rem;
        min-width: 18rem;
        flex: 0 0 100%;
        margin-top: 3rem;

    }
}


/* COMMUNITY IMAGE SLIDESHOW ENDS */

/* COMMUNITY OS BEGINS */
#communityOs {
    grid-area: comOs;
    height: auto;
    width: 70%;
    background-color: transparent;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1rem;
    margin: auto;
    padding-top: -1rem;
    margin-bottom: 5rem;
    grid-template-areas:
        "os1 os2 os5"
        "os4 os3 os6";
}

@media (max-width: 800px) {
    #communityOs {
        margin-bottom: 5rem;
        grid-template-columns: 0.5fr;
        grid-template-areas:
            "os1 os2"
            "os3 os4"
            "os5 os6";
        width: 80%;
    }
}

@media (max-width: 500px) {
    #communityOs {
        margin-bottom: 5rem;
        grid-template-columns: 1fr;
        grid-template-areas:
            "os1"
            "os2"
            "os3"
            "os4"
            "os5"
            "os6";
        width: 80%;
    }
}

#os_title_text {
    grid-area: osTitle;
    margin-top: -4.5rem;
    padding-bottom: 2rem;
}

@media (max-width: 800px) {
    #os_title_text {
        margin-top: 0;
    }
}

#community_os {
    width: 70%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    margin: auto;
    padding-bottom: 5rem;
    padding-top: 1rem;
    color: #f0f0f1;
    font-family: 'Titillium';
    position: relative;
}

#communityOne {
    grid-area: os1;
    background-color: transparent;
    background-image: url("/images/maemo_leste_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    /*outline: 1px solid #272d29;
    outline-offset: -2rem;*/
}

#communityTwo {
    grid-area: os2;
    background-color: transparent;
    background-image: url("/images/luneos_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    /*outline: 1px solid #272d29;
    outline-offset: -2rem;*/
}

#communityThree {
    grid-area: os3;
    background-color: transparent;
    background-image: url("/images/postmarketos_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    /*outline: 1px solid #272d29;
    outline-offset: -2rem;*/
}

#communityFour {
    grid-area: os4;
    background-color: transparent;
    position: relative;
    transition: all 0.3s ease-in-out;
    background-image: url("/images/plasmamobile_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    /*outline: 1px solid #272d29;
    outline-offset: -2rem;*/
}

#communityFive {
    grid-area: os5;
    background-color: transparent;
    background-image: url("/images/replicant_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    /*outline: 1px solid #272d29;
    outline-offset: -2rem;*/
}

#communitySix {
    grid-area: os6;
    background-color: transparent;
    background-image: url("/images/nemo_logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    /*outline: 1px solid #272d29;
    outline-offset: -2rem;*/
}

.communityOsLayer {
    position: absolute;
    background-color: rgb(29, 29, 29);
    bottom: 0;
    width: 100%;
    min-height: 100%;
    height: auto;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    text-align: center;
    visibility: hidden;
    flex-direction: column;
    outline: 1px solid #f0f0f1;
}

#communityOne:hover .communityOsLayer {
    opacity: 0.9;
    visibility: visible;
}

#communityTwo:hover .communityOsLayer {
    opacity: 0.9;
    visibility: visible;
}

#communityThree:hover .communityOsLayer {
    opacity: 0.9;
    visibility: visible;
}

#communityFour:hover .communityOsLayer {
    opacity: 0.9;
    visibility: visible;
}

#communityFive:hover .communityOsLayer {
    opacity: 0.9;
    visibility: visible;
}

#communitySix:hover .communityOsLayer {
    opacity: 0.9;
    visibility: visible;
}

.com_item {
    height: 100%;
    min-height: 15rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding: 2rem;
    margin: auto;
    background-color: transparent;
    position: relative;
    font-size: 2rem;
    color: rgb(32, 32, 32);
    transition: all 0.5s ease-in-out;
}
@media (max-width: 800px) {
    .com_item {
        min-height: 10rem;
    }
}

.com_item:hover {
    transform: scale(1.01);
    cursor: pointer;
    opacity: 1;
}

/* COMMUNITY OS ENDS */


/* COMMUNITY BLOG BEGINS */
#community_blog_holder {
    height: auto;
    width: 100%;
    padding-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.color_layer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
    padding: 2rem;
    flex-grow: 1;

}

.blog_background {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    background-image: linear-gradient(0, 0, 0, 0.5);
}

.community_blog_h2 {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.1rem;
    color: #f0f0f1;
    font-family: 'Titillium';
    font-weight: 200;
    text-align: center;
}

#communityBlog {
    display: flex;
    min-height: 70vh;
    height: auto;
    width: 70%;
    margin: auto;
    background-color: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #f0f0f1;
    cursor: pointer;
    margin-bottom: 5rem;
    position: relative;

}

@media (max-width: 800px) {
    #communityBlog {
        width: 80%;
    }
}



#blog_title {
    display: block;
    text-align: center;
}

.blog_h1 {
    color: rgb(255, 255, 255);
    font-size: 5rem;
    padding-bottom: 5rem;
    font-weight: 400;
}

@media (max-width: 800px) {
    .blog_h1 {
        font-size: 2.5rem;
    }
}


/* SLIDESHOW BEGINS */
.slides {
    margin: auto;
    width: 100%;
    min-height: 70vh;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    position: relative;
}

#slide1 {
    z-index: 2;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#slide2 {
    z-index: 1;
    background-color: rgb(39, 39, 39);
    opacity: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

#slide3 {
    z-index: 1;
    background-color: rgb(48, 48, 48);
    opacity: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: auto;

}

#slideButton {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    z-index: 50;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#slideButtonOne {
    color: grey;
}

#slideButtonTwo {
    color: #f0f0f1;
}

#slideButtonThree {
    color: #f0f0f1;

}

.blogDate {
    color: rgb(255, 255, 255);
    position: absolute;
    top: 0rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    padding: 0.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* COMMUNITY BLOG ENDS */


/* COMMUNITY SECTION AS A WHOLE ENDS*/



/* BUSINESS SECTION AS A WHOLE BEGINS */

#business_container {
    width: 100%;
    height: auto;
}

/* TOP FIXED MENU */

.news_menu {
    position: fixed;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: 0;
    height: 2.5rem;
    width: 100%;
    z-index: 90;
    background-color: rgba(0, 0, 0, 0.8);

}

.bus_menu {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    height: 2.5rem;
    width: 100%;
    z-index: 90;
    background-color: rgba(0, 0, 0, 0.8);

}


.bus_menu_item {
    margin-right: 2rem;
    background-image: linear-gradient(#007983, #007983), linear-gradient(transparent, transparent);
    background-size: 0 1px, auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    padding-bottom: 0.1rem;
}

@media (max-width: 1000px) {
    .bus_menu_item {
        display: none;
    }
}


.bus_menu_item:hover {
    background-size: 99% 1px, auto;
}

.bus_menu_item_title {
    color: #f0f0f1;
    flex: 0 1 auto;
    position: absolute;
    left: 5rem;
    transform: translateX(-50%);
    font-size: 1rem;
    width: 13rem;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .bus_menu_item_title {
        left: 50%;
    }
}

.menu_item_p {
    font-family: 'Titillium';
    line-height: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    font-size: 0.8rem;
    color: #f0f0f1;
}

.menu_item_global {
    background: none;
}

.global_menu {
    border: 1px solid #f0f0f1;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    transition: all 0.3s ease-in-out;
}

.global_menu:hover {
    background-color: #f0f0f1;
    color: #272d29;
}


/* BUSINESS ENTRY BEGINS */

#businessEntry {
    height: auto;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.7s ease-in-out;
}

#b_entry_img {
    flex: 0 0 49.9%;
    min-width: 20rem;
    min-height: 50vh;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    max-height: 70vh;
    justify-content: center;
}

@media (max-width: 800px) {
    #b_entry_img {
        display: none;
    }
}

#b_entry_img img{
    width: auto;
    height: 100%;
    max-height: 50vh;
}

#b_entry_overlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    top: 10%;
    width: 100%;
    min-width: 20rem;
    min-height: 50vh;
    margin: auto;
    height: auto;
    background-color: rgba(255, 255, 255, 0.0);
    padding: 2rem;
    margin: 2rem;
    max-height: 60vh;
}

@media (max-width: 800px) {
    #b_entry_overlay {
        width: 100vw;
    }
}

@media (max-height: 450px) {
    #b_entry_overlay {
        padding: 0 2rem;
    }
}

#b_overlay_holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 0 0 49.9%;
    width: 50vw;
    min-width: 20rem;
    flex-wrap: wrap;
}

@media (max-width: 1000px) {
    #b_overlay_holder {
        position: absolute;
    }
}

#b_entry1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 60vh;
    background-color: rgb(255, 255, 255);
    /*  some browsers do not support linear gradient */
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.1)), url("/images/BG.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
    max-height: 70vh;
}

@media (max-width: 800px) {
    #b_entry1 {
        background-image: none;
    }
}

hr {
    width: 50%;
    margin: 2rem auto;
    border: 0;
    height: 0.1rem;
    background-image: linear-gradient(to right, rgba(31, 180, 185, 0), #007983, rgba(31, 180, 185, 0));
}

#b_entry_overlay_h1 {
    font-size: 5rem;
    text-align: center;
    color: #f0f0f1;
    font-family: 'Titillium';
    font-weight: 300;
    letter-spacing: 0.1rem;
    margin: 0;
}

@media (max-width: 800px) {
    #b_entry_overlay_h1 {
        color: #272d29;
        font-size: 4rem;
    }
}

@media (max-width: 400px) {
    #b_entry_overlay_h1 {
        font-size: 3rem;
    }
}

#b_entry_overlay_h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #f0f0f1;
    letter-spacing: 0.2rem;
    font-family: 'Titillium';
    font-weight: 300;

}

@media (max-width: 800px) {
    #b_entry_overlay_h2 {
        color: #272d29;
        font-size: 1.5rem;
    }
}

@media (max-height: 370px) {
    #b_overlay_holder hr{
        margin: 1rem auto;
    }
}

.b_entry_overlay_p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: center;
    color: #f0f0f1;
    letter-spacing: 0.1rem;
    font-family: 'Titillium';
    font-weight: 300;

}

@media (max-width: 800px) {
    .b_entry_overlay_p {
        color: #272d29;
    }
}

/* BUSINESS ENTRY ENDS */


/* BUSINESS CUSTOMERS BEGINS */

#businessCustomers {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.customer_module {
    display: flex;
    width: auto;
    max-width: 40rem;
    min-height: 15rem;
    height: auto;
    margin: 0.5rem;
    background-color: rgb(245, 245, 245);
    outline: 1px solid rgb(78, 78, 78);
    outline-offset: -1rem;
}

@media (max-width: 600px) {
    .customer_module {
        flex-direction: column;
    }
}

.customer_module_image {
    width: 25rem;
    height: 15rem;
}

@media (max-width: 600px) {
    .customer_module_image {
        width: 100%;
    }
}


.customers_icon {
    margin-left: 50px;
    width: 5rem;
    height: auto;
}

.customer_module_text {
    width: 100%;
    height: auto;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 600px) {
    .customer_module_text {
        text-align: center;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 2rem;
    }
}

#customers_title {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 0 0 100%;
    margin-bottom: 5rem;
    padding: 1rem;
    font-size: 4rem;
    letter-spacing: 0.3rem;
    font-family: 'Titillium';
    font-weight: 300;
    display: block;
}

@media (max-width: 800px) {
    #customers_title {
        font-size: 3.5rem;
    }
}

/* these change the background image of the leftmost part of the customers module */
#customer_module_image1 {
    background-image: url("/images/icons/hospital.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

/* these change the background image of the leftmost part of the customers module */
#customer_module_image2 {
    background-image: url("/images/icons/bank.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

/* these change the background image of the leftmost part of the customers module */
#customer_module_image3 {
    background-image: url("/images/icons/briefcase.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

/* these change the background image of the leftmost part of the customers module */
#customer_module_image4 {
    background-image: url("/images/icons/newspaper.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

/* these change the background image of the leftmost part of the customers module */
#customer_module_image5 {
    background-image: url("/images/icons/city-hall.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

/* these change the background image of the leftmost part of the customers module */
#customer_module_image6 {
    background-image: url("/images/icons/electric-car.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.customers_p {
    width: 100%;
    margin-top: 1rem;
    text-align: left;
    font-family: 'Titillium';
    font-size: 1.1rem;
    font-weight: 300;
}

/* BUSINESS CUSTOMERS ENDS */

/* BUSINESS SERVICES BEGINS */

#businessServices {
  display: flex;
  height: auto;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.e_products_module_container {
    display: flex;
    flex: 0 1 95%;
    flex-wrap: wrap;
    justify-content: center;
}

.e_products_module {
    padding: 2rem;
    width: 400px;
    height: auto;
    box-shadow: inset 0 0 0 2rem #f0f0f1;
}

.e_products_bg {
    background: #7fa4a7;
    margin-bottom: 1.5rem;
    min-height: 20rem;
}

#products_h3 {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 0 0 100%;
    color: #f0f0f1;
    margin-top: 0rem;
    white-space: normal;
    padding: 1rem 0.5rem 1rem 0.5rem;
}

#products_h4 {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 0 0 100%;
    color: #f0f0f1;
    margin-top: 0rem;
    white-space: normal;
    padding: 1.5rem 2rem;
    border-top: 1px solid #f0f0f1;
}

.get_in_touch_btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 0.5rem;
}

.e_products_figure {
    border-top: 2px solid #007983;
    position: relative;
    padding: 1rem 0.2rem 1rem 1rem;
    margin: 1rem 0;
}

.e_products_module ul {
    list-style: circle;
    font-size: 0.8rem;
    padding: 0 1rem;

}
.e_products_module li {
    color: #272d29;
    cursor: auto;
}

#products_meta {
    font-weight: 700;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 0 0 100%;
    margin: 0rem;
    white-space: normal;
    padding: 0.2rem;
}

.products_h1 {
    margin: 0rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 0 0 100%;
    padding: 0 1rem;
    font-size: 2rem;
    letter-spacing: 0.1rem;
    font-family: 'Titillium';
    font-weight: 300;
    color: #f0f0f1;
}

#products_h1 {
    margin: 0rem 0rem 2rem 0rem;
    font-size:1.7rem;
    padding: 0rem;
    letter-spacing: 0.1rem;
    color: #f0f0f1;

}

.services_img {
    position: absolute;
    top: -3rem;
    left: 50%;
    outline: 0.5rem solid #f0f0f1;
    transform: translateX(-50%);
    height: 100px;
    width: 100px;
    background-color: #f0f0f1;
}

.services {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin: 2rem;
    height: auto;
    width: 30%;
    background-color: #f0f0f1;
    border-top: 2px solid #272d29;
    position: relative;
}


@media (max-width: 800px) {
    .services {
        margin-top: 5rem;
        width: 100%;
    }
}

.services_title {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 0 0 100%;
    margin-bottom: 0rem;
    padding: 1rem;
    font-size: 4rem;
    letter-spacing: 0.3rem;
    font-family: 'Titillium';
    font-weight: 300;
}

@media (max-width: 800px) {
    .services_title {
        font-size: 3.5rem;
    }
}

#services_title_meta {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 0 0 100%;
    padding: 1rem;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    font-family: 'Titillium';
    font-weight: 300;
}

#services_title_meta1 {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 0 0 100%;
    padding: 0 1rem;
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
    margin-bottom: 3rem;
    font-family: 'Titillium';
    font-weight: 300;
}

@media (max-width: 800px) {
    #services_title_meta {
        font-size: 1.4rem;
    }
    #services_title_meta1 {
        font-size: 2rem;
    }
}

.services_overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 80%;
    min-width: 20rem;
    min-height: 50vh;
    margin: auto;
    height: auto;
    padding: 2rem;
    margin: 2rem;
    flex-wrap: wrap;
}

.services_overlay_holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 0 0 49.9%;
    width: 50vw;
    min-width: 20rem;
    flex-wrap: wrap;
}

.services_overlay_img {
    flex: 0 0 49.9%;
    min-width: 20rem;
    min-height: 50vh;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    max-height: 70vh;
    justify-content: center;
}

.services_overlay_img img{
    width: auto;
    height: 100%;
    max-height: 50vh;
    padding: 3rem;
}

@media (max-height: 650px) {
    .services_overlay_img img {
        max-height: 70vh;
    }
}

.services_holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    flex: 0 0 33%;
    min-width: 20rem;
    justify-content: center;
}

.services_holder img{
    width: auto;
    height: 100%;
    max-height: 80vh;
    padding: 3rem;
}

.spec_row {
    flex: 0 0 100%;
    display: flex;
    border-top: 1px solid #007983;
    padding: 0.2rem;
}

.spec_header {
    flex: 0 0 49.9%;
}
.spec_column {
    flex: 0 0 49.9%;
}
.specs_span {
    color: #7fa4a7;
}

.service_h1 {
    background-color: #007983;
    color: #f0f0f1;
    font-size: 1.6rem;
    padding: 0.5rem;
    margin: 0;
    width: 20rem;
    text-align: center;
    font-family: 'Titillium';
    font-weight: 400;
}

.service_h3 {
    margin-top: 7rem;
    font-weight: 300;
    font-size: 1rem;
    white-space: nowrap;
    padding-bottom: 1rem;

}

.contact_sales {
    margin-top: 2rem;
}

.b_services_p {
    margin-bottom: 2rem;
    text-align: center;
    color: #272d29;
    font-family: 'Titillium';
    text-align: left;
    line-height: 1.5rem;
    text-align: center;
    padding: 0 2rem;
}

/* BUSINESS SERVICES ENDS */

/* BUSINESS MOBILE BEGINS */

#business_mobile {
    height: auto;
    width: 100%;
    margin: auto;
    position: relative;
    padding-top: 1rem;
}

@media (max-width: 800px) {
    #business_mobile {}
}


#business_mobile_content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    min-height: 20rem;
}

#mobile_content_left {
    height: auto;
    min-height: 20rem;
    width: 25%;
    min-width: 20rem;
    background-color: #f0f0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

#mobile_content_center {
    height: auto;
    margin: 0 -200px;
    min-height: 30rem;
    width: 50%;
    min-width: 30rem;
    background-image: url("/images/NC_1/NC_1_FLOATING.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;

}

#mobile_content_right {
    height: auto;
    min-height: 20rem;
    width: 25%;
    min-width: 20rem;
    background-color: #f0f0f1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;

}

@media (max-width: 1200px) {

    #mobile_content_left,
    #mobile_content_right {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        min-height: 10rem;
    }
    #mobile_content_right {
        align-items: flex-end;
    }

    #mobile_content_center {
        width: 100%;
    }
}

.mobile_facts {
    font-family: 'Titillium';
    font-weight: 400;
    font-size: 1.2rem;
    padding: 0.5rem;
    padding-left: 5rem;
}

@media (max-width: 1000px) {
    .mobile-facts {
        padding-left: 0;
    }
}

.mobile_li {
    color: #272d29;
    pointer-events: none;
    list-style: none;

}

/* BUSINESS MOBILE ENDS */


/* BUSINESS NEWS BEGINS */

#businessNewsHeader {
    text-align: center;
    background-color: #272d29;
}

.b_news_h2 {
  padding: 4rem 0 1rem 0;
  color: #f0f0f1;
  font-family: 'Titillium';
  font-size: 3rem;
  line-height: 2.2rem;
  font-weight: normal;
}

#businessNews {
    height: auto;
    width: 100%;
    display: grid;
    grid-auto-columns: 2fr 1fr;
    grid-template-areas:
        "news1 news2"
        "news1 news3";
}

@media (max-width: 900px) {
    #businessNews {
        grid-template-areas:
            "news1"
            "news2"
            "news3";
    }
}

.news_a {
  height: 100%;
  width: 100%;
}
#businessNews1 {
    grid-area: news1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.2)), url("");
    background-size: cover;
    background-position: center center;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
}

#businessNews1:hover {
    opacity: 0.8;
    cursor: pointer;
}

#businessNews2:hover {
    opacity: 0.8;
    cursor: pointer;
}

#businessNews3:hover {
    opacity: 0.8;
    cursor: pointer;
}

.news_h1 {
    color: #f0f0f1;
    font-size: 3rem;
    font-family: 'Titillium';
    font-weight: 300;
}

.news_h5 {
    color: #f0f0f1;

}

.news_p {
    color: #f0f0f1;
    font-family: 'Titillium';
    line-height: 1.2rem;
    font-weight: 300;
    margin: 2rem;
}

#businessNews2 {
    grid-area: news2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.2)), url("");
    background-size: cover;
    background-position: center center;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
}

#businessNews3 {
    grid-area: news3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.2)), url("");
    background-size: cover;
    background-position: center center;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
}

.news_background {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    z-index: -1;
}

.business_news_module {
    min-height: 20rem;
    position: relative;
}

#news_title {
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 0 0 100%;
    margin-bottom: 1rem;
    padding: 1rem;
    padding-top: 3rem;
    font-size: 4rem;
    letter-spacing: 0.3rem;
    font-family: 'Titillium';
    font-weight: 300;
}

@media (max-width: 800px) {
    #news_title {
        padding-top: 1rem;
        margin-bottom: 0rem;
        font-size: 2rem;
    }
}


/* BUSINESS NEWS ENDS */

/* BUSINESS SECTION AS A WHOLE ENDS */



/* NEWS OVERLAYS BEGIN */

/* NEWS PAGE 1 JUST CHANGE NEXT ONE TO .news2_container FOR EXAMPLE */

.news1_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: auto;
    color: #272d29;
    background-color: rgb(255, 255, 255);
    transition: 0.5s;
}

.news_menu_item_title {
    color: #f0f0f1;
    flex: 0 1 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    width: 15rem;
    text-align: center;
    cursor: pointer;
}

#master_menu_news {
    position: fixed;
    top: -0.7rem;
    left: 1%;
    height: auto;
    z-index: 100;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#master_menu_lines_news {
    font-size: 3rem;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: opacity 0.5s ease-in-out;
    font-weight: 400;
    font-family: calibri;
    display: flex;
}


.side_menu_news {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    background-color: rgb(32, 32, 32);
    overflow-x: hidden;
    overflow: hidden;
    transition: all 0.5s linear;
    display: none;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-left: 5rem;
    padding-bottom: 5rem;
    padding-top: 5rem;
    opacity: 0;
}

/* NEWS PAGE 1 ENDS */

.news_title_area {
    background-color: rgb(255, 255, 255);
    width: 80%;
    min-height: 50vh;
    height: auto;
    border-bottom: 1px solid #272d29;
    margin-bottom: 4rem;
    padding-bottom: 1rem;
    margin-top: 5rem;
}

.news_page_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.news_page_date {
    display: flex;
    align-items: flex-end;
    color: #007983;
}

.news_page_img {
    width: 100%;
    margin: auto;
    min-height: 50vh;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    max-height: 70vh;
    justify-content: center;
    text-align: center;
}
.news_page_img img {
    width: auto;
    height: 100%;
    max-height: 50vh;
}

@media (max-width: 800px) {
    .news_page_img {
        background-image: none;
    }
}

.newsblog_text_area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    width: 80%;
    min-height: 20rem;
    height: auto;
    margin-bottom: 5rem;
}

.news_text_area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    width: 50%;
    min-height: 20rem;
    height: auto;
    margin-bottom: 5rem;
}
@media (max-width: 800px) {
    .news_text_area {
        width: 80%;
    }
}
.news_text_area img {
    max-width: 100%;
}
.news_text_area p {
  margin: 1px;
  width: 100%;
  text-align: left;
  line-height: 1.4;
  font-size: 1.2rem;
}
.news_text_area li {
  color: #272d29;
  margin: 5px 0 5px 0;
  cursor: text;
  transition: all 0.3s ease-in-out;
}

.news_text_area li:hover {
  color: #272d29;
}
.news_footer_area {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(30, 30, 30);
    width: 100%;
    height: 20rem;
}

#newsFooter {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    background-color: rgb(30, 30, 30);
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
}

.news_page_meta_title {
    width: 100%;
    justify-content: center;
    align-items: center;
}

.news_page_h1 {
    text-align: left;
    width: 100%;
    height: auto;
    font-size: 4rem;
    letter-spacing: 0.1rem;
    font-weight: 300;
    font-family: 'Titillium';
}

@media (max-width: 800px) {
    .news_page_h1 {
        font-size: 3rem;
        width: 100%;
    }
}

/*.news_page_h2,
.news_page_p {
    cursor: pointer;
}*/

.news_page_h2 {
    text-align: left;
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    width: 100%;
    margin-bottom: 1rem;
    font-weight: 300;
    font-family: 'Titillium';
}

.news_text_area h1 {
    text-align: left;
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    width: 100%;
    margin-bottom: 1rem;
    font-weight: 300;
    font-family: 'Titillium';
}

.news_page_date {
    margin-top: 1rem;
}

.news_page_date_p {
    width: 100%;
    letter-spacing: 0.1rem;
    margin-top: 1rem;
    text-align: left;
    font-family: 'Titillium';

}

.newsblog_page_p {
    font-family: 'Titillium';
    line-height: 1.5rem;
    width: 100%;
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: left;
    font-weight: 300;
    text-overflow: ellipsis;
    flex: 1;
    overflow: hidden;
}

.news_page_p {
    font-family: 'Titillium';
    line-height: 1.5rem;
    width: 100%;
    font-size: 2rem;
    margin-top: 1rem;
    text-align: left;
    font-weight: 300;
}


/* NEWS OVERLAYS END */


/* DISCLAIMER BEGINS */

#disclaimer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
}

@media (max-width: 600px) {
    #disclaimer {
        margin: 1rem auto;
    }
}

.disc_p {
    color: #f0f0f1;
    font-size: 0.7rem;
    font-family: 'Titillium';
    font-weight: 300;
}

/* DISCLAIMER ENDS */


/* QA PAGE BEGINS USES THE SAME CODE AS NEWS PAGE MOSTLY */

#qa_container {
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: auto;
    width: 100%;
    color: #272d29;
    background-color: rgb(255, 255, 255);
    transition: 0.5s;
}

.qa_page_img {
    grid-area: news_img;
    width: 100%;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
}

@media (max-width: 800px) {
    .qa_page_img {
        background-image: none;
    }
}

/* QA PAGE ENDS */


/* news & blog selection section uses same layout as news and qa mostly */

#newsblog_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: auto;
    width: 100%;
    color: #272d29;
    background-color: rgb(255, 255, 255);
    transition: 0.5s;
}

.blognews_img {
    float: left;
    width: 30%;
    height: 30%;
}

.newsblog_page_img {
    grid-area: news_img;
    width: 100%;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
}

@media (max-width: 800px) {
    .newsblog_page_img {
        background-image: none;
    }
}

/* news&blog news section and modules, just add new modules in html for new section, try not to touch this */
.newsblog_news {
    width: 100%;
    height: auto;
    min-height: 20rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}


.newsblog_news_module {
    display: flex;
    flex: 0 0 20%;
    width: 20rem;
    min-height: 20rem;
    max-height: 30rem;
    margin: 1rem;
    flex-direction: column;
    background-color: rgb(240, 240, 240);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.newsblog_news_module:hover {
    opacity: 0.9;
    transform: scale(1.01);
}

.newsblog_news_module_image {
    height: 12rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.newsblog_module_img {
    display: inline-block;
    width: 100%;
    object-fit: cover;
    flex-shrink: 0;
    min-height: 100%
}

.newsblog_news_module_text {
    min-height: 18rem;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
}

.newsblog_module_metatitle {
    font-family: 'Titillium';
    font-weight: 400;
    font-size: 1.4rem;
    width: 100%;

}

.news ul {
    list-style: unset;
}

.news_link_a {
    color: #272d29;
    width: 100%;
}

.newsblog_h2 {
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
    font-weight: 300;
    font-family: 'Titillium';
    margin-top: 3rem;
}

/* NEWS AND BLOG ENDS */


/* SHOP BEGINS */

#shop_container {
    width: 100%;
    background-color: #f0f0f1;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#shop_header {
    width: 80%;
    height: auto;
    min-height: 33.33vh;
    background-color: #f0f0f1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#shop_entry_h1 {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 0.1rem;
    color: #010607;
    padding: 1rem;
    font-family: 'Titillium';
    font-weight: 200;
}

#shop_content {
    width: 80%;
    height: auto;
    margin-bottom: 50px;
    min-height: 33.33vh;
    background-color: #f0f0f1;
    justify-content: center;
    align-items: center;
}
.trafficlights {
  margin: 0 0 50px;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle {
  margin: 0 20px 0 20px;
	border-radius: 50%;
	width: 20px;
	height: 20px;
}
.green {
  background: green;
  box-shadow:
        0 0 2px 2px green;  /* inner white */
}
.yellow {
  background: #eaea02;
  box-shadow:
        0 0 2px 2px #eaea02;
}
.red {
  background: red;
  box-shadow:
        0 0 2px 2px red;
}
#shop_footer {
    width: 80%;
    height: auto;
    min-height: 33.33vh;
    background-color: yellow;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SHOP ENDS */

/* 404 */

.container_404 {
    height: 500px;
    margin: 250px auto 0 auto;
    max-width: 600px;
    text-align: center;
  }
.container_404 h1 {
    margin: 30px 0;
    font-size: 4em;
    line-height: 1;
    letter-spacing: -1px;
  }


/* 404 */

/* CONTACT PAGE */

#contactUsPage {
    display: flex;
    width: 100%;
    height: 600px;
    flex-direction: column;
}

.contact_container {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.contact_flex {
    justify-content: center;
    flex-direction: column;
    flex: 0 0 25%;
}

.h2_contact_title {
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 0 0 100%;
  margin-top: 5rem;
  margin-bottom: 0rem;
  padding: 1rem;
  font-size: 4rem;
  letter-spacing: 0.3rem;
  font-family: 'Titillium';
  font-weight: 300;
}

.h3_contact_title {
  text-align: center;

}

.contact_address {
    font-family: 'Titillium';
    font-weight: 300;
    letter-spacing: 0.1rem;
    color: #26302A;
    font-size: 0.9rem;
}
@media (max-width: 550px) {
    .contact_address {
        font-size: 0.7rem;
        letter-spacing: 0.05rem;
    }
}
.contact_h1 {
    color: #26302A;
    font-size: 1.2rem;
    padding: 1rem;
    margin: auto;
    text-align: center;
    font-family: 'Titillium';
    font-weight: 400;
    letter-spacing: 0.1rem;
}

.contact_links {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #26302A;
  padding: 1rem;
  flex-wrap: wrap;
}
.contact_links a .fa {
  color: #26302A;
}
.contact_links a .fab {
  color: #26302A;
}

.contact_links a .far {
  color: #26302A;
}


/* CONTACT FOOTER */
#contactfooter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* MASTER CONTACT BEGINS */

#masterContact {
    height: auto;
    width: 100%;
    background-color: rgb(30, 30, 30);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 5rem;
}

#newsContact {
    height: auto;
    width: 100%;
    background-color: rgb(30, 30, 30);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 5rem;
}

.contact_class {

    display: flex;

    flex: 0 0 100%;

    height: auto;

    flex-direction: row;

    text-align: center;

    margin-top: 3rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: space-between
}

.contact_class a{
    font-family: 'Titillium';
    line-height: 1.2rem;
    font-weight: 300;
    color: rgb(228, 228, 228);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.contact_class a:hover {
    color: rgb(185, 185, 185);
}

.contact_class h4:hover {
    background-size: 99% 1px, auto;
}

.contact_class h4{
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(#007983, #007983), linear-gradient(transparent, transparent);
    background-size: 0 1px, auto;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.contact_class2 {
    display: flex;
    flex: 0 0 33%;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0rem;
    min-height: 10rem;
    flex-direction: column;
    text-align: center;
}

@media (max-width: 600px) {
    .contact_class2 {
        flex: 0 1 100%;
        margin: 2rem;

    }
    .contact_class {
        flex-direction: column;
    }
    .contact_class a{
        padding-right: 0rem;
    }
    .contact_class h4{
        padding-right: 0rem;
        padding-top: 0.3rem;
}
}
.footer_menu {
    display: flex;
    width: 70%;
}


ul {
    list-style: none;
    font-size: 1rem;
    color: rgb(228, 228, 228);
}

li {
    font-family: 'Titillium';
    line-height: 1.2rem;
    font-weight: 300;
    color: rgb(228, 228, 228);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

li:hover {
    color: rgb(185, 185, 185);
}

.contact_h4 {
    padding-bottom: 0.3rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: 'Titillium';
    font-weight: 400;
    cursor: auto;
    color: rgb(228, 228, 228);

}

li a:hover {
    color: rgb(185, 185, 185);
}

/* MASTER CONTACT ENDS */


/* MASTER FOOTER BEGINS */

#masterFooter {
    flex-wrap: wrap;
    height: auto;
    width: 100%;
    background-color: rgb(30, 30, 30);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
}
button {
  background-color: #007983;
  border: 1px solid #007983;
  color: #f0f0f1;
  padding: 0.5em 1.2em;
  font-family:'Titillium';
  font-weight: 300;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.15s;
}
button:hover{
  color: #007983;
  background-color: #f0f0f1;
  cursor:pointer;
  border: 1px solid #007983;
}

a.button {
  background-color: #007983;
  border: 1px solid #007983;
  color: #f0f0f1;
  padding: 0.5em 1.2em;
  font-family:'Titillium';
  font-weight: 300;
  text-align: center;
  text-decoration: none;
  display: table;
  transition: all 0.15s;
}
a.button:hover{
  color: #007983;
  background-color: #f0f0f1;
  cursor:pointer;
  border: 1px solid #007983;
}

.footer_container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(30, 30, 30);
    width: 70%;
    flex-wrap: wrap;
    margin-top: 1rem;
}

@media (max-width: 700px) {
    .footer_container {
        margin-top: 0.5rem;
    }
}

.footer_address {
    font-family: 'Titillium';
    font-weight: 300;
    letter-spacing: 0.1rem;
    color: #f0f0f1;
    font-size: 0.9rem;
}
@media (max-width: 550px) {
    .footer_address {
        font-size: 0.7rem;
        letter-spacing: 0.05rem;
    }
}

.footer_h1 {
    color: #f0f0f1;
    font-size: 0.9rem;
    padding: 1rem;
    margin: auto;
    text-align: center;
    font-family: 'Titillium';
    font-weight: 400;
    letter-spacing: 0.1rem;
}
.footer_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 0 0 33%;
}
@media (max-width: 600px) {
    .footer_flex {
        flex: 0 0 100%;
    }
}

.footer_links {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f0f0f1;
    padding: 1rem;
    flex-wrap: wrap;
}


.footer_img {
    display: block;
    width: 50px;
    height: 50px;
    margin-left: 1rem;

}

.footer_item {
    margin: 1.5rem;
    margin-bottom: 2rem;

}

#email_us {
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    font-family: 'Titillium';
    font-weight: 300;
    color: #f0f0f1;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#email_us:hover {
    color: rgb(185, 185, 185);
}

@media (max-width: 600px) {
    #email_us {
        font-size: 0.75rem;
        letter-spacing: 0.05rem;
        padding: 0.45rem;
        margin-top: 0.5rem;
    }
}

#terms,
#sales,
#privacy {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
}

#privacy_layer {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

#terms_layer {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

#sales_layer {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

#terms:hover,
#sales:hover,
#privacy:hover {
    color: rgb(185, 185, 185);
}

/* MASTER FOOTER ENDS */
