/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

:root{
    --white: #f9f9f9;
    --black: #000000;
    --grey: #aeb3b8;
    --darkgrey: #3a3838;
    --red: #A90700;
}

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


.WHITE1 {
    color:white;
}

.RED1 {
    color:#A90700;
}


/* html { height:100%; }  */

body {
/*    position:absolute; top:0; bottom:0; right:0; left:0; */
    background-color: var(--white);
    font-family: "Poppins", sans-serif;
    text-align:center;
    height: 95%;
    /*overflow: hidden;
        width: 100%;
    margin: 0;
 */
}



.innerContent0 {
    text-align:center;
    margin-left: auto;
    margin-right: auto;
    width:90%;
    padding-top: 10px;
/*    min-height: calc(100vh - 400px); */
}


.contact-form {
    /*background:#fff; */
    /*background: rgba(255, 255, 255, 0.9);*/
/*    z-index:110; */
    position:relative;
    margin-top:-25px;
    padding:20px;
}
.contact-form h3 {
    color:#838589;
    padding-bottom:20px;
}

.center {
    text-align:center;
    margin-left: auto;
    margin-right: auto;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

.radonfacts li {
    list-style-type: square;
    padding-bottom: 10px;
    margin-left:10px;
}

/* Header */
.header{
    background-color: var(--black);
    box-shadow: 1px 1px 5px 0px var(--grey);
    position: sticky;
    top: 0;
    width: 100%;
}

/*
.footer {
    position:fixed;
    left:0px;
    bottom:0px;
    width:100%;
}
*/

.footerbar {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    height:25px;
}

.sitebar {
    background-color: var(--red);
    color: var(--red);
    text-align: center;
    height:25px;
}


/* Logo */
.logo{
    display: inline-block;
    color: var(--white);
    font-size: 60px;
    margin-left: 2px;
}

.logo img {
    height: 50px;
}

/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--black);
    overflow: hidden;   
    position:relative;
    
}

.menu {

}

.menu a{
    display: block;
    padding: 30px;
    color: var(--white);
}

.menu a:hover{
    background-color: var(--grey);
}

.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* Menu Icon */

.hamb{
    cursor: pointer;
    float: right;
    padding: 20px 20px;
}


.hamb-line {
    background: var(--white);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
    
}

.hamb-line::before,
.hamb-line::after{
    background: var(--white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before{
    top: 5px;
}

.hamb-line::after{
    top: -5px;
}


.side-menu {
    display: none;
}

/* Toggle menu icon */

.side-menu:checked ~ nav{
    max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-lfe::before {
    transform: rotate(-45deg);
    top:0;

}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

.container h1{
    color: #fff;
    text-align: center;
  }
  
  details{
    background-color: var(--grey);
    color: #fff;
    font-size: 1.2rem;
  }
  
  summary {
    background-color: var(--red);
    padding: .5em 1.3rem;
    list-style: none;
    display: flex;
    justify-content: space-between;  
    transition: height 1s ease;
  }
  
  summary::-webkit-details-marker {
    display: none;
  }
  
  summary:after{
    content: "\002B";
  }
  
  details[open] summary {
      background-color: var(--red);
      color: var(--white);
      font-weight:bold;
      border-bottom: 1px solid #aaa;
      margin-bottom: .5em;
  }
  
  details[open] summary:after{
    content: "\00D7";
  }
  
  details[open] div{
 /*   position: relative;
    float: left;
  */  padding: .5em 1em;
    background-color: var(--grey);
    color: var(--black);
}

  details[open] em{
    font-weight:bold;
}

/* Responsiveness */

@media (min-width: 950px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
/*        margin-right:10px; */
        width: fit-content;
        background-color: transparent;

    }

/*    html { height:100%; }
body { position:absolute; top:0; bottom:0; right:0; left:0; }
    }
*/

    .menu li{
        float: left;
    }

    .menu a:hover{
        background-color: transparent;
        color: var(--grey);
        
    }
    
    .hamb{
        display: none;
    }

}
