body{
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    overflow-x: hidden;
    background-color: black;
}

.navbar{
    display: flex;
    width: 100%;
    background-color: black;
    flex-direction: row;
    position: fixed;
    float: left;
    z-index: 2;
}

.navbar_item{
    padding: calc(4vh - 10px);
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.navbar_item_active{
    background-color: #212121;
    box-shadow: inset 0px 2px 3px black;
    /*border-right: #888888 1px solid;
    border-left: #888888 1px solid;*/
}

.navbar_item:hover {
    background-color: #212121;
    box-shadow: inset 0px 2px 3px black;
}

.navbar_item_content{
    color: #eeeeee;
    display: flex;
    flex-direction: row;
}

.navbar_icon{
	display: flex;
	flex-direction: column;
	justify-content: center;
    margin-left: 6px;
    transition: transform 0.3s;
    transform: rotateZ(0deg);
    transform-origin: center;
}

.navbar_icon_inverted{
    transform: rotateZ(180deg) !important;
}

.navbar_left{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
	align-items: center;
    flex-grow: 1;
    margin-left: 40px;
}

.navbar_right{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-grow: 1;
    margin-right: 40px;
}

.dropdown_menu{
    display: flex;
    flex-direction: column;
    background-color:black;
    /*border: 1px solid #888888;*/
    border-top: none;
    align-items: stretch;
    position: fixed;
    overflow-y: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    z-index: 3;
}

.dropdown_menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}

.dropdown_item{
    padding: 5px 10px 5px 10px;
    /*border-top: 1px solid #dddddd;*/
    min-height: 40px;
    color: #eeeeee;
    background-color:#292929;
    cursor:pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    font-weight: 200;
}

.dropdown_item:hover {
    background-color: #212121;
}

.page_container{
    display: flex;
    flex-direction: column;
    color: #eeeeee;
    align-items: stretch;
    margin-top: 8vh;
    z-index: 1;
    width: 100%;
    background-color: #040404;
    min-height: 100%;
}

.page_division_image{
    display: flex;
    flex-direction: column;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 91vh;
}

.page_background_image_cover{
    display: flex;
    flex-direction: column;
    background-color: #0000008f;
    height: 100%;
    min-height: 91vh;
}

.page_division{
    display: flex;
    flex-direction: column;
    background-color: #0b0b0b;
    min-height: 91vh;
}

.division_content_left_initial{
    display: flex;
    flex-direction: column;
    margin: 6vh 0px 6vh -12vw;
    opacity: 0;
    transition: margin 0.8s ease-out, opacity 0.8s ease-out;
}

.division_content_left_displaced{
    margin-left: 8vw !important;
    opacity: 1 !important;
}

.division_content_right_initial{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 6vh -12vw 6vh 0vw;
    opacity: 0;
    transition: margin 0.8s ease-out, opacity 0.8s ease-out;
}

.division_content_right_displaced{
    margin-right: 8vw !important;
    opacity: 1 !important;
}

.division_content_right_initial > .division_title{
    text-align: right;    
}

.division_content_right_initial > .division_paragraph{
    text-align: right;    
}

.division_title{
    font-size: 12vh;
    margin: 8vh 0 8vh 0;
    width: 64%;
    font-weight: 200;
}

.division_paragraph{
    font-size: 5vh;
    line-height: 7.5vh;
    width: 84%;
    font-weight: 300;
}

.division_horizontal_left{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
}

.division_horizontal_right{
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    justify-content: space-between;
}

.main_icon{
    padding: 5px;
    height: calc(8vh - 10px);
}

