:root {
  --main-blue: #d7353c;
  --light-blue: #b8424e;
  --main-black: #232D38;
  --font-family: "calibri",sans-serif;
}

body{
    background: #f7f7f7;
}
.img-logo {
    padding: 30px 19px;
    background: #fff;
}
.extra-page .main-header .brand-logo-link .logo{
	max-width: 200px;
}

.extra-page .navbar {
    background: var(--light-blue);
    margin: 0px;
}
#mainNavMenu li a{
	color: var(--main-black);
	font-size: 16px;
	border-bottom: 2px solid var(--light-blue);
	border-top: 2px solid var(--light-blue);
	text-transform: uppercase;
	margin-right: 10px;
}
#mainNavMenu li a:hover, #mainNavMenu li a:focus ,#mainNavMenu li a.active{
	color: #fff;
	border-bottom: 2px solid #fff;

	border-top: 2px solid var(--main-blue);
	background: var(--main-blue);
}
.extra-page .page-title {
    padding: 40px 30px;
    background: #d7353c;
    position: relative;
}
.extra-page .page-title:after{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: url("images/backbg.png");
	top: 0;
	left: 0;
	background-size: contain;
	opacity: 0.2;
}
.extra-page .page-title .title-name {
    font-size: 30px;
    padding: 0px 10px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    font-weight: 400;
    font-family: var(--font-family);
}
.extra-page .all-main-content {
    background: #f7f7f7;
    height: 100%;
}
.extra-page .all-main-content .content-wrapper {
    background: #fff;
    padding: 30px;
    margin: 50px 20px;
    box-shadow: 0px 2px 6px rgba(0,0,0,.1);
}
.extra-page .all-main-content .content-wrapper .section-title {
    font-size: 28px;
    color: var(--main-black);
    margin-bottom: 30px;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 30px;
}
.issues-lists{
	padding: 0px 30px;
}
.issues-lists li{
	list-style: none;
    border-bottom: 2px dotted #dfdfdf;
    margin-bottom: 29px;
    padding-bottom: 22px;
}
.issue-item-heading {
    font-size: 22px;
    font-weight: 500;
}
.issue-item-para {
    font-size: 15px;
    line-height: 22px;
    color: #565656;
}
.issue-item-para a{
	text-decoration: underline;
	color: var(--main-blue);
}
.issues-lists li:last-child{
	padding-bottom: 0px;
	border-bottom: 0px;
}
.sub-list {
    margin-top: 21px;
    padding: 32px 30px 3px;
    background: #f7f7f7;
    margin-bottom: 30px;
}
.quto-note {
    padding: 20px;
    background: #f7f7f7;
    font-style: italic;
    border-left: 5px solid var(--main-black);
}
.quto-note.important {
    background: #b2ebff;
    border-left-color: #255f73;
    color: #0c3948;
}
.faq-page, .help-page{
  counter-reset: my-sec-counter;
}

.faq-page .issue-item-heading::before {
  /* Increment "my-sec-counter" by 1 */
  counter-increment: my-sec-counter;
  content: "Q" counter(my-sec-counter) ". ";
}

.help-page .issue-item-heading::before {
  /* Increment "my-sec-counter" by 1 */
  counter-increment: my-sec-counter;
  content: "\25B8" " ";
}

.issue-item-para::before {
  /* Increment "my-sec-counter" by 1 */
  counter-increment: my-sec-counter;
  content: "\2756" " ";
}

.sub-list-itemt.b-bottom-0 {
    margin-bottom: 0;
    font-size: 18px;
    margin-top: -24px;
}
.b-bottom-0{
	border-bottom: 0px !important;
}

.search-hf-field{
    padding: 6px 10px;
    max-height: 44px;
    height: 44px;
	transition: all .4s;
	color: var(--main-black);
}
.search-hf-field:hover, .search-hf-field:focus{
	box-shadow: none;
	border-color: var(--main-black);
	outline: none;
	transition: all .4s;
}
.search-btn-hf {
    background: #211e1e;
    color: #fff;
    padding: 11px 27px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;

	transition: all .4s;
}
.search-btn-hf:hover, .search-btn-hf:focus{
	background: var(--main-blue);
	border-color: var(--main-blue);
	color: #fff;
	outline: none;
	box-shadow: none;
	transition: all .4s;
	outline: none;
}

@media (max-width: 768px){

    .search-form {
        margin-top: 18px;
    }
}