/* General styling for the entire page */
body {
    margin: 0 auto; /* Center the content horizontally */
    height: 100vh; /* Full height */
    font-family: Arial, Helvetica, sans-serif; /* Font for the entire page */
}

/* Styling for heading level 1 */
h1 {
    font-size: 18px; /* Font size */
    line-height: 18px; /* Spacing between lines */
     /* Spacing between characters */
}

/* Styling for a span within an h1 element */
h1 span {
    color: #800800; /* Text color */
    font-weight: bold; /* Bold text */
}

/* Styling for paragraph elements */
p {
    font-size: 14px; /* Font size for paragraphs */
}

/* Styling for the main container of the site */
section.siteWrapper {
    width: 100%; /* Full width */
    display: flex;
    flex-direction: column; /* Stack children in a column */
    align-items: center; /* Center children horizontally */
    background-color: #EEEEEE; /* Background color */
}

/* Styling for the header section */
section.siteWrapper section.headerWrapper {
    width: 80%; /* Set width */
    height: 40px; /* Set height */
}

/* Styling for the header menu within the header section */
section.siteWrapper section.headerWrapper section.headerMenu {
    display: flex;
    justify-content: end; /* Align items to the end */
    padding: 0px 0px 0px; /* Padding */
}

/* Styling for the list within the header menu */
section.siteWrapper section.headerWrapper section.headerMenu ul {
    list-style: none; /* Remove list bullets */
    display: flex;
    margin-bottom: 0px; /* Remove margin */
}

/* Styling for list items within the header menu */
section.siteWrapper section.headerWrapper section.headerMenu ul li {
    padding: 7px 10px 5px 10px; /* Padding */
    background-color: white; /* Background color */
    font-size: 12px; /* Font size */
}

section.siteWrapper section.headerWrapper section.headerMenu ul li a{
    text-decoration: none;
    color: black;
}

/* Additional styling for specific list items */
section.siteWrapper section.headerWrapper section.headerMenu ul li#contact {
    margin-left: 2px;
    margin-right: 2px;
}

section.siteWrapper section.headerWrapper section.headerMenu ul li#b2b {
    border-radius: 10px 0px 0px 0px; /* Rounded corners */
}

section.siteWrapper section.headerWrapper section.headerMenu ul li#about {
    border-radius: 0px 10px 0px 0px; /* Rounded corners */
}

/* Styling for the content section */
section.siteWrapper section.contentWrapper {
    width: 80%;
    height: 100%;
    background-color: white;
    display: flex;
}

