/* Intro */

.db-intro {
	padding: 60px 0;
	color: rgba(9,29,54,0.8);
	font-size: 16px;
	line-height: calc(1em + 10px);
	background: #D6EFFF;
}

.db-intro-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: center;
}

.db-intro-count,
.db-intro-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: center;
	flex: 0 1 100%;
}

.db-intro-count {
	padding-right: 60px;
}

.db-intro-info {
	padding-left: 60px;
	border-left: 1px solid rgba(3,100,169,0.2);
}

.db-intro-info p {
	margin: 20px 0 0 0;
}

.db-intro-info p:first-child {
	margin: 0;
}

.db-intro-ttl {
	color: #091D36;
	font-size: 30px;
	font-weight: 700;
	line-height: calc(1em + 6px);
}

.db-intro-num {
	margin-top: -30px;
	color: #07C;
	font-size: 56px;
	font-weight: 700;
	line-height: 1em;
	text-align: center;
	white-space: nowrap;
}

.db-intro-num span {
	display: inline-block;
	margin: 0 3px;
	padding: 10px;
	background: #FFF;
	vertical-align: top;
	border-radius: 10px;
	-webkit-box-shadow: 0 5px 10px 0 rgba(9,29,54,0.2), 0 2px 1px 0 rgba(9,29,54,0.1);
	box-shadow: 0 5px 10px 0 rgba(9,29,54,0.2), 0 2px 1px 0 rgba(9,29,54,0.1);
}

.db-intro-num i {
	display: inline-block;
	padding-bottom: 8px;
	vertical-align: bottom;
}

.db-intro-txt {
	margin-top: 20px;
	font-size: 14px;
	font-style: italic;
	line-height: calc(1em + 6px);
	letter-spacing: 0.025em;
	text-align: center;
}

@media only screen and (max-width: 1279px) {
	.db-intro {
		padding: 40px 0;
	}

	.db-intro-container {
		flex-direction: column;
	}

	.db-intro-count,
	.db-intro-info {
		flex: 0 1 auto;
	}

	.db-intro-count {
		padding-right: 0;
	}

	.db-intro-info {
		margin-top: 40px;
		padding: 40px 0 0 0;
		border-left: none;
		border-top: 1px solid rgba(3,100,169,0.2);
	}
}

@media only screen and (max-width: 767px) {
	.db-intro {
		padding: 30px 0;
		font-size: 14px;
	}

	.db-intro-info {
		margin-top: 20px;
		padding: 20px 0 0 0;
	}

	.db-intro-info p {
		margin: 10px 0 0 0;
	}

	.db-intro-ttl {
		font-size: 18px;
	}

	.db-intro-num {
		margin-top: -10px;
		font-size: 24px;
	}

	.db-intro-num span {
		margin: 0 2px;
		padding: 8px;
		border-radius: 6px;
	}

	.db-intro-txt {
		margin-top: 10px;
		font-size: 13px;
	}
}



/* Content */

.db-content {
	padding: 60px 0 120px 0;
	font-size: 16px;
	line-height: calc(1em + 10px);
}

.db-content.single .wrapper {
	max-width: 1084px;
}

.db-h1 {
	margin: 50px 0;
	font-size: 48px;
	line-height: calc(1em + 8px);
}

.db-h2 {
	margin: 40px 0;
	font-size: 56px;
	line-height: 1.25;
}

.db-h2 .date {
	display: block;
	margin-top: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: calc(1em + 10px);
}

.db-h3 {
	margin: 40px 0;
	font-size: 30px;
	line-height: calc(1em + 8px);
}

.db-info {
	margin: 20px 0;
	padding: 10px 20px;
	background: #EBF7FF;
}

.db-img-main {
	height: 480px;
	overflow: hidden;
	position: relative;
}

.db-img-main img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}

@media only screen and (max-width: 1279px) {
	.db-content {
		padding: 40px 0 80px 0;
	}

	.db-h1 {
		margin: 40px 0;
		font-size: 36px;
	}

	.db-h2 {
		margin: 30px 0;
		font-size: 30px;
	}

	.db-h3 {
		margin: 30px 0;
		font-size: 24px;
	}
}

@media only screen and (max-width: 767px) {
	.db-content {
		padding: 30px 0 60px 0;
		font-size: 14px;
	}

	.db-h1 {
		margin: 25px 0;
		font-size: 30px;
	}

	.db-h2 {
		margin: 20px 0;
		font-size: 30px;
	}

	.db-h2 .date {
		font-size: 14px;
	}

	.db-h3 {
		margin: 20px 0;
		font-size: 18px;
	}

	.db-img-main {
		height: inherit;
	}

	.db-img-main img {
		display: block;
		width: 100%;
		height: auto;
		position: relative;
		top: inherit;
		left: inherit;
		object-fit: inherit;
	}
}



