.company_name {
  position: absolute;
  min-width: 1240px;
  width: 100%;
  top: 30%;
  text-align: center;
  margin:0;
  padding:0;
  color: #ffffff;
  font-size: 40px;
}

.main_visual {
  position: relative;
}

.content{
    margin: 18px auto 40px;
    padding: 0;
    display: flex;
    flex-flow: column;
    max-width: 1200px;
    background: #fff;
}

/* flex */
.f_g{
    display: flex;
}

.f_flow_r{
    flex-flow: row;
}

.f_flow_c{
    flex-flow: column;
}

.f_jtfy_sr{
    justify-content: space-around;
}

.f_jtfy_sb{
    justify-content: space-between;
}

.f_nowrap{
    flex-wrap: nowrap;
}

.f_ai_c{
    align-items: center;
}

.f_1{
    flex: 1;
}

.f_2{
    flex: 2;
}

.f_3{
    flex: 3;
}

.f_auto{
    flex: auto;
}

/* end of flex */

/* navigation */


.banner{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #ffffff;
    background-image: url('/img/background/logo.png');
    background-position: center;
    background-repeat: no-repeat;
    z-index: 99;
}
.container{
  width:100%;
}
/*
*#navigation
*/
.nav_container{
    width: 100%;
    height: 53px;
    display: flex;
    position: fixed;
    top:90px;
    z-index: 9;
    box-sizing: border-box;
    color: #ededed;
    background: rgba(223, 146, 146, 0.2);
}
.nav_position_fixed{
    position: fixed;
    top: 0;
}
.nav_maintain_background{
    background:rgba(3, 119, 135, 0.4) !important;
}
.nav_holder{
    display : flex;
    flex-flow: column;
    width: 100%;
    position: absolute;
}
.full_color{
    background: rgba(3, 119, 135, 1);
}
ul.nav_wrapper{
    position: relative;
    list-style: none;
    display: flex;
    flex-flow: row;
    align-content: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
li.nav_item_holder{
    display: inline-block;
    line-height: 1;
    margin: 0;
    padding: 0;
    position: relative;
}

a.nav_item{
    padding: 20px 25px;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    text-transform: uppercase;
}
.nav_item>i{
    font-size: 21px;
}

ul.nav_wrapper>li.nav_item_holder:not(:first-child):before{
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 1px;
    height: 12px;
    border-left: 1px solid #fff;
    content: '';
}
ul.nav_wrapper>li.nav_item_holder:hover:before, .adjacent_menu_active::before{
    border-left:none !important;
}
ul.nav_wrapper>li.nav_item_holder:hover+.menu_dropdown_container+li.nav_item_holder:before, .adjacent_menu_active::before{
    border-left: none !important;
}
ul.nav_wrapper>li.nav_item_holder:hover, .menu_active{
    transition: background 0.38s ease-in;
    background: #037787;
    color: #efefef;
}
ul.nav_wrapper>li.nav_item_holder:hover{
    background: #037787;
}
.menu_active.full_color_hover{
    background: #00a5bc;
}
ul.nav_wrapper>li.full_color_hover:hover, ul.nav_wrapper>li.full_color_hover+.menu_dropdown_container>ul.menu_dropdown_holder{
    background: #00a5bc;
}

.nav_button{
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    color: #fff;
    text-align: center;
    font-size: 22px;
    line-height: 38px;
    cursor: pointer;
}
#nav{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
}

.menu_dropdown_container{
    display: none;
    position: absolute;
    overflow: hidden;
    top: 53px;
    left: 0;
    z-index: 999;
}
ul.menu_dropdown_holder{
    list-style: none;
    background: #037787;
    border-radius: 1px;
    display: flex;
    flex-flow: column;
}
ul.menu_dropdown_holder>li.menu_holder{
    display: inline-block;
    position: relative;
    font-size: 13px;
}
ul.menu_dropdown_holder>li.menu_holder:not(:first-child){
    border-top: 1px solid #038697;
}
ul.menu_dropdown_holder>li.menu_holder:not(:last-child){
    border-bottom: 1px solid #026c79;
}
ul.menu_dropdown_holder>li.menu_holder>a.menu_item{
    display: inline-block;
    padding: 16px 25px;
    text-decoration: none;
    color: #fff;
    text-align: center;
}
ul.nav_wrapper li.full_color_hover+.menu_dropdown_container>ul.menu_dropdown_holder>li.menu_holder:not(:first-child){
    border-top: 1px solid #00b4cd;
}
ul.nav_wrapper li.full_color_hover+.menu_dropdown_container>ul.menu_dropdown_holder>li.menu_holder:not(:last-child){
    border-bottom: 1px solid #0092a6;
}

/* end of navigation */

/* footer */

.footer_content{
    display: flex;
    padding: 40px 0;
    background-image: url('/img/background/footer-background.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.footer_left{
    flex: 1;
    display: flex;
    color: #fff;
    justify-content: space-around;
}
.link_box {
    padding: 0;
}
.first_box{
    width: 120px;
}
.link_title{
    padding: 30px 0;
}
ul.link_holder{
    display: flex;
    flex-flow: column;
}
li.link{
    padding: 8px 0;
}
li.link>a{
    text-decoration: none;
    color: #fff;
}
li.link>a:hover{
    text-decoration: underline;
}

.social_holder{
    display: flex;
    flex-flow: row;
    background: #037787;
    padding: 0;
    color: #fff;
}
.social_left{
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social_right{
    flex: 1;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}
.social_icon{
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 20px;
    text-align: center;
}
.social_icon>a{
    color: #fff;
}

.footer_right{
    flex: 1;
    display: flex;
    line-height: 25px;
    color: #fff;
}
.address_container{
    flex: 1;
    display: flex;
    justify-content: center;
}
.address_box{
}
.address_title{
    text-transform: capitalize;
    padding: 25px 0px;
    font-weight: 500;
}
.address_content{

}
.address_holder{

}
.address{
    padding: 6px 0 ;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.address>i{
    font-size: 25px;
    margin-right: 15px;
}
.address_breaker{
    border-color: #fd6639;
    border-width: 2px;
    margin-top: 25px;
}
.subscribe_box{
    flex: 1;
    color: #fff;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.subscribe_holder{
    max-width: 250px;
}
.subscribe_title{
    text-transform: capitalize;
    padding: 25px 10px;
    font-weight: 500;
}
.subscribe_content{
    margin: 15px 0;
    padding: 0 10px;
}
.subscribe_form_title{
    padding: 6px 0;
}
.subscribe_form{
    margin: 20px 0;
    min-height: 115px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.subscribe_input{
    height: 30px;
    border: none;
    padding: 0 8px;
    font-size: 14px;
}
.subscribe_submit{
    background: #fd6639;
    padding: 5px 8px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: none;
    border: none;
    color: #fff;
}
.subscribe_submit>i{
    font-size: 23px;
}

.copyright{
    text-align: center;
    background: #037787;
    color: #fff;
    font-size: 12px;
    padding: 10px 0;
}

/* end of footer */

body{
    min-width: 1240px;
    background: #fff;
    color: #8c8c8c;
    font-size: 15px;
    line-height: 1.2em;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}
.nav_container{
    background: #037787;
}
ul{
    margin-top: 0;
    margin-bottom: 0;
}
div, input, textarea{
    box-sizing: border-box;
}

.services_holder{
    flex-flow: column;
}
.service_box{
    width: auto;
}
.image_info_container{
}
