/*XXXXXXXXXX CUSTOM ELEMENT CSS XXXXXXXXXX*/
hr.style-one {
    border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}
.addresses {
    width: 50%;
    margin-top: 1em;
    border-left: 1.5px solid lightgrey;
    margin-left: 1em;
    padding-left: 1em;
}
.contactcontainer{
    width: 70%;
    display: flex;
    flex-direction: column;
}
#cookieConsent{
    width: 400px;
    padding: 2em;
    border: 8px solid lightgrey;
    height: 300px;
    margin: 2em;
    border-radius: 12px;
    background-color: beige;
    left: 40px;
    top: 20px;
    z-index: 2000;
    position: fixed;
    
}
#cookieConsent .inputs{
    font-family: roboto, loto, sans-serif;
    font-weight: bold;
    font-size: large;
}
.flexrow {
    display: flex;
    gap: 16px;
    width: 80%;
    flex-direction: row;
    align-items: start;
  }
.flexcolumn {
    display: flex;
    gap: 16px;
    width: 50%;
    flex-direction: column;
    align-items: left;
  }
.contactform {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: left;
}
.contactform label {
  color: rebeccapurple;
  font-size: 16px;
  font-weight: 400;
  font-family: roboto, loto, sans-serif;
}
.contactform textarea {
  height: auto;
  font-family: roboto, loto, sans-serif;
}
.contactform button {
    width: 100px;
    height: 32px;
    border-radius: 4px;
}
.contactheading {
    margin-top: 1em;
}
.contactinfo {
    border: 1px solid green;
}
@font-face {
    font-family: MasWebThin;
    src: url('../font/maswebthin/MasWebThin.ttf');
}

body {
    font-family: "MasWebThin", sans-serif;
}

h1 {
    color: #47525D;
    font-weight: bold;
}

h2 {
    color: #47525D;
    font-weight: bold;
}

h3 {
    color: #47525D;
    font-weight: bold;
    padding-top: 10px;

}

p {
    color: #47525D;
    font-size: 18px;
    padding-bottom: 10px;
    font-weight: 600;
}

ul {
    color: #47525D;
    font-size: 20px;
}

li {
    color: #47525D;
    list-style: disc;
    text-indent: 30px;
}



