@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600&display=swap');

*{
   font-family: 'Nunito', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   transition: all .2s linear;
}

html{
   font-size: 60%;
   overflow-x: hidden;
}



.container{
   max-width: 1200px;
   margin:0 auto;
   padding:3rem 2rem;
}

.container .title{
   font-size: 3.5rem;
   /* color:#444; */
   margin-bottom: 3rem;
   text-transform: uppercase;
   text-align: center;
}

.container .products-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   gap:2rem;
   margin-top: 20px;
}


 .products-container .product{
   text-align: center;
   padding:3rem 2rem;
   background: #fff;
   box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
   outline: .1rem solid #ccc;
   outline-offset: -1.5rem;
   /* cursor: pointer; */
}
p{
   padding: 25px;
   font-size: 2rem;
}

.container .products-container .product:hover{
   outline: .2rem solid #006EBB;
   outline-offset: 0;
}
.container .products-container .product:focus-within{
   outline: .2rem solid #006EBB;
   outline-offset: 0;
}

.container .products-container .product img{
    max-width: 100%;
    max-height: 400px;

}
.description {
   text-decoration: none;
   color:#000;
}

.container .products-container .product:hover img{
   transform: scale(.9);
}
.container .products-container .product  a:focus img{
   transform: scale(.9);
}

.container .products-container .product h3{
   padding:.5rem 0;
   font-size: 2rem;
   color:#444;
}

.container .products-container .product:hover h3{
   color:#006EBB;
}


.products-preview{
   position: fixed;
   top:0; left:0;
   min-height: 100vh;
   width: 100%;
   background: rgba(0,0,0,.8);
   display: none;
   align-items: center;
   justify-content: center;
}

.products-preview .preview{
   display: none;
   padding:2rem;
   text-align: center;
   background: #fff;
   position: relative;
   margin:2rem;
   width: 80rem;
}

.products-preview .preview.active{
   display: inline-block;
}

.products-preview .preview img{
   max-width: 100%;
   max-height: 550px;
}

.products-preview .preview .fa-times{
   position: absolute;
   top:1rem; right:1.5rem;
   cursor: pointer;
   color:#444;
   font-size: 4rem;
}

.products-preview .preview .fa-times:hover{
   transform: rotate(90deg);
}

.products-preview .preview h3{
   color:#444;
   padding:.5rem 0;
   font-size: 2.5rem;
}

.products-preview .preview p{
   line-height: 1.5;
   padding:0 0;
   font-size: 1.6rem;
   color:#444;
}
header{
   display: flex;
   justify-content: space-evenly;
   align-items: center;
   background-color: #293948;
   padding: 1rem 2%;
   min-height: 200px;
   font-size: 1.625em;
   font-weight: 500;
   cursor: pointer;
}
header h1{
   color:white;
   text-align: center;
}
header img {
   max-width: 90px;
   max-height: 120px;
   border-radius: 10px;
}

header:hover h1 {
   color: #55b9ff;
}

.menu {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #eee;
        }

        .menu a {
            color: black;
            text-decoration: none;
            padding: 15px;
        }
        .menu .title span{
         font-size: 1.5em;
         margin-right: 10px;
         cursor: pointer;
        }
        .menu .title i{
         font-size: 1.5em;
        }


        .menu .title {
            display: flex;
            align-items: center;
            height: 80%;
        }
        .menu .title:hover {
            background-color: #006EBB;
            box-shadow: 0px 0px 2px 2px #000;
        }
        .menu .title:focus {
         background-color: #006EBB;
         box-shadow: 0px 0px 2px 2px #000;
        }
        .menu .item img {
            width: 50px;
            height: 20px;
            margin-right: 5px;
        }
        .menu .item .migam{
         width: 40px;
        }
        .menu .item {
            /* background-image: url('button.jpg');
            background-size: cover; */
            padding: 20px;
            margin: 10px;
            height: 80%;
        }
        .menu .item:hover {
         background-color: #006EBB;
         box-shadow: 0px 0px 2px 2px #000;
        }
        .menu .item:focus{
         background-color: #006EBB;
         box-shadow: 0px 0px 2px 2px #000;
        }
        .menu .item .bip {
         color:red;
        }

        @media (max-width: 768px) {
            .menu {
                flex-direction: column;
                align-items: center;
            }
            .menu .item {
                background-image: none;
                margin: 10px 0;
                text-align: center;
                width: 100%;
                padding: 15px;
            }
        }

        .contrast-changeable {
            background-color: #fff;
            color: #000;
        }

        .high-contrast .contrast-changeable {
            background-color: #000;
        }
        .color-changeable{
         color:#000;
        }
        .high-color .color-changeable{
         color:#fff;
         border-color: white;
        }
        svg path {
         fill: red;
       }

@media (max-width:991px){

   html{
      font-size: 55%;
   }

}

@media (max-width:768px){

   .products-preview .preview img{
      height: auto;
   }

}

@media (max-width:450px){

   html{
      font-size: 50%;
   }

}

/* ------------------------------------------------------------------- */
.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1210px;
    margin-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid black;
    cursor: pointer;
    text-decoration: none;
  color: #000;
}
.question:hover{
   color: #006EBB;
}
.question:focus{
   color: #006EBB;
}
.question h3 {
    font-size: 1.8rem;
}
.question i {
   margin-right: 10px;
   font-size: 2rem;
}
.question.active i {
    transform: rotate(180deg);
}
/* =----------------------- */
.question1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1210px;
    margin-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid black;
    cursor: pointer;
    text-decoration: none;
   color: #000;
}
.question1:hover{
   color: #006EBB;

}
.question1 h3 {
    font-size: 1.8rem;
}
.question1 i {
   margin-right: 10px;
   font-size: 2rem;
}
.question1:focus {
   color: #006EBB;
}
.question1.active i {
    transform: rotate(180deg);
}
/* ------------------------------------------- */
.question2 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
  color: #000;
}
.question2:hover{
  color: #006EBB;

}
.question2 h3 {
   font-size: 1.8rem;
}
.question2 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question2:focus {
  color: #006EBB;
}
.question2.active i {
   transform: rotate(180deg);
}
/* ---------------------------------------------- */
.question3 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question3:hover{
  color: #006EBB;
}
.question3:focus{
  color: #006EBB;
}
.question3 h3 {
   font-size: 1.8rem;
}
.question3 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question3.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------ */
.question4 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question4:hover{
  color: #006EBB;
}
.question4:focus{
  color: #006EBB;
}
.question4 h3 {
   font-size: 1.8rem;
}
.question4 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question4.active i {
   transform: rotate(180deg);
}
/* --------------------------------------------- */
.question5 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question5:hover{
  color: #006EBB;
}
.question5:focus{
  color: #006EBB;
}
.question5 h3 {
   font-size: 1.8rem;
}
.question5 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question5.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------ */
.question6 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question6:hover{
  color: #006EBB;
}
.question6:focus{
  color: #006EBB;
}
.question6 h3 {
   font-size: 1.8rem;
}
.question6 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question6.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------- */
/* --------------------------------------------------- */
.question7 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question7:hover{
  color: #006EBB;
}
.question7:focus{
  color: #006EBB;
}
.question7 h3 {
   font-size: 1.8rem;
}
.question7 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question7.active i {
   transform: rotate(180deg);
}
/* ----------------------------------------------------- */
.question8 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question8:hover{
  color: #006EBB;
}
.question8:focus{
  color: #006EBB;
}
.question8 h3 {
   font-size: 1.8rem;
}
.question8 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question8.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------- */
.question9 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question9:hover{
  color: #006EBB;
}
.question9:focus{
  color: #006EBB;
}
.question9 h3 {
   font-size: 1.8rem;
}
.question9 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question9.active i {
   transform: rotate(180deg);
}
/* --------------------------------------------------------- */
.question10 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question10:hover{
  color: #006EBB;
}
.question10:focus{
  color: #006EBB;
}
.question10 h3 {
   font-size: 1.8rem;
}
.question10 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question10.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------ */
.question11 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question11:hover{
  color: #006EBB;
}
.question11:focus{
  color: #006EBB;
}
.question11 h3 {
   font-size: 1.8rem;
}
.question11 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question11.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------ */
.question12 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question12:hover{
  color: #006EBB;
}
.question12:focus{
  color: #006EBB;
}
.question12 h3 {
   font-size: 1.8rem;
}
.question12 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question12.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------ */
.question13 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question13.container{
  color: #006EBB;
}
.question13:focus{
  color: #006EBB;
}
.question13 h3 {
   font-size: 1.8rem;
}
.question13 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question13.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------ */
.question14 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question14.container{
  color: #006EBB;
}
.question14:focus{
  color: #006EBB;
}
.question14 h3 {
   font-size: 1.8rem;
}
.question14 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question14.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question15 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question15.container{
  color: #006EBB;
}
.question15:focus{
  color: #006EBB;
}
.question15 h3 {
   font-size: 1.8rem;
}
.question15 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question15.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question16 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question16.container{
  color: #006EBB;
}
.question16:focus{
  color: #006EBB;
}
.question16 h3 {
   font-size: 1.8rem;
}
.question16 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question16.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question17 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question17.container{
  color: #006EBB;
}
.question17:focus{
  color: #006EBB;
}
.question17 h3 {
   font-size: 1.8rem;
}
.question17 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question17.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question18 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question18.container{
  color: #006EBB;
}
.question18:focus{
  color: #006EBB;
}
.question18 h3 {
   font-size: 1.8rem;
}
.question18 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question18.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question19 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question19.container{
  color: #006EBB;
}
.question19:focus{
  color: #006EBB;
}
.question19 h3 {
   font-size: 1.8rem;
}
.question19 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question19.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question20 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question20.container{
  color: #006EBB;
}
.question20:focus{
  color: #006EBB;
}
.question20 h3 {
   font-size: 1.8rem;
}
.question20 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question20.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question21 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question21.container{
  color: #006EBB;
}
.question21:focus{
  color: #006EBB;
}
.question21 h3 {
   font-size: 1.8rem;
}
.question21 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question21.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question22 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question22.container{
  color: #006EBB;
}
.question22:focus{
  color: #006EBB;
}
.question22 h3 {
   font-size: 1.8rem;
}
.question22 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question22.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question23 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question23.container{
  color: #006EBB;
}
.question23:focus{
  color: #006EBB;
}
.question23 h3 {
   font-size: 1.8rem;
}
.question23 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question23.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question24 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question24.container{
  color: #006EBB;
}
.question24:focus{
  color: #006EBB;
}
.question24 h3 {
   font-size: 1.8rem;
}
.question24 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question24.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question25 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question25.container{
  color: #006EBB;
}
.question25:focus{
  color: #006EBB;
}
.question25 h3 {
   font-size: 1.8rem;
}
.question25 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question25.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question26 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question26.container{
  color: #006EBB;
}
.question26:focus{
  color: #006EBB;
}
.question26 h3 {
   font-size: 1.8rem;
}
.question26 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question26.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question27 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question27.container{
  color: #006EBB;
}
.question27:focus{
  color: #006EBB;
}
.question27 h3 {
   font-size: 1.8rem;
}
.question27 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question27.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question28 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question28.container{
  color: #006EBB;
}
.question28:focus{
  color: #006EBB;
}
.question28 h3 {
   font-size: 1.8rem;
}
.question28 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question28.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question29 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question29.container{
  color: #006EBB;
}
.question29:focus{
  color: #006EBB;
}
.question29 h3 {
   font-size: 1.8rem;
}
.question29 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question29.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question30 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question30.container{
  color: #006EBB;
}
.question30:focus{
  color: #006EBB;
}
.question30 h3 {
   font-size: 1.8rem;
}
.question30 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question30.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question31 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question31.container{
  color: #006EBB;
}
.question31:focus{
  color: #006EBB;
}
.question31 h3 {
   font-size: 1.8rem;
}
.question31 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question31.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question32 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question32.container{
  color: #006EBB;
}
.question32:focus{
  color: #006EBB;
}
.question32 h3 {
   font-size: 1.8rem;
}
.question32 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question32.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question33 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question33.container{
  color: #006EBB;
}
.question33:focus{
  color: #006EBB;
}
.question33 h3 {
   font-size: 1.8rem;
}
.question33 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question33.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question34 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question34.container{
  color: #006EBB;
}
.question34:focus{
  color: #006EBB;
}
.question34 h3 {
   font-size: 1.8rem;
}
.question34 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question34.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question35 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question35.container{
  color: #006EBB;
}
.question35:focus{
  color: #006EBB;
}
.question35 h3 {
   font-size: 1.8rem;
}
.question35 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question35.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question36 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question36.container{
  color: #006EBB;
}
.question36:focus{
  color: #006EBB;
}
.question36 h3 {
   font-size: 1.8rem;
}
.question36 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question36.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question37 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question37.container{
  color: #006EBB;
}
.question37:focus{
  color: #006EBB;
}
.question37 h3 {
   font-size: 1.8rem;
}
.question37 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question37.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question38 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question38.container{
  color: #006EBB;
}
.question38:focus{
  color: #006EBB;
}
.question38 h3 {
   font-size: 1.8rem;
}
.question38 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question38.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question39 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question39.container{
  color: #006EBB;
}
.question39:focus{
  color: #006EBB;
}
.question39 h3 {
   font-size: 1.8rem;
}
.question39 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question39.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question40 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question40.container{
  color: #006EBB;
}
.question40:focus{
  color: #006EBB;
}
.question40 h3 {
   font-size: 1.8rem;
}
.question40 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question40.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question41 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question41.container{
  color: #006EBB;
}
.question41:focus{
  color: #006EBB;
}
.question41 h3 {
   font-size: 1.8rem;
}
.question41 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question41.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question42 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question42.container{
  color: #006EBB;
}
.question42:focus{
  color: #006EBB;
}
.question42 h3 {
   font-size: 1.8rem;
}
.question42 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question42.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question43 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question43.container{
  color: #006EBB;
}
.question43:focus{
  color: #006EBB;
}
.question43 h3 {
   font-size: 1.8rem;
}
.question43 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question43.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question44 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question44.container{
  color: #006EBB;
}
.question44:focus{
  color: #006EBB;
}
.question44 h3 {
   font-size: 1.8rem;
}
.question44 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question44.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question45 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question45.container{
  color: #006EBB;
}
.question45:focus{
  color: #006EBB;
}
.question45 h3 {
   font-size: 1.8rem;
}
.question45 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question45.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question46 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question46.container{
  color: #006EBB;
}
.question46:focus{
  color: #006EBB;
}
.question46 h3 {
   font-size: 1.8rem;
}
.question46 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question46.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question47 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question47.container{
  color: #006EBB;
}
.question47:focus{
  color: #006EBB;
}
.question47 h3 {
   font-size: 1.8rem;
}
.question47 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question47.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question48 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question48.container{
  color: #006EBB;
}
.question48:focus{
  color: #006EBB;
}
.question48 h3 {
   font-size: 1.8rem;
}
.question48 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question48.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question49 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question49.container{
  color: #006EBB;
}
.question49:focus{
  color: #006EBB;
}
.question49 h3 {
   font-size: 1.8rem;
}
.question49 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question49.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question50 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question50.container{
  color: #006EBB;
}
.question50:focus{
  color: #006EBB;
}
.question50 h3 {
   font-size: 1.8rem;
}
.question50 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question50.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question51 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question51.container{
  color: #006EBB;
}
.question51:focus{
  color: #006EBB;
}
.question51 h3 {
   font-size: 1.8rem;
}
.question51 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question51.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question52 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question52.container{
  color: #006EBB;
}
.question52:focus{
  color: #006EBB;
}
.question52 h3 {
   font-size: 1.8rem;
}
.question52 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question52.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question53 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
 color: #000;
}
.question53.container{
  color: #006EBB;
}
.question53:focus{
  color: #006EBB;
}
.question53 h3 {
   font-size: 1.8rem;
}
.question53 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question53.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question54 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question54.container{
  color: #006EBB;
}
.question54:focus{
  color: #006EBB;
}
.question54 h3 {
   font-size: 1.8rem;
}
.question54 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question54.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question55 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question55.container{
  color: #006EBB;
}
.question55:focus{
  color: #006EBB;
}
.question55 h3 {
   font-size: 1.8rem;
}
.question55 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question55.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question56 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question56.container{
  color: #006EBB;
}
.question56:focus{
  color: #006EBB;
}
.question56 h3 {
   font-size: 1.8rem;
}
.question56 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question56.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question57 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question57.container{
  color: #006EBB;
}
.question57:focus{
  color: #006EBB;
}
.question57 h3 {
   font-size: 1.8rem;
}
.question57 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question57.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question58 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question58.container{
  color: #006EBB;
}
.question58:focus{
  color: #006EBB;
}
.question58 h3 {
   font-size: 1.8rem;
}
.question58 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question58.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question59 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question59.container{
  color: #006EBB;
}
.question59:focus{
  color: #006EBB;
}
.question59 h3 {
   font-size: 1.8rem;
}
.question59 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question59.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question60 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question60.container{
  color: #006EBB;
}
.question60:focus{
  color: #006EBB;
}
.question60 h3 {
   font-size: 1.8rem;
}
.question60 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question60.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question61 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question61.container{
  color: #006EBB;
}
.question61:focus{
  color: #006EBB;
}
.question61 h3 {
   font-size: 1.8rem;
}
.question61 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question61.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question62 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question62.container{
  color: #006EBB;
}
.question62:focus{
  color: #006EBB;
}
.question62 h3 {
   font-size: 1.8rem;
}
.question62 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question62.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question63 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question63.container{
  color: #006EBB;
}
.question63:focus{
  color: #006EBB;
}
.question63 h3 {
   font-size: 1.8rem;
}
.question63 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question63.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question64 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question64.container{
  color: #006EBB;
}
.question64:focus{
  color: #006EBB;
}
.question64 h3 {
   font-size: 1.8rem;
}
.question64 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question64.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question65 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question65.container{
  color: #006EBB;
}
.question65:focus{
  color: #006EBB;
}
.question65 h3 {
   font-size: 1.8rem;
}
.question65 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question65.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question66 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question66.container{
  color: #006EBB;
}
.question66:focus{
  color: #006EBB;
}
.question66 h3 {
   font-size: 1.8rem;
}
.question66 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question66.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question67 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question67.container{
  color: #006EBB;
}
.question67:focus{
  color: #006EBB;
}
.question67 h3 {
   font-size: 1.8rem;
}
.question67 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question67.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question68 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question68.container{
  color: #006EBB;
}
.question68:focus{
  color: #006EBB;
}
.question68 h3 {
   font-size: 1.8rem;
}
.question68 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question68.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question69 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question69.container{
  color: #006EBB;
}
.question69:focus{
  color: #006EBB;
}
.question69 h3 {
   font-size: 1.8rem;
}
.question69 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question69.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question70 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question70.container{
  color: #006EBB;
}
.question70:focus{
  color: #006EBB;
}
.question70 h3 {
   font-size: 1.8rem;
}
.question70 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question70.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question71 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question71.container{
  color: #006EBB;
}
.question71:focus{
  color: #006EBB;
}
.question71 h3 {
   font-size: 1.8rem;
}
.question71 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question71.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question72 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question72.container{
  color: #006EBB;
}
.question72:focus{
  color: #006EBB;
}
.question72 h3 {
   font-size: 1.8rem;
}
.question72 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question72.active i {
   transform: rotate(180deg);
}
/* -------------------------------------------------------------- */
.question73 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question73.container{
  color: #006EBB;
}
.question73:focus{
  color: #006EBB;
}
.question73 h3 {
   font-size: 1.8rem;
}
.question73 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question73.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question74 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question74.container{
  color: #006EBB;
}
.question74:focus{
  color: #006EBB;
}
.question74 h3 {
   font-size: 1.8rem;
}
.question74 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question74.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question75 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question75.container{
  color: #006EBB;
}
.question75:focus{
  color: #006EBB;
}
.question75 h3 {
   font-size: 1.8rem;
}
.question75 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question75.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question76 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question76.container{
  color: #006EBB;
}
.question76:focus{
  color: #006EBB;
}
.question76 h3 {
   font-size: 1.8rem;
}
.question76 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question76.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question77 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question77.container{
  color: #006EBB;
}
.question77:focus{
  color: #006EBB;
}
.question77 h3 {
   font-size: 1.8rem;
}
.question77 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question77.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question78 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question78.container{
  color: #006EBB;
}
.question78:focus{
  color: #006EBB;
}
.question78 h3 {
   font-size: 1.8rem;
}
.question78 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question78.active i {
   transform: rotate(180deg);
}

