html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin: 0;
    background-image: url('/images/background.jpg');
    background-size: 100%;
}

.header {
    display: table;
	height: 100px;
    width: 100%;
    background-image: url('/images/header.png');
    background-size: 100%;
    z-index: 999;
}

.home-icon {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding-left: 130px;
}

#logo-icon {
    height: 70px;
}

.header-menu-items {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    text-align: right;
    padding-right: 130px;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu li {
    display: inline;
    margin: 0 20px;
}

.menu li:first-child {
    margin-left: 0;
}

.menu li:last-child {
    margin-right: 0;
}

.menu-item{
    text-decoration: none;
    color: #FFFFFF;
    font-size: 18px;
    position: relative;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
}

.menu-item:hover::after,
.menu-item:hover::before {
    width: 100%;
    left: 0;
}

.menu-item::after,
.menu-item::before {
    content: '';
    position: absolute;
    top: calc(100% + 2px);
    width: 0;
    right: 0;
    height: 3px;
}

.menu-item::before {
    -webkit-transition: width .25s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
    transition: width .25s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
}

.menu-item::after {
    -webkit-transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    background: white;
}

.selected {
    background-color: white;
    color: #eb4550;
    padding: 6px 11px;
    border-radius: 8px;
}

.navigation-arrow {
    display: table-cell;
    width: 10%;
    font-size: 60px;
    text-align: center;
    vertical-align: middle;
    color: #24292e;
}

.banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-image {
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

.visible {
    display: block;
}

#image1 {
    background-image: url('/images/banner_1.jpg');
}

#image2 {
    background-image: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');
}

#image3 {
    background-image: url('/images/banner_3.jpg');
}

#image4 {
    background-image: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');
}

#image5 {
    background-image: url('/images/banner_5.jpg');
}

.body-text {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    color: #24292e;
    text-align: justify;
}

.intro, .edge-band, .edge-band-types, .pvc-glue {
    margin-bottom: 50px;
}

.heading {
    color: #eb4550;
    font-weight: 200;
}

footer {
    color: #bec4cb;
    background-color: #24292e;
    width: 100%;
    display: table;
    padding: 1% 0;
}

.footer-text-left {
    float: left;
    padding-left: 130px;
}

.copyright {
    float: right;
    padding-left: 40px;
    margin-top: 20px;
}

.footer-text-left, .copyright {
    display: inline-block;
}

footer i {
    margin: 0 20px;
}

footer i:first-child {
    margin-left: 0;
}

footer i:last-child {
    margin-right: 0;
}

.content {
    padding-bottom: 70px;
}

.tile {
    position: relative;
    border: 1px solid #979797;
    height: 375px;
    width: 315px;
    display: inline-table;
    margin: 0 10px;
}

.tile:first-child {
    margin-left: 0;
}

.tile:last-child {
    margin-right: 0;
}

.tile-image {
    height: 75%;
}

.tile-text-parent {
    display: table;
    height: 25%;
    width: 100%;
    background-color: #f9fafa;
    color: black;
}

.tile-text-child {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
        padding: 30px 0px;
    text-decoration: none;
}


#solid {
    background: url('/images/edge_band_solid.jpg');
    background-size: cover;
}

#wooden {
    background: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');
    background-size: cover;
}

#designer {
    background: url('/images/edge_band_designer.jpg');
    background-size: cover;
}

.pvc-glue-content {
    display: inline-block;
    width: 65%;
    margin-top: 15px;
}

.pvc-glue-image {
    display: inline;
}

#glue-image {
    width: 300px;
   
    border: solid 1px;
}

.about-us-content {
    display: inline-block;
    width: 55%;
}

.about-us-image {
    display: inline;
}

#about-us-image {
    width: 400px;
    float: right;
}

.banner-section {
    display: table;
    width: 100%;
}

.navigation-arrow > a > i {
    border-radius: 35px;
}

.navigation-arrow:first-child > a > i {
    padding-left: 18px;
    padding-right: 22px;
}

.navigation-arrow:last-child > a > i {
    padding-left: 22px;
    padding-right: 18px;
}

.navigation-arrow > a > i:hover {
    background-color: #eb4550;
    color: #FFFFFF;
}

#left-arrow, #right-arrow {
    text-decoration: none;
    color: inherit;
}

.contact-details {
    padding-top: 20px;
    display: inline-block;
    width: 435px;
}

.contact-detail {
    display: table;
}

.contact-detail-logo{
    display: table-cell;
    color: #eb4550;
    font-size: 20px;
}

.contact-detail-text{
    display: table-cell;
    padding-left: 10px;
}

.contact-us-form {
    padding-top: 20px;
    display: inline-flex;
    width: 560px;
}

.input-text {
    width: 550px;
    margin: 10px 0;
    font-size: 15px;
    padding: 10px 5px;
    border: solid 1px #7f7f7f;
    border-radius: 5px;
}

.input-message{
    height: 100px;
}

.contact-us-submit {
    padding: 10px 25px;
    border-radius: 8px;
    background-color: #e5404d;
    color: white;
    border: 0;
    font-size: 18px;
    cursor: pointer;
}



.carousel-control-next, .carousel-control-prev{
    opacity:1 !important;
}
.fa-2x {
    
    color: #000;
}
   .nav-link {
    padding: 0px !important;
    margin: 0px 20px;
    font-size: 18px;
    color: #fff !important;
}
.nav-item:hover a {
    border-bottom: 3px solid #fff;
    display: initial;
}
.navbar-dark .navbar-nav .active>.nav-link{
    border-bottom: 3px solid #fff;
    display: initial;
}
.navbar-toggler{
    position:absolute;
    right:0;
    margin-top: 30px;
    background-color: #444 !important;
}
.fixed-footer {
    padding:20px 0px;
}
.footer-list {
    margin: 0 0px;
    padding: 0;
}
.footer-list li {
    list-style: none;
    display: inline-block;
    padding:10px 25px;
}
.footer-list li a {
    color: #bec4cb;
    text-decoration: none;
}
.footer-title {
    font-size: 22px;
    margin-bottom: 10px;
}
.cont p {
    margin: 0;
}
.menu li a:hover {
    text-decoration: none;
    color:#000;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.about-us p {
    text-align: justify;
}
.content-sm{padding-top:50px;padding-bottom:50px;}

.border a {
    text-decoration: none !important;
}
.tile-image img{
    margin:0 auto;
}

