﻿@charset "utf-8" ;


.link-buttons a {
	color: #FFFFFF; 
	text-decoration: none;
}
		
.link-buttons {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.link-button {
	max-width: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 320px;
	min-height: 76px;
	padding: 15px 20px;
	background-color: #329bc9;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	box-sizing: border-box;
	transition: background-color 0.3s;
}

.link-button:hover {
	background-color: #2585b0;
	color: #fff;
}

.arrow-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	margin-right: 7px;
	border: 1px solid #fff;
	border-radius: 50%;
	font-size: 14px;
	line-height: 1;
	padding-bottom: 3px;
	box-sizing: border-box;
}

.pdf-icon {
	margin-left: 3px;
	font-size: 14px;
}
		
@media screen and (max-width: 767px) {
  .link-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 20px;
  }

  .link-button {
    width: 100%;
    min-height: 60px;
    box-sizing: border-box;
  }
}