/* ------------------------------------------------------------- */
.question79 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question79.container{
  color: #006EBB;
}
.question79:focus{
  color: #006EBB;
}
.question79 h3 {
   font-size: 1.8rem;
}
.question79 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question79.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question80 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question80.container{
  color: #006EBB;
}
.question80:focus{
  color: #006EBB;
}
.question80 h3 {
   font-size: 1.8rem;
}
.question80 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question80.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question81 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question81.container{
  color: #006EBB;
}
.question81:focus{
  color: #006EBB;
}
.question81 h3 {
   font-size: 1.8rem;
}
.question81 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question81.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question82 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question82.container{
  color: #006EBB;
}
.question82:focus{
  color: #006EBB;
}
.question82 h3 {
   font-size: 1.8rem;
}
.question82 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question82.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question83 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question83.container{
  color: #006EBB;
}
.question83:focus{
  color: #006EBB;
}
.question83 h3 {
   font-size: 1.8rem;
}
.question83 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question83.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question84 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question84.container{
  color: #006EBB;
}
.question84:focus{
  color: #006EBB;
}
.question84 h3 {
   font-size: 1.8rem;
}
.question84 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question84.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question85 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question85.container{
  color: #006EBB;
}
.question85:focus{
  color: #006EBB;
}
.question85 h3 {
   font-size: 1.8rem;
}
.question85 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question85.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question86 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question86.container{
  color: #006EBB;
}
.question86:focus{
  color: #006EBB;
}
.question86 h3 {
   font-size: 1.8rem;
}
.question86 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question86.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question87 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question87.container{
  color: #006EBB;
}
.question87:focus{
  color: #006EBB;
}
.question87 h3 {
   font-size: 1.8rem;
}
.question87 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question87.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question88 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question88.container{
  color: #006EBB;
}
.question88:focus{
  color: #006EBB;
}
.question88 h3 {
   font-size: 1.8rem;
}
.question88 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question88.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question89 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question89.container{
  color: #006EBB;
}
.question89:focus{
  color: #006EBB;
}
.question89 h3 {
   font-size: 1.8rem;
}
.question89 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question89.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question90 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question90.container{
  color: #006EBB;
}
.question90:focus{
  color: #006EBB;
}
.question90 h3 {
   font-size: 1.8rem;
}
.question90 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question90.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question91 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question91.container{
  color: #006EBB;
}
.question91:focus{
  color: #006EBB;
}
.question91 h3 {
   font-size: 1.8rem;
}
.question91 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question91.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question92 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question92.container{
  color: #006EBB;
}
.question92:focus{
  color: #006EBB;
}
.question92 h3 {
   font-size: 1.8rem;
}
.question92 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question92.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question93 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question93.container{
  color: #006EBB;
}
.question93:focus{
  color: #006EBB;
}
.question93 h3 {
   font-size: 1.8rem;
}
.question93 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question93.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question94 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question94.container{
  color: #006EBB;
}
.question94:focus{
  color: #006EBB;
}
.question94 h3 {
   font-size: 1.8rem;
}
.question94 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question94.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question95 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question95.container{
  color: #006EBB;
}
.question95:focus{
  color: #006EBB;
}
.question95 h3 {
   font-size: 1.8rem;
}
.question95 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question95.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question96 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question96.container{
  color: #006EBB;
}
.question96:focus{
  color: #006EBB;
}
.question96 h3 {
   font-size: 1.8rem;
}
.question96 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question96.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question97 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question97.container{
  color: #006EBB;
}
.question97:focus{
  color: #006EBB;
}
.question97 h3 {
   font-size: 1.8rem;
}
.question97 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question97.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question98 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question98.container{
  color: #006EBB;
}
.question98:focus{
  color: #006EBB;
}
.question98 h3 {
   font-size: 1.8rem;
}
.question98 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question98.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question99 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question99.container{
  color: #006EBB;
}
.question99:focus{
  color: #006EBB;
}
.question99 h3 {
   font-size: 1.8rem;
}
.question99 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question99.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question100 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question100.container{
  color: #006EBB;
}
.question100:focus{
  color: #006EBB;
}
.question100 h3 {
   font-size: 1.8rem;
}
.question100 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question100.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question101 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question101.container{
  color: #006EBB;
}
.question101:focus{
  color: #006EBB;
}
.question101 h3 {
   font-size: 1.8rem;
}
.question101 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question101.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question102 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question102.container{
  color: #006EBB;
}
.question102:focus{
  color: #006EBB;
}
.question102 h3 {
   font-size: 1.8rem;
}
.question102 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question102.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question103 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question103.container{
  color: #006EBB;
}
.question103:focus{
  color: #006EBB;
}
.question103 h3 {
   font-size: 1.8rem;
}
.question103 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question103.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question104 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question104.container{
  color: #006EBB;
}
.question104:focus{
  color: #006EBB;
}
.question104 h3 {
   font-size: 1.8rem;
}
.question104 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question104.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question105 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question105.container{
  color: #006EBB;
}
.question105:focus{
  color: #006EBB;
}
.question105 h3 {
   font-size: 1.8rem;
}
.question105 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question105.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question106 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question106.container{
  color: #006EBB;
}
.question106:focus{
  color: #006EBB;
}
.question106 h3 {
   font-size: 1.8rem;
}
.question106 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question106.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question107 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question107.container{
  color: #006EBB;
}
.question107:focus{
  color: #006EBB;
}
.question107 h3 {
   font-size: 1.8rem;
}
.question107 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question107.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question108 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question108.container{
  color: #006EBB;
}
.question108:focus{
  color: #006EBB;
}
.question108 h3 {
   font-size: 1.8rem;
}
.question108 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question108.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question109 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question109.container{
  color: #006EBB;
}
.question109:focus{
  color: #006EBB;
}
.question109 h3 {
   font-size: 1.8rem;
}
.question109 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question109.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question110 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question110.container{
  color: #006EBB;
}
.question110:focus{
  color: #006EBB;
}
.question110 h3 {
   font-size: 1.8rem;
}
.question110 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question110.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question111 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question111.container{
  color: #006EBB;
}
.question111:focus{
  color: #006EBB;
}
.question111 h3 {
   font-size: 1.8rem;
}
.question111 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question111.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question112 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question112.container{
  color: #006EBB;
}
.question112:focus{
  color: #006EBB;
}
.question112 h3 {
   font-size: 1.8rem;
}
.question112 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question112.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question113 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question113.container{
  color: #006EBB;
}
.question113:focus{
  color: #006EBB;
}
.question113 h3 {
   font-size: 1.8rem;
}
.question113 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question113.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question114 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question114.container{
  color: #006EBB;
}
.question114:focus{
  color: #006EBB;
}
.question114 h3 {
   font-size: 1.8rem;
}
.question114 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question114.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question115 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question115.container{
  color: #006EBB;
}
.question115:focus{
  color: #006EBB;
}
.question115 h3 {
   font-size: 1.8rem;
}
.question115 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question115.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question116 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question116.container{
  color: #006EBB;
}
.question116:focus{
  color: #006EBB;
}
.question116 h3 {
   font-size: 1.8rem;
}
.question116 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question116.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question117 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question117.container{
  color: #006EBB;
}
.question117:focus{
  color: #006EBB;
}
.question117 h3 {
   font-size: 1.8rem;
}
.question117 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question117.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question118 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question118.container{
  color: #006EBB;
}
.question118:focus{
  color: #006EBB;
}
.question118 h3 {
   font-size: 1.8rem;
}
.question118 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question118.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question119 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question119.container{
  color: #006EBB;
}
.question119:focus{
  color: #006EBB;
}
.question119 h3 {
   font-size: 1.8rem;
}
.question119 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question119.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question120 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question120.container{
  color: #006EBB;
}
.question120:focus{
  color: #006EBB;
}
.question120 h3 {
   font-size: 1.8rem;
}
.question120 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question120.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question121 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question121.container{
  color: #006EBB;
}
.question121:focus{
  color: #006EBB;
}
.question121 h3 {
   font-size: 1.8rem;
}
.question121 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question121.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question122 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question122.container{
  color: #006EBB;
}
.question122:focus{
  color: #006EBB;
}
.question122 h3 {
   font-size: 1.8rem;
}
.question122 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question122.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question123 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question123.container{
  color: #006EBB;
}
.question123:focus{
  color: #006EBB;
}
.question123 h3 {
   font-size: 1.8rem;
}
.question123 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question123.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question124 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question124.container{
  color: #006EBB;
}
.question124:focus{
  color: #006EBB;
}
.question124 h3 {
   font-size: 1.8rem;
}
.question124 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question124.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question125 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question125.container{
  color: #006EBB;
}
.question125:focus{
  color: #006EBB;
}
.question125 h3 {
   font-size: 1.8rem;
}
.question125 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question125.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question126 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question126.container{
  color: #006EBB;
}
.question126:focus{
  color: #006EBB;
}
.question126 h3 {
   font-size: 1.8rem;
}
.question126 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question126.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question127 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question127.container{
  color: #006EBB;
}
.question127:focus{
  color: #006EBB;
}
.question127 h3 {
   font-size: 1.8rem;
}
.question127 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question127.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question128 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question128.container{
  color: #006EBB;
}
.question128:focus{
  color: #006EBB;
}
.question128 h3 {
   font-size: 1.8rem;
}
.question128 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question128.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question129 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question129.container{
  color: #006EBB;
}
.question129:focus{
  color: #006EBB;
}
.question129 h3 {
   font-size: 1.8rem;
}
.question129 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question129.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question130 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question130.container{
  color: #006EBB;
}
.question130:focus{
  color: #006EBB;
}
.question130 h3 {
   font-size: 1.8rem;
}
.question130 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question130.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question131 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question131.container{
  color: #006EBB;
}
.question131:focus{
  color: #006EBB;
}
.question131 h3 {
   font-size: 1.8rem;
}
.question131 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question131.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question132 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question132.container{
  color: #006EBB;
}
.question132:focus{
  color: #006EBB;
}
.question132 h3 {
   font-size: 1.8rem;
}
.question132 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question132.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question133 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question133.container{
  color: #006EBB;
}
.question133:focus{
  color: #006EBB;
}
.question133 h3 {
   font-size: 1.8rem;
}
.question133 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question133.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question134 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question134.container{
  color: #006EBB;
}
.question134:focus{
  color: #006EBB;
}
.question134 h3 {
   font-size: 1.8rem;
}
.question134 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question134.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question135 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question135.container{
  color: #006EBB;
}
.question135:focus{
  color: #006EBB;
}
.question135 h3 {
   font-size: 1.8rem;
}
.question135 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question135.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question136 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question136.container{
  color: #006EBB;
}
.question136:focus{
  color: #006EBB;
}
.question136 h3 {
   font-size: 1.8rem;
}
.question136 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question136.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question137 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question137.container{
  color: #006EBB;
}
.question137:focus{
  color: #006EBB;
}
.question137 h3 {
   font-size: 1.8rem;
}
.question137 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question137.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question138 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question138.container{
  color: #006EBB;
}
.question138:focus{
  color: #006EBB;
}
.question138 h3 {
   font-size: 1.8rem;
}
.question138 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question138.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question139 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question139.container{
  color: #006EBB;
}
.question139:focus{
  color: #006EBB;
}
.question139 h3 {
   font-size: 1.8rem;
}
.question139 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question139.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question140 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question140.container{
  color: #006EBB;
}
.question140:focus{
  color: #006EBB;
}
.question140 h3 {
   font-size: 1.8rem;
}
.question140 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question140.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question141 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question141.container{
  color: #006EBB;
}
.question141:focus{
  color: #006EBB;
}
.question141 h3 {
   font-size: 1.8rem;
}
.question141 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question141.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question142 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question142.container{
  color: #006EBB;
}
.question142:focus{
  color: #006EBB;
}
.question142 h3 {
   font-size: 1.8rem;
}
.question142 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question142.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question143 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question143.container{
  color: #006EBB;
}
.question143:focus{
  color: #006EBB;
}
.question143 h3 {
   font-size: 1.8rem;
}
.question143 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question143.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question144 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question144.container{
  color: #006EBB;
}
.question144:focus{
  color: #006EBB;
}
.question144 h3 {
   font-size: 1.8rem;
}
.question144 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question144.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question145 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question145.container{
  color: #006EBB;
}
.question145:focus{
  color: #006EBB;
}
.question145 h3 {
   font-size: 1.8rem;
}
.question145 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question145.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question146 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question146.container{
  color: #006EBB;
}
.question146:focus{
  color: #006EBB;
}
.question146 h3 {
   font-size: 1.8rem;
}
.question146 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question146.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question147 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question147.container{
  color: #006EBB;
}
.question147:focus{
  color: #006EBB;
}
.question147 h3 {
   font-size: 1.8rem;
}
.question147 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question147.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question148 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question148.container{
  color: #006EBB;
}
.question148:focus{
  color: #006EBB;
}
.question148 h3 {
   font-size: 1.8rem;
}
.question148 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question148.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question149 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question149.container{
  color: #006EBB;
}
.question149:focus{
  color: #006EBB;
}
.question149 h3 {
   font-size: 1.8rem;
}
.question149 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question149.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question150 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question150.container{
  color: #006EBB;
}
.question150:focus{
  color: #006EBB;
}
.question150 h3 {
   font-size: 1.8rem;
}
.question150 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question150.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question151 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question151.container{
  color: #006EBB;
}
.question151:focus{
  color: #006EBB;
}
.question151 h3 {
   font-size: 1.8rem;
}
.question151 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question151.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question152 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question152.container{
  color: #006EBB;
}
.question152:focus{
  color: #006EBB;
}
.question152 h3 {
   font-size: 1.8rem;
}
.question152 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question152.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question153 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question153.container{
  color: #006EBB;
}
.question153:focus{
  color: #006EBB;
}
.question153 h3 {
   font-size: 1.8rem;
}
.question153 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question153.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question154 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question154.container{
  color: #006EBB;
}
.question154:focus{
  color: #006EBB;
}
.question154 h3 {
   font-size: 1.8rem;
}
.question154 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question154.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question155 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question155.container{
  color: #006EBB;
}
.question155:focus{
  color: #006EBB;
}
.question155 h3 {
   font-size: 1.8rem;
}
.question155 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question155.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question156 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question156.container{
  color: #006EBB;
}
.question156:focus{
  color: #006EBB;
}
.question156 h3 {
   font-size: 1.8rem;
}
.question156 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question156.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question157 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question157.container{
  color: #006EBB;
}
.question157:focus{
  color: #006EBB;
}
.question157 h3 {
   font-size: 1.8rem;
}
.question157 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question157.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question158 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question158.container{
  color: #006EBB;
}
.question158:focus{
  color: #006EBB;
}
.question158 h3 {
   font-size: 1.8rem;
}
.question158 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question158.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question159 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question159.container{
  color: #006EBB;
}
.question159:focus{
  color: #006EBB;
}
.question159 h3 {
   font-size: 1.8rem;
}
.question159 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question159.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question160 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question160.container{
  color: #006EBB;
}
.question160:focus{
  color: #006EBB;
}
.question160 h3 {
   font-size: 1.8rem;
}
.question160 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question160.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question161 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question161.container{
  color: #006EBB;
}
.question161:focus{
  color: #006EBB;
}
.question161 h3 {
   font-size: 1.8rem;
}
.question161 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question161.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question162 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question162.container{
  color: #006EBB;
}
.question162:focus{
  color: #006EBB;
}
.question162 h3 {
   font-size: 1.8rem;
}
.question162 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question162.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question163 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question163.container{
  color: #006EBB;
}
.question163:focus{
  color: #006EBB;
}
.question163 h3 {
   font-size: 1.8rem;
}
.question163 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question163.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question164 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question164.container{
  color: #006EBB;
}
.question164:focus{
  color: #006EBB;
}
.question164 h3 {
   font-size: 1.8rem;
}
.question164 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question164.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question165 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question165.container{
  color: #006EBB;
}
.question165:focus{
  color: #006EBB;
}
.question165 h3 {
   font-size: 1.8rem;
}
.question165 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question165.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question166 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question166.container{
  color: #006EBB;
}
.question166:focus{
  color: #006EBB;
}
.question166 h3 {
   font-size: 1.8rem;
}
.question166 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question166.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question167 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question167.container{
  color: #006EBB;
}
.question167:focus{
  color: #006EBB;
}
.question167 h3 {
   font-size: 1.8rem;
}
.question167 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question167.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question168 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question168.container{
  color: #006EBB;
}
.question168:focus{
  color: #006EBB;
}
.question168 h3 {
   font-size: 1.8rem;
}
.question168 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question168.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question169 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question169.container{
  color: #006EBB;
}
.question169:focus{
  color: #006EBB;
}
.question169 h3 {
   font-size: 1.8rem;
}
.question169 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question169.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
/* ------------------------------------------------------------- */
.question170 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question170.container{
  color: #006EBB;
}
.question170:focus{
  color: #006EBB;
}
.question170 h3 {
   font-size: 1.8rem;
}
.question170 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question170.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question171 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question171.container{
  color: #006EBB;
}
.question171:focus{
  color: #006EBB;
}
.question171 h3 {
   font-size: 1.8rem;
}
.question171 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question171.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question172 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question172.container{
  color: #006EBB;
}
.question172:focus{
  color: #006EBB;
}
.question172 h3 {
   font-size: 1.8rem;
}
.question172 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question172.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question173 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question173.container{
  color: #006EBB;
}
.question173:focus{
  color: #006EBB;
}
.question173 h3 {
   font-size: 1.8rem;
}
.question173 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question173.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question174 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question174.container{
  color: #006EBB;
}
.question174:focus{
  color: #006EBB;
}
.question174 h3 {
   font-size: 1.8rem;
}
.question174 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question174.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question175 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question175.container{
  color: #006EBB;
}
.question175:focus{
  color: #006EBB;
}
.question175 h3 {
   font-size: 1.8rem;
}
.question175 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question175.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question176 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question176.container{
  color: #006EBB;
}
.question176:focus{
  color: #006EBB;
}
.question176 h3 {
   font-size: 1.8rem;
}
.question176 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question176.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question177 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question177.container{
  color: #006EBB;
}
.question177:focus{
  color: #006EBB;
}
.question177 h3 {
   font-size: 1.8rem;
}
.question177 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question177.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question178 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question178.container{
  color: #006EBB;
}
.question178:focus{
  color: #006EBB;
}
.question178 h3 {
   font-size: 1.8rem;
}
.question178 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question178.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question179 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question179.container{
  color: #006EBB;
}
.question179:focus{
  color: #006EBB;
}
.question179 h3 {
   font-size: 1.8rem;
}
.question179 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question179.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question180 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question180.container{
  color: #006EBB;
}
.question180:focus{
  color: #006EBB;
}
.question180 h3 {
   font-size: 1.8rem;
}
.question180 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question180.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question181 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question181.container{
  color: #006EBB;
}
.question181:focus{
  color: #006EBB;
}
.question181 h3 {
   font-size: 1.8rem;
}
.question181 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question181.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question182 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question182.container{
  color: #006EBB;
}
.question182:focus{
  color: #006EBB;
}
.question182 h3 {
   font-size: 1.8rem;
}
.question182 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question182.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question183 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question183.container{
  color: #006EBB;
}
.question183:focus{
  color: #006EBB;
}
.question183 h3 {
   font-size: 1.8rem;
}
.question183 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question183.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question184 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question184.container{
  color: #006EBB;
}
.question184:focus{
  color: #006EBB;
}
.question184 h3 {
   font-size: 1.8rem;
}
.question184 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question184.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question185 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question185.container{
  color: #006EBB;
}
.question185:focus{
  color: #006EBB;
}
.question185 h3 {
   font-size: 1.8rem;
}
.question185 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question185.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question186 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question186.container{
  color: #006EBB;
}
.question186:focus{
  color: #006EBB;
}
.question186 h3 {
   font-size: 1.8rem;
}
.question186 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question186.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question187 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question187.container{
  color: #006EBB;
}
.question187:focus{
  color: #006EBB;
}
.question187 h3 {
   font-size: 1.8rem;
}
.question187 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question187.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question188 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question188.container{
  color: #006EBB;
}
.question188:focus{
  color: #006EBB;
}
.question188 h3 {
   font-size: 1.8rem;
}
.question188 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question188.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question189 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question189.container{
  color: #006EBB;
}
.question189:focus{
  color: #006EBB;
}
.question189 h3 {
   font-size: 1.8rem;
}
.question189 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question189.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question190 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question190.container{
  color: #006EBB;
}
.question190:focus{
  color: #006EBB;
}
.question190 h3 {
   font-size: 1.8rem;
}
.question190 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question190.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question191 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question191.container{
  color: #006EBB;
}
.question191:focus{
  color: #006EBB;
}
.question191 h3 {
   font-size: 1.8rem;
}
.question191 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question191.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question192 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question192.container{
  color: #006EBB;
}
.question192:focus{
  color: #006EBB;
}
.question192 h3 {
   font-size: 1.8rem;
}
.question192 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question192.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question193 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question193.container{
  color: #006EBB;
}
.question193:focus{
  color: #006EBB;
}
.question193 h3 {
   font-size: 1.8rem;
}
.question193 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question193.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question194 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question194.container{
  color: #006EBB;
}
.question194:focus{
  color: #006EBB;
}
.question194 h3 {
   font-size: 1.8rem;
}
.question194 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question194.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question195 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question195.container{
  color: #006EBB;
}
.question195:focus{
  color: #006EBB;
}
.question195 h3 {
   font-size: 1.8rem;
}
.question195 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question195.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question196 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question196.container{
  color: #006EBB;
}
.question196:focus{
  color: #006EBB;
}
.question196 h3 {
   font-size: 1.8rem;
}
.question196 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question196.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question197 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question197.container{
  color: #006EBB;
}
.question197:focus{
  color: #006EBB;
}
.question197 h3 {
   font-size: 1.8rem;
}
.question197 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question197.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question198 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question198.container{
  color: #006EBB;
}
.question198:focus{
  color: #006EBB;
}
.question198 h3 {
   font-size: 1.8rem;
}
.question198 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question198.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question199 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question199.container{
  color: #006EBB;
}
.question199:focus{
  color: #006EBB;
}
.question199 h3 {
   font-size: 1.8rem;
}
.question199 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question199.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question200 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question200.container{
  color: #006EBB;
}
.question200:focus{
  color: #006EBB;
}
.question200 h3 {
   font-size: 1.8rem;
}
.question200 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question200.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question201 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question201.container{
  color: #006EBB;
}
.question201:focus{
  color: #006EBB;
}
.question201 h3 {
   font-size: 1.8rem;
}
.question201 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question201.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question202 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question202.container{
  color: #006EBB;
}
.question202:focus{
  color: #006EBB;
}
.question202 h3 {
   font-size: 1.8rem;
}
.question202 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question202.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question203 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question203.container{
  color: #006EBB;
}
.question203:focus{
  color: #006EBB;
}
.question203 h3 {
   font-size: 1.8rem;
}
.question203 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question203.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question204 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question204.container{
  color: #006EBB;
}
.question204:focus{
  color: #006EBB;
}
.question204 h3 {
   font-size: 1.8rem;
}
.question204 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question204.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question205 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question205.container{
  color: #006EBB;
}
.question205:focus{
  color: #006EBB;
}
.question205 h3 {
   font-size: 1.8rem;
}
.question205 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question205.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question206 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question206.container{
  color: #006EBB;
}
.question206:focus{
  color: #006EBB;
}
.question206 h3 {
   font-size: 1.8rem;
}
.question206 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question206.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question207 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question207.container{
  color: #006EBB;
}
.question207:focus{
  color: #006EBB;
}
.question207 h3 {
   font-size: 1.8rem;
}
.question207 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question207.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */

.question208 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question208.container{
  color: #006EBB;
}
.question208:focus{
  color: #006EBB;
}
.question208 h3 {
   font-size: 1.8rem;
}
.question208 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question208.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question209 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question209.container{
  color: #006EBB;
}
.question209:focus{
  color: #006EBB;
}
.question209 h3 {
   font-size: 1.8rem;
}
.question209 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question209.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question210 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question210.container{
  color: #006EBB;
}
.question210:focus{
  color: #006EBB;
}
.question210 h3 {
   font-size: 1.8rem;
}
.question210 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question210.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question211 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question211.container{
  color: #006EBB;
}
.question211:focus{
  color: #006EBB;
}
.question211 h3 {
   font-size: 1.8rem;
}
.question211 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question211.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question212 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question212.container{
  color: #006EBB;
}
.question212:focus{
  color: #006EBB;
}
.question212 h3 {
   font-size: 1.8rem;
}
.question212 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question212.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question213 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question213.container{
  color: #006EBB;
}
.question213:focus{
  color: #006EBB;
}
.question213 h3 {
   font-size: 1.8rem;
}
.question213 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question213.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question214 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question214.container{
  color: #006EBB;
}
.question214:focus{
  color: #006EBB;
}
.question214 h3 {
   font-size: 1.8rem;
}
.question214 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question214.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question215 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question215.container{
  color: #006EBB;
}
.question215:focus{
  color: #006EBB;
}
.question215 h3 {
   font-size: 1.8rem;
}
.question215 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question215.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question216 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question216.container{
  color: #006EBB;
}
.question216:focus{
  color: #006EBB;
}
.question216 h3 {
   font-size: 1.8rem;
}
.question216 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question216.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question217 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question217.container{
  color: #006EBB;
}
.question217:focus{
  color: #006EBB;
}
.question217 h3 {
   font-size: 1.8rem;
}
.question217 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question217.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question218 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question218.container{
  color: #006EBB;
}
.question218:focus{
  color: #006EBB;
}
.question218 h3 {
   font-size: 1.8rem;
}
.question218 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question218.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question219 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question219.container{
  color: #006EBB;
}
.question219:focus{
  color: #006EBB;
}
.question219 h3 {
   font-size: 1.8rem;
}
.question219 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question219.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question220 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question220.container{
  color: #006EBB;
}
.question220:focus{
  color: #006EBB;
}
.question220 h3 {
   font-size: 1.8rem;
}
.question220 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question220.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question221 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question221.container{
  color: #006EBB;
}
.question221:focus{
  color: #006EBB;
}
.question221 h3 {
   font-size: 1.8rem;
}
.question221 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question221.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question222 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question222.container{
  color: #006EBB;
}
.question222:focus{
  color: #006EBB;
}
.question222 h3 {
   font-size: 1.8rem;
}
.question222 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question222.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question223 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question223.container{
  color: #006EBB;
}
.question223:focus{
  color: #006EBB;
}
.question223 h3 {
   font-size: 1.8rem;
}
.question223 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question223.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question224 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question224.container{
  color: #006EBB;
}
.question224:focus{
  color: #006EBB;
}
.question224 h3 {
   font-size: 1.8rem;
}
.question224 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question224.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question225 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question225.container{
  color: #006EBB;
}
.question225:focus{
  color: #006EBB;
}
.question225 h3 {
   font-size: 1.8rem;
}
.question225 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question225.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question226 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question226.container{
  color: #006EBB;
}
.question226:focus{
  color: #006EBB;
}
.question226 h3 {
   font-size: 1.8rem;
}
.question226 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question226.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question227 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question227.container{
  color: #006EBB;
}
.question227:focus{
  color: #006EBB;
}
.question227 h3 {
   font-size: 1.8rem;
}
.question227 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question227.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question228 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question228.container{
  color: #006EBB;
}
.question228:focus{
  color: #006EBB;
}
.question228 h3 {
   font-size: 1.8rem;
}
.question228 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question228.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question229 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question229.container{
  color: #006EBB;
}
.question229:focus{
  color: #006EBB;
}
.question229 h3 {
   font-size: 1.8rem;
}
.question229 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question229.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question230 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question230.container{
  color: #006EBB;
}
.question230:focus{
  color: #006EBB;
}
.question230 h3 {
   font-size: 1.8rem;
}
.question230 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question230.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question231 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question231.container{
  color: #006EBB;
}
.question231:focus{
  color: #006EBB;
}
.question231 h3 {
   font-size: 1.8rem;
}
.question231 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question231.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question232 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question232.container{
  color: #006EBB;
}
.question232:focus{
  color: #006EBB;
}
.question232 h3 {
   font-size: 1.8rem;
}
.question232 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question232.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question233 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question233.container{
  color: #006EBB;
}
.question233:focus{
  color: #006EBB;
}
.question233 h3 {
   font-size: 1.8rem;
}
.question233 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question233.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question234 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question234.container{
  color: #006EBB;
}
.question234:focus{
  color: #006EBB;
}
.question234 h3 {
   font-size: 1.8rem;
}
.question234 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question234.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question235 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question235.container{
  color: #006EBB;
}
.question235:focus{
  color: #006EBB;
}
.question235 h3 {
   font-size: 1.8rem;
}
.question235 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question235.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question236 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question236.container{
  color: #006EBB;
}
.question236:focus{
  color: #006EBB;
}
.question236 h3 {
   font-size: 1.8rem;
}
.question236 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question236.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question237 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question237.container{
  color: #006EBB;
}
.question237:focus{
  color: #006EBB;
}
.question237 h3 {
   font-size: 1.8rem;
}
.question237 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question237.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question238 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question238.container{
  color: #006EBB;
}
.question238:focus{
  color: #006EBB;
}
.question238 h3 {
   font-size: 1.8rem;
}
.question238 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question238.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question239 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question239.container{
  color: #006EBB;
}
.question239:focus{
  color: #006EBB;
}
.question239 h3 {
   font-size: 1.8rem;
}
.question239 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question239.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question240 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question240.container{
  color: #006EBB;
}
.question240:focus{
  color: #006EBB;
}
.question240 h3 {
   font-size: 1.8rem;
}
.question240 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question240.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question241 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question241.container{
  color: #006EBB;
}
.question241:focus{
  color: #006EBB;
}
.question241 h3 {
   font-size: 1.8rem;
}
.question241 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question241.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question242 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question242.container{
  color: #006EBB;
}
.question242:focus{
  color: #006EBB;
}
.question242 h3 {
   font-size: 1.8rem;
}
.question242 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question242.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question243 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question243.container{
  color: #006EBB;
}
.question243:focus{
  color: #006EBB;
}
.question243 h3 {
   font-size: 1.8rem;
}
.question243 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question243.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question244 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question244.container{
  color: #006EBB;
}
.question244:focus{
  color: #006EBB;
}
.question244 h3 {
   font-size: 1.8rem;
}
.question244 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question244.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question245 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question245.container{
  color: #006EBB;
}
.question245:focus{
  color: #006EBB;
}
.question245 h3 {
   font-size: 1.8rem;
}
.question245 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question245.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question246 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question246.container{
  color: #006EBB;
}
.question246:focus{
  color: #006EBB;
}
.question246 h3 {
   font-size: 1.8rem;
}
.question246 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question246.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question247 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question247.container{
  color: #006EBB;
}
.question247:focus{
  color: #006EBB;
}
.question247 h3 {
   font-size: 1.8rem;
}
.question247 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question247.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question248 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question248.container{
  color: #006EBB;
}
.question248:focus{
  color: #006EBB;
}
.question248 h3 {
   font-size: 1.8rem;
}
.question248 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question248.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question249 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question249.container{
  color: #006EBB;
}
.question249:focus{
  color: #006EBB;
}
.question249 h3 {
   font-size: 1.8rem;
}
.question249 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question249.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question250 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question250.container{
  color: #006EBB;
}
.question250:focus{
  color: #006EBB;
}
.question250 h3 {
   font-size: 1.8rem;
}
.question250 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question250.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question251 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question251.container{
  color: #006EBB;
}
.question251:focus{
  color: #006EBB;
}
.question251 h3 {
   font-size: 1.8rem;
}
.question251 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question251.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question252 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question252.container{
  color: #006EBB;
}
.question252:focus{
  color: #006EBB;
}
.question252 h3 {
   font-size: 1.8rem;
}
.question252 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question252.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question253 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question253.container{
  color: #006EBB;
}
.question253:focus{
  color: #006EBB;
}
.question253 h3 {
   font-size: 1.8rem;
}
.question253 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question253.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question254 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question254.container{
  color: #006EBB;
}
.question254:focus{
  color: #006EBB;
}
.question254 h3 {
   font-size: 1.8rem;
}
.question254 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question254.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question255 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question255.container{
  color: #006EBB;
}
.question255:focus{
  color: #006EBB;
}
.question255 h3 {
   font-size: 1.8rem;
}
.question255 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question255.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question256 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question256.container{
  color: #006EBB;
}
.question256:focus{
  color: #006EBB;
}
.question256 h3 {
   font-size: 1.8rem;
}
.question256 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question256.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question257 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question257.container{
  color: #006EBB;
}
.question257:focus{
  color: #006EBB;
}
.question257 h3 {
   font-size: 1.8rem;
}
.question257 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question257.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question258 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question258.container{
  color: #006EBB;
}
.question258:focus{
  color: #006EBB;
}
.question258 h3 {
   font-size: 1.8rem;
}
.question258 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question258.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question259 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question259.container{
  color: #006EBB;
}
.question259:focus{
  color: #006EBB;
}
.question259 h3 {
   font-size: 1.8rem;
}
.question259 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question259.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question260 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question260.container{
  color: #006EBB;
}
.question260:focus{
  color: #006EBB;
}
.question260 h3 {
   font-size: 1.8rem;
}
.question260 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question260.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question261 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question261.container{
  color: #006EBB;
}
.question261:focus{
  color: #006EBB;
}
.question261 h3 {
   font-size: 1.8rem;
}
.question261 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question261.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question262 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question262.container{
  color: #006EBB;
}
.question262:focus{
  color: #006EBB;
}
.question262 h3 {
   font-size: 1.8rem;
}
.question262 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question262.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question263 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question263.container{
  color: #006EBB;
}
.question263:focus{
  color: #006EBB;
}
.question263 h3 {
   font-size: 1.8rem;
}
.question263 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question263.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question264 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question264.container{
  color: #006EBB;
}
.question264:focus{
  color: #006EBB;
}
.question264 h3 {
   font-size: 1.8rem;
}
.question264 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question264.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question265 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question265.container{
  color: #006EBB;
}
.question265:focus{
  color: #006EBB;
}
.question265 h3 {
   font-size: 1.8rem;
}
.question265 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question265.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question266 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question266.container{
  color: #006EBB;
}
.question266:focus{
  color: #006EBB;
}
.question266 h3 {
   font-size: 1.8rem;
}
.question266 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question266.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question267 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question267.container{
  color: #006EBB;
}
.question267:focus{
  color: #006EBB;
}
.question267 h3 {
   font-size: 1.8rem;
}
.question267 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question267.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question268 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question268.container{
  color: #006EBB;
}
.question268:focus{
  color: #006EBB;
}
.question268 h3 {
   font-size: 1.8rem;
}
.question268 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question268.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question269 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question269.container{
  color: #006EBB;
}
.question269:focus{
  color: #006EBB;
}
.question269 h3 {
   font-size: 1.8rem;
}
.question269 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question269.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question270 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question270.container{
  color: #006EBB;
}
.question270:focus{
  color: #006EBB;
}
.question270 h3 {
   font-size: 1.8rem;
}
.question270 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question270.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question271 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question271.container{
  color: #006EBB;
}
.question271:focus{
  color: #006EBB;
}
.question271 h3 {
   font-size: 1.8rem;
}
.question271 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question271.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question272 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question272.container{
  color: #006EBB;
}
.question272:focus{
  color: #006EBB;
}
.question272 h3 {
   font-size: 1.8rem;
}
.question272 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question272.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question273 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question273.container{
  color: #006EBB;
}
.question273:focus{
  color: #006EBB;
}
.question273 h3 {
   font-size: 1.8rem;
}
.question273 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question273.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question274 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question274.container{
  color: #006EBB;
}
.question274:focus{
  color: #006EBB;
}
.question274 h3 {
   font-size: 1.8rem;
}
.question274 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question274.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question275 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question275.container{
  color: #006EBB;
}
.question275:focus{
  color: #006EBB;
}
.question275 h3 {
   font-size: 1.8rem;
}
.question275 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question275.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question276 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question276.container{
  color: #006EBB;
}
.question276:focus{
  color: #006EBB;
}
.question276 h3 {
   font-size: 1.8rem;
}
.question276 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question276.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question277 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question277.container{
  color: #006EBB;
}
.question277:focus{
  color: #006EBB;
}
.question277 h3 {
   font-size: 1.8rem;
}
.question277 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question277.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question278 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question278.container{
  color: #006EBB;
}
.question278:focus{
  color: #006EBB;
}
.question278 h3 {
   font-size: 1.8rem;
}
.question278 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question278.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question279 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question279.container{
  color: #006EBB;
}
.question279:focus{
  color: #006EBB;
}
.question279 h3 {
   font-size: 1.8rem;
}
.question279 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question279.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question280 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question280.container{
  color: #006EBB;
}
.question280:focus{
  color: #006EBB;
}
.question280 h3 {
   font-size: 1.8rem;
}
.question280 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question280.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question281 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question281.container{
  color: #006EBB;
}
.question281:focus{
  color: #006EBB;
}
.question281 h3 {
   font-size: 1.8rem;
}
.question281 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question281.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question282 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question282.container{
  color: #006EBB;
}
.question282:focus{
  color: #006EBB;
}
.question282 h3 {
   font-size: 1.8rem;
}
.question282 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question282.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question283 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question283.container{
  color: #006EBB;
}
.question283:focus{
  color: #006EBB;
}
.question283 h3 {
   font-size: 1.8rem;
}
.question283 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question283.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question284 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question284.container{
  color: #006EBB;
}
.question284:focus{
  color: #006EBB;
}
.question284 h3 {
   font-size: 1.8rem;
}
.question284 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question284.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question285 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question285.container{
  color: #006EBB;
}
.question285:focus{
  color: #006EBB;
}
.question285 h3 {
   font-size: 1.8rem;
}
.question285 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question285.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question286 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question286.container{
  color: #006EBB;
}
.question286:focus{
  color: #006EBB;
}
.question286 h3 {
   font-size: 1.8rem;
}
.question286 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question286.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question287 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question287.container{
  color: #006EBB;
}
.question287:focus{
  color: #006EBB;
}
.question287 h3 {
   font-size: 1.8rem;
}
.question287 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question287.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question288 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question288.container{
  color: #006EBB;
}
.question288:focus{
  color: #006EBB;
}
.question288 h3 {
   font-size: 1.8rem;
}
.question288 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question288.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question289 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question289.container{
  color: #006EBB;
}
.question289:focus{
  color: #006EBB;
}
.question289 h3 {
   font-size: 1.8rem;
}
.question289 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question289.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question290 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question290.container{
  color: #006EBB;
}
.question290:focus{
  color: #006EBB;
}
.question290 h3 {
   font-size: 1.8rem;
}
.question290 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question290.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question291 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question291.container{
  color: #006EBB;
}
.question291:focus{
  color: #006EBB;
}
.question291 h3 {
   font-size: 1.8rem;
}
.question291 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question291.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question292 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question292.container{
  color: #006EBB;
}
.question292:focus{
  color: #006EBB;
}
.question292 h3 {
   font-size: 1.8rem;
}
.question292 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question292.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question293 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question293.container{
  color: #006EBB;
}
.question293:focus{
  color: #006EBB;
}
.question293 h3 {
   font-size: 1.8rem;
}
.question293 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question293.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question294 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question294.container{
  color: #006EBB;
}
.question294:focus{
  color: #006EBB;
}
.question294 h3 {
   font-size: 1.8rem;
}
.question294 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question294.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question295 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question295.container{
  color: #006EBB;
}
.question295:focus{
  color: #006EBB;
}
.question295 h3 {
   font-size: 1.8rem;
}
.question295 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question295.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question296 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question296.container{
  color: #006EBB;
}
.question296:focus{
  color: #006EBB;
}
.question296 h3 {
   font-size: 1.8rem;
}
.question296 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question296.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question297 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question297.container{
  color: #006EBB;
}
.question297:focus{
  color: #006EBB;
}
.question297 h3 {
   font-size: 1.8rem;
}
.question297 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question297.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question298 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question298.container{
  color: #006EBB;
}
.question298:focus{
  color: #006EBB;
}
.question298 h3 {
   font-size: 1.8rem;
}
.question298 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question298.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question299 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question299.container{
  color: #006EBB;
}
.question299:focus{
  color: #006EBB;
}
.question299 h3 {
   font-size: 1.8rem;
}
.question299 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question299.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question300 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question300.container{
  color: #006EBB;
}
.question300:focus{
  color: #006EBB;
}
.question300 h3 {
   font-size: 1.8rem;
}
.question300 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question300.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question301 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question301.container{
  color: #006EBB;
}
.question301:focus{
  color: #006EBB;
}
.question301 h3 {
   font-size: 1.8rem;
}
.question301 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question301.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question302 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question302.container{
  color: #006EBB;
}
.question302:focus{
  color: #006EBB;
}
.question302 h3 {
   font-size: 1.8rem;
}
.question302 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question302.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question303 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question303.container{
  color: #006EBB;
}
.question303:focus{
  color: #006EBB;
}
.question303 h3 {
   font-size: 1.8rem;
}
.question303 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question303.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question304 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question304.container{
  color: #006EBB;
}
.question304:focus{
  color: #006EBB;
}
.question304 h3 {
   font-size: 1.8rem;
}
.question304 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question304.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question305 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question305.container{
  color: #006EBB;
}
.question305:focus{
  color: #006EBB;
}
.question305 h3 {
   font-size: 1.8rem;
}
.question305 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question305.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question306 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question306.container{
  color: #006EBB;
}
.question306:focus{
  color: #006EBB;
}
.question306 h3 {
   font-size: 1.8rem;
}
.question306 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question306.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question307 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question307.container{
  color: #006EBB;
}
.question307:focus{
  color: #006EBB;
}
.question307 h3 {
   font-size: 1.8rem;
}
.question307 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question307.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question308 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question308.container{
  color: #006EBB;
}
.question308:focus{
  color: #006EBB;
}
.question308 h3 {
   font-size: 1.8rem;
}
.question308 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question308.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question309 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question309.container{
  color: #006EBB;
}
.question309:focus{
  color: #006EBB;
}
.question309 h3 {
   font-size: 1.8rem;
}
.question309 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question309.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question310 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question310.container{
  color: #006EBB;
}
.question310:focus{
  color: #006EBB;
}
.question310 h3 {
   font-size: 1.8rem;
}
.question310 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question310.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question311 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question311.container{
  color: #006EBB;
}
.question311:focus{
  color: #006EBB;
}
.question311 h3 {
   font-size: 1.8rem;
}
.question311 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question311.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question312 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question312.container{
  color: #006EBB;
}
.question312:focus{
  color: #006EBB;
}
.question312 h3 {
   font-size: 1.8rem;
}
.question312 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question312.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question313 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question313.container{
  color: #006EBB;
}
.question313:focus{
  color: #006EBB;
}
.question313 h3 {
   font-size: 1.8rem;
}
.question313 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question313.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question314 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question314.container{
  color: #006EBB;
}
.question314:focus{
  color: #006EBB;
}
.question314 h3 {
   font-size: 1.8rem;
}
.question314 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question314.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question315 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question315.container{
  color: #006EBB;
}
.question315:focus{
  color: #006EBB;
}
.question315 h3 {
   font-size: 1.8rem;
}
.question315 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question315.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question316 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question316.container{
  color: #006EBB;
}
.question316:focus{
  color: #006EBB;
}
.question316 h3 {
   font-size: 1.8rem;
}
.question316 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question316.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question317 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question317.container{
  color: #006EBB;
}
.question317:focus{
  color: #006EBB;
}
.question317 h3 {
   font-size: 1.8rem;
}
.question317 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question317.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question318 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question318.container{
  color: #006EBB;
}
.question318:focus{
  color: #006EBB;
}
.question318 h3 {
   font-size: 1.8rem;
}
.question318 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question318.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question319 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question319.container{
  color: #006EBB;
}
.question319:focus{
  color: #006EBB;
}
.question319 h3 {
   font-size: 1.8rem;
}
.question319 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question319.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question320 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question320.container{
  color: #006EBB;
}
.question320:focus{
  color: #006EBB;
}
.question320 h3 {
   font-size: 1.8rem;
}
.question320 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question320.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question321 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question321.container{
  color: #006EBB;
}
.question321:focus{
  color: #006EBB;
}
.question321 h3 {
   font-size: 1.8rem;
}
.question321 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question321.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question322 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question322.container{
  color: #006EBB;
}
.question322:focus{
  color: #006EBB;
}
.question322 h3 {
   font-size: 1.8rem;
}
.question322 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question322.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question323 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question323.container{
  color: #006EBB;
}
.question323:focus{
  color: #006EBB;
}
.question323 h3 {
   font-size: 1.8rem;
}
.question323 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question323.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question324 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question324.container{
  color: #006EBB;
}
.question324:focus{
  color: #006EBB;
}
.question324 h3 {
   font-size: 1.8rem;
}
.question324 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question324.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question325 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question325.container{
  color: #006EBB;
}
.question325:focus{
  color: #006EBB;
}
.question325 h3 {
   font-size: 1.8rem;
}
.question325 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question325.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question326 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question326.container{
  color: #006EBB;
}
.question326:focus{
  color: #006EBB;
}
.question326 h3 {
   font-size: 1.8rem;
}
.question326 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question326.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question327 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question327.container{
  color: #006EBB;
}
.question327:focus{
  color: #006EBB;
}
.question327 h3 {
   font-size: 1.8rem;
}
.question327 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question327.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question328 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question328.container{
  color: #006EBB;
}
.question328:focus{
  color: #006EBB;
}
.question328 h3 {
   font-size: 1.8rem;
}
.question328 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question328.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question329 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question329.container{
  color: #006EBB;
}
.question329:focus{
  color: #006EBB;
}
.question329 h3 {
   font-size: 1.8rem;
}
.question329 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question329.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question330 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question330.container{
  color: #006EBB;
}
.question330:focus{
  color: #006EBB;
}
.question330 h3 {
   font-size: 1.8rem;
}
.question330 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question330.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question331 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question331.container{
  color: #006EBB;
}
.question331:focus{
  color: #006EBB;
}
.question331 h3 {
   font-size: 1.8rem;
}
.question331 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question331.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question332 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question332.container{
  color: #006EBB;
}
.question332:focus{
  color: #006EBB;
}
.question332 h3 {
   font-size: 1.8rem;
}
.question332 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question332.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question333 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question333.container{
  color: #006EBB;
}
.question333:focus{
  color: #006EBB;
}
.question333 h3 {
   font-size: 1.8rem;
}
.question333 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question333.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question334 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question334.container{
  color: #006EBB;
}
.question334:focus{
  color: #006EBB;
}
.question334 h3 {
   font-size: 1.8rem;
}
.question334 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question334.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question335 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question335.container{
  color: #006EBB;
}
.question335:focus{
  color: #006EBB;
}
.question335 h3 {
   font-size: 1.8rem;
}
.question335 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question335.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question336 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question336.container{
  color: #006EBB;
}
.question336:focus{
  color: #006EBB;
}
.question336 h3 {
   font-size: 1.8rem;
}
.question336 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question336.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question337 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question337.container{
  color: #006EBB;
}
.question337:focus{
  color: #006EBB;
}
.question337 h3 {
   font-size: 1.8rem;
}
.question337 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question337.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question338 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question338.container{
  color: #006EBB;
}
.question338:focus{
  color: #006EBB;
}
.question338 h3 {
   font-size: 1.8rem;
}
.question338 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question338.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question339 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question339.container{
  color: #006EBB;
}
.question339:focus{
  color: #006EBB;
}
.question339 h3 {
   font-size: 1.8rem;
}
.question339 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question339.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question340 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question340.container{
  color: #006EBB;
}
.question340:focus{
  color: #006EBB;
}
.question340 h3 {
   font-size: 1.8rem;
}
.question340 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question340.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question341 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question341.container{
  color: #006EBB;
}
.question341:focus{
  color: #006EBB;
}
.question341 h3 {
   font-size: 1.8rem;
}
.question341 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question341.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question342 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question342.container{
  color: #006EBB;
}
.question342:focus{
  color: #006EBB;
}
.question342 h3 {
   font-size: 1.8rem;
}
.question342 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question342.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question343 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question343.container{
  color: #006EBB;
}
.question343:focus{
  color: #006EBB;
}
.question343 h3 {
   font-size: 1.8rem;
}
.question343 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question343.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question344 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question344.container{
  color: #006EBB;
}
.question344:focus{
  color: #006EBB;
}
.question344 h3 {
   font-size: 1.8rem;
}
.question344 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question344.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question345 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question345.container{
  color: #006EBB;
}
.question345:focus{
  color: #006EBB;
}
.question345 h3 {
   font-size: 1.8rem;
}
.question345 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question345.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question346 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1210px;
   margin-top: 2rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid black;
   cursor: pointer;
   text-decoration: none;
   color: #000;
}
.question346.container{
  color: #006EBB;
}
.question346:focus{
  color: #006EBB;
}
.question346 h3 {
   font-size: 1.8rem;
}
.question346 i {
  margin-right: 10px;
  font-size: 2rem;
}
.question346.active i {
   transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question347 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question347.container{
 color: #006EBB;
}
.question347:focus{
 color: #006EBB;
}
.question347 h3 {
  font-size: 1.8rem;
}
.question347 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question347.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question348 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question348.container{
 color: #006EBB;
}
.question348:focus{
 color: #006EBB;
}
.question348 h3 {
  font-size: 1.8rem;
}
.question348 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question348.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question349 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question349.container{
 color: #006EBB;
}
.question349:focus{
 color: #006EBB;
}
.question349 h3 {
  font-size: 1.8rem;
}
.question349 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question349.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */

.question350 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question350.container{
 color: #006EBB;
}
.question350:focus{
 color: #006EBB;
}
.question350 h3 {
  font-size: 1.8rem;
}
.question350 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question350.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question351 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question351.container{
 color: #006EBB;
}
.question351:focus{
 color: #006EBB;
}
.question351 h3 {
  font-size: 1.8rem;
}
.question351 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question351.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question352 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question352.container{
 color: #006EBB;
}
.question352:focus{
 color: #006EBB;
}
.question352 h3 {
  font-size: 1.8rem;
}
.question352 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question352.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question353 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question353.container{
 color: #006EBB;
}
.question353:focus{
 color: #006EBB;
}
.question353 h3 {
  font-size: 1.8rem;
}
.question353 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question353.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question354 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question354.container{
 color: #006EBB;
}
.question354:focus{
 color: #006EBB;
}
.question354 h3 {
  font-size: 1.8rem;
}
.question354 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question354.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question355 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question355.container{
 color: #006EBB;
}
.question355:focus{
 color: #006EBB;
}
.question355 h3 {
  font-size: 1.8rem;
}
.question355 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question355.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question356 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question356.container{
 color: #006EBB;
}
.question356:focus{
 color: #006EBB;
}
.question356 h3 {
  font-size: 1.8rem;
}
.question356 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question356.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question357 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question357.container{
 color: #006EBB;
}
.question357:focus{
 color: #006EBB;
}
.question357 h3 {
  font-size: 1.8rem;
}
.question357 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question357.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question358 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question358.container{
 color: #006EBB;
}
.question358:focus{
 color: #006EBB;
}
.question358 h3 {
  font-size: 1.8rem;
}
.question358 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question358.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question359 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question359.container{
 color: #006EBB;
}
.question359:focus{
 color: #006EBB;
}
.question359 h3 {
  font-size: 1.8rem;
}
.question359 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question359.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question360 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question360.container{
 color: #006EBB;
}
.question360:focus{
 color: #006EBB;
}
.question360 h3 {
  font-size: 1.8rem;
}
.question360 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question360.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question361 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question361.container{
 color: #006EBB;
}
.question361:focus{
 color: #006EBB;
}
.question361 h3 {
  font-size: 1.8rem;
}
.question361 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question361.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question362 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question362.container{
 color: #006EBB;
}
.question362:focus{
 color: #006EBB;
}
.question362 h3 {
  font-size: 1.8rem;
}
.question362 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question362.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question363 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question363.container{
 color: #006EBB;
}
.question363:focus{
 color: #006EBB;
}
.question363 h3 {
  font-size: 1.8rem;
}
.question363 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question363.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question364 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question364.container{
 color: #006EBB;
}
.question364:focus{
 color: #006EBB;
}
.question364 h3 {
  font-size: 1.8rem;
}
.question364 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question364.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question365 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question365.container{
 color: #006EBB;
}
.question365:focus{
 color: #006EBB;
}
.question365 h3 {
  font-size: 1.8rem;
}
.question365 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question365.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question366 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question366.container{
 color: #006EBB;
}
.question366:focus{
 color: #006EBB;
}
.question366 h3 {
  font-size: 1.8rem;
}
.question366 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question366.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question367 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question367.container{
 color: #006EBB;
}
.question367:focus{
 color: #006EBB;
}
.question367 h3 {
  font-size: 1.8rem;
}
.question367 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question367.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question368 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question368.container{
 color: #006EBB;
}
.question368:focus{
 color: #006EBB;
}
.question368 h3 {
  font-size: 1.8rem;
}
.question368 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question368.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question369 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question369.container{
 color: #006EBB;
}
.question369:focus{
 color: #006EBB;
}
.question369 h3 {
  font-size: 1.8rem;
}
.question369 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question369.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question370 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question370.container{
 color: #006EBB;
}
.question370:focus{
 color: #006EBB;
}
.question370 h3 {
  font-size: 1.8rem;
}
.question370 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question370.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question371 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question371.container{
 color: #006EBB;
}
.question371:focus{
 color: #006EBB;
}
.question371 h3 {
  font-size: 1.8rem;
}
.question371 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question371.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question372 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question372.container{
 color: #006EBB;
}
.question372:focus{
 color: #006EBB;
}
.question372 h3 {
  font-size: 1.8rem;
}
.question372 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question372.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question373 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question373.container{
 color: #006EBB;
}
.question373:focus{
 color: #006EBB;
}
.question373 h3 {
  font-size: 1.8rem;
}
.question373 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question373.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question374 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question374.container{
 color: #006EBB;
}
.question374:focus{
 color: #006EBB;
}
.question374 h3 {
  font-size: 1.8rem;
}
.question374 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question374.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question375 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question375.container{
 color: #006EBB;
}
.question375:focus{
 color: #006EBB;
}
.question375 h3 {
  font-size: 1.8rem;
}
.question375 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question375.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question376 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question376.container{
 color: #006EBB;
}
.question376:focus{
 color: #006EBB;
}
.question376 h3 {
  font-size: 1.8rem;
}
.question376 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question376.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question377 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question377.container{
 color: #006EBB;
}
.question377:focus{
 color: #006EBB;
}
.question377 h3 {
  font-size: 1.8rem;
}
.question377 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question377.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question378 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question378.container{
 color: #006EBB;
}
.question378:focus{
 color: #006EBB;
}
.question378 h3 {
  font-size: 1.8rem;
}
.question378 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question378.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question379 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question379.container{
 color: #006EBB;
}
.question379:focus{
 color: #006EBB;
}
.question379 h3 {
  font-size: 1.8rem;
}
.question379 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question379.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question380 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question380.container{
 color: #006EBB;
}
.question380:focus{
 color: #006EBB;
}
.question380 h3 {
  font-size: 1.8rem;
}
.question380 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question380.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question381 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question381.container{
 color: #006EBB;
}
.question381:focus{
 color: #006EBB;
}
.question381 h3 {
  font-size: 1.8rem;
}
.question381 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question381.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question382 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question382.container{
 color: #006EBB;
}
.question382:focus{
 color: #006EBB;
}
.question382 h3 {
  font-size: 1.8rem;
}
.question382 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question382.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question383 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question383.container{
 color: #006EBB;
}
.question383:focus{
 color: #006EBB;
}
.question383 h3 {
  font-size: 1.8rem;
}
.question383 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question383.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question384 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question384.container{
 color: #006EBB;
}
.question384:focus{
 color: #006EBB;
}
.question384 h3 {
  font-size: 1.8rem;
}
.question384 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question384.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question385 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question385.container{
 color: #006EBB;
}
.question385:focus{
 color: #006EBB;
}
.question385 h3 {
  font-size: 1.8rem;
}
.question385 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question385.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question386 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question386.container{
 color: #006EBB;
}
.question386:focus{
 color: #006EBB;
}
.question386 h3 {
  font-size: 1.8rem;
}
.question386 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question386.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question387 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question387.container{
 color: #006EBB;
}
.question387:focus{
 color: #006EBB;
}
.question387 h3 {
  font-size: 1.8rem;
}
.question387 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question387.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question388 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question388.container{
 color: #006EBB;
}
.question388:focus{
 color: #006EBB;
}
.question388 h3 {
  font-size: 1.8rem;
}
.question388 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question388.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question389 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question389.container{
 color: #006EBB;
}
.question389:focus{
 color: #006EBB;
}
.question389 h3 {
  font-size: 1.8rem;
}
.question389 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question389.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question390 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question390.container{
 color: #006EBB;
}
.question390:focus{
 color: #006EBB;
}
.question390 h3 {
  font-size: 1.8rem;
}
.question390 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question390.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question391 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question391.container{
 color: #006EBB;
}
.question391:focus{
 color: #006EBB;
}
.question391 h3 {
  font-size: 1.8rem;
}
.question391 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question391.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question392 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question392.container{
 color: #006EBB;
}
.question392:focus{
 color: #006EBB;
}
.question392 h3 {
  font-size: 1.8rem;
}
.question392 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question392.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question393 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question393.container{
 color: #006EBB;
}
.question393:focus{
 color: #006EBB;
}
.question393 h3 {
  font-size: 1.8rem;
}
.question393 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question393.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question394 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question394.container{
 color: #006EBB;
}
.question394:focus{
 color: #006EBB;
}
.question394 h3 {
  font-size: 1.8rem;
}
.question394 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question394.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question395 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question395.container{
 color: #006EBB;
}
.question395:focus{
 color: #006EBB;
}
.question395 h3 {
  font-size: 1.8rem;
}
.question395 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question395.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question396 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question396.container{
 color: #006EBB;
}
.question396:focus{
 color: #006EBB;
}
.question396 h3 {
  font-size: 1.8rem;
}
.question396 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question396.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question397 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question397.container{
 color: #006EBB;
}
.question397:focus{
 color: #006EBB;
}
.question397 h3 {
  font-size: 1.8rem;
}
.question397 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question397.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question398 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question398.container{
 color: #006EBB;
}
.question398:focus{
 color: #006EBB;
}
.question398 h3 {
  font-size: 1.8rem;
}
.question398 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question398.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question399 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question399.container{
 color: #006EBB;
}
.question399:focus{
 color: #006EBB;
}
.question399 h3 {
  font-size: 1.8rem;
}
.question399 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question399.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question400 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question400.container{
 color: #006EBB;
}
.question400:focus{
 color: #006EBB;
}
.question400 h3 {
  font-size: 1.8rem;
}
.question400 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question400.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question401 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question401.container{
 color: #006EBB;
}
.question401:focus{
 color: #006EBB;
}
.question401 h3 {
  font-size: 1.8rem;
}
.question401 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question401.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question402 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question402.container{
 color: #006EBB;
}
.question402:focus{
 color: #006EBB;
}
.question402 h3 {
  font-size: 1.8rem;
}
.question402 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question402.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question403 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question403.container{
 color: #006EBB;
}
.question403:focus{
 color: #006EBB;
}
.question403 h3 {
  font-size: 1.8rem;
}
.question403 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question403.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question404 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question404.container{
 color: #006EBB;
}
.question404:focus{
 color: #006EBB;
}
.question404 h3 {
  font-size: 1.8rem;
}
.question404 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question404.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question405 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question405.container{
 color: #006EBB;
}
.question405:focus{
 color: #006EBB;
}
.question405 h3 {
  font-size: 1.8rem;
}
.question405 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question405.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question406 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question406.container{
 color: #006EBB;
}
.question406:focus{
 color: #006EBB;
}
.question406 h3 {
  font-size: 1.8rem;
}
.question406 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question406.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question407 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question407.container{
 color: #006EBB;
}
.question407:focus{
 color: #006EBB;
}
.question407 h3 {
  font-size: 1.8rem;
}
.question407 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question407.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question408 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question408.container{
 color: #006EBB;
}
.question408:focus{
 color: #006EBB;
}
.question408 h3 {
  font-size: 1.8rem;
}
.question408 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question408.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question409 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question409.container{
 color: #006EBB;
}
.question409:focus{
 color: #006EBB;
}
.question409 h3 {
  font-size: 1.8rem;
}
.question409 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question409.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question410 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question410.container{
 color: #006EBB;
}
.question410:focus{
 color: #006EBB;
}
.question410 h3 {
  font-size: 1.8rem;
}
.question410 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question410.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question411 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question411.container{
 color: #006EBB;
}
.question411:focus{
 color: #006EBB;
}
.question411 h3 {
  font-size: 1.8rem;
}
.question411 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question411.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question412 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question412.container{
 color: #006EBB;
}
.question412:focus{
 color: #006EBB;
}
.question412 h3 {
  font-size: 1.8rem;
}
.question412 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question412.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question413 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question413.container{
 color: #006EBB;
}
.question413:focus{
 color: #006EBB;
}
.question413 h3 {
  font-size: 1.8rem;
}
.question413 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question413.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question414 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question414.container{
 color: #006EBB;
}
.question414:focus{
 color: #006EBB;
}
.question414 h3 {
  font-size: 1.8rem;
}
.question414 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question414.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question415 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question415.container{
 color: #006EBB;
}
.question415:focus{
 color: #006EBB;
}
.question415 h3 {
  font-size: 1.8rem;
}
.question415 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question415.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question416 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question416.container{
 color: #006EBB;
}
.question416:focus{
 color: #006EBB;
}
.question416 h3 {
  font-size: 1.8rem;
}
.question416 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question416.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question417 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question417.container{
 color: #006EBB;
}
.question417:focus{
 color: #006EBB;
}
.question417 h3 {
  font-size: 1.8rem;
}
.question417 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question417.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question418 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question418.container{
 color: #006EBB;
}
.question418:focus{
 color: #006EBB;
}
.question418 h3 {
  font-size: 1.8rem;
}
.question418 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question418.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question419 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question419.container{
 color: #006EBB;
}
.question419:focus{
 color: #006EBB;
}
.question419 h3 {
  font-size: 1.8rem;
}
.question419 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question419.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question420 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question420.container{
 color: #006EBB;
}
.question420:focus{
 color: #006EBB;
}
.question420 h3 {
  font-size: 1.8rem;
}
.question420 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question420.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question421 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question421.container{
 color: #006EBB;
}
.question421:focus{
 color: #006EBB;
}
.question421 h3 {
  font-size: 1.8rem;
}
.question421 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question421.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question422 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question422.container{
 color: #006EBB;
}
.question422:focus{
 color: #006EBB;
}
.question422 h3 {
  font-size: 1.8rem;
}
.question422 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question422.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question423 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question423.container{
 color: #006EBB;
}
.question423:focus{
 color: #006EBB;
}
.question423 h3 {
  font-size: 1.8rem;
}
.question423 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question423.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question424 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question424.container{
 color: #006EBB;
}
.question424:focus{
 color: #006EBB;
}
.question424 h3 {
  font-size: 1.8rem;
}
.question424 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question424.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question425 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question425.container{
 color: #006EBB;
}
.question425:focus{
 color: #006EBB;
}
.question425 h3 {
  font-size: 1.8rem;
}
.question425 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question425.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question426 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question426.container{
 color: #006EBB;
}
.question426:focus{
 color: #006EBB;
}
.question426 h3 {
  font-size: 1.8rem;
}
.question426 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question426.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question427 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question427.container{
 color: #006EBB;
}
.question427:focus{
 color: #006EBB;
}
.question427 h3 {
  font-size: 1.8rem;
}
.question427 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question427.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question428 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question428.container{
 color: #006EBB;
}
.question428:focus{
 color: #006EBB;
}
.question428 h3 {
  font-size: 1.8rem;
}
.question428 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question428.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question429 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question429.container{
 color: #006EBB;
}
.question429:focus{
 color: #006EBB;
}
.question429 h3 {
  font-size: 1.8rem;
}
.question429 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question429.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question430 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question430.container{
 color: #006EBB;
}
.question430:focus{
 color: #006EBB;
}
.question430 h3 {
  font-size: 1.8rem;
}
.question430 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question430.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question431 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question431.container{
 color: #006EBB;
}
.question431:focus{
 color: #006EBB;
}
.question431 h3 {
  font-size: 1.8rem;
}
.question431 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question431.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question432 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question432.container{
 color: #006EBB;
}
.question432:focus{
 color: #006EBB;
}
.question432 h3 {
  font-size: 1.8rem;
}
.question432 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question432.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question433 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question433.container{
 color: #006EBB;
}
.question433:focus{
 color: #006EBB;
}
.question433 h3 {
  font-size: 1.8rem;
}
.question433 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question433.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question434 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question434.container{
 color: #006EBB;
}
.question434:focus{
 color: #006EBB;
}
.question434 h3 {
  font-size: 1.8rem;
}
.question434 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question434.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question435 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question435.container{
 color: #006EBB;
}
.question435:focus{
 color: #006EBB;
}
.question435 h3 {
  font-size: 1.8rem;
}
.question435 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question435.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question436 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question436.container{
 color: #006EBB;
}
.question436:focus{
 color: #006EBB;
}
.question436 h3 {
  font-size: 1.8rem;
}
.question436 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question436.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question437 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question437.container{
 color: #006EBB;
}
.question437:focus{
 color: #006EBB;
}
.question437 h3 {
  font-size: 1.8rem;
}
.question437 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question437.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question438 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question438.container{
 color: #006EBB;
}
.question438:focus{
 color: #006EBB;
}
.question438 h3 {
  font-size: 1.8rem;
}
.question438 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question438.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question439 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question439.container{
 color: #006EBB;
}
.question439:focus{
 color: #006EBB;
}
.question439 h3 {
  font-size: 1.8rem;
}
.question439 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question439.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */

.question440 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question440.container{
 color: #006EBB;
}
.question440:focus{
 color: #006EBB;
}
.question440 h3 {
  font-size: 1.8rem;
}
.question440 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question440.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question441 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question441.container{
 color: #006EBB;
}
.question441:focus{
 color: #006EBB;
}
.question441 h3 {
  font-size: 1.8rem;
}
.question441 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question441.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question442 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question442.container{
 color: #006EBB;
}
.question442:focus{
 color: #006EBB;
}
.question442 h3 {
  font-size: 1.8rem;
}
.question442 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question442.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question443 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question443.container{
 color: #006EBB;
}
.question443:focus{
 color: #006EBB;
}
.question443 h3 {
  font-size: 1.8rem;
}
.question443 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question443.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question444 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question444.container{
 color: #006EBB;
}
.question444:focus{
 color: #006EBB;
}
.question444 h3 {
  font-size: 1.8rem;
}
.question444 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question444.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question445 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question445.container{
 color: #006EBB;
}
.question445:focus{
 color: #006EBB;
}
.question445 h3 {
  font-size: 1.8rem;
}
.question445 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question445.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question446 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question446.container{
 color: #006EBB;
}
.question446:focus{
 color: #006EBB;
}
.question446 h3 {
  font-size: 1.8rem;
}
.question446 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question446.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question447 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question447.container{
 color: #006EBB;
}
.question447:focus{
 color: #006EBB;
}
.question447 h3 {
  font-size: 1.8rem;
}
.question447 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question447.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question448 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question448.container{
 color: #006EBB;
}
.question448:focus{
 color: #006EBB;
}
.question448 h3 {
  font-size: 1.8rem;
}
.question448 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question448.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question449 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question449.container{
 color: #006EBB;
}
.question449:focus{
 color: #006EBB;
}
.question449 h3 {
  font-size: 1.8rem;
}
.question449 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question449.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question450 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question450.container{
 color: #006EBB;
}
.question450:focus{
 color: #006EBB;
}
.question450 h3 {
  font-size: 1.8rem;
}
.question450 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question450.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question451 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question451.container{
 color: #006EBB;
}
.question451:focus{
 color: #006EBB;
}
.question451 h3 {
  font-size: 1.8rem;
}
.question451 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question451.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question452 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question452.container{
 color: #006EBB;
}
.question452:focus{
 color: #006EBB;
}
.question452 h3 {
  font-size: 1.8rem;
}
.question452 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question452.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question453 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question453.container{
 color: #006EBB;
}
.question453:focus{
 color: #006EBB;
}
.question453 h3 {
  font-size: 1.8rem;
}
.question453 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question453.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question454 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question454.container{
 color: #006EBB;
}
.question454:focus{
 color: #006EBB;
}
.question454 h3 {
  font-size: 1.8rem;
}
.question454 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question454.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question455 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question455.container{
 color: #006EBB;
}
.question455:focus{
 color: #006EBB;
}
.question455 h3 {
  font-size: 1.8rem;
}
.question455 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question455.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question456 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question456.container{
 color: #006EBB;
}
.question456:focus{
 color: #006EBB;
}
.question456 h3 {
  font-size: 1.8rem;
}
.question456 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question456.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question457 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question457.container{
 color: #006EBB;
}
.question457:focus{
 color: #006EBB;
}
.question457 h3 {
  font-size: 1.8rem;
}
.question457 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question457.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question458 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question458.container{
 color: #006EBB;
}
.question458:focus{
 color: #006EBB;
}
.question458 h3 {
  font-size: 1.8rem;
}
.question458 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question458.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question459 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question459.container{
 color: #006EBB;
}
.question459:focus{
 color: #006EBB;
}
.question459 h3 {
  font-size: 1.8rem;
}
.question459 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question459.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */
.question460 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1210px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
  text-decoration: none;
  color: #000;
}
.question460.container{
 color: #006EBB;
}
.question460:focus{
 color: #006EBB;
}
.question460 h3 {
  font-size: 1.8rem;
}
.question460 i {
 margin-right: 10px;
 font-size: 2rem;
}
.question460.active i {
  transform: rotate(180deg);
}
/* ------------------------------------------------------------- */

