body {
    margin: 0px;
    padding: 0px;
    border-top: #3c434b solid 5px ;
	  border-bottom: #3c434b solid 5px ;
	  text-align: center;
	  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto, "Helvetica Neue",Arial,sans-serif;
  }

  h1, h2, h3, p  {
    font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto, "Helvetica Neue",Arial,sans-serif;
	margin-top: 0;
	text-align:center;
}

h1 {
	font-size: 30pt;
	font-weight: 800;
	margin-top : 55px;
	/* border-bottom:thin gray dashed;  */
  padding-bottom:15px;
  color: #3c434b;
}

h2 {
	font-size: 18pt;
    font-weight: normal;
	color: #5d666f;
}

h3 
{
	font-size: 15pt;
  font-weight: normal;
  color: #5d666f;
}

a img
{
	border-width:0;
}

p
{
	text-indent: 20px;
	font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto, "Helvetica Neue",Arial,sans-serif;
	font-size:13pt;
	line-height: 1.8;
	text-align: justify;
}

ul
{
	text-indent: 20px;
    line-height: 1.8;
    font-size:13pt;
    text-align: justify;
	list-style-position: inside;
	list-style-image: url('Images/bullet.png');
}

ol
{
    font-size:13pt;
	line-height: 1.8;
	text-indent: 20px;
	text-align: justify;
	list-style-position: inside;
}

     a, a:visited
    {
       color:#ea704b;
       text-decoration: none;
    }

    a:hover
    {
       text-decoration: underline;
    }

    .container {
        padding: 0 15px;
      }
    
      @media (min-width: 575.98px) {
        .container {
          max-width: 540px;
          margin: auto;
          padding: 0;
        }
      }
    
      @media (min-width: 767.98px) {
        .container {
          max-width: 720px;
        }
      }
    
      @media (min-width: 991.98px) {
        .container {
          max-width: 960px;
        }
      }
    
      @media (min-width: 1199.98px) {
        .container {
          max-width: 1140px;
        }
      }
    
      .img-responsive {
        max-width: 100%;
        height: auto;
      }
    
      .row {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        justify-content: center;
        column-gap: 20px;
        row-gap: 20px;
      }
    
      /* .column {
       
      } */
    
      .card {
        border-radius: 10px;
        box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
        margin: 0;
        box-sizing: border-box;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: stretch;
        align-content: stretch;
      }
    
      .card-line {
        margin: auto 10px;
        border-bottom: 1px solid whitesmoke;
        /* box-sizing: border-box; */
      }
    
        .card-line > * {
          margin: 25px;
        }
    
      .card-header {
        /* box-sizing: border-box; */
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background-color: #3c434b;
        color: white;
        font-size: 14pt;
        font-weight: bold;
        margin: 0;
      }
    
        .card-header > * {
          margin: 25px;
        }
    
      .dark-region .card-line {
        border-bottom: 1px solid darkgray;
      }
    
      .dark-region {
        width: 100%;
        background-color: #5d666f;
        color: white;
      }
    
        .dark-region h1, .dark-region h2, .dark-region h3 {
          color: white;
        }
    
        .black-region {
          width: 100%;
          background-color: black;
          color: white;
          padding: 30px 0;
        }
      
          .black-region h1, .black-region h2, .black-region h3 {
            color: white;
          }
    
          .theme-region {
            width: 100%;
            background-color: #ea704b;
            padding: 30px;
          }
      
    
    
        .footer {
          margin: 25px auto;
          text-align: center;
          color: #808080;
          font-size: 11px;
          font-family: Arial, Helvetica, sans-serif;
        }
    
        .footer a, footer a:visited{
          color: #808080;
          text-decoration: none;
        }
    
        .footer a:hover {
          color: #808080;
          text-decoration: underline;
        }
    
        .separator {
          margin: 20px;
          width: 100%;
          border-bottom:thin gray dashed;
        }
    
    
        .dcard
        {
          display: flex;
          flex-direction: column;
          justify-content: start;
          align-items: center;
          align-content: center;
        }
        .dcard a, .dcard a:visited
        {
           color:#ea704b;
           text-decoration: none;
           font-size: 12pt;
           font-weight: bold;
           margin-top: 10px;
        }
    
        .dcard a:hover
        {
           text-decoration: underline;
        }
    
    .dcard-more
    {
      font-size: 10pt;
      font-weight: normal;
    }
    
        .dcard-more a
        {
           font-size: 10pt;
           font-weight: normal;
           margin-top: 0px;
        }

        .menu-main {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            /* justify-items: flex-start; */
            align-items: center;
            align-content: center;
          }
          
          .nav {
            margin-top: 70px;
            margin-bottom: 70px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            align-content: center;
          }
          
          .menu-v {
            flex-direction: column;
          }
          
          .menu-arrow {
            width: 24px;
            height: 24px;
            background: url("images/arrow1.svg");
            margin: 2px;
          }
          
          .menu-v > .menu-arrow {
            background: url("images/arrow2.svg");
          }
          
          .menu-item {
            height: 36px;
            width: 100px;
            border: solid #3c434b;
            border-width: 1px;
            border-radius: 5px;
            display: flex;
            justify-content: center;
            justify-items: center;
            align-items: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: black;
            font-weight: bold;
            text-decoration: none;
            transition: 0.2s ease-in-out;
            user-select: none;
            font-size: 10pt;
          }
          
          a.menu-item,
          a:visited.menu-item {
            color: black;
            text-decoration: none;
          }
          
          a.menu-item-app,
          a:visited.menu-item-app,
          a:visited.menu-item-app2 {
            color: white;
            text-decoration: none;
          }
          
          .menu-item-app {
            color: white;
            background-color: #3c434b;
          }
          
          .menu-item-app2, a.menu-item-app2 {
            color: white;
            background-color: black;
            width: 150px;
            height: 64px;
          }
          
          .menu-item:hover,
          a:hover.menu-item {
            background-color: #ea704b;
            border-color: #ea704b;
            box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.2);
            color: white;
          }
          
          a.menu-item:active {
            background-color: #ff3c00;
            border-color: #ff3c00;
            box-shadow: 0 -4px 8px #ff3c007c;
          }
          
          .menu-dropdown {
            display: inline-flex;
            position: relative;
          }
          
          .menu-dropdown-container {
            background: rgba(255, 255, 255, 1);
            /* display: none; */
            left: -45px;
            width: 190px;
            position: absolute;
            top: 100%;
            z-index: 100;
            /* border-style: solid;
                  border-color: #ea704b;
                  border-width: 1px;
                  border-top-width: 2px; */
            /* border-color: white; */
            /* border: solid #eeeeee;
                  border-width: 1px;
                  border-radius: 12px; */
            border-radius: 12px;
            padding-bottom: 15px;
            transition: 0.2s;
            visibility: hidden;
            opacity: 0;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          }
          
          .menu-dropdown:hover .menu-dropdown-container {
            /* display: flex; */
            visibility: visible;
            opacity: 1;
          }
          
          @media (max-width: 768px) {
            .menu-main {
              flex-direction: column;
            }
          
              .menu-main > .menu-arrow {
                background: url("images/arrow2.svg");
              }
          
            .nav {
              flex-direction: column;
            }
          
            /* .row
                  {
                    grid-template-columns: none;
                    grid-template-rows: 1fr 1fr 1fr;
                  } */
          }

          .btn {
            border: solid #3c434b;
            border-width: 1px;
            border-radius: 5px;
            display: inline-flex;
            justify-content: center;
            justify-items: center;
            align-items: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: black;
            font-weight: bold;
            text-decoration: none;
            transition: 0.2s ease-in-out;
            user-select: none;
            background-color: white;
            padding: 10px;
            margin: 10px;
            text-align: center;
          }
        
          a.btn,
          a:visited.btn {
            color: black;
            text-decoration: none;
          }
        
          a.btn-dark,
          a.btn-black,
          a:visited.btn-dark,
          a:visited.btn-black {
            color: white;
            text-decoration: none;
          }
        
          .btn-dark {
            color: white;
            background-color: #3c434b;
          }
        
          .btn-black {
            color: white;
            background-color: black;
          }
        
          .btn:hover {
            background-color: #ea704b;
            border-color: #ea704b;
            box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.2);
            text-decoration: none;
          }
        
          a.btn:active {
            background-color: #ff3c00;
            border-color: #ff3c00;
            box-shadow: 0 -4px 8px #ff3c007c;
          }
        
          .btn-app {
            width: 160px;
            height: 42px;
          }