/*XXXXXXXXXX BOOTSTRAP OVERRIDE CSS XXXXXXXXXX*/
.row {
    padding: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

/*XXXXXXXXXX START NAVBAR OVERRIDE XXXXXXXXXX*/

/* navbar */
.navbar-default {
    color: #1B2733;

}

.footerheader {
    font-family: roboto !important
}

/* Link */
.navbar-default .navbar-nav > li > a {
    color: #1B2733;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #333;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #E7E7E7;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    color: #555;
    background-color: #D5D5D5;
}

/* Caret */
.navbar-default .navbar-nav > .dropdown > a .caret {
    border-top-color: #777;
    border-bottom-color: #777;
}

.navbar-default .navbar-nav > .dropdown > a:hover .caret,
.navbar-default .navbar-nav > .dropdown > a:focus .caret {
    border-top-color: #333;
    border-bottom-color: #333;
}

.navbar-default .navbar-nav > .open > a .caret,
.navbar-default .navbar-nav > .open > a:hover .caret,
.navbar-default .navbar-nav > .open > a:focus .caret {
    border-top-color: #555;
    border-bottom-color: #555;
}

/*XXXXXXXXXX END NAVBAR OVERRIDE XXXXXXXXXX*/

.table td,
.table th {
    border-top: none;
}






/*XXXXXXXXXX CUSTOM CSS CLASSES XXXXXXXXXX*/

.home-bg {
    background-image: url(../img/home/main.jpg);
    background-repeat: no-repeat;
    /*	background-size:100%;*/
    background: cover;
    overflow: hidden;
    padding-top: 130px;
    margin-top: 65px;
    background-color: #F0ECDE;
}

@media (max-width: 480px) {
    .home-bg {}


}

@media (max-width: 1400px) {
    .home-bg {
        background-image: url(../img/home/maseke-home-laptop.jpg);
        background-repeat: no-repeat;
        /*	background-size:100%;*/
        background: cover;
        overflow: hidden;
        padding-top: 130px;
        padding-bottom: 130px;
        margin-top: 65px;
        background-color: #F0ECDE;
    }
}

@media (max-width: 900px) {
    .home-bg {
        background-image: url(../img/home/maseke-home-mobile.jpg);
        background-repeat: no-repeat;
        /*	background-size:100%;*/
        background: cover;
        overflow: hidden;
        padding-top: 130px;
        padding-bottom: 130px;
        margin-top: 65px;
        background-color: #F0ECDE;
    }
}

.padded {
    padding-top: 80px;
    padding-bottom: 80px;
}

.light-padded {
    padding-top: 10px;
    padding-bottom: 10px;
}

.blue-top {
    background-color: #0B51C5;
    color: #FFF;
    padding: 15px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.blue-bordered {
    border: solid 1px #0B51C5;
    padding: 0px;
    border-radius: 10px;
}

.grey-top {
    background-color: lightgrey;
    color: #000;
    padding: 15px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.grey-bordered {
    border: solid 1px lightgrey;
    padding: 0px;
    margin-bottom: 40px;
    border-radius: 10px;
}

.footski {
    background-color: lightgray;
    width:100%;
}
.copyright {
    font-size: smaller !important;
}
a.footer-links {
    color: #47525D;
}

a.footer-links:link {
    text-decoration: none;
    color: #47525D;
}

a.footer-links:visited {
    text-decoration: none;
    color: #47525D;
}

a.footer-links:hover {
    text-decoration: none;
    color: red;
}

a.footer-links:active {
    text-decoration: none;
    color: #47525D;
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {

    /* Styles */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: normal;
    }

    li {
        text-indent: 22px;
        list-style-type: disc !important;
    }

    div.footski > div > div > div > p,
    div.footski > div > p {
        font-size: 10pt;

    }
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {

    /* Styles */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: normal;
    }

    li {
        text-indent: 5px;
    }

    div.footski > div > div > div > p,
    div.footski > div > p {
        font-size: 10pt;

    }
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {

    /* Styles */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: normal;
    }

    li {
        text-indent: 5px;
    }

    div.footski > div > div > div > p,
    div.footski > div > p {
        font-size: 10pt;

    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {

    /* Styles */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: normal;
    }

    li {
        text-indent: 5px;
    }

    div.footski > div > div > div > p,
    div.footski > div > p {
        font-size: 10pt;

    }

    .mybox {
        min-height: 200px;
    }
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {

    /* Styles */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: normal;
    }

    li {
        text-indent: 5px;
    }

    div.footski > div > div > div > p,
    div.footski > div > p {
        font-size: 10pt;

    }

}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {

    /* Styles */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: normal;
        color: red;
    }

    li {
        text-indent: 5px;
    }

    div.footski > div > div > div > p,
    div.footski > div > p {
        font-size: 10pt;

    }

}

/**********
iPad 3
**********/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio : 2) {

    /* Styles */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: normal;
        color: red;
    }

    li {
        text-indent: 5px;
    }

    div.footski > div > div > div > p,
    div.footski > div > p {
        font-size: 10pt;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio : 2) {

    /* Styles */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: normal;
    }

    li {
        text-indent: 5px;
    }

    div.footski > div > div > div > p,
    div.footski > div > p {
        font-size: 10pt;
    }
}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {

    /* Styles */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: bold;
    }

    li {
        text-indent: 22px;
        list-style-type: disc !important;
      font-weight: 600;
    }

    div.footski > div > div > div > p,
    div.footski > div > p {
        font-size: 14pt;
    }
}

/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
    /* Styles */
}

/* iPhone 4 ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio : 2) {
    /* Styles */
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio : 2) {
    /* Styles */
}

/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2) {
    /* Styles */
}

/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 3) {
    /* Styles */
}

li.nav-item {
    list-style-type: none!important;
}

.cookie-banner {
  position: fixed;
  float:top;
  left: 10%;
  right: 10%;
  width: 80%;
  padding: 5px 14px;
  display: block;
  align-items: center;
  justify-content: space-between;
  background-color: #eee;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

.close-btn {
  height: 25px;
  background-color: green;
  border: none;
  color: white;
  border-radius: 26px;
  float: right;
  cursor: pointer;
}