/* Basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
    padding: 0.5em;
    background-color: #ffffff;
    color: #fff;
 }

.body-white{

    color: #0D0D0D;
}
a {

    display: block;
}
/* <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 800*/
button {
    border-color: #668C15;
    color: black;
    padding: 10px 20px;
     border-style: solid;
    border-width: 2px;
    margin-top: 2em;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 8px;
    background-color: transparent;
}
        
button:hover {
    background-color: #668C15;
    color: #0D0D0D;
}
.poppins-thin {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

. {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: italic;
}

.meta{

    color: #777;
    font-size: 0.9rem;
    padding-top: 1.0rem;
    padding-bottom: 1.0rem;
}
h1 {
    font-size: 3.5em;
    font-weight: 300;
    color: white;
    line-height: 1em;
}
h2 {

    font-size: 2.5em;
    padding-top: 1.7em;
    font-weight: 300;
     line-height: 1.2em;
}
h3 {

    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.5em;
}
h1, h2, h3, h4{

    padding-bottom: 0.6em;
}
p {

    font-size: 1.3em;
    line-height: 1.5;
    font-weight: 200;

}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: right;
}

.prodListUL {
    padding-top: 3em;
}
.prodListUL li{

}
ul li a{
    margin-right: 1em;
    color: #ffffff;
    font-size: 1em;
    font-weight: 200;
    font-style: normal;
    text-decoration: none;
    display: inline-block;
}
.navSelected{
    text-decoration: underline;
    text-underline-offset: 10px;
}

li {
    display: inline; 
} 

ol li {
    list-style-type: disc !important;
    display: list-item;
    margin-bottom: 0.6em;
    list-style-position: inside;
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.3em;
     line-height: 1.3em;
    text-indent: -1.4em;
    padding-left: 1em;

}
ol{

    padding-top: 1.7em;
    counter-reset: item;
}

/*Hamburger menu*/
 .navbar { background-color: #333; color: #fff; padding: 1rem; position: sticky; top: 0; width: 100%; z-index: 1000; display: flex; align-items: center; justify-content: space-between; }
        .menu { display: flex; list-style-type: none; padding: 0; margin: 0; gap: 4px; flex: 2;}
        .menu li { position: relative; }
        .menu a { text-decoration: none; color: #fff; padding: 10px 15px; display: block; }
        .dropdown { display: none; position: absolute; top: 100%; left: 0; background-color: #444; list-style-type: none; padding: 0; margin: 0; min-width: 250px; }
        .dropdown li { border-top: 1px solid #555; }
        .menu li:hover .dropdown { display: block; }
        .hamburger { display: none; cursor: pointer; font-size: 1.5rem; }
        .hamburger img { width: 24px; height: 24px; }


.navSelected {
    text-decoration: underline !important;
}

img {
    max-width: 100%;  /* Makes the image scale down based on its container's width */
    height: auto;     /* Maintains the aspect ratio of the image */
    object-fit: cover;
 }
 .space{
    margin-bottom: 2em;
 }
 .space-top{
     margin-top: 4em;

 }
 .floatRight {
    float: right;
 }
.date{

    border-radius: 24px;
    padding: 0.5em;
    margin-top:1em;
    width: 80px;
    background-color: #EFEEEC;
    text-align: center;
}

/* Layout styling */
footer {
    width: 100%;
    display: block;
}

.header {
    padding: 1em 0em 0em 0em !important; 
    margin: 0px !important;
    display: flex;
    width: 100%;
}
.top{
    background-image: url("assets/body_bg2.png");
    background-color: #0D0D0D;
    background-repeat: no-repeat;
    background-size: auto;
    margin: auto;
    align-items: center;
    justify-content: center;

}
.dots-black{
    background-color: #ffffff; /* Background color */
    background-image: radial-gradient(#d9d9d9 1px, transparent 1px);
    background-size: 10px 10px; /* Size of the dots pattern */
}
.copybox {

    max-width: 600px;
}
.outer {
  
    padding-top: 1em;
    padding-bottom: 1em;
    /*margin-bottom: 56px;*/
    /*border-radius: 8px;*/
    align-items: center;
    justify-content: center;
    display: flex;
}
.container {
    display: flex;
    flex-wrap: wrap;
    width: 1280px;
}
.card-section {
    display: flex;
    flex-wrap: wrap;
    padding-top: 2em;
     /*width: 1280px;*/

}
.card-section-stacked{
    padding-bottom: 2em;
    width: 100%;
}
/*Padding rules
top padding 
right padding 
bottom padding 
left padding 
*/
.main-content {
    flex: 2;
    padding: 2em;
}
.main-content2 {
    flex: 2;
    padding-top: 2em;
    padding-left: 2em;
    padding-bottom: 0px;
}
.card {

    flex: 1;
    width: 33%;
    background-color: #668C15;
    margin-top: 1em;
    margin-right: 1em;
    padding: 2em;
    border-radius: 8px;
}
.card p {

    min-height: 360px;
}
.card-wide{
    flex: 1;
    width: 100%;
    background-color: #668C15;
    margin-top: 1em;
    margin-right: 1em;
    padding: 2em;
    border-radius: 8px;
}
.skills {
    border-left: 1px solid #B1F222;
    padding-left: 2em;
}
.nav .nav-black{
    flex: 2;
    padding: 0px;   
} 
.nav-black a {
    color: #000 !important;
}
.sidebar {
    flex: 2;
    padding: 2em;
}

.bg-white {
    background-color: #ffffff !important;
    /*border-radius: 8px;*/
}

.bg-black {
    background-color: #0D0D0D !important;
}
.bg-Midgreen {
    background-color: #9ED91D !important;
    border-radius: 8px;
}
.whiteText { 
    color: #F9F9F9 !important;
} 
.greenText { 
    color: #668C15 !important;
} 
.blackText { 
    color: #000 !important;
} 

/*Expertise Items*/
.expertise{
  
    flex-wrap: wrap;
    width: 100%;    
    padding-top: 4em;
   
    
}
.item{
    
    margin-right: 3em;
    margin-bottom: 3em; 
    background-repeat: no-repeat;
    background-position: left top;
    float: left;
}
.item p{
    font-size: 1em;
    padding: 0px;

}
.itemInner{
    padding-left: 80px;

}
.rounded{

    border-radius: 8px;
}

.itemProd{
    background-image: url("assets/icons/bg_img_icon_prod.png");
}
.itemMusic{
    background-image: url("assets/icons/bg_img_icon_music.png");
}
.itemCoding{
    background-image: url("assets/icons/bg_img_icon_coding.png");
}
.itemUX{
    background-image: url("assets/icons/bg_img_icon_UX.png");
}
.itemServ{
    background-image: url("assets/icons/bg_img_icon_serv.png");
}
.itemBusiness{
    background-image: url("assets/icons/bg_img_icon_business.png");
}

/* Responsive breakpoints */
/* Large screens (desktops) */
@media (min-width: 992px) {
    .container {
        flex-direction: row;
    }
}

/* Tablets */
@media (max-width: 991px) and (min-width: 768px) {
    .container, .threewide {
        flex-direction: row;
    }
}

/* Mobile devices */
@media (max-width: 768px) {

     
    .container, .card-section {
        flex-direction: column;
    }

    .main-content, .sidebar, .card {
        width: 100%;
    }
    .outer {
  
    padding-top: 1em;
    }
}


/*cookie banner and privacy*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}
.cookie-banner a {
    color: #00bcd4;
    text-decoration: underline;
}
.cookie-banner button {
    background: #00bcd4;
    color: #fff;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
}