/* Styling for the menu wrapper within the content section */
section.siteWrapper section.contentWrapper section.menuWrapper {
    width: 25%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent {
    width: 90%;
    height: auto;
    background-color: #600800; /* Background color */
}

/* Styling for the logo container within the menu content */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.social{
    display: none;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.social P{
    color: #600800;
}

/* Styling for the logo within the logo container */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.logo a img {
    width: 100%; /* Set width */
}

/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.toggleMenu {
    display: none;
}
/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.toggleMenu .bar1, .bar2, .bar3{
    width: 17px;
    height: 3px;
    background-color: rgb(255, 254, 254);
    margin: 4px 0;
    transition: 0.4s
}
/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.toggleMenu .change .bar1{
    transform: translate(0, 7px) rotate(-45deg);
}
/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.toggleMenu .change .bar2{
    opacity: 0;
}
/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.toggleMenu .change .bar3{
    transform: translate(0, -7px) rotate(45deg);
}

section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems{
    display: flex;
}

/* Styling for the list within the menu items */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul {
    width: 100%;
    list-style: none; /* Remove list bullets */
    padding: 0px; /* Remove padding */
    margin: 0px; /* Remove margin */
}

/* Styling for list items within the menu items */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li {
    padding: 15px 20px 15px; /* Padding */
    color: white; /* Text color */
    border-top: 1px solid white; /* Top border */
    font-size: 14px; /* Font size */
    letter-spacing: 0.5px; /* Spacing between characters */
}

section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li.active{
    background-color: #800800;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li a{
    text-decoration: none;
    color: white;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li:hover{
    background-color: #800800;
    cursor: pointer;
}
/* Styling for the list within the menu items */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul#xMenu {
    display: none;
}

/* Styling for the main content within the content section */
section.siteWrapper section.contentWrapper section.content {
    width: 75%;
    padding-top: 10px; /* Padding at the top */
}

/* Styling for the image slider within the main content */
section.siteWrapper section.contentWrapper section.content section.imageSlider {
    padding: 0px 10px 0px; /* Padding */
}

/* Styling for images within the image slider */
section.siteWrapper section.contentWrapper section.content section.imageSlider img {
    width: 100%; /* Set width to 100% */
    display: none; /* Hide images by default */
}

/* Styling for text content within the main content */
section.siteWrapper section.contentWrapper section.content article.textContent {
    padding: 0px 10px 20px;
    padding-top: 12px;
   
    
}
/* Styling for text content within the main content */
section.siteWrapper section.contentWrapper section.content article.textContent h1{
    margin: 0px;
}
/* Styling for text content within the main content */
section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    
}
/* Styling for text content within the main content */
section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns section.columnText{
    width: 100%;
}
/* Styling for text content within the main content */
section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns section.columnProfiles{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px;
    padding: 5px;
}
section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns section.columnProfiles img{
    width: 50%;
}

section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns section.columnProfiles section.profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(95, 95, 95); 
    background-color: #EEEEEE;
    margin: 10px;
    padding: 5px;
}
section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns section.columnProfiles section.profile section.profileIMG{
    display: flex;
    justify-content: center;
    
}
section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns section.columnProfiles section.profile section.profileText{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
}
section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns section.columnProfiles section.profile section.profileText h2{
    font-size: 10px;    
}
section.profileBtns{
    width: 100%;
    margin: 10px 10px 0px 10px;
    margin-top: auto;
}
 section.profileBtns a{
    display: flex;
    justify-content: center;
    padding: 10px;
    margin-bottom: 5px;
    margin-top: auto;
    text-decoration: none;
    background-color: #600800;
    color: white;
    justify-self: flex-end;   
}
section.profileBtns1{
    width: 80%;
    display: flex;
    
}
 section.profileBtns1 a{
    display: flex;
    justify-content: center;
    padding: 10px;
    margin-bottom: 5px;
    margin-top: auto;
    text-decoration: none;
    background-color: #600800;
    color: white;
    justify-self: flex-end;   
}

section.profileBtns1 a.readMore{
    background-color: #696969;  
}
section.profileBtns a.readMore{
    background-color: #696969;  
}

