/*Page default*/
.page-template-default .site-main {
    padding: 100px 0px;
}

.page-template-default h1 {
    font-weight: 900;
    font-family: 'Nunito';
    text-transform: uppercase;
}

/*Thanks*/
.thank-blk {
    padding: 100px 0;
    text-align: center;
}

.thank-blk h1 {
    font-weight: 900;
    font-family: 'Nunito';
    text-transform: uppercase;
    font-size: 36px;
    margin-bottom: 30px;
}

.th-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.th-buttons .w-btn {
    margin: 0 10px;
}

.thank-blk .info {
    margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
    .thank-blk h1 {
        font-size: 24px;
    }
    .th-buttons {
        display: block;
    }
    .th-buttons .w-btn {
        display: block;
        margin-bottom: 10px;
    }
    .thank-blk {
        padding: 50px 0;
    }
}

/*Forms*/
.form-box {
	border: 4px solid #000;
	border-radius: 40px;
	background-color: var(--red);
	padding: 30px;
	margin-top: 20px;
}

.nf-before-form-content, .nf-field-label {
	display: none;
}

.form-box .nf-form-content input:not([type=submit]) {
	background: #fff;
    border: 3px solid #000;
    border-radius: 10px;
	color: #333;
}

.form-box .nf-form-content textarea {
    background: #fff;
    border: 3px solid #000;
    border-radius: 10px;
    color: #333;
}

.form-box .nf-form-content input::placeholder {
	color: #333;
}

.form-box .nf-form-content input[type=submit] {
    background: #fff;
    border: 3px solid #000;
    color: #000;
    border-radius: 50px;
    font-size: 30px;
    text-transform: lowercase;
    width: 100%;
    padding: 12px;
    height: 60px;
}

.form-box .nf-form-content input[type=submit]:hover {
	background: #000;
    color: #fff;
}

.form-box .nf-error.field-wrap .nf-field-element:after {
    background: #000;
    border-radius: 0 10px 10px 0;
}

.form-box .nf-error .nf-error-msg, .form-box .nf-error-msg, .form-box .ninja-forms-req-symbol {
    color: #000000;
    font-size: 14px;
}

.form-box .nf-pass.field-wrap .nf-field-element:after {
    color: #000;
}

.form-box .nf-pass .ninja-forms-field, .form-box .nf-error .ninja-forms-field {
    border-color: #000 !important;
}

.form-box .nf-form-content .list-select-wrap>div select {
    height: 50px;
    background: transparent;
    border: 3px solid #000;
    border-radius: 10px;
    color: #333;
}

.form-box .nf-form-content .list-select-wrap .nf-field-element>div, .form-box .nf-form-content .list-select-wrap .nf-field-element>div:focus {
	background: #fff;
	border: none;
	border-radius: 10px;
}

.form-box .checkbox-wrap .nf-field-label label:after {
    background: #fff;
    border: 2px solid #000;
    width: 20px;
    height: 20px;
    border-radius: 5px;
}



/*Tabs*/
.w3-bar .w3-bar-item {
	border: 4px solid #000;
    border-radius: 50px;
    background-color: #fff;
    text-transform: lowercase;
    font-size: 22px;
	width: 49%;
}

.w3-bar .w3-red {
	background-color: var(--red);
	color: #fff;
}

/*Footer*/
.site-footer {
    background-image: url("/wp-content/uploads/2023/05/footer-bg.svg");
    background-size: 100%;
    background-position: 0% 0%;
    background-repeat: no-repeat;
    padding: 180px 0 30px 0;
}

.footer-title {
    font-size: 32px;
    font-family: Nunito;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0;
}

.site-footer .mail a {
    text-decoration: none;
    color: var(--red);
}

.site-footer img {
    width: 250px;
}

.f-link a {
    text-decoration: none;
    color: #000;
}

.sub-footer {
    background-color: #000;
    border-top: 1px solid #fff;
}

.sub-footer .row {
    align-items: center;
}

.sub-footer .socials {
    display: flex;
    border-left: 1px solid #fff;
}