/* Filters */

.db-filters {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: center;
	margin: 40px -20px;
}

.db-filters-col {
	flex: 0 1 100%;
	max-width: 380px;
	padding: 0 20px;
}

.db-filters-or {
	flex: 0 1 auto;
	align-self: flex-end;
	padding: 0 40px;
	color: rgba(9,29,54,0.5);
	font-size: 18px;
	font-style: italic;
	font-weight: 700;
	line-height: 42px;
	text-align: center;
}

.db-filters-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
	margin: 0 -5px;
}

.db-filters-inp,
.db-filters-btn {
	padding: 0 5px;
}

.db-filters-inp {
	flex: 0 1 100%;
}

.db-filters-btn {
	flex: 0 1 auto;
	align-self: flex-end;
	min-width: 100px;
}

.db-filters .form-label {
	margin-bottom: 3px;
	color: #091D36;
	font-size: 14px;
	font-weight: 600;
	line-height: calc(1em + 6px);
}

.db-filters .form-control {
	padding: 0 12px;
	height: 36px;
	font-size: 14px;
}

.db-filters select.form-control {
	padding-right: 30px;
	background-position: calc(100% - 10px) center;
	background-size: 6px 12px;
}

.db-filters .form-btn {
	padding: 11px 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	border-radius: 100px;
}

@media only screen and (max-width: 1279px) {
	.db-filters {
		margin: 30px -15px;
	}

	.db-filters-col {
		padding: 0 15px;
	}

	.db-filters-or {
		padding: 0 15px;
		font-size: 16px;
	}
}

