/* General Body and Typography */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #53555c;
}

.logo {
    max-width: 300px;
}

h1, h2, h3, h4, h5 {
    font-size: 32px;
    margin: auto;
    padding: initial;
}

a {
    color: #006699;
    text-shadow: 0 0 1px #0d0d0d7a;
    text-decoration: underline;
}

 

/* Info Section */
#infoot {
    max-width: 98%;
    margin: auto;
}

#infoot pre {
    font-family: "Noto Sans", sans-serif;
}

/* Footer */
#footer {
    padding-top: 50px;
    color: #fff;
    z-index: 99;
    font-size: 14px;
    background: #303e4f;
}

#footer a {
    color: white;
}

/* Top Bar */
#topBar {
    width: 100%;
    background-color: #ffffff;
    z-index: 10001;
}

#banner {
    padding: 15px;
    margin: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    max-width: 1600px;
}

div#topSocials {
    color: #595353;
    text-decoration: none;
    text-align: right;
    background: rgb(55 75 95 / 7%);
    padding: 1px;
}

div#topSocials a {
     color: #303e4f;
     text-decoration:none;
     }
div#topSocials p {
    padding: 0px;
    margin: 2px;
}

div#topSocials > div {
    max-width: 1545px;
    margin: auto;
}
/* Three Footer Section */
#threeFooter {
    text-align: center;
    margin: auto;
    max-width: 1575px;
}

#threeFooter div {
    width: 31%;
    overflow: hidden;
    padding-bottom: 17px;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: top;
    z-index: 100;
    position: relative;
}

#threeFooter h3 {
    color: #ffffff;
    text-transform: capitalize;
}

#threeFooter div:first-child {
    margin-left: 0 !important;
    text-align: left;
    float: left;
}

#threeFooter div:last-child {
    margin-right: 0 !important;
    float: right;
    text-align: right;
}

#threeFooter ul {
    list-style: none;
    padding: 0;
}

#threeFooter li a {
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #585d69;
    padding: 7px;
    font-size: 12px;
    padding-right: 20px;
    text-transform: lowercase;
}

/* Misc Layout */
.textBoxes {
    position: relative;
    margin: auto;
    background: rgb(239 239 239 / 87%);
}

.readingBit {
    padding-top: 1px;
    display: flow-root;
    margin: auto;
    margin-top: -1px;
}

/* Flexbox Utility */

.setStyle > div {
    max-width: 1600px;
    justify-content: center;
    margin: auto;
    flex: 1;
    display: flex;
}

.setStyle > div > div {
    display: inline-block;
    text-align: left;
    padding: 1%;
    box-sizing: border-box;
    flex: 1;
}
 div#bread {
    background: #efefef;
    padding: 10px;
}
/*BLog Section */

main.news {
    width: 100%;
    margin: auto;
}

.news section {
    border: 1px solid #d7d7d7;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    text-align: left;
    content-visibility: auto;
    margin-bottom: 20px;
}

img.blogIcon {
    float: left;
    margin-right: 30px;
    max-width: 200px;
}

#galBoxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

#galBoxes div {
    flex: 1 1 calc(20% - 10px); /* Adjust to control how many items per row */
    max-width: calc(20% - 10px);
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

#galBoxes img {
    width: 100%;
    height: 180px; /* Adjust height as needed */
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

#galBoxes div:hover {
    transform: translateY(-5px);
}

#galBoxes div:hover img {
    transform: scale(1.1);
}


/* Encapsulate within .auth-form-section */
.auth-form-section form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #f7f7f7;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.auth-form-section h2 {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.auth-form-section label {
    display: block;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.auth-form-section input[type="text"],
.auth-form-section input[type="email"],
.auth-form-section input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.auth-form-section input[type="checkbox"] {
    margin-right: 10px;
}

.auth-form-section button[type="submit"] {
    /* width: 100%; */
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.auth-form-section button[type="submit"]:hover {
    background-color: #0056b3;
}

.auth-form-section p {
    /* text-align: center; */
    margin-top: 10px;
}

.auth-form-section p a {
    color: #007BFF;
    text-decoration: none;
}

.auth-form-section p a:hover {
    text-decoration: underline;
}

#tenant-list ul {padding:0; margin:0;}
#tenant-list li { list-style:none; }

.tenants-head {
  background:#f5f5f5;
  padding:8px 12px;
  border-radius:6px;
  margin:0 0 8px;
}

.ten-grid {
  display:flex;
  align-items:center;
  gap:12px;
}

/* Column widths ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ match tenant header/row classes */
.ten-grid .c-business { flex: 1 1 220px; }
.ten-grid .c-email    { flex: 1 1 260px; }
.ten-grid .c-phone    { flex: 0 0 140px; }
.ten-grid .c-domain   { flex: 1 1 260px; }
.ten-grid .c-status   { flex: 0 0 120px; }
.ten-grid .c-actions  { flex: 0 0 200px; text-align:right; }

.courseorder.ten-row {
  padding:10px 12px;
  border:1px solid #eee;
  border-radius:6px;
  margin-bottom:10px;
}

.tenants-head .ten-grid > div { font-weight:600; }
.courseorder.ten-row:hover { background:#efeeee; }

.setStyle.intro {
    padding-top: 130px;
    padding-bottom: 130px;
    background: #303d4f;
    background-position: right bottom !important;
    color: white;
    background:url("/pictures/gallery/original/Man1760516739_In1760516739_Factory.jpg") no-repeat;
    background-size:cover;
    background-color: #2f3f4f;
    background-blend-mode: overlay;
}

.intro >div > div:first-child {
    font-size: 29px;
}

.cards .delement {
    padding-top: 100px;
    position: relative;
    padding-bottom: 50px;
}

.regularTitle {font-weight: 300;color: #303e4f;font-size: 26px;margin-top: 0px;}

.setStyle.cards > div div {
    background: #f7f7f7;
    margin: 1%;
    margin-bottom: 30px;
    padding-bottom: 75px;
}

.formIntro b {
    font-size: 32px;
}
.intro li {
    margin-bottom: 20px;
    list-style: none;
}
.intro .delement {
    align-items: center;
}

a.btn {
    position: absolute;
    bottom: 95px;
    padding: 10px;
    background: #6f96b3;
    color: white;
    text-decoration: none;
}
.contact {
    background: #8BC34A;
    border-radius: 40px;
    color: black !important;
    font-weight: 500;
    padding: 1px !important;
    margin-left: 55px;
}
.contact a:hover {
    color: white !important;
}
.contact:hover {
    background: #2f3f4f !important;
    color: white !important;
}