.sub-footer .social {
    border-right: 1px solid #fff;
    padding: 15px 20px;
    background-color: #000;
    transition: all 0.5s;
}

.sub-footer .social:hover {
    background-color: var(--red);
    transition: all 0.5s;
}

.sub-footer .social img {
    max-width: 25px;
}

.sub-footer .links {
    display: flex;
    justify-content: flex-end;
    color: #fff;
}

.sub-footer .links p {
    margin-bottom: 0;
    margin-left: 30px;
    font-size: 14px;
}

.sub-footer .links a {
    color: #fff;
    text-decoration: none;
}


/*FAQ*/
.faq {
    padding: 50px 0;
}

.faq h2 {
    font-size: 72px;
    font-family: Nunito;
    color: #000;
    margin-top: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.faq-subtitle {
	font-size: 16px;
	margin-bottom: 30px;
}

.accordion {
    background-color: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    cursor: pointer;
    padding: 15px 30px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    margin-top: 5px;
    border-radius: 50px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.active, .accordion:hover {
    background-color: #000;
    color: #fff;
    transition: 0.4s;
}

.accordion:hover .accordion:after {
    color: #fff;
}

.panel {
    padding: 0 30px 10px 0;
    border-radius: 30px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion:after {
    content: '\02795';
    font-size: 20px;
    color: var(--red);
    float: right;
    margin-left: 15px;
    background-color: #fff;
    border-radius: 20px;
    padding: 5px;
    width: 35px;
    height: 35px;
    text-align: center;
}

.active:after {
    content: "\2796";
    color: #fff;
}

.panel .content {
    margin: 20px 30px;
}




/*News*/
.news {
    padding: 100px 0 200px 0;
    background-color: var(--red);
    background-image: url("/wp-content/uploads/2023/05/home-bg-8.svg");
    background-size: 100%;
    background-position: 100% 101%;
    background-repeat: no-repeat;
}

.news h2 {
    font-size: 72px;
    font-family: Nunito;
    color: #fff;
    margin-top: 0;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.news-box {

}

.news-box img {
    border-radius: 30px;
    width: 100%;
    margin-bottom: 30px;
}

.news-box p {
    color: #fff;
}

.hblk8-btn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.hblk8-btn .wbtn-inner {
    background-color: #fff;
    font-size: 20px;
}



/*Block 7*/
.hblk7 {
    padding: 200px 0 0 0;
    background-color: var(--red);
    background-image: url("/wp-content/uploads/2023/05/home-bg-7.svg");
    background-size: 100%;
    background-position: 0% 0%;
    background-repeat: no-repeat;
}

.hblk7 h2 {
    font-size: 55px;
    font-family: Nunito;
    color: #fff;
    margin-top: 0;
    margin-bottom: 100px;
    text-transform: uppercase;
}

.hero-box {
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-box img {
    width: 300px;
    height: 100%;
}

.hero-box .text {
    width: 65%;
    color: #fff;
}

.hero-box .title {
    font-size: 42px;
    font-family: Nunito;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-box .info {
    font-size: 18px;
}

.swiper-button-next, .swiper-button-prev {
    color: #000;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}

.hblk7-btn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.hblk7-btn .wbtn-inner {
    background-color: #fff;
    font-size: 24px;
}

.w-line {
    background-color: var(--red);
}

.white-line {
    width: 100%;
    height: 4px;
    background-color: #fff;
}





/*Block 6*/
.hblk6 {
    padding: 0px 0 100px 0;
	margin-top: -50px;
}

.hblk6 h2 {
    font-size: 72px;
    font-family: Nunito;
    color: #000;
    margin-top: 0;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hblk6 .subtext {
    font-size: 28px;
    font-family: Nunito;
    color: #000;
    margin-top: 50px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hblk6 .subtext a, .hblk6 .subtext a:visited {
    color: #000;
}

.hblk6-img {
    margin-top: -100px;
	width: 80%;
	float: right;
}



/*Block 5*/
.hblk5 {
    padding: 0 0 50px 0;
    background-color: var(--red);
    background-image: url("/wp-content/uploads/2023/08/home-bg-7.svg");
    background-size: 100%;
	/*background-position: 100% 160%;*/
	/**/
    background-position: 100% 0%;
	min-height: 350px;
	/**/	
    background-repeat: no-repeat;
}

.how {
    display: flex;
    align-items: flex-start;
}
.how .text {
    color: #fff;
}

.how .number {
    background-color: #000;
    color: #fff;
    font-family: Nunito;
    font-size: 32px;
    border-radius: 100px;
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}

.how .title {
    font-family: Nunito;
    font-size: 38px;
    text-transform: uppercase;
}

.how-marg {
    margin-top: 150px;
}

.black-text .how .text {
    color: #000;
}

.black-line {
    width: 100%;
    height: 4px;
    background-color: #000;
}

.wrap-l {
	white-space: normal;
}


/*Block 4*/
.hblk4 {
    padding: 150px 0 0 0;
    background-color: var(--red);
    background-image: url("/wp-content/uploads/2023/05/home-bg-3.svg");
    background-size: 100%;
    background-position: 0% 0%;
    background-repeat: no-repeat;
}

.hblk4 h2 {
    font-size: 45px;
    font-family: Nunito;
    color: #fff;
    margin-top: 0;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hblk4 p {
    color: #fff;
}

.hblk4-img {
    margin-top: -130px;
	width: 90%;
	float: right;
}


/*Block 3*/
.hblk3 {
    padding: 100px 0;
}

.hblk3 h2 {
    font-size: 50px;
    font-family: Nunito;
    margin-top: 0;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hblk3 .info-alert-title {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    font-family: Nunito;
    color: var(--red);
    text-transform: uppercase;
}

.hblk3 .info-alert {
    text-align: center;
    padding: 0 0 100px 0;
    font-size: 24px;
    font-weight: 600;
    font-family: Nunito;
}

.hblk3 .recipient-info {
    color: #fff;
}

/*Block 2*/
.hblk2 {
    background-color: var(--red);
    background-image: url("/wp-content/uploads/2023/05/home-bg-2-1.svg"), url("/wp-content/uploads/2023/05/home-bg-2-2.svg");
    background-size: 110%, 110%;
    background-position: 10% 0%, 90% 100%;
    background-repeat: no-repeat;
    padding: 130px 0;
    margin-top: -2px;
}

.stat {
    text-align: center;
}
.stat p {
    color: #fff;
    font-family: Nunito;
    font-size: 42px;
    margin-top: 10px;
}

.stat .number {
	font-family: Nunito;
    font-size: 42px;
    margin-top: -140px;
    margin-bottom: 90px;
}




/*Block 1*/
.hblk1 {
    padding: 0;
    background-color: var(--red);
    background-image: url("/wp-content/uploads/2023/05/home-bg-1.svg");
    background-size: 100%;
    background-position: 0% 100%;
    background-repeat: no-repeat;
    margin-top: -1px;
}

.hblk1 h1 {
    color: #fff;
    font-family: Nunito;
    font-size: 50px;
    text-transform: uppercase;
    margin: 50px 0 200px 0;
}

.hblk1-btn {
    display: block;
    text-align: right;
	margin-top: 10px;
}
.hblk1-btn-m {
    display: none;
}

.hblk1-btn .red-btn .wbtn-inner {
    background-color: var(--red);
    color: #fff;
}

.w-btn {
    display: flex;
}

.hblk1 .w-btn {
    justify-content: flex-end;
}

.w-btn a {
    text-decoration: none;
    color: #000;
}

.wbtn-inner {
    padding: 10px 30px;
    border: 3px solid #000;
    border-radius: 50px;
    text-transform: lowercase;
}

.hblk1 .wbtn-inner {
    padding: 10px 70px;
}

.hblk1-img {
    margin-bottom: 100px;
}



/*Header*/
.site-header {
    background-color: var(--red);
    padding-top: 40px;
    padding-bottom: 1px;
}

.header-box {
    width: 70%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    padding: 15px 30px;
}

.main-navigation ul {
    justify-content: flex-end;
}

.main-navigation li {
    text-transform: lowercase;
    padding: 0 10px;
}

.main-navigation a {
    color: #000;
}

.main-navigation a:hover {
    color: var(--red);
}




/*General*/
p {
    margin-bottom: 20px;
}

body {
    font-family: Gilroy;
    font-weight: 500;
    font-size: 20px;
    color: #000;
}

.post, .page {
    margin: 0;
}

a:visited {
    color: inherit;
}

.white {
    color: #fff;
}

.red {
    color: var(--red);
}

:root {
    --red: #EB3F3F;
    --mfont: Nunito;
}

@font-face {
	font-family: Gilroy;
	src: url(/wp-content/themes/blood/fonts/Gilroy-Medium.ttf);
	font-weight: 500;
}

@font-face {
	font-family: Gilroy;
	src: url(/wp-content/themes/blood/fonts/Gilroy-Extrabold.ttf);
	font-weight: 600;
}

@font-face {
	font-family: Nunito;
	src: url(/wp-content/themes/blood/fonts/Nunito-Black.ttf);
	font-weight: 900;
}

@media (min-width: 1900px) {
    .wrap-l {
        white-space: nowrap;
    }
    .hblk1 {
        background-position: 0% 50%;
    }
    .hblk1-img {
        margin-bottom: 170px;
    }
    .hblk1 h1 {
        margin: 50px 0 250px 0;
    }
    .hblk5 {
        background-position: 100% -220%;
    }
}

@media (min-width: 1600px) and (max-width: 1899px) {
    .wrap-l {
        white-space: nowrap;
    }
    .hblk1 {
        background-position: 0% 50%;
    }
    .hblk1-img {
        margin-bottom: 170px;
    }
    .hblk1 h1 {
        margin: 50px 0 250px 0;
    }
    .hblk5 {
        background-position: 100% 375%;
    }
}


@media (min-width: 1400px) and (max-width: 1599px) {
    .wrap-l {
		white-space: nowrap;
	}
    .hblk1 {
        background-position: 0% 50%;
    }
}


@media (min-width: 1200px) and (max-width: 1399px) {
    .hblk5 {
        background-position: 100% 0%;
    }
    .hblk1 h1 {
        font-size: 45px;
    }
    .hblk6 h2 {
        font-size: 55px;
    }
    .hblk6 .subtext {
        font-size: 24px;
    }
    .hblk7 h2 {
        font-size: 55px;
    }
    .footer-title {
        font-size: 24px;
    }
    .hblk3 h2 {
        font-size: 42px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    body {
        font-size: 18px;
    }
    .header-box {
        width: 75%;
    }
    .hblk1 {
        background-size: 105%;
    }
    .hblk1 h1 {
        font-size: 38px;
        margin: 50px 0 150px 0;
    }
    .hblk3 h2 {
        font-size: 32px;
    }
    .hblk3 .info-alert {
        font-size: 18px;
    }
    .hblk3 .info-alert-title {
        font-size: 42px;
    }
    .w3-bar .w3-bar-item {
        font-size: 18px;
    }
    .form-box .nf-form-content input[type=submit] {
        font-size: 24px;
    }
    .hblk4 h2 {
        font-size: 42px;
    }
    .how .title {
        font-size: 24px;
    }
    .how-marg {
        margin-top: 100px;
    }
    .hblk5 {
        background-size: 128%;
    }
    .hblk5 .black-text {
        margin-top: 30px;
    }
    .hblk6 h2 {
        font-size: 55px;
    }
    .hblk6 .subtext {
        font-size: 22px;
    }
    .hblk7 h2 {
        font-size: 55px;
        margin-bottom: 50px;
    }
    .news h2 {
        font-size: 55px;
    }
    .faq h2 {
        font-size: 55px;
    }
    .footer-title {
        font-size: 22px;
    }
    .sub-footer .links p {
        font-size: 11px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    body {
        font-size: 16px;
    }
    .header-box {
        width: 100%;
    }
    .hblk1 {
        background-size: 100%;
        background-position: 0% 100%;
    }
    .hblk1 h1 {
        font-size: 28px;
        margin: 50px 0 135px 0;
    }
    .hblk1 .wbtn-inner {
        padding: 10px 50px;
    }
    .stat p {
        font-size: 32px;
    }
    .hblk3 h2 {
        font-size: 32px;
    }
    .hblk3 .info-alert {
        font-size: 18px;
    }
    .hblk3 .info-alert-title {
        font-size: 42px;
    }
    .w3-bar .w3-bar-item {
        font-size: 14px;
    }
    .form-box {
        border-radius: 30px;
        padding: 20px 10px;
    }
    .form-box .nf-form-content input[type=submit] {
        font-size: 21px;
    }
    .form-box .nf-form-content .listselect-wrap .nf-field-element div, .form-box .nf-form-content .ninja-forms-field {
        font-size: 14px;
    }
    .form-box #ninja_forms_required_items, .form-box .nf-field-container {
        margin-bottom: 15px;
    }
    .hblk4 h2 {
        font-size: 32px;
    }
    .how .title {
        font-size: 20px;
    }
    .how-marg {
        margin-top: 70px;
    }
    .how .number {
        font-size: 21px;
        min-width: 40px;
        min-height: 40px;
        margin-right: 20px;
    }
    .hblk5 {
        background-size: 150%;
    }
    .hblk5 .black-text {
        margin-top: 50px;
    }
    .hblk6 h2 {
        font-size: 42px;
    }
    .hblk6 .subtext {
        font-size: 16px;
    }
    .hblk7 h2 {
        font-size: 42px;
        margin-bottom: 50px;
    }
    .hblk7 {
        padding: 150px 0 100px 0;
    }
    .hero-box {
        flex-direction: column;
    }
    .hero-box .text {
        width: 100%;
    }
    .hero-box .info {
        font-size: 16px;
    }
    .news {
        padding: 100px 0 0px 0;
    }
    .news h2 {
        font-size: 42px;
    }
    .faq h2 {
        font-size: 42px;
    }
    .footer-title {
        font-size: 16px;
    }
    .sub-footer .links p {
        font-size: 11px;
    }
    .accordion {
        font-size: 18px;
    }
    .hblk4-img {
        margin-top: 0;
    }
    .hblk6-img {
        margin-top: 0;
    }
}



@media screen and (max-width: 767px) {
    body {
        font-size: 18px;
    }

    .menu-toggle svg {
        width: 30px;
    }
    .menu-toggle .svg-m {
        display: block;
        transition: all 0.5s;
    }
    .menu-toggle .svg-r {
        display: none;
        transition: all 0.5s;
    }
    .menu-toggle.open .svg-m {
        display: none;
        transition: all 0.5s;
    }
    .menu-toggle.open .svg-r {
        display: block;
        transition: all 0.5s;
    }
    .menu-toggle {
        padding: 0;
        border: none;
        background: none;
    }
    .header-box {
        width: 100%;
    }
    .main-navigation {
        width: auto;
    }
    .site-branding {
        width: 50%;
    }
    .site-header {
        padding-top: 20px;
    }
    .main-navigation.toggled ul {
        display: block;
        background-color: var(--red);
        position: absolute;
    }

    #primary-menu {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: 100%;
        overflow-y: hidden;
        z-index: 9999;
        padding: 50px 20px;
        text-align: center;
    }
    .main-navigation li {
        padding: 20px;
        border-bottom: 1px solid #000;
    }
    .main-navigation li:last-child {
        border-bottom: none;
    }
    .main-navigation li a {
        font-size: 20px;
        color: #000;
    }

    .hblk1 h1 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 15px;
    }
    .hblk1 {
        background-size: 120%;
        background-position: 0% 0%;
        background-image: url("/wp-content/uploads/2023/06/home-bg-1-m.svg");
    }
    .hblk1-img {
        text-align: right;
        margin-bottom: 20px;
    }
    .hblk1-img img {
        width: 65%;
    }
    .hblk1-btn {
        display: none;
    }
    .hblk1-btn-m {
        display: block;
        text-align: center;
    }
    .hblk1 .w-btn {
        justify-content: center;
        margin-bottom: 50px;
    }

    .hblk2 {
        padding: 60px 0;
        background-size: 120%;
    }
    .stat p {
        font-size: 20px;
    }
	.stat img {
		width: 50%;
	}
	.stat .number {
		font-size: 18px;
		margin-top: -65px;
		margin-bottom: 50px;
	}

    .hblk3 {
        padding: 50px 0;
    }
    .hblk3 h2 {
        font-size: 32px;
    }
    .w3-bar .w3-bar-item {
        font-size: 18px;
    }
    .form-box .nf-form-content input[type=submit] {
        font-size: 24px;
    }
    .hblk3 .info-alert {
        font-size: 16px;
        line-height: 1.3;
        padding: 0 0 30px 0;
    }
    .hblk3 .info-alert-title {
        font-size: 36px;
    }

    .hblk4 {
        padding: 75px 0 0 0;
    }
    .hblk4 h2 {
        font-size: 32px;
    }
    .hblk4-img {
        margin-top: 0px;
    }

    .hblk5 {
        background-image: url("/wp-content/uploads/2023/06/home-bg-5-m.svg");
    }
    .how {
        margin-bottom: 20px;
    }
    .how .number {
        font-size: 24px;
        min-width: 40px;
        min-height: 40px;
        margin-right: 20px;
    }
    .how .title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .how-marg {
        margin-top: 0px;
        margin-bottom: 50px;
    }
    .hblk5 {
        background-position: 100% 75%;
        padding: 50px 0 10px 0;
    }
    .black-text {
        margin-top: 60px;
        background-color: #fff;
        margin-bottom: -20px;
    }
    .black-text:last-child {
        margin-top: 20px;
    }
    .how .info {
        font-size: 16px;
    }

    .hblk6 {
        padding: 50px 0;
    }
    .hblk6 h2 {
        font-size: 32px;
    }
    .hblk6 .subtext {
        font-size: 20px;
    }
    .hblk6-img {
        margin-top: 0;
    }

    .hblk7 {
        padding: 100px 0 50px 0;
    }
    .hblk7 h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }
    .hero-box {
        padding: 0;
        flex-direction: column;
    }
    .hero-box img {
        width: 130px;
    }
    .hero-box .title {
        font-size: 32px;
        text-align: center;
    }
    .hero-box .text {
        width: 100%;
    }
    .swiper-button-next, .swiper-button-prev {
        top: 65px;
    }
    .hblk7-btn {
        margin-top: 20px;
    }
    .hblk7-btn .wbtn-inner {
        font-size: 22px;
    }

    .news h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .news {
        padding: 50px 0 90px 0;
        margin-bottom: -5px;
    }
    .news-box img {
        margin-bottom: 10px;
    }
    .news-box {
        margin-bottom: 40px;
    }
    .hblk8-btn {
        margin-top: 0;
    }

    .faq h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .accordion {
        font-size: 18px;
        padding: 12px 20px;
        border-radius: 20px;
    }
    .accordion:after {
        width: 40px;
    }
    .panel .content {
        margin: 15px 20px;
        font-size: 16px;
    }

    .site-footer {
        padding: 90px 0 30px 0;
    }
    .sub-footer .social {
        border-right: 1px solid #fff;
        padding: 12px 14px;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }
    .sub-footer .socials {
        display: flex;
        border-left: none;
        margin: 10px 0;
        justify-content: center;
    }
    .sub-footer .socials a:first-child .social {
        border-left: 1px solid #fff;
    }
    .sub-footer .links {
        flex-direction: column;
        text-align: center;
    }
    .sub-footer .links p {
        margin-bottom: 5px;
        margin-left: 0;
    }


}


@media screen and (max-width: 440px) {
    .hblk5 {
        background-position: 100% -5%;
		min-height: 150px;
    }
}

@media screen and (max-width: 412px) {
    .hblk5 {
        background-position: 100% -5%;
		min-height: 150px;
    }
}