@media only screen and (max-width: 1023px) {
	.db-filters {
		flex-direction: column;
		align-items: center;
		margin: 30px auto;
	}

	.db-filters-col {
		flex: 0 1 auto;
		width: 100%;
		padding: 0;
	}

	.db-filters-col:not(:last-child) {
		margin-bottom: 15px;
	}

	.db-filters-or {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.db-filters {
		margin: 20px auto;
	}

	.db-filters-btn {
		min-width: 100px;
	}

	.db-filters .form-control {
		padding: 0 10px;
		height: 32px;
	}

	.db-filters .form-btn {
		padding: 10px 20px;
		font-size: 12px;
	}
}



/* Table */

.db-table {
	margin: 40px 0;
}

.db-table table {
	width: 100%;
	color: #091D36;
	font-size: 16px;
	line-height: calc(1em + 8px);
	border-collapse: collapse;
}

.db-table thead tr {
	background: #091D36;
}

.db-table tbody tr {
	background: #FFF;
	border-bottom: 1px solid rgba(9,29,54,0.1);
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.db-table tbody tr:nth-of-type(odd) {
	background: #F7F8F9;
}

.db-table tbody tr:hover {
	background: #ebf7ff;
	border-bottom-color: rgba(0,119,204,0.2);
}

.db-table th,
.db-table td {
	padding: 14px 20px;
	position: relative;
	vertical-align: top;
}

.db-table th {
	color: #FFF;
	font-weight: 500;
	text-align: left;
	white-space: nowrap;
}

.db-table th:before {
	display: block;
	content: "";
	width: 1px;
	height: 100%;
	background: #FFF;
	position: absolute;
	top: 0;
	right: 0;
}

.db-table td:before {
	display: block;
	content: "";
	width: 1px;
	height: calc(100% - 30px);
	background: rgba(9,29,54,0.1);
	position: absolute;
	top: 15px;
	right: 0;
}

.db-table th:last-child:before,
.db-table td:last-child:before {
	display: none;
}

.db-table td a {
	color: #07C;
	font-weight: 600;
	text-decoration: none;
}

.db-table td.td-org-name {
	width: 40%;
}

.db-table td.td-breach-date {
	width: 40%;
}

.db-table td.td-report-date {
	width: 20%;
	white-space: nowrap;
}

.db-table .header {
	padding-right: 30px;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.db-table .header:hover,
.db-table .header.headerSortUp,
.db-table .header.headerSortDown {
	background: #0364A9;
}

.db-table .header:after {
	display: block;
	content: "";
	width: 8px;
	height: 16px;
	background: url(../img/select_white.svg) 0 0 no-repeat;
	background-size: 100% auto;
	opacity: 0.5;
	position: absolute;
	top: calc(50% - 8px);
	right: 15px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.db-table .header:hover:after {
	opacity: 1;
}

.db-table .header.headerSortDown:after,
.db-table .header.headerSortUp:after {
	height: 6px;
	opacity: 1;
	top: calc(50% - 3px);
}

.db-table .header.headerSortDown:after {
	background-position: 0 100%;
}

.db-table .header.headerSortUp:after {
	background-position: 0 0;
}

.db-table .no-sort:after {
	display: none;
}

.db-table .long-word {
	max-width: 160px;
}

@media only screen and (max-width: 1279px) {
	.db-table {
		margin: 30px 0;
	}

	.db-table table {
		font-size: 14px;
	}
}

@media only screen and (max-width: 767px) {
	.db-table table,
	.db-table tbody,
	.db-table tr,
	.db-table td {
		display: block;
	}

	.db-table thead {
		display: none;
	}

	.db-table tr {
		padding: 15px 20px;
	}

	.db-table td {
		padding: 5px 0;
	}

	.db-table td.td-org-name,
	.db-table td.td-breach-date,
	.db-table td.td-report-date {
		width: 100%;
	}

	.db-table td:before,
	.db-table td:last-child:before {
		display: block;
		content: "";
		width: auto;
		height: auto;
		font-weight: 700;
		background: transparent;
		position: relative;
		top: inherit;
		right: inherit;
	}

	.db-table td.td-org-name:before {
		content: "Organization Name:";
	}

	.db-table td.td-breach-date:before {
		content: "Date(s) of Breach:";
	}

	.db-table td.td-report-date:before {
		content: "Reported Date:";
	}
}



/* Questions & Answers */

.db-qas {
	margin: 40px 0;
}

.db-qas-block {
	margin-bottom: 40px;
	position: relative;
}

.db-qas-block a {
	font-weight: 600;
}

.db-qas-icn {
	position: absolute;
	top: 0;
	left: 0;
}

.db-qas-icn img {
	display: block;
	width: 32px;
}

.db-qas-ttl {
	margin: 40px 0 20px 0;
	font-size: 30px;
	line-height: 1.2;
}

@media only screen and (max-width: 767px) {
	.db-qas {
		margin: 30px 0;
	}

	.db-qas-block {
		margin-bottom: 30px;
	}

	.db-qas-icn {
		top: -3px;
	}

	.db-qas-ttl {
		font-size: 20px;
	}
}



/* Timeline */

.db-timeline {
	max-width: 840px;
	margin: 50px auto;
	padding: 40px 0;
	position: relative;
}

.db-timeline:before {
	display: block;
	content: "";
	width: 2px;
	height: 100%;
	background: #091D36;
	position: absolute;
	top: 0;
	left: calc(50% - 1px);
}

.db-tl-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
}

.db-tl-row:nth-of-type(even) {
	justify-content: flex-end;
}

.db-tl-block {
	width: 50%;
	padding: 0 60px 0 0;
	position: relative;
	z-index: 1;
}

.db-tl-row:nth-of-type(even) .db-tl-block {
	padding: 0 0 0 60px;
}

.db-tl-block:before {
	display: block;
	content: "";
	width: 100%;
	height: 2px;
	background: #091D36;
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	z-index: 1;
}

.db-tl-block:after {
	display: block;
	content: "";
	width: 12px;
	height: 12px;
	background: #FFF;
	border: 2px solid #091D36;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 8px);
	right: -8px;
	z-index: 2;
}

.db-tl-row:nth-of-type(even) .db-tl-block:after {
	right: inherit;
	left: -8px;
}

.db-tl-block a {
	display: block;
	padding: 25px 48px 25px 30px;
	color: #07C;
	font-size: 24px;
	font-weight: 700;
	line-height: calc(1em + 6px);
	text-decoration: none;
	background: #FFF;
	position: relative;
	z-index: 3;
	border-radius: 10px;
	-webkit-box-shadow: 0 5px 20px 0 rgba(9,29,54,0.1), 0 1px 1px 0 rgba(9,29,54,0.05);
	box-shadow: 0 5px 20px 0 rgba(9,29,54,0.1), 0 1px 1px 0 rgba(9,29,54,0.05);
}

.db-tl-block a:hover,
.db-tl-block a:focus,
.db-tl-block a:active {
	color: #0364A9;
	-webkit-box-shadow: 0 5px 30px 0 rgba(0,119,204,0.25), 0 1px 1px 0 rgba(0,119,204,0.1);
	box-shadow: 0 5px 30px 0 rgba(0,119,204,0.25), 0 1px 1px 0 rgba(0,119,204,0.1);
}

.db-tl-block a:after {
	display: block;
	content: "";
	width: 16px;
	height: 16px;
	background: url(../img/arw_special.svg) center center no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: calc(50% - 8px);
	right: 16px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.db-tl-block a:hover:after,
.db-tl-block a:focus:after,
.db-tl-block a:active:after {
	background-image: url(../img/arw_main.svg);
}

@media only screen and (max-width: 1023px) {
	.db-timeline {
		margin: 40px auto;
		padding: 30px 0;
	}

	.db-tl-block a {
		font-size: 18px;
	}
}

@media only screen and (max-width: 767px) {
	.db-timeline {
		margin: 30px auto;
		padding: 10px 0;
	}

	.db-tl-block {
		padding: 0 15px 0 0;
	}

	.db-tl-row:nth-of-type(even) .db-tl-block {
		padding: 0 0 0 15px;
	}

	.db-tl-block:after {
		width: 6px;
		height: 6px;
		top: calc(50% - 5px);
		right: -5px;
	}

	.db-tl-row:nth-of-type(even) .db-tl-block:after {
		right: inherit;
		left: -5px;
	}

	.db-tl-block a {
		padding: 12px 30px 12px 15px;
		font-size: 16px;
		border-radius: 6px;
	}

	.db-tl-block a:after {
		width: 10px;
		height: 10px;
		top: calc(50% - 5px);
		right: 10px;
	}
}



.db-related {
	border-top: 1px solid rgba(9,29,54,0.1);
}

.db-rl-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	padding: 30px;
	background: #FFF;
	border-bottom: 1px solid rgba(9,29,54,0.1);
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.db-rl-row:nth-of-type(odd) {
	background: rgba(9,29,54,0.02);
}

.db-rl-row:hover {
	background: #EBF7FF;
	border-bottom-color: rgba(0,119,204,0.2);
}

.db-rl-img {
	flex: 0 0 auto;
	width: 160px;
	margin-right: 30px;
}

.db-rl-img .img {
	width: 100%;
	padding-top: 66.6%;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.db-rl-img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}

.db-rl-cnt {
	flex: 1 1 auto;
}

.db-rl-cta {
	flex: 0 0 auto;
	margin-left: 30px;
}

.db-rl-ttl {
	margin: 0;
	font-size: 18px;
	line-height: calc(1em + 6px);
}

.db-rl-ttl a {
	color: #07C;
	text-decoration: none;
}

.db-rl-ttl a:hover,
.db-rl-ttl a:focus,
.db-rl-ttl a:active {
	color: #0364A9;
}

.db-related p {
	margin: 6px 0 0 0;
}

@media only screen and (max-width: 767px) {
	.db-rl-row {
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
	}

	.db-rl-img {
		margin: 0 auto 15px auto;
	}

	.db-rl-cnt {
		flex: 0 1 auto;
	}

	.db-rl-cta {
		flex: 0 1 auto;
		align-self: center;
		margin: 15px 0 0 0;
	}

	.db-rl-ttl {
		font-size: 16px;
	}

	.db-related a.btn.small {
		padding: 5px 15px;
		font-size: 12px;
	}
}



.db-videos {
	margin: 30px auto;
}
.db-videos .row {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
	margin: -20px;
}
.db-videos .col {
	flex: 0 1 calc(100% / 3);
	width: calc(100% / 3);
	padding: 20px;
}
.db-videos .img {
	display: block;
	width: 100%;
	padding-top: 56.2%;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.db-videos img,
.db-videos iframe {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.db-videos .ttl {
	margin: 15px 0 0 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
}
.db-videos .ttl a {
	color: #091D36;
	font-weight: 700;
	text-decoration: none;
}
.db-videos .ttl a:hover,
.db-videos .ttl a:focus,
.db-videos .ttl a:active {
	color: #07C;
}

@media only screen and (max-width: 767px) {
	.db-videos {
		max-width: 480px;
	}
	.db-videos .row {
		margin: -15px;
	}
	.db-videos .col {
		flex: 0 1 100%;
		width: 100%;
		padding: 15px;
	}
	.db-videos .ttl {
		margin: 10px 0 0 0;
		font-size: 16px;
		line-height: 24px;
	}
}



.db-hr {
	margin: 40px 0;
	border-top: 1px solid #091D36;
}