@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700');

html {box-sizing: border-box;font-family:"Roboto", sans-serif;}
*, *:before, *:after {box-sizing: inherit;}

body {
  font-family:"Roboto", sans-serif !important;
}

p , ul, li {
 color: #191919;
 font-size: 16px;
}

p.txt{
 font-size: 16px !important;
 color: #000 !important;
}
p.txt-white {
 color: #fff !important;
}

a{
 color: #115B89;
 font-size: 14px;
}

a:hover{ 
 color: #115B89;
  text-decoration: none;
}

a.link{
  font-size: 16px !important;
}

a.btn-primary {
 background-color: #db2741;
 color: #fff;
 display: flex;
 padding: 1rem;
 border-radius: 5px;
 height: 100%;
 align-items: center;
 text-transform: uppercase;
 justify-content: center;
 font-weight: bold;
}

a.btn-primary:hover {
 background-color: #c11e35;
}

ul li{
 margin-bottom: 5px;
 font-size: 1rem;
}

hr {
 background-color: #FFF;
 margin-top: 30px;
 height: 2px;
}

h1{
 color: white;
 font-weight: bold;
 font-size: 36px;
}

h2{
 color: #2f56a3;
 font-size: 1.4rem;
 font-weight: bold;
}

h2.subtitle-white {
 color: #fff;
}

h3{
 color: #db2741;
 font-size: 21px;
 font-weight: bold;
 margin-bottom: 20px;
}

h4 {
 color: white;
 font-size: 24px;
}

section {
  padding: 20px 0;
}

.breadcrumb-item.active {
 font-size: 0.9rem;
 margin-bottom: 0;
}

.btn-outline-secondary {
 color: #fff;
}

.accordion {
 background-color: #125684;
 color: var(--white);
 cursor: pointer;
 padding: 0.7rem 0 0.7rem 2rem;
 width: 100%;
 border: none;
 text-align: left;
 outline: none;
 font-size: 1rem;
 transition: .3s;
 border-bottom-width: 1px;
 margin-top: 15px;
 border-radius: 4px;
 font-weight: 500;
 margin: 1rem 0 0 0;
}

.accordion:after {
 font-family: 'Font Awesome 5 Free';
 content: "\f078";
 color: var(--white);
 font-weight: bold;
 float: right;
 margin-right: 17px;
}

.active:after {
 font-family: 'Font Awesome 5 Free';
 content: "\f077";
}

button.accordion {
 display: grid;
 grid-template-columns: 22fr 1fr;
 gap: 1rem;
 justify-items: start;
 align-items: center;
}

.panelx {
 padding: 0 18px;
 background-color: #f6f6f6;
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.2s ease-out;
 //border: 2px solid #f4e4e4;
 border-top: 0;
 margin: 0 0 1rem 0;
}

.panelx p{
 margin: 25px;
 font-size: .9rem !important;
 color: #363636;
}

.panelx a{
 font-size: 0.875rem !important;
}

.panelx a:hover{
 font-size: 0.875rem !important;
}

.panelx ul{
 margin: 25px;
}

button:focus {outline:0 !important;}


.flex {
 display: flex;
  gap: 1rem;
}

.flex-infos, flex-button {
 flex: 1
}

.card {
 padding: 2rem;
 flex: 1;
}

hr.detail {
 background-color: #db2741;
 margin: 0;
 width: 10%;
 margin-bottom: 1rem;
}

footer {
 background: #2f56a3;
 padding: .2rem;
}

@media (max-width: 992px) {
.flex {
 flex-direction: column;
 }

.card {
 padding: 1.5rem;
 }
}