.container .show-section {
   display: none;
}
.container .show-section1 {
   display: none;
}
.container .show-section2 {
   display: none;
}
.container .show-section3 {
   display: none;
}
.container .show-section4 {
   display: none;
}
.container .show-section5 {
   display: none;
}
.container .show-section6 {
   display: none;
}
.container .show-section7 {
   display: none;
}
.container .show-section8 {
   display: none;
}
.container .show-section9 {
   display: none;
}
.container .show-section10 {
   display: none;
}
.container .show-section11 {
   display: none;
}
.container .show-section12 {
   display: none;
}
.container .show-section13 {
   display: none;
}
.container .show-section14 {
   display: none;
}
.container .show-section15 {
   display: none;
}
.container .show-section16 {
   display: none;
}
.container .show-section17 {
   display: none;
}
.container .show-section18 {
   display: none;
}
.container .show-section19 {
   display: none;
}
.container .show-section20 {
   display: none;
}
.container .show-section21 {
   display: none;
}
.container .show-section22 {
   display: none;
}
.container .show-section23 {
   display: none;
}
.container .show-section24 {
   display: none;
}
.container .show-section25 {
   display: none;
}
.container .show-section26 {
   display: none;
}
.container .show-section27 {
   display: none;
}
.container .show-section28 {
   display: none;
}
.container .show-section29 {
   display: none;
}
.container .show-section30 {
   display: none;
}
.container .show-section31 {
   display: none;
}
.container .show-section32 {
   display: none;
}
.container .show-section33 {
   display: none;
}
.container .show-section34 {
   display: none;
}
.container .show-section35 {
   display: none;
}
.container .show-section36 {
   display: none;
}
.container .show-section37 {
   display: none;
}
.container .show-section38 {
   display: none;
}
.container .show-section39 {
   display: none;
}
.container .show-section40 {
   display: none;
}
.container .show-section41 {
   display: none;
}
.container .show-section42 {
   display: none;
}
.container .show-section43 {
   display: none;
}
.container .show-section44 {
   display: none;
}
.container .show-section45 {
   display: none;
}
.container .show-section46 {
   display: none;
}
.container .show-section47 {
   display: none;
}
.container .show-section48 {
   display: none;
}
.container .show-section49 {
   display: none;
}
.container .show-section50 {
   display: none;
}
.container .show-section51 {
   display: none;
}
.container .show-section52 {
   display: none;
}
.container .show-section53 {
   display: none;
}
.container .show-section54 {
   display: none;
}
.container .show-section55 {
   display: none;
}
.container .show-section56 {
   display: none;
}
.container .show-section57 {
   display: none;
}
.container .show-section58 {
   display: none;
}
.container .show-section59 {
   display: none;
}
.container .show-section60 {
   display: none;
}
.container .show-section61 {
   display: none;
}
.container .show-section62 {
   display: none;
}
.container .show-section63 {
   display: none;
}
.container .show-section64 {
   display: none;
}
.container .show-section65 {
   display: none;
}
.container .show-section66 {
   display: none;
}
.container .show-section67 {
   display: none;
}
.container .show-section68 {
   display: none;
}
.container .show-section69 {
   display: none;
}
.container .show-section70 {
   display: none;
}
.container .show-section71 {
   display: none;
}
.container .show-section72 {
   display: none;
}
.container .show-section73 {
   display: none;
}
.container .show-section74 {
   display: none;
}
.container .show-section75 {
   display: none;
}
.container .show-section76 {
   display: none;
}
.container .show-section77 {
   display: none;
}
.container .show-section78 {
   display: none;
}
.container .show-section79 {
   display: none;
}
.container .show-section80 {
   display: none;
}
.container .show-section81 {
   display: none;
}
.container .show-section82 {
   display: none;
}
.container .show-section83 {
   display: none;
}
.container .show-section84 {
   display: none;
}
.container .show-section85 {
   display: none;
}
.container .show-section86 {
   display: none;
}
.container .show-section87 {
   display: none;
}
.container .show-section88 {
   display: none;
}
.container .show-section89 {
   display: none;
}
.container .show-section90 {
   display: none;
}
.container .show-section91 {
   display: none;
}
.container .show-section92 {
   display: none;
}
.container .show-section93 {
   display: none;
}
.container .show-section94 {
   display: none;
}
.container .show-section95 {
   display: none;
}
.container .show-section96 {
   display: none;
}
.container .show-section97 {
   display: none;
}
.container .show-section98 {
   display: none;
}
.container .show-section99 {
   display: none;
}
.container .show-section100 {
   display: none;
}
.container .show-section101 {
   display: none;
}
.container .show-section102 {
   display: none;
}
.container .show-section103 {
   display: none;
}
.container .show-section104 {
   display: none;
}
.container .show-section105 {
   display: none;
}
.container .show-section106 {
   display: none;
}
.container .show-section107 {
   display: none;
}
.container .show-section108 {
   display: none;
}
.container .show-section109 {
   display: none;
}
.container .show-section110 {
   display: none;
}
.container .show-section111 {
   display: none;
}
.container .show-section112 {
   display: none;
}
.container .show-section113 {
   display: none;
}
.container .show-section114 {
   display: none;
}
.container .show-section115 {
   display: none;
}
.container .show-section116 {
   display: none;
}
.container .show-section117 {
   display: none;
}
.container .show-section118 {
   display: none;
}
.container .show-section119 {
   display: none;
}
.container .show-section120 {
   display: none;
}
.container .show-section121 {
   display: none;
}
.container .show-section122 {
   display: none;
}
.container .show-section123 {
   display: none;
}
.container .show-section124 {
   display: none;
}
.container .show-section125 {
   display: none;
}
.container .show-section126 {
   display: none;
}
.container .show-section127 {
   display: none;
}
.container .show-section128 {
   display: none;
}
.container .show-section129 {
   display: none;
}
.container .show-section130 {
   display: none;
}
.container .show-section131 {
   display: none;
}
.container .show-section132 {
   display: none;
}
.container .show-section133 {
   display: none;
}
.container .show-section134 {
   display: none;
}
.container .show-section135 {
   display: none;
}
.container .show-section136 {
   display: none;
}
.container .show-section137 {
   display: none;
}
.container .show-section138 {
   display: none;
}
.container .show-section139 {
   display: none;
}
.container .show-section140 {
   display: none;
}
.container .show-section141 {
   display: none;
}
.container .show-section142 {
   display: none;
}
.container .show-section143 {
   display: none;
}
.container .show-section144 {
   display: none;
}
.container .show-section145 {
   display: none;
}
.container .show-section146 {
   display: none;
}
.container .show-section147 {
   display: none;
}
.container .show-section148 {
   display: none;
}
.container .show-section149 {
   display: none;
}
.container .show-section150 {
   display: none;
}
.container .show-section151 {
   display: none;
}
.container .show-section152 {
   display: none;
}
.container .show-section153 {
   display: none;
}
.container .show-section154 {
   display: none;
}
.container .show-section155 {
   display: none;
}
.container .show-section156 {
   display: none;
}
.container .show-section157 {
   display: none;
}
.container .show-section158 {
   display: none;
}
.container .show-section159 {
   display: none;
}
.container .show-section160 {
   display: none;
}
.container .show-section161 {
   display: none;
}
.container .show-section162 {
   display: none;
}
.container .show-section163 {
   display: none;
}
.container .show-section164 {
   display: none;
}
.container .show-section165 {
   display: none;
}
.container .show-section166 {
   display: none;
}
.container .show-section167 {
   display: none;
}
.container .show-section168 {
   display: none;
}
.container .show-section169 {
   display: none;
}
.container .show-section170 {
   display: none;
}
.container .show-section171 {
   display: none;
}
.container .show-section172 {
   display: none;
}
.container .show-section173 {
   display: none;
}
.container .show-section174 {
   display: none;
}
.container .show-section175 {
   display: none;
}
.container .show-section176 {
   display: none;
}
.container .show-section177 {
   display: none;
}
.container .show-section178 {
   display: none;
}
.container .show-section179 {
   display: none;
}
.container .show-section180 {
   display: none;
}
.container .show-section181 {
   display: none;
}
.container .show-section182 {
   display: none;
}
.container .show-section183 {
   display: none;
}
.container .show-section184 {
   display: none;
}
.container .show-section185 {
   display: none;
}
.container .show-section186 {
   display: none;
}
.container .show-section187 {
   display: none;
}
.container .show-section188 {
   display: none;
}
.container .show-section189 {
   display: none;
}
.container .show-section190 {
   display: none;
}
.container .show-section191 {
   display: none;
}
.container .show-section192 {
   display: none;
}
.container .show-section193 {
   display: none;
}
.container .show-section194 {
   display: none;
}
.container .show-section195 {
   display: none;
}
.container .show-section196 {
   display: none;
}
.container .show-section197 {
   display: none;
}
.container .show-section198 {
   display: none;
}
.container .show-section199 {
   display: none;
}
.container .show-section200 {
   display: none;
}
.container .show-section201 {
   display: none;
}
.container .show-section202 {
   display: none;
}
.container .show-section203 {
   display: none;
}
.container .show-section204 {
   display: none;
}
.container .show-section205 {
   display: none;
}
.container .show-section206 {
   display: none;
}
.container .show-section207 {
   display: none;
}
.container .show-section208 {
   display: none;
}
.container .show-section209 {
   display: none;
}
.container .show-section210 {
   display: none;
}
.container .show-section211 {
   display: none;
}
.container .show-section212 {
   display: none;
}
.container .show-section213 {
   display: none;
}
.container .show-section214 {
   display: none;
}
.container .show-section215 {
   display: none;
}
.container .show-section216 {
   display: none;
}
.container .show-section217 {
   display: none;
}
.container .show-section218 {
   display: none;
}
.container .show-section219 {
   display: none;
}
.container .show-section220 {
   display: none;
}
.container .show-section221 {
   display: none;
}
.container .show-section222 {
   display: none;
}
.container .show-section223 {
   display: none;
}
.container .show-section224 {
   display: none;
}
.container .show-section225 {
   display: none;
}
.container .show-section226 {
   display: none;
}
.container .show-section227 {
   display: none;
}
.container .show-section228 {
   display: none;
}
.container .show-section229 {
   display: none;
}
.container .show-section230 {
   display: none;
}
.container .show-section231 {
   display: none;
}
.container .show-section232 {
   display: none;
}
.container .show-section233 {
   display: none;
}
.container .show-section234 {
   display: none;
}
.container .show-section235 {
   display: none;
}
.container .show-section236 {
   display: none;
}
.container .show-section237 {
   display: none;
}
.container .show-section238 {
   display: none;
}
.container .show-section239 {
   display: none;
}
.container .show-section240 {
   display: none;
}
.container .show-section241 {
   display: none;
}
.container .show-section242 {
   display: none;
}
.container .show-section243 {
   display: none;
}
.container .show-section244 {
   display: none;
}
.container .show-section245 {
   display: none;
}
.container .show-section246 {
   display: none;
}
.container .show-section247 {
   display: none;
}
.container .show-section248 {
   display: none;
}
.container .show-section249 {
   display: none;
}
.container .show-section250 {
   display: none;
}
.container .show-section251 {
   display: none;
}
.container .show-section252 {
   display: none;
}
.container .show-section253 {
   display: none;
}
.container .show-section254 {
   display: none;
}
.container .show-section255 {
   display: none;
}
.container .show-section256 {
   display: none;
}
.container .show-section257{
   display: none;
}
.container .show-section258{
   display: none;
}
.container .show-section259{
   display: none;
}
.container .show-section260{
   display: none;
}
.container .show-section261{
   display: none;
}
.container .show-section262{
   display: none;
}
.container .show-section263{
   display: none;
}
.container .show-section264{
   display: none;
}
.container .show-section265{
   display: none;
}
.container .show-section266{
   display: none;
}
.container .show-section267{
   display: none;
}
.container .show-section268{
   display: none;
}
.container .show-section269{
   display: none;
}
.container .show-section270{
   display: none;
}
.container .show-section271{
   display: none;
}
.container .show-section272{
   display: none;
}
.container .show-section273{
   display: none;
}
.container .show-section274{
   display: none;
}
.container .show-section275{
   display: none;
}
.container .show-section276{
   display: none;
}
.container .show-section277{
   display: none;
}
.container .show-section278{
   display: none;
}
.container .show-section279{
   display: none;
}
.container .show-section280{
   display: none;
}
.container .show-section281{
   display: none;
}
.container .show-section282{
   display: none;
}
.container .show-section283{
   display: none;
}
.container .show-section284{
   display: none;
}
.container .show-section285{
   display: none;
}
.container .show-section286{
   display: none;
}
.container .show-section287{
   display: none;
}
.container .show-section288{
   display: none;
}
.container .show-section289{
   display: none;
}
.container .show-section290{
   display: none;
}
.container .show-section291{
   display: none;
}
.container .show-section292{
   display: none;
}
.container .show-section293{
   display: none;
}
.container .show-section294{
   display: none;
}
.container .show-section295{
   display: none;
}
.container .show-section296{
   display: none;
}
.container .show-section297{
   display: none;
}
.container .show-section298{
   display: none;
}
.container .show-section299{
   display: none;
}
.container .show-section300{
   display: none;
}
.container .show-section301{
   display: none;
}
.container .show-section302{
   display: none;
}
.container .show-section303{
   display: none;
}
.container .show-section304{
   display: none;
}
.container .show-section305{
   display: none;
}
.container .show-section306{
   display: none;
}
.container .show-section307{
   display: none;
}
.container .show-section308{
   display: none;
}
.container .show-section309{
   display: none;
}
.container .show-section310{
   display: none;
}
.container .show-section311{
   display: none;
}
.container .show-section312{
   display: none;
}
.container .show-section313{
   display: none;
}
.container .show-section314{
   display: none;
}
.container .show-section315{
   display: none;
}
.container .show-section316{
   display: none;
}
.container .show-section317{
   display: none;
}
.container .show-section318{
   display: none;
}
.container .show-section319{
   display: none;
}
.container .show-section320{
   display: none;
}
.container .show-section321{
   display: none;
}
.container .show-section322{
   display: none;
}
.container .show-section323{
   display: none;
}
.container .show-section324{
   display: none;
}
.container .show-section325{
   display: none;
}
.container .show-section326{
   display: none;
}
.container .show-section327{
   display: none;
}
.container .show-section328{
   display: none;
}
.container .show-section329{
   display: none;
}
.container .show-section330{
   display: none;
}
.container .show-section331{
   display: none;
}
.container .show-section332{
   display: none;
}
.container .show-section333{
   display: none;
}
.container .show-section334{
   display: none;
}
.container .show-section335{
   display: none;
}
.container .show-section336{
   display: none;
}
.container .show-section337{
   display: none;
}
.container .show-section338{
   display: none;
}
.container .show-section339{
   display: none;
}
.container .show-section340{
   display: none;
}
.container .show-section341{
   display: none;
}
.container .show-section342{
   display: none;
}
.container .show-section343{
   display: none;
}
.container .show-section344{
   display: none;
}
.container .show-section345{
   display: none;
}
.container .show-section346{
   display: none;
}
.container .show-section347{
  display: none;
}
.container .show-section348{
  display: none;
}
.container .show-section349{
  display: none;
}
.container .show-section350{
  display: none;
}
.container .show-section351{
  display: none;
}
.container .show-section352{
  display: none;
}
.container .show-section353{
  display: none;
}
.container .show-section354{
  display: none;
}
.container .show-section355{
  display: none;
}
.container .show-section356{
  display: none;
}
.container .show-section357{
  display: none;
}
.container .show-section358{
  display: none;
}
.container .show-section359{
  display: none;
}
.container .show-section360{
  display: none;
}
.container .show-section361{
  display: none;
}
.container .show-section362{
  display: none;
}
.container .show-section363{
  display: none;
}
.container .show-section364{
  display: none;
}
.container .show-section365{
  display: none;
}
.container .show-section366{
  display: none;
}
.container .show-section367{
  display: none;
}
.container .show-section368{
  display: none;
}
.container .show-section369{
  display: none;
}
.container .show-section370{
  display: none;
}
.container .show-section371{
  display: none;
}
.container .show-section372{
  display: none;
}
.container .show-section373{
  display: none;
}
.container .show-section374{
  display: none;
}
.container .show-section375{
  display: none;
}
.container .show-section376{
  display: none;
}
.container .show-section377{
  display: none;
}
.container .show-section378{
  display: none;
}
.container .show-section379{
  display: none;
}
.container .show-section380{
  display: none;
}
.container .show-section381{
  display: none;
}
.container .show-section382{
  display: none;
}
.container .show-section383{
  display: none;
}
.container .show-section384{
  display: none;
}
.container .show-section385{
  display: none;
}
.container .show-section386{
  display: none;
}
.container .show-section387{
  display: none;
}
.container .show-section388{
  display: none;
}
.container .show-section389{
  display: none;
}
.container .show-section390{
  display: none;
}
.container .show-section391{
  display: none;
}
.container .show-section392{
  display: none;
}
.container .show-section393{
  display: none;
}
.container .show-section394{
  display: none;
}
.container .show-section395{
  display: none;
}
.container .show-section396{
  display: none;
}
.container .show-section397{
  display: none;
}
.container .show-section398{
  display: none;
}
.container .show-section399{
  display: none;
}
.container .show-section400{
  display: none;
}
.container .show-section401{
  display: none;
}
.container .show-section402{
  display: none;
}
.container .show-section403{
  display: none;
}
.container .show-section404{
  display: none;
}
.container .show-section405{
  display: none;
}
.container .show-section406{
  display: none;
}
.container .show-section407{
  display: none;
}
.container .show-section408{
  display: none;
}
.container .show-section409{
  display: none;
}
.container .show-section410{
  display: none;
}
.container .show-section411{
  display: none;
}
.container .show-section412{
  display: none;
}
.container .show-section413{
  display: none;
}
.container .show-section414{
  display: none;
}
.container .show-section415{
  display: none;
}
.container .show-section416{
  display: none;
}
.container .show-section417{
  display: none;
}
.container .show-section418{
  display: none;
} 
.container .show-section419{
  display: none;
}    
.container .show-section420{
  display: none;
}     
.container .show-section421{
  display: none;
}    
.container .show-section422{
  display: none;
}
.container .show-section423{
  display: none;
}
.container .show-section424{
  display: none;
}
.container .show-section425{
  display: none;
}
.container .show-section426{  
  display: none;
}
.container .show-section427{
  display: none;
}
.container .show-section428{
  display: none;
}
.container .show-section429{
  display: none;
}
.container .show-section430{
  display: none;
}
.container .show-section431{
  display: none;
}
.container .show-section432{
  display: none;
}
.container .show-section433{
  display: none;
}
.container .show-section434{
  display: none;
}
.container .show-section435{
  display: none;
}
.container .show-section436{
  display: none;
}
.container .show-section437{
  display: none;
}
.container .show-section438{  
  display: none;
}
.container .show-section439{  
  display: none;
}
.container .show-section440{
  display: none;
}
.container .show-section441{
  display: none;
}
.container .show-section442{
  display: none;
}
.container .show-section443{    
  display: none;
}
.container .show-section444{
  display: none;
}
.container .show-section445{
  display: none;
}
.container .show-section446{
  display: none;
}
.container .show-section447{
  display: none;
}
.container .show-section448{
  display: none;
}
.container .show-section449{
  display: none;
}
.container .show-section450{
  display: none;
}
.container .show-section451{
  display: none;
}
.container .show-section452{
  display: none;
}
.container .show-section453{
  display: none;
}
.container .show-section454{
  display: none;
}
.container .show-section455{
  display: none;
}
.container .show-section456{
  display: none;
}
.container .show-section457{
  display: none;
}
.container .show-section458{
  display: none;
}
.container .show-section459{
  display: none;
}
.container .show-section460{
  display: none;
}
.container .show-section461{
  display: none;
}
.container .show-section462{
  display: none;
}
.container .show{
   max-height: 100%;
   display: block;
}