section.siteWrapper section.contentWrapper section.content section.profiles{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px;
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile{
    display: flex;
    flex-direction: column;
    width: 30%;
    /*flex: 1;*/
    position: relative;
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile section.profileIMG {
    display: flex;
    justify-content: left;
    padding: 20px;
    padding: 20px 20px 0px 20px;
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile section.profileIMG img{
    width: 100%;
    
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile section.profileText{
    display: flex;
    justify-content: left;
    flex-direction: column;
    align-items: left;
    padding: 0px 20px 0px 20px;
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile section.profileText h1{
    font-size: 14px;
    margin: 10px;
    margin-left: 0px;
    line-height: 18px;
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile section.profileText h2{
    font-size: 8px;
    margin: 0px;
    text-align: left;
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile section.profileText section.contact{
    padding-top: 10px;
    padding-bottom: 10px;
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile section.profileText p {
    margin: 5px;
    margin-left: 0px;
    font-size: 9px;
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile section.profileBtns{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile section.profileBtns a{
    display: flex;
    justify-content: center;
    width: 75%;
    padding: 10px;
    margin-bottom: 5px;
    margin-top: auto;
    text-decoration: none;
    background-color: #600800;
    color: white;
    justify-self: flex-end;
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile section.profileBtns a.readMore{
    background-color: #696969;
   
}

/* Styling for the footer section */
section.siteWrapper section.footerWrapper {
    width: 100%; /* Set width */
    height: 40px; /* Set height */
    margin-top: 5px; /* Margin at the top */
    background-color: #EEEEEE; /* Background color */
    position: relative;
    bottom: 0;
}
/* Styling for the top content within the footer section */
section.siteWrapper section.footerWrapper section.topContent {
    display: flex;
    justify-content: center; /* Center content horizontally */
    font-size: 8px; /* Font size */
}
#read-more{
    width: 20%;
}
/* #### CSS RULES FOR SMALLER SCREENS ####*/

/* Media query for screens with a maximum width of 768 pixels */
@media only screen and (max-width: 968px) {
    /* Styles for smaller screens go here */
    /* Styling for the main container of the site */
    section.siteWrapper {
        width: 100%; /* Full width */
    }
    /* Styling for the header section */
    section.siteWrapper section.headerWrapper {
        width: 100%; /* Set width */
        height: 40px; /* Set height */
    }
    /* Styling for the header menu within the header section */
section.siteWrapper section.headerWrapper section.headerMenu {
    display: flex;
    justify-content: end; /* Align items to the end */
    padding: 0px 0px 0px; /* Padding */
}

/* Styling for the list within the header menu */
section.siteWrapper section.headerWrapper section.headerMenu ul {
    list-style: none; /* Remove list bullets */
    display: flex;
    margin-bottom: 0px; /* Remove margin */
}

/* Styling for list items within the header menu */
section.siteWrapper section.headerWrapper section.headerMenu ul li {
    padding: 7px 10px 5px 10px; /* Padding */
    background-color: white; /* Background color */
    font-size: 8px; /* Font size */
}

section.siteWrapper section.headerWrapper section.headerMenu ul li a{
    text-decoration: none;
    color: black;
}

/* Additional styling for specific list items */
section.siteWrapper section.headerWrapper section.headerMenu ul li#contact {
    margin-left: 2px;
    margin-right: 2px;
}

section.siteWrapper section.headerWrapper section.headerMenu ul li#b2b {
    border-radius: 10px 0px 0px 0px; /* Rounded corners */
}

section.siteWrapper section.headerWrapper section.headerMenu ul li#about {
    border-radius: 0px 10px 0px 0px; /* Rounded corners */
}

/* Styling for the content section */
section.siteWrapper section.contentWrapper {
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
}
/* Styling for the menu wrapper within the content section */
section.siteWrapper section.contentWrapper section.menuWrapper {
    width: 25%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent {
    width: 90%;
    height: auto;
    background-color: #600800; /* Background color */
}

/* Styling for the logo container within the menu content */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.social{
    display: none;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.social P{
    color: #600800;
}

/* Styling for the logo within the logo container */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.logo a img {
    width: 100%; /* Set width */
}

/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.toggleMenu {
    display: none;
}
/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.toggleMenu .bar1, .bar2, .bar3{
    width: 17px;
    height: 3px;
    background-color: rgb(255, 254, 254);
    margin: 4px 0;
    transition: 0.4s
}
/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.toggleMenu .change .bar1{
    transform: translate(0, 7px) rotate(-45deg);
}
/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.toggleMenu .change .bar2{
    opacity: 0;
}
/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.toggleMenu .change .bar3{
    transform: translate(0, -7px) rotate(45deg);
}

section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems{
    display: flex;
}

/* Styling for the list within the menu items */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul {
    width: 100%;
    list-style: none; /* Remove list bullets */
    padding: 0px; /* Remove padding */
    margin: 0px; /* Remove margin */
}

/* Styling for list items within the menu items */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li {
    padding: 10px 20px 10px; /* Padding */
    color: white; /* Text color */
    border-top: 1px solid white; /* Top border */
    font-size: 10px; /* Font size */
    letter-spacing: 0.5px; /* Spacing between characters */
}

section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li.active{
    background-color: #800800;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li a{
    text-decoration: none;
    color: white;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li:hover{
    background-color: #800800;
    cursor: pointer;
}

/* Styling for the main content within the content section */
section.siteWrapper section.contentWrapper section.content {
    width: 75%;
    padding-top: 10px; /* Padding at the top */
}

/* Styling for the image slider within the main content */
section.siteWrapper section.contentWrapper section.content section.imageSlider {
    padding: 0px 10px 0px; /* Padding */
}

/* Styling for images within the image slider */
section.siteWrapper section.contentWrapper section.content section.imageSlider img {
    width: 100%; /* Set width to 100% */
    display: none; /* Hide images by default */
}

/* Styling for text content within the main content */
section.siteWrapper section.contentWrapper section.content article.textContent {
    padding: 0px 10px 20px;
    padding-top: 12px;
}

/* Styling for the footer section */
section.siteWrapper section.footerWrapper {
    width: 100%; /* Set width */
    height: 40px; /* Set height */
    margin-top: 5px; /* Margin at the top */
    background-color: #EEEEEE; /* Background color */
    
}
/* Styling for the top content within the footer section */
section.siteWrapper section.footerWrapper section.topContent {
    display: flex;
    justify-content: center; /* Center content horizontally */
    font-size: 8px; /* Font size */
}
  }

  /* #### CSS RULES FOR MOBILE SCREEN ####*/
  /* Media query for screens with a maximum width of 480 pixels */
@media only screen and (max-width: 600px) {
    /* Additional styles for even smaller screens go here */
    /* Styling for heading level 1 */
    h1 {
        font-size: 12px; /* Font size */
        line-height: 18px; /* Spacing between lines */
        letter-spacing: 0.05em; /* Spacing between characters */
    }
     /* Styling for the main container of the site */
     section.siteWrapper {
        width: 100%; /* Full width */
    }
    /* Styling for the header section */
    section.siteWrapper section.headerWrapper {
        width: 100%; /* Set width */
        height: 40px; /* Set height */
        display: none;
    }
    /* Styling for the header menu within the header section */
section.siteWrapper section.headerWrapper section.headerMenu {
    display: flex;
    justify-content: end; /* Align items to the end */
    padding: 0px 0px 0px; /* Padding */
}

/* Styling for the list within the header menu */
section.siteWrapper section.headerWrapper section.headerMenu ul {
    list-style: none; /* Remove list bullets */
    display: flex;
    margin-bottom: 0px; /* Remove margin */
}

/* Styling for list items within the header menu */
section.siteWrapper section.headerWrapper section.headerMenu ul li {
    padding: 7px 10px 5px 10px; /* Padding */
    background-color: white; /* Background color */
    font-size: 8px; /* Font size */
}

section.siteWrapper section.headerWrapper section.headerMenu ul li a{
    text-decoration: none;
    color: black;
}

/* Additional styling for specific list items */
section.siteWrapper section.headerWrapper section.headerMenu ul li#contact {
    margin-left: 2px;
    margin-right: 2px;
}

section.siteWrapper section.headerWrapper section.headerMenu ul li#b2b {
    border-radius: 10px 0px 0px 0px; /* Rounded corners */
}

section.siteWrapper section.headerWrapper section.headerMenu ul li#about {
    border-radius: 0px 10px 0px 0px; /* Rounded corners */
}

/* Styling for the content section */
section.siteWrapper section.contentWrapper {
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
}
/* Styling for the menu wrapper within the content section */
section.siteWrapper section.contentWrapper section.menuWrapper {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 0px;
    
}

/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent {
    width: 100%;
    height: auto;
    background-color: #600800; /* Background color */
}

/* Styling for the logo container within the menu content */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer {
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.social{
    display: flex;
    justify-content: space-around;
    width: 20%;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.social a#topBookBtn{
   text-decoration: none;
   color: white;
   font-size: 8px;
   border: 1px solid white;
   padding: 5px;
   margin-right: 10px;
   margin-left: 0px;
   
}
/* Styling for the logo within the logo container */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.logo{
    align-self: center;
    width: 60%;
    
}
/* Styling for the logo within the logo container */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.logo a {
    display: flex;
    justify-content: center;
    
}

/* Styling for the logo within the logo container */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.logo a img {
    width: 40%; /* Set width */
    
}
/* Styling for the menu content within the menu wrapper */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.logoContainer section.toggleMenu {
    display: flex;
    margin-left: 10px;
    width: 20%;
}

/* Styling for the list within the menu items */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems{
    display: none;
    flex-direction: column;
}

/* Styling for the list within the menu items */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul {
    width: 100%;
    list-style: none; /* Remove list bullets */
    padding: 0px; /* Remove padding */
    margin: 0px; /* Remove margin */
}

/* Styling for list items within the menu items */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li {
    padding: 10px 20px 10px; /* Padding */
    color: white; /* Text color */
    border-top: 1px solid white; /* Top border */
    font-size: 10px; /* Font size */
    letter-spacing: 0.5px; /* Spacing between characters */
}

section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li.active{
    background-color: #800800;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li a{
    text-decoration: none;
    color: white;
}
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul li:hover{
    background-color: #800800;
    cursor: pointer;
}

/* Styling for the list within the menu items */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul#xMenu {
    display: flex;
    flex-direction: column;
}
/* Styling for the list within the menu items */
section.siteWrapper section.contentWrapper section.menuWrapper section.menuContent section.menuItems ul#xMenu li#firstHeaderMenuObject{
    border-top: 3px solid white;
}

/* Styling for the main content within the content section */
section.siteWrapper section.contentWrapper section.content {
    width: 100%;
    padding-top: 10px; /* Padding at the top */
}

section.siteWrapper section.contentWrapper section.content section.profiles{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px;
}
section.siteWrapper section.contentWrapper section.content section.profiles section.profile{
    display: flex;
    flex-direction: column;
    width: 100%;
    /*flex: 1;*/
    position: relative;
}

/* Styling for the image slider within the main content */
section.siteWrapper section.contentWrapper section.content section.imageSlider {
    padding: 0px 10px 0px; /* Padding */
}

/* Styling for images within the image slider */
section.siteWrapper section.contentWrapper section.content section.imageSlider img {
    width: 100%; /* Set width to 100% */
    display: none; /* Hide images by default */
}

/* Styling for text content within the main content */
section.siteWrapper section.contentWrapper section.content article.textContent {
    padding: 0px 10px 20px;
    padding-top: 12px;
}

/* Styling for text content within the main content */
section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns{
    display: flex;
    flex-direction: column;
    width: 100%;
    
}
/* Styling for text content within the main content */
section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns section.columnText{
    width: 100%;
}
/* Styling for text content within the main content */
section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns section.columnProfiles{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    padding: 5px;
}
section.siteWrapper section.contentWrapper section.content article.textContent section.two-columns section.columnProfiles section.profile {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Styling for the footer section */
section.siteWrapper section.footerWrapper {
    width: 100%; /* Set width */
    height: auto; /* Set height */
    margin-top: 5px; /* Margin at the top */
    background-color: #EEEEEE; /* Background color */
    position: relative;
    bottom: 0;
}
/* Styling for the top content within the footer section */
section.siteWrapper section.footerWrapper section.topContent {
    display: flex;
    justify-content: center; /* Center content horizontally */
    font-size: 8px; /* Font size */
    text-align: center;
    margin: 10px;
}

  }


  /*Style för Utbildning sidan: Kurser för datorskärm*/
section.columnUtbildning{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px;
    padding: 5px;
}
section.columnUtbildning section.profile{
    width: 45%;
    border: 1px solid grey;
    padding: 10px;
    margin: 5px;
}
section.columnUtbildning section.profile section.profileIMG{
    display: flex;
    justify-content: center;
}
section.columnUtbildning section.profile section.profileIMG{
    display: flex;
    justify-content: center;
}
section.columnUtbildning section.profile section.profileIMG img{
    width: 100%;
}


@media only screen and (max-width: 600px) {
/*Style för Utbildning sidan: Kurser för mobilskärm*/
section.columnUtbildning{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px;
    padding: 5px;
}
section.columnUtbildning section.profile{
    width: 90%;
    border: 1px solid grey;
    padding: 10px;
    margin: 5px;
}
section.columnUtbildning section.profile section.profileIMG{
    display: flex;
    justify-content: center;
}
section.columnUtbildning section.profile section.profileIMG{
    display: flex;
    justify-content: center;
}
section.columnUtbildning section.profile section.profileIMG img{
    width: 100%;
}
}
section.omProfile{
    width: 100%;
}
section.omProfile section.profileFullWidth {
    display: flex;
 }
 section.omProfile section.profileFullWidth section.imgColumn{
    width: 20%;
    
 }
 section.omProfile section.profileFullWidth section.imgColumn section.omProfileIMG{
    width: 100%;
 }
 section.omProfile section.profileFullWidth section.imgColumn section.omProfileIMG img{
    width: 80%;
}
section.omProfile section.profileFullWidth section.omProfileText{
width: 70%;
}
