@font-face {
  font-family: 'Evolventa';
  src: url('fonts/Evolventa-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Evolventa';
  src: url('fonts/Evolventa-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Evolventa';
  src: url('fonts/Evolventa-Oblique.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Evolventa';
  src: url('fonts/Evolventa-BoldOblique.otf') format('opentype');
  font-weight: bold;
  font-style: italic;
}

@import url(https://fonts.googleapis.com/css2?family=Inder&display=swap);

body {
    font-family: 'Evolventa', sans-serif;
}

.section{
	margin-top: 60px;
}

.sectionTitle h2{
	text-align: center;
	font-size: 32px;
	color: #C8102E;
}

.btnCenter{
	display: flex;
	justify-content: center;
	margin-top: 35px;
}

.btn{
	display: inline-block;
  	font-family: 'Inder', sans-serif;
	padding: 14px 28px;
	transition: .4s;
	font-size: 14px;
}

.btnMain{
	background: #C8102E;
	border-radius: 60px;
	color: #fff;
}

.btnMain:hover{
	background: #97071f;
}

.btnSecond{
  background: #002664;
  border-radius: 60px;
	color: #fff;
}

.btnSecond:hover{
  background: #001d4b;
}

.btnArrow{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	background: #fff;
	border-radius: 50%;
	transition: .4s;
	cursor: pointer;
}

.btnArrow img{
	width: 20px;
	transform: rotate(-45deg);
	transition: .4s;
}

.btnArrow:hover img{
	transform: rotate(0);
}

.btnOutline{
	background: none;
	border: 1px solid #fff;
	border-radius: 100px;
	color: #fff;
}

.btnOutline:hover{
	background: #fff;
	color: #C8102E;
}

.titlePage h1{
    font-size: 32px;
    color: #C8102E;
}

.breadcumbs{
    display: flex;
    overflow-x: auto;
    gap: 5px;
    margin-top: 25px;
}

.breadcumbs a, .breadcumbs p{
    font-size: 14px;
} 

.breadcumbs a{
    color: #C8102E;
    transition: .4s;
}

.breadcumbs a:hover{
  color: #97071f;
}

.breadcumbs a::after{
    content: '/';
    margin-left: 5px;
}

.breadcumbs p{
    color: #999;
}

.floatingBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media(min-width: 320px) and (max-width: 550px){
    .titlePage h1{
        font-size: 24px;
    }

    .breadcumbs a, .breadcumbs p{
        white-space: nowrap;
    } 

    .floatingBtn {
        padding: 10px 20px;
        font-size: 12px;
    }
}
.textComponent * {
  color: #575757;
  margin: 0 0 10px;
}

.textComponent h2 { font-size: 28px; }
.textComponent h3 { font-size: 24px; }
.textComponent h4 { font-size: 20px; }
.textComponent h5 { font-size: 18px; }
.textComponent h6 { font-size: 16px; }

.textComponent p {
  font-size: 14px;
  line-height: 1.6;
}

.textComponent ul,
.textComponent ol {
  margin: 15px 0 15px 25px;
  padding-left: 20px;
}

.textComponent ul li,
.textComponent ol li {
  margin: 6px 0;
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.6;
  position: relative;
}

.textComponent ul {
  list-style: none;
}

.textComponent strong {
  color: #C8102E;
}

.textComponent ul li::before {
  content: "•";
  color: #002664;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.textComponent ol {
  counter-reset: listCounter;
  list-style: none;
}

.textComponent ol li {
  counter-increment: listCounter;
}

.textComponent ol li::before {
  content: counter(listCounter) ".";
  color: #002664;
  font-weight: 600;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

.textComponent table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.textComponent th,
.textComponent td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

.textComponent th {
  background-color: #f5f7fa;
  color: #002664;
  font-weight: 600;
}

.textComponent tr:nth-child(even) {
  background-color: #f5f7fa;
}

.textComponent tr:hover {
  background-color: #f0f2f7;
  transition: background 0.2s ease;
}

@media (max-width: 768px) {
  .textComponent table {
    border: 0;
    border-radius: 0;
  }

  .textComponent thead {
    display: none;
  }

  .textComponent tbody,
  .textComponent tr,
  .textComponent td {
    display: block;
    width: 100%;
  }

  .textComponent tr {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px 15px;
    width: calc(100% - 30px);
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  .textComponent td {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
  }

  .textComponent td:last-child {
    border-bottom: none;
  }

  .textComponent td::before {
    content: attr(data-label);
    flex: 0 0 45%;
    font-weight: 600;
    color: #002664;
    text-align: left;
  }
}

.textComponent a{
  text-decoration: underline;
}


.columnImgComponent{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.columnImgComponent img{
  width: 100%;
  border-radius: 20px;
}

@media(min-width: 320px) and (max-width: 550px){
  .columnImgComponent{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 10px;
  }
}

@media(min-width: 550px) and (max-width: 980px){
  .columnImgComponent{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
  }
}