.division_text_left{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.division_text_right{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.division_image_left{
    width: 50%;
    margin-right: 10%;
    height: 70vh;
    background-size: contain;
	background-color: white;
    background-repeat: no-repeat;
    background-position: center;
	border-radius: 2em;
    box-shadow: inset 1px -3px 136px 4px rgba(0, 0, 0, 0.33);
}

.division_image_right{
    width: 50%;
    margin-left: 10%;
    height: 70vh;
    background-size: contain;
	background-color: white;
	background-repeat: no-repeat;
    background-position: center;
	border-radius: 2em;
    box-shadow: inset 1px -3px 136px 4px rgba(0, 0, 0, 0.33);
}

.main_icon img{
    height: 100%;
}

.minimalist_button{
    padding: 20px;
    border-radius: 4px;
    background-color: #d2d2d2;
    color: #0b0b0b;
    outline: none;
    transition: outline 0.3s, background-color 0.3s, color 0.3s;
    cursor: pointer;
    border: none;
    font-weight: 500;
    font-size: 2.5vh;
}

.minimalist_button:hover {
    background-color: #0b0b0b;
    color: #d2d2d2;
    outline: 3px solid #d2d2d2;
}

.project_division{
    width: 100%;
    display: flex;
    flex-direction: row;
}

.product_card{
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background-color: #0f0f0f;
    outline: #6a6a6a 1px solid;
    height: 90vh;
    width: calc(50% - 40px);
    min-width: 450px;
    max-width: 900px;
}

.product_image{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-grow: 1;
}

.product_name{
    padding: 20px 0px 20px 0px;
    font-size: 32px;
    font-weight: 200;
}

.product_desc{
    padding: 10px 0px 10px 0px;
    font-size: 20px;
    font-weight: 200;
    min-height: 12vh;
}

.client_division{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 30px 0px 30px 0px;
    background-color: #0f0f0f;
    border-bottom: #4f4f4f 1px solid;
    font-size: 3.5vh;
    font-weight: 200;
    align-items: center;
    height: 8vh;
    cursor: pointer;
    transition: background-color 0.3s;
}

.client_division_title{
    padding: 0px 60px 0px 60px;
}

.client_division:hover{
    background-color: #1f1f1f;
}

.client_division_big{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 30px 0px 30px 0px;
    background-color: #0f0f0f;
    border-bottom: #4f4f4f 1px solid;
    font-size: 6vh;
    font-weight: 200;
    align-items: center;
    height: 8vh;
}

.client_division_image{
    width: 7vh;
    height: 7vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 20px;
}

.footer{
    color: #b5b5b5;
    display: flex;
    width: 100%;
    background-color: black;
    flex-direction: column;
}

.footer_top{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 30px 20px 20px 20px;
    border-bottom: #3f3f3f 1px solid;
}

.footer_col{
    display: flex;
    flex-direction: column;
    width: 30%;
}

.footer_col_title{
    font-weight: 600;
}

.footer_col_content{
    display: flex;
    flex-direction: column;
    font-weight: 200;
    justify-content: space-evenly;
    flex-grow: 1;
}

.footer_col_content > div{
    color: #b5b5b5;
    transition: color 0.3s;
}

.footer_col_content > div:hover{
    color: #ffffff;
}

.footer_bottom{
    display: flex;
    flex-direction: row;
    padding: 20px;
    justify-content: space-between;
}

.footer_bottom_right > i{
    font-size: 20px;
    margin-left: 20px;
    cursor: pointer;
    transition: color 0.3s;
    color: #b5b5b5;
}

.footer_bottom_right > i:hover{
    color: #ffffff;
}

.solution_division{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 30px 0px 30px 0px;
    background-color: #0f0f0f;
    font-weight: 200;
    align-items: center;
    height: 8vh;
}

.solution_division_text{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 30px 0px 30px 0px;
    background-color: #0f0f0f;
    border-bottom: #4f4f4f 1px solid;
    font-weight: 200;
    font-size: 2.5vh;
    line-height: 3.5vh;
    text-align: justify;
}

.carousel_container{
    display: flex;
    flex-direction: row;
    background-color: #0f0f0f;
    align-items: stretch;
    height: 85vh;
    width: 100%;
}

.carousel_item{
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: opacity 0.3s;
    width: 100%;
    height: 85vh;
    opacity: 0;
    z-index: 1;
}

a{
	color: rgba(0, 174, 255, 0.795);
	font-weight: bold;
}

.carousel_item_selected{
    opacity: 1;
}

.carousel_arrow_left{
    display: flex;
    flex-direction: row;
    align-items: center;
    float: left;
    position: relative;
    left: 2vh;
    font-size: 6vh;
    color: #d3d3d37d;
    transition: color 0.3s;
    cursor: pointer;
    z-index: 2;
}

.carousel_arrow_left:hover{
    color: #d3d3d3ad;
}

.carousel_arrow_right{
    display: flex;
    flex-direction: row;
    align-items: center;
    float: left;
    position: relative;
    left: calc(100% - 8vh);
    font-size: 6vh;
    color: #d3d3d37d;
    transition: color 0.3s;
    cursor: pointer;
    z-index: 2;
}

.carousel_arrow_right:hover{
    color: #d3d3d3ad;
}

.solution_division_title{
    font-size: 5.5vh;
    font-weight: 500;
}

.solution_division{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 30px 0px 30px 0px;
    background-color: #0f0f0f;
    font-weight: 200;
    align-items: center;
    height: 8vh;
}

.product_division_title{
    font-size: 5.5vh;
    font-weight: 500;
}

.product_division{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 30px 0px 30px 0px;
    background-color: #0f0f0f;
    font-weight: 200;
    align-items: center;
    height: 8vh;
}

.product_division_text{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 0px 30px 0px;
    background-color: #0f0f0f;
    border-bottom: #4f4f4f 1px solid;
    font-weight: 200;
    font-size: 2.5vh;
    line-height: 3.5vh;
    text-align: justify;
}


/* ====================================== MOBILE STYLES ======================================= */

.mob_navbar{
    display: flex;
    width: 100%;
    background-color: black;
    flex-direction: column;
    position: fixed;
    float: left;
    z-index: 2;
}

.mob_navbar_top{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 9vh;
    width: 100%;
    padding: 10px;
    color: #eeeeee;
    z-index: 3;
}

.mob_navbar_title_logo > img{
    height: 9vh;
    align-self: flex-start;
}
.mob_navbar_title_logo{
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.triple_line{
    height: 3.5vh;
    width: 4.5vh;
    margin-left: 20px;
}

.top{
    background-color: #eeeeee;
    height: 0.5vh;
    width: 4.5vh;
    position: relative;
    float: left;
    transform-origin: center left;
    transition: width 0.3s, transform 0.3s;
}

.mid{
    background-color: #eeeeee;
    height: 0.5vh;
    width: 4.5vh;
    position: relative;
    float: left;
    top: 1vh;
    transition: opacity 0.3s;
    opacity: 1;
}

.bottom{
    background-color: #eeeeee;
    height: 0.5vh;
    width: 4.5vh;
    position: relative;
    float: left;
    top: 2vh;
    transform-origin: center left;
    transition: width 0.3s, transform 0.3s;
}

.triple_line_active > .top{
    transform: rotateZ(45deg);
    width: 4.25vh;
}

.triple_line_active > .mid{
    opacity: 0;
}

.triple_line_active > .bottom{
    transform: rotateZ(-45deg);
    width: 4.25vh;
}

.mob_navbar_bottom{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background-color: black;
    overflow-y: scroll;
}

.mob_navbar_item{
    display: flex;
    flex-direction: column;
    background-color: black;
    align-items: stretch;
    width: 100%;
}

.mob_navbar_item_title{
    padding: 20px;
    color: #eeeeee;
    font-size: 3.5vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.mob_navbar_drop_options{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-y: scroll;
}

.mob_navbar_drop_option{
    background-color: #0f0f0f;
    color: #eeeeee;
    font-weight: 200;
    font-size: 2.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #5f5f5f;
}

.mob_division_content_left{
    display: flex;
    flex-direction: column;
    margin: 6vh 0px 6vh 8vw;
    transition: margin 0.8s ease-out, opacity 0.8s ease-out;
}

.mob_division_content_right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 6vh 8vw 6vh 0vw;
    transition: margin 0.8s ease-out, opacity 0.8s ease-out;
}

.mob_division_image{
    background-size: contain;
	background-color: white;
    background-repeat: no-repeat;
    background-position: center;
	border-radius: 2em;
    box-shadow: inset 1px -3px 136px 4px rgba(0, 0, 0, 0.33);
    height: 45vh;
    width: 100%;
}

.mob_division_text{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big_minimalist_button{
    padding: 30px;
    border-radius: 4px;
    background-color: #d2d2d2;
    color: #0b0b0b;
    outline: none;
    transition: outline 0.3s, background-color 0.3s, color 0.3s;
    cursor: pointer;
    border: none;
    font-weight: 500;
    font-size: 2.5vh;
    margin-top: 40px;
    margin-bottom: 40px;
}

.mob_division_title{
    font-size: 6vh;
    margin: 3vh 0 3vh 0;
    width: 80%;
    font-weight: 200;
    text-align: center;
}

.mob_division_paragraph{
    font-size: 3vh;
    line-height: 5vh;
    width: 80%;
    font-weight: 300;
    margin-top: 20px;
    text-align: center;
}

.mob_product_division_text{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 0px 30px 0px;
    background-color: #0f0f0f;
    border-bottom: #4f4f4f 1px solid;
    font-weight: 200;
    font-size: 2vh;
    line-height: 3vh;
    text-align: justify;
}

.mob_carousel_container{
    display: flex;
    flex-direction: row;
    background-color: #0f0f0f;
    align-items: stretch;
    height: 45vh;
    width: 100%;
}

.mob_carousel_item{
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: opacity 0.3s;
    width: 100%;
    height: 45vh;
    z-index: 1;
}

.mob_solution_division_text{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 30px 0px 30px 0px;
    background-color: #0f0f0f;
    border-bottom: #4f4f4f 1px solid;
    font-weight: 200;
    font-size: 2vh;
    line-height: 3vh;
    text-align: justify;
}

.mob_carousel_arrow_right{
    display: flex;
    flex-direction: row;
    align-items: center;
    float: left;
    position: relative;
    left: calc(100% - 9vh);
    font-size: 7vh;
    color: #d3d3d37d;
    transition: color 0.3s;
    cursor: pointer;
    z-index: 2;
}

.mob_carousel_arrow_left{
    display: flex;
    flex-direction: row;
    align-items: center;
    float: left;
    position: relative;
    left: 2vh;
    font-size: 7vh;
    color: #d3d3d37d;
    transition: color 0.3s;
    cursor: pointer;
    z-index: 2;
}

.mob_client_division_big{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 30px 0px 30px 0px;
    background-color: #0f0f0f;
    border-bottom: #4f4f4f 1px solid;
    font-size: 4vh;
    font-weight: 200;
    align-items: center;
    height: 8vh;
}

table, th, td{
	border: 1px solid #b5b5b5;
	border-collapse: collapse;
	color: #eeeeee;
}

.flag_icon{
	background-size: contain;
	background-repeat: no-repeat;
	height: 1em;
	width: 1.5em;
	margin-right: 5px;
}