@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    --brand-color: #004AAD;
    --secondary-color: #4280d1;
    --secondary-color-l: #004bad33;
  }

.attention-grabbers {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10%;
    margin-right: 10%;
}

.ag1 {
    padding: 25px;
    border: solid rgba(153, 201, 243, 0.32) 1px;
    border-radius: 10px;
    background-color: rgba(127, 189, 243, 0.092);
    display: flex; 
    justify-content: right;
    flex-direction: row;
    align-items: row;
    box-shadow: 4px 4px 700px rgba(0, 0, 0, 0.3);
}

.ag2 {
    padding: 25px;
    border: solid rgba(153, 201, 243, 0.32) 1px;
    border-radius: 10px;
    background-color: rgba(127, 189, 243, 0.092);
    display: flex; 
    justify-content: right;
    flex-direction: row;
    align-items: row;
    box-shadow: 4px 4px 700px rgba(0, 0, 0, 0.3);
}


.ag-text {
    color: rgb(150, 155, 159);
    font-size: 25px;
    font-family: SUSE;
    font-weight: 500;
    text-align: left;
    max-width: 90%;
    padding-left: 15%;
    padding-top: 25%;
}

.ag-link {
    margin-top: 20px;
}

.ag-link a {
    color: rgb(98, 169, 231);
    text-decoration: none;
    font-size: 20px;
}

.ag-link:hover a {
    color: rgb(98, 169, 231);
    text-decoration: underline;
    font-size: 20px;
}

.ag-text .emph, .ag-text2 .emph {
    color: aliceblue;
    font-size: 32px;
    font-family: SUSE;
    font-weight: 500;
}

.attention-grabbers .agheader {
    color: aliceblue;
    font-size: 60px;
    text-align: center;
    font-family: SUSE;
    font-weight: 600;
}

.attention-grabbers .agheader .agsubhead {
    color: rgb(137, 141, 145);
    font-size: 20px;
    text-align: center;
    font-family: SUSE;
    font-weight: 300;
    margin-bottom: 50px;
}

.ag-text2 {
    color: rgb(150, 155, 159);
    font-size: 25px;
    font-family: SUSE;
    font-weight: 500;
    text-align: left;
    max-width: 90%;
    padding-right: 15%;
    padding-top: 25%;
}

.ag-link2 {
    margin-top: 20px;
}

.ag-link2 a {
    color: rgb(98, 169, 231);
    text-decoration: none;
    font-size: 20px;
}

.ag-link2:hover a {
    color: rgb(98, 169, 231);
    text-decoration: underline;
    font-size: 20px;
}

.ag-text .emph {
    color: aliceblue;
    font-size: 32px;
    font-family: SUSE;
    font-weight: 500;
}

.agicon {
    color: aliceblue;
    text-align: center;
    font-size: 60px;
    margin-top:60px;
}

.agicon i {
    background: var(--secondary-color-l);
}

.agicon i::after {
    filter: blur(100px);
    transform: translate(10px, 10px);
    z-index: -1;
    background: inherit;
    content: "";
    position: absolute;
    top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}










.blog-style-page2 .quickjump {
    background-color: rgba(127, 189, 243, 0.092);
    border-radius: 7px;
    width: 45%;
    color: aliceblue;
    border: rgba(153, 201, 243, 0.32) 1px solid;
    padding-left: 50px;
    box-shadow: 4px 4px 700px rgba(0, 0, 0, 0.3);
}

.blog-style-page2 {
    background-color: rgba(255, 255, 255, 0.001);
    margin-top: 40px;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.qj-icon {
    padding-top:40px;
    padding-bottom: 5px;
    text-align: left;
    font-size: 45px;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
}

/*.qj-act-icon {
    color: aliceblue;
    background-color: #004bad32;
    padding: 10px;
    border: #4280d1 2px solid;
    text-align: left;
    border-radius: 10px;
}*/

.qj-content {
    padding-right: 20px;
    padding-bottom: 30px;
    padding-top: 20px;
    color: aliceblue;
    font-family: SUSE;
}

.agqj-text {
    color: rgb(150, 155, 159);
    font-size: 20px;
    font-family: SUSE;
    font-weight: 500;
    text-align: left;
    max-width: 90%;
}

.agqj-text .emph {
    color: aliceblue;
    font-size: 25px;
    font-family: SUSE;
    font-weight: 500;
    margin-bottom: 5px;
}


/* FAQs ACCORDION */

.faqs-accordion {
    background-color: rgba(127, 189, 243, 0.092);
    color: aliceblue;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border: solid rgba(153, 201, 243, 0.32) 1px;
    border-radius: 10px;
    font-family: SUSE;
    font-size: 20px;
  }
  
  .active, .faqs-accordion:hover {
    background-color: rgba(48, 102, 149, 0.092);
  }
  
  .faqs-accordion:after {
    content: '\f078';
    color: aliceblue;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-family: "Font Awesome 6 Free";
  }
  
  .active:after {
    content: "\f077";
    font-family: "Font Awesome 6 Free";
  }

  .active {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom: none;
  }
  
  .panel {
    padding: 0 18px;
    background-color: rgba(127, 189, 243, 0.092);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color:aliceblue;
    font-family: SUSE;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left: solid rgba(153, 201, 243, 0.32) 1px;
    border-right: solid rgba(153, 201, 243, 0.32) 1px;
  }

  .panel a {
    text-decoration: underline;
    color:var(--secondary-color);
  }