body {
    margin: 0;
    padding: 0;
    line-height: 28px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: rgba(10, 23, 37, 0.73)
}

html,
body {
    height: 100%;
    position: relative
}

a {
    color: #0A1725;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    text-decoration: none;
    color: #0A1725;
}

a:focus,
input:focus,
button:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    height: auto;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0A1725;
    margin-bottom: 10px;
    font-family: 'Sansation';
}

h1,
.h1 {
    font-size: 60px;
    line-height: 120%;
}

h2,
.h2 {
    font-size: 50px;
    line-height: 120%;
}

h3,
.h3 {
    font-size: 38px;
    line-height: 120%;
}

h4,
.h4 {
    font-size: 30px;
    line-height: 120%;
}

h5,
.h5 {
    font-size: 24px;
    line-height: 120%;
}

h6,
.h6 {
    font-size: 16px;
    line-height: 120%;
}


p {
    margin-bottom: 20px;
}


p:last-child {
    margin-bottom: 0 !important;
}

button {
    border: none;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    background: transparent
}

.section,
section {
    padding: 70px 0
}

.main-wrapper {
    overflow-x: hidden
}

.container {
    max-width: 1170px
}

.container.smalls {
    max-width: 1000px;
}

.container.wide {
    max-width: 1300px;
}

.cta-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    padding: 13px 30px;
    border: 1px solid transparent;
    font-size: 16px;
    font-family: 'Sansation';
}

.btn_default {
    border-color: #DF302B;
    background: #DF302B;
    color: #fff;
}

.btn_default:hover {
    border-color: #b92621;
    background: #b92621;
    color: #fff;
}

.btn_border {
    border-color: rgba(10, 23, 37, 0.3);
    color: #0A1725;
}

.btn_border:hover {
    border-color: #DF302B;
    background: #DF302B;
    color: #fff;
}

.mainmenu {
    margin: 0 20px
}

.mainmenu ul,
.mainmenu li {
    margin: 0;
    padding: 0;
    list-style: none
}

.mainmenu ul li {
    position: relative;
    display: inline-block;
    margin: 0 10px
}

.mainmenu ul li a {
    color: rgba(255, 255, 255, 0.73);
    display: block;
    position: relative;
    line-height: normal;
    padding: 10px 0;
    font-size: 16px;
}

.mainmenu ul li a:hover {
    color: #fff
}

.mainmenu ul li.has-submenu > a:after {
    position: absolute;
    content: "";
    right: -15px;
    width: 7px;
    height: 7px;
    border-right: 1px solid #7B94B5;
    border-bottom: 1px solid #7B94B5;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
}

.mainmenu ul li.has-submenu > a:hover:after,
.mainmenu ul li:hover > a::after {
    border-color: #fff
}

.mainmenu ul li a:hover,
.mainmenu ul li:hover > a {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    color: #fff
}

.mainmenu ul li > ul {
    width: 240px;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 15px;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    -ms-filter: "alpha(opacity=0)";
    -webkit-transition: all .4s;
    transition: all .4s;
    border-top: 4px solid #DF302B;
    text-align: left;
    box-shadow: 0 19px 51px rgba(0, 0, 0, 0.31);
    background-color: #fff;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.mainmenu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    -ms-filter: "alpha(opacity=100)";
}

.mainmenu ul li > ul > li {
    display: block;
    padding: 0;
    margin: 0;
}

.mainmenu ul li > ul > li a {
    padding: 8px 7px;
    display: block;
    color: #112642;
    font-size: 15px
}

.mainmenu ul li.has-submenu > ul > li.has-submenu a::after {
    right: 10px;
    transform: translateY(-50%) rotate(-45deg)
}

.mainmenu ul li > ul > li > ul {
    right: 0;
    left: 100%;
    top: 0;
}

.mainmenu ul li > ul {
    padding: 10px 0;
}

.mainmenu ul li > ul > li {
    display: block;
    padding: 0;
    margin: 0;
}

.mainmenu ul li > ul > li a {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid #7b94b521;
}

.mainmenu ul li > ul > li:hover > a {
    color: #fff
}

.mainmenu ul li > ul > li:hover > a::after,
.mainmenu ul li > ul > li > a:hover::after {
    border-color: #fff !important
}

.mainmenu ul li > ul > li:last-child > a {
    border: none
}

.mainmenu ul li > ul > li a:hover {
    color: #DF302B
}

/* .mainmenu ul li.current-menu-item > a {
    color: #fff;
    font-weight: 700;
}
 */
a.site-logo {
    display: inline-block;
    width: 255px;
}

.call_action {
    color: #fff;
    display: flex;
    align-items: center;
}

.header-action {
    margin-left: 20px;
}

.header-action .call_action {
    margin-right: 30px;
}

.call_action a {
    color: #fff;
    font-family: 'Sansation';
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
}

.call_action a:hover {
    color: #DF302B;
}

.call_action .icon {
    color: #DF302B;
    font-size: 30px;
    margin-right: 15px;
}

.call_action .title {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: normal;
}

.header-area {
    border-bottom: 1px solid rgba(141, 141, 141, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    transition: all .4s;
}

.scroll.header-area {
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.06);
    background: #0A1725;
    padding: 17px 0;
    border-color: #0A1725;
}

.hero-area {
    position: relative;
    background: #0A1725;
    color: rgba(255, 255, 255, 0.74);
    z-index: 1;
    padding-top: 260px;
    padding-bottom: 140px;
}

.hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-area::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(143deg, rgba(10, 23, 37, 1) 0%, rgba(10, 23, 37, 0.9) 26%, rgba(10, 23, 37, 0) 100%);
    opacity: 0.9;
}

.hero-area::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, rgba(17, 38, 66, 0) 0%, rgba(10, 23, 37, 1) 100%);
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-text p {
    font-size: 18px;
}

.text_white,
.text_white > * {
    color: #fff;
}

.hero-text .h1 span {
    font-style: italic;
}

.hero-text .h1 {
    margin-bottom: 25px;
    position: relative;
}

.hero-text .cta-btn {
    margin-top: 30px;
}

.hero-text .h1 svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 130px);
    left: 90px;
    z-index: -1;
}

.aos-animate .zoOMkPoO_0 {
    stroke-dasharray: 661 663;
    stroke-dashoffset: 662;
    animation: zoOMkPoO_draw 1333ms linear 0ms forwards;
    animation-delay: 0.8s;
}


@keyframes zoOMkPoO_draw {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes zoOMkPoO_fade {
    0% {
        stroke-opacity: 1;
    }

    93.54838709677419% {
        stroke-opacity: 1;
    }

    100% {
        stroke-opacity: 0;
    }
}

.section_heading {
    margin-bottom: 40px;
}

.box {
    display: block;
    position: relative;
}

.box.style1 .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 1;
}

.box.style1::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(0deg, rgba(10, 23, 37, 1) 0%, rgba(10, 23, 37, 0) 100%);
}

.box.style1 .title {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.box.style1 .hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(10, 23, 37, 0.87);
    height: 100%;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.box.style1:hover .info {
    opacity: 0;
    visibility: hidden;
}

.box.style1:hover .hover {
    opacity: 1;
    visibility: visible;
}

.box.style1 .hover .title {
    margin-bottom: 10px;
}

.box.style1 .hover .inner {
    max-height: 340px;
    overflow: auto;
    font-size: 15px;
    line-height: 23px;
}

.box.style1 .hover .inner::-webkit-scrollbar {
    width: 3px;
}

.box.style1 .hover .inner::-webkit-scrollbar-thumb {
    background: #DF302B;
}

.box.style1 .hover .inner::-webkit-scrollbar-track {
    background: #7B94B5;
}

.box-slider-v1 .slide {
    padding: 0 15px;
}

.box-slider-v1 .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.slick-arrow::before {
    display: none;
}

.slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #182a3e;
    color: #fff;
    z-index: 11;
}

.slick-arrow:hover,
.slick-arrow:focus {
    background: #DF302B;
    color: #fff;
}

.section_action {
    margin-top: 40px;
}

.counter-box .num {
    font-family: 'Sansation';
    font-weight: 700;
    color: #DF302B;
    font-style: italic;
    font-size: 60px;
    line-height: 100%;
}

.counter-box {
    margin-top: 15px;
    margin-bottom: 30px;
}

.bg_light {
    background: #FAFAFA;
}

.icon-teaser-light {
    position: relative;
    z-index: 1;
}

.icon-teaser-light .bg_iamge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.icon-teaser.style1 {
    background: #fff;
    padding: 45px;
    margin-top: 30px;
    height: calc(100% - 30px);
    transition: all 0.4s;
}

.icon-teaser.style1 .title {
    font-size: 25px;
    font-weight: 700;
}

.icon-teaser.style1 img {
    margin-bottom: 20px;
    height: 97px;
}

.icon-teaser.style1:hover {
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.04);
    transform: translateY(-10px);
}

.content-heading-box .cta-btn {
    margin-top: 20px;
}

.content-heading-box {
    height: calc(100% - 30px);
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.bg_dark {
    background: #0A1725
}

.bg_dark .section_heading {
    color: rgba(255, 255, 255, 0.74);
}

.tetimonial-box {
    padding: 40px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 24px;
    transition: all 0.4s;
}

.testimonial-slider .slide {
    padding: 0 15px;
    padding-top: 15px;
}

.testimonial-slider .slick-list {
    margin-left: -220px;
    margin-right: -220px;
}

.tetimonial-box .title {
    font-size: 28px;
    font-weight: 700;
    transition: all 0.4s;
}

.tetimonial-box img.quote_icon {
    width: 70px;
    margin-left: -6px;
    margin-bottom: 15px;
    filter: invert(1) brightness(0.7) contrast(0) opacity(0.2);
    transition: all 0.4s;
}

.tetimonial-box:hover img.quote_icon {
    filter: invert(0) brightness(1) contrast(1) opacity(1);
}

.tetimonial-box .review {
    font-style: italic;
    margin-bottom: 15px;
    height: 145px;
    overflow-y: auto;
    padding-right: 10px;
}

.tetimonial-box .name {
    color: #fff;
    font-weight: 700;
    transition: all 0.4s;
}

.tetimonial-box .review::-webkit-scrollbar {
    width: 3px;
}

.tetimonial-box .review::-webkit-scrollbar-thumb {
    background: #DF302B;
}

.tetimonial-box .review::-webkit-scrollbar-track {
    background: #7B94B5;
}

.tetimonial-box:hover {
    background: #fff;
    transform: translateY(-12px);
    color: rgba(10, 23, 37, 0.74);
}

.tetimonial-box:hover .title,
.tetimonial-box:hover .name {
    color: #0A1725;
}

.slick-dots button::before {
    display: none;
}

.slick-dots {
    position: inherit;
    bottom: auto;
    margin-top: 20px;
}

.slick-dots button {
    padding: 0 !important;
    width: 18px !important;
    height: 4px !important;
    background: #0A1725 !important;
    border-radius: 5px !important;
    opacity: 0.15;
}

.bg_dark .slick-dots button {
    background: #fff !important;
}

.slick-dots .slick-active button {
    opacity: 1;
}

.testimonial-slider {
    margin-bottom: 0 !important;
}

.icon-teaser-border .col-md-4 {
    padding: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.icon-teaser-border .icon-teaser.style1.alt {
    background: transparent;
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
    height: 100%;
}

.icon-teaser-border .icon-teaser.style1.alt .title {
    color: #fff;
}

.icon-teaser-border .col-md-4:nth-child(3n) {
    border-right: 0;
}

.icon-teaser-border .col-md-4:nth-last-child(-n+3) {
    border-bottom: 0;
}

.section_heading.alt {
    width: 55%;
    margin: 0 auto 40px;
}

.icon-teaser.style1.alt ul {
    margin: 0;
    padding: 0;
    list-style: none;

}

.icon-teaser.style1.alt ul li {
    padding-left: 25px;
    position: relative;
    margin-top: 5px;
}

.icon-teaser.style1.alt ul li::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #323D48;
    top: 10px;
}

.icon-teaser-border .col-md-4:hover {
    background: rgba(255, 255, 255, 0.06);
}

.icon-teaser-border .section_heading.alt {
    position: relative;
}

.icon-teaser-border .section_heading.alt::before {
    position: absolute;
    content: "";
    top: -80px;
    left: 0;
    width: 260px;
    height: 3px;
    background: #fff;
    opacity: 0.15;
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.logo-carousel {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.logo-carousel .item {
    width: 14%;
    padding: 0 15px;
}

.logo-carousel .item img {
    margin: 0 auto;
}

.box.style2 {
    background: #FAFAFA;
    margin-top: 30px;
    display: block;
}

.box.style2 .title {
    font-size: 22px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.box.style2 .text {
    padding: 30px;
}

.box.style2 img {
    height: 225px;
    width: 100%;
    object-fit: cover;
}

.box.style2 .categories span {
    background: rgba(10, 23, 37, 0.06);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 5px;
    font-family: 'Sansation';
    font-size: 14px;
}

.box.style2 .categories {
    margin-bottom: 15px;
}

.link_text {
    font-style: italic;
    font-weight: 700;
    font-family: 'Sansation';
    font-size: 18px;
    text-decoration: underline;
}

.link_text em {
    margin-left: 5px;
}

.box.style2 .link_text {
    margin-top: 30px;
    display: block;
}

.box.style2:hover {
    transform: translateY(-10px);
}

.box.style2:hover .link_text {
    color: #DF302B;
}

.divider hr {
    margin: 0;
}

.cta-inner.text-center {
    padding: 50px 70px;
    background: #0D1C2C;
    color: rgba(255, 255, 255, 0.74);
    position: relative;
    z-index: 11;
}

.footer-area {
    background: #050E19;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.footer_bg {
    position: absolute;
    right: 0;
    z-index: -1;
    height: 100%;
    object-fit: contain;
    object-position: right;
}

.footer-top {
    padding: 100px 0;
}

.footer-area a {
    color: rgba(255, 255, 255, 0.6);
}

a.footer-logo {
    display: inline-block;
    width: 240px;
    margin-bottom: 15px;
}

.footer-newsletter .title {
    font-family: 'Sansation';
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.footer-newsletter label {
    display: none !important;
}

.footer-newsletter form {
    margin-top: 15px;
    display: flex;
}

.footer-newsletter form input {
    width: 100%;
    height: 55px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 20px;
    color: #fff;
}

.footer-newsletter form input[type="submit"] {
    border-color: #DF302B;
    background: #DF302B;
    color: #fff;
    font-weight: 700;
    font-family: 'Sansation';
    transition: all 0.4s;
}

.footer-newsletter form input[type="submit"]:hover {
    border-color: #b92621;
    background: #b92621;
    color: #fff;
}

.gform_validation_errors {
    display: none !important
}

.gfield_validation_message {
    color: #DF302B;
    font-size: 12px;
    line-height: normal;
}

.footer-social {
    margin: 0;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-social li {
    display: inline-block;
    margin-right: 12px;
}

.footer-social li:last-child {
    margin-right: 0;
}

.footer-social li a {
    color: #fff;
    opacity: 0.8;
    font-size: 18px;
}

.footer-social li a:hover {
    opacity: 1;
    color: #DF302B;
}

.footer_title {
    font-family: 'Sansation';
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu ul {
    column-count: 5;
}

.footer-menu ul li {
    margin-bottom: 10px;
}

.footer-menu ul li a {
    font-size: 16px;
}

.footer-menu ul li a:hover {
    color: #fff;
}

.copyright .inner {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
}

.copyright-right {
    color: #fff;
}

.copyright-right a {
    color: #DF302B;
}

.copyright-right a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer-area.alt .footer-top {
    padding-top: 270px;
}

.footer-area.alt {
    margin-top: -185px;
}

.article-slider .slide {
    padding: 0 15px;
    padding-top: 15px;
}

.article-slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.article-slider .box.style2 {
    margin-top: 0;
}

.article-slider {
    margin-bottom: 0 !important;
}

.fixed_btns {
    display: none;
}

.icon-teaser-slider .slide {
    padding: 0 8px;
}

.icon-teaser-slider .slick-list {
    margin-left: -8px;
    margin-right: -8px;
}

.pager-banner {
    background: #0A1725;
    color: rgba(255, 255, 255, 0.74);
    padding-top: 200px;
}

.pager-banner.blog-banner {
    padding-bottom: 250px;
}

.content-area.post-content-area {
    margin-top: -240px;
    position: relative;
    z-index: 1;
    padding-top: 30px;
}

.pager-banner.blog-banner h1 {
    font-weight: 700;
}

.blog-banner .post_author a:hover {
    text-decoration: underline;
}

.blog-banner .post_author a {
    color: #DF302B;
}

.content-area.post-content-area .featured-image {
    margin-bottom: 30px;
}

.post-content h2 {
    font-size: 40px;
}

.post-content h3 {
    font-size: 36px;
}

.post-content h4 {
    font-size: 30px;
}

.post-content h5 {
    font-size: 25px;
}

.post-content table {
    margin-bottom: 30px;
}

nav.rank-math-breadcrumb {
    text-align: center;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 18px;
}

nav.rank-math-breadcrumb a {
    color: #fff;
}

nav.rank-math-breadcrumb a:hover {
    color: #DF302B;
}

.footer_call span.d-block.title {
    line-height: 140%;
    font-size: 18px;
}

.footer_call a {
    color: #fff;
    margin-top: 15px;
    width: 100%
}

.hero-text .h1 svg {
    bottom: -4px;
    width: calc(100% - 474px);
    left: 5px;
}

.header-action {
    margin-left: 20px;
}

.hero-text .h1 {
    margin-bottom: 0
}

.hero-text .h1 {
    font-size: 52px
}

.hero-text .animated_line {
    font-size: 44px;
    position: relative;
    padding-bottom: 20px
}

.animated_line svg {
    position: relative;
    position: absolute;
    bottom: -12px;
    left: 20px;
    z-index: -1;
}

.hero-area {
    color: rgba(255, 255, 255, 0.85);
}

.hero-text p {
    font-size: 20px;
    line-height: 32px;
}

.hero-text .content {
    width: 90%;
}

.hero-area::after {
    background: #0A1725;
    opacity: 0.4;
}

.hero-area {
    padding-top: 230px;
    padding-bottom: 80px;
}

img.hero_img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 45%;
}

.hero-area .link_text {
    text-decoration: underline;
    font-style: normal;
    color: #FFFFFF;
    margin-left: 20px
}

.hero-area .link_text:hover {
    text-decoration: none
}

.stripe-bar-area {
    background: rgba(29, 34, 38, 0.04);
    padding: 20px 0;
}

.stripe-bar-area .inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stripe-bar-area .inner .widgets:not(.main_w) {
    display: flex;
    align-items: center;

}

.stripe-bar-area .inner .widgets.main_w .title {
    font-family: 'Sansation';
    font-weight: 700;
    color: #0A1725;
}

.stripe-bar-area .inner .widgets.main_w img {
    margin-top: 5px
}

.stripe-bar-area .inner .widgets {
    flex: 1;
    padding: 0 30px;
    line-height: normal;
    position: relative
}

.stripe-bar-area .inner .widgets::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    height: 35px;
    width: 1px;
    background: rgba(73, 147, 226, 0.78);
    transform: translateY(-50%);
}

.stripe-bar-area .inner .widgets:last-child::after {
    display: none
}

.stripe-bar-area .inner .widgets:not(.main_w) img {
    height: 34px;
    margin-right: 15px;
}

.stripe-bar-area .inner .title.alt.nums {
    font-family: 'Sansation';
    font-weight: 700;
    color: #0A1725;
    font-size: 44px;
    margin-right: 15px;
}

.counter-area {
    position: relative;
    z-index: 1;
}

.counter-area .bg_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.counter_box {
    padding: 30px;
    background: #FFFFFF;
    height: 100%;
    box-shadow: 0 0 15px rgba(10, 23, 37, 0.15);
    font-size: 19px;
    transition: all 0.4s
}

.counter_box:hover {
    transform: translatey(-10px)
}

.counter-area .section_heading.alt {
    width: 75%;
}

.counter_box .title {
    color: #38608E;
    font-weight: 700;
    font-size: 60px;
    line-height: normal;
}

.icon-teaser-slider .icon-teaser.style1 img {
    margin-bottom: 20px;
    height: 85px;
    margin: 0 auto 20px;
    margin-top: -90px;
}

.icon-teaser-slider .icon-teaser.style1 {
    margin-top: 0px
}

.icon-teaser-slider .slide {
    padding: 0 8px;
    padding-top: 55px;
}

.icon-teaser-slider .icon-teaser.style1 {
    font-size: 15px;
    line-height: 25px;
    height: 100%
}

.icon-teaser-slider .slick-track {
    display: flex !important;
}

.icon-teaser-slider .slick-slide {
    height: inherit !important;
}

.icon-teaser-border .section_heading.alt::before {
    top: 0px;
}

.icon-teaser-border .section_heading.alt {
    padding-top: 50px;
}

.icon-teaser-border {
    position: relative
}

.icon-teaser-border .section_action {
    position: absolute;
    bottom: -25px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.icon-teaser-border {
    margin-bottom: 50px
}

.icon-teaser-border .section_action .cta-btn {
    min-width: 300px
}

.image-text-v2 {
    position: relative;
    z-index: 1
}

.image-text-v2 .bg_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.animated_headline_alt {
    font-weight: 700;
    color: rgba(10, 23, 37, 0.74);
    font-size: 20px;
    margin-bottom: 20px
}

.animated_headline_alt span {
    position: relative;
	display:inline-block
}

.animated_headline_alt span::after {
    position: absolute;
    content: "";
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 10px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="170.33" height="8.636" viewBox="0 0 170.33 8.636"><path id="Path_16434" data-name="Path 16434" d="M2376.479,525.439s99.467-6.927,166.1-3.57" transform="translate(-2374.344 -518.938)" fill="none" stroke="%23df302b" stroke-linecap="round" stroke-width="4"/></svg>') no-repeat scroll center center /contain;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 1.6s;
    transition-delay: 0.8s;
}

.aos-animate .animated_headline_alt span::after {
    transform: scaleX(1);
}

.featured_logos {
    margin-top: 15px;
}

.featured_logos .title {
    font-family: 'Sansation';
    font-weight: 700;
    color: #0A1725;
}

.featured_logos .inner {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid rgba(112, 112, 112, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px
}

.featured_logos .inner img {
    mix-blend-mode: multiply
}

.icon-teaser-slider .slide {
    padding: 0 15px;
    padding-top: 55px
}

.icon-teaser-slider .slick-list {
    margin-left: -15px;
    margin-right: -15px;
}

.popup-form .modal-content {
    border: none;
    border-radius: 0;
    background: #0A1725;
}

.popup-form .modal-header {
    border: none;
    padding: 20px 35px;
    padding-top: 30px;
}

.popup-form .modal_title {
    margin: 0;
    font-size: 24px;
    border: none;
    font-family: 'Sansation';
    font-weight: 700;
    color: #fff
}

.popup-form .modal-body {
    padding: 50px;
    padding-top: 10px;
}

.popup-form .modal-dialog {
    max-width: 670px;
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.modal-body .gform_fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: -10px;
    margin-right: -10px;
}

.modal-body .gform_fields .gfield {
    padding: 0 10px;
    margin-bottom: 20px
}

.popup-form label,
.popup-form legend {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.popup-form input,
.popup-form select {
    width: 100%;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 10px 20px
}

span.gfield_required {
    color: red;
    margin-left: 2px;
}

.gform_heading {
    display: none
}

.gchoice input {
    width: auto;
    height: auto;
    display: inline-block;
    padding: 0;
}

.gchoice input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.gchoice label {
    position: relative;
    cursor: pointer;
    text-transform: capitalize;
}

.gchoice label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 9px;
    position: relative;
    top: -2px;
}

.gchoice input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 7px;
    width: 5px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.gform-footer input[type="submit"] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    padding: 13px 30px;
    border: 1px solid transparent;
    font-size: 16px;
    font-family: 'Sansation';
    border-color: #DF302B;
    background: #DF302B;
    color: #fff;
    transition: all 0.4s;
    height: auto
}

.gform-footer input[type="submit"]:hover {
    border-color: #b92621;
    background: #b92621;
    color: #fff;
}

.footer-top.style2 {
    text-align: center;
}

.footer-top.style2 a.footer-logo {
    width: 300px;
}

.footer-top.style2 .footer_call a {
    min-width: 250px;
    width: auto
}

.footer-top.style2 .footer-social {
    margin-bottom: 30px
}

.footer-area.alt .footer-top {
    padding-top: 250px;
    padding-bottom: 50px;
}

.hero-text .animated_line {
    display: inline-block
}

.gform_confirmation_message {
    color: #fff;
    text-align: center;
}

.mobile_phone {
    display: none
}

.mainmenu .call_action {
    display: none
}
.animated_headline_alt span.line1::after {

    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="88.406" height="8.757" viewBox="0 0 88.406 8.757"><path id="Path_16433" data-name="Path 16433" d="M2376.479,525.439s50.281-6.927,83.963-3.57" transform="translate(-2374.224 -518.937)" fill="none" stroke="%23df302b" stroke-linecap="round" stroke-width="4"/></svg>') no-repeat scroll center center /contain;

}
.footer-top.style2 .footer_call a{
	margin-bottom:30px
}
.not-found {
    padding-top: 170px;
}
.not-found h1 {
    font-size: 120px;
}
.navigation.pagination {
	text-align: center;
	margin-top: 40px;
	justify-content: center;
}
.navigation.pagination .page-numbers {
	display: inline-block;
	margin: 0 5px;
	font-weight: 500;
}
.navigation.pagination .page-numbers.current {
	color: #DF302B;
}

/*Responsive*/
#menu-toggle span {
    height: 2px;
    width: 95%;
    background: #fff;
    display: block;
    margin-top: 5px;
    position: relative;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    border-radius: 5px;
    margin-right: auto;
    margin-left: 0;
}

#menu-toggle span:nth-child(1) {
    top: 4px;
}

#menu-toggle span:nth-child(2) {
    top: 6px;
    width: 75%;
}

#menu-toggle span:nth-child(3) {
    top: 8px;
    width: 65%
}

#menu-toggle {
    width: 42px;
    height: 42px;
    display: block;
    position: relative;
    background: transparent;
    padding: 4px 8px;
    border-radius: 7px;
    margin-left: auto;
    margin-right: auto;
    display: none
}

@media(max-width:1200px) {
    nav#menu {
        position: absolute;
        top: 99%;
        left: 0;
        width: 100%;
        display: block;
        z-index: 999;
        min-height: calc(100vh - 60px);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        visibility: hidden;
        -webkit-transition: 0.3s all;
        transition: 0.3s all;
    }

    nav#menu.active {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        visibility: visible;
        -webkit-transition: 0.3s all;
        transition: 0.3s all;
    }

    .mainmenu ul {
        text-align: left;
    }

    .header-area.active {
        background: #0A1725;
    }

    nav#menu,
    nav#menu ul ul {
        overflow: hidden;
        max-height: 0;
        background: #0A1725;
        -webkit-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        border: none;
    }

    nav#menu,
    nav#menu ul ul {
        overflow: auto;
        padding: 50px 20px;
    }

    nav#menu li > span {
        width: 30px;
        height: 30px;
        position: absolute;
        right: 0;
        top: 16px;
        z-index: 2;
    }

    .header-action > * {
        margin-left: 15px;
    }

    nav#menu ul > li {
        display: block !important;
        margin: 0 !important;
        padding: 0
    }

    nav#menu ul ul,
    nav#menu ul ul {
        display: inherit;
        position: relative;
        left: auto;
        top: auto;
        padding: 0;
        box-shadow: none
    }

    nav#menu ul.sub-menu.active {
        visibility: visible;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        max-height: 55em;
    }

    nav#menu li > a {
        display: block;
        position: relative;
        padding: 15px 0px;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 16px;
    }

    nav#menu > li:last-child > a {
        border: none
    }

    .mainmenu li > ul {
        border: none
    }

    nav#menu li.has-submenu > a:after {
        border: none;
        content: '+';
        position: absolute;
        top: 10px;
        right: 10px;
        display: block;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: auto;
        height: auto;
        font-size: 20px;

    }

    nav#menu li.has-submenu > a.active:after {
        content: "-";

    }

    .sub-menu:before {
        height: 90% !important;
        left: 50% !important;
        -webkit-transform: translate(-50%, -50%) !important;
        transform: translate(-50%, -50%) !important;
    }

    .sub-menu:after {
        display: none
    }

    nav#menu li.has-submenu.active > a:after {
        content: "-";
        font-size: 20px
    }

    nav#menu ul > li a {
        padding: 13px 0px;
        line-height: normal;
        color: #fff;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    ul.sub-menu {
        padding-left: 20px;
    }

    #menu-toggle.active span:nth-child(2) {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }

    #menu-toggle.active span:nth-child(1) {
        top: 14px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        width: 100%
    }

    #menu-toggle.active span:nth-child(3) {
        top: 0px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        width: 100%
    }

    .header-toggle {
        display: block;
        margin-left: 5px;
    }

    ul#menu ul ul {
        background: transparent;
        box-shadow: none;
        width: 100%;
        padding-left: 15px
    }

    .site-logo {
        width: 260px;
    }

    #menu-toggle {
        display: block;
        margin-left: 10px
    }


    .header-navigation {
        padding-left: 20px;
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    section,
    .section {
        padding: 50px 0
    }

    a.site-logo {
        width: 180px;
    }

    .header-action {
        margin-left: 0;
    }

    .header-area {
        padding: 20px 0
    }

    .scroll.header-area {
        padding: 8px 0;
    }

    h1,
    .h1 {
        font-size: 54px;
        line-height: 120%;
    }

    h2,
    .h2 {
        font-size: 36px;
        line-height: 120%;
    }

    .hero-area {
        padding-top: 200px;
        padding-bottom: 110px;
    }

    .box.style1 .hover .inner {
        max-height: 265px;
    }

    .icon-teaser.style1 {
        padding: 30px;
    }

    .icon-teaser.style1 img {
        height: 65px;
    }

    .icon-teaser.style1 .title {
        font-size: 20px;
    }

    .testimonial-slider .slick-list {
        margin-left: 0px;
        margin-right: 0px;
    }

    .footer-menu ul li a {
        font-size: 14px;
        display: block;
        line-height: normal;
    }

    .hero-text .animated_line {
        font-size: 36px;
    }

    .animated_line svg {
        width: 100%
    }
}

@media(max-width:991px) {

    .testimonial-slider .slick-list {
        margin-left: 0px;
        margin-right: 0px;
    }

    .section_heading.alt {
        width: 100%
    }

    .icon-teaser-border .section_heading.alt::before {
        top: -50px;
    }

    a.site-logo {
        position: relative;
        top: 10px;
    }

    h1,
    .h1 {
        font-size: 40px;
        line-height: 120%;
    }

    h2,
    .h2 {
        font-size: 32px;
        line-height: 120%;
    }

    h3,
    .h3 {
        font-size: 28px;
        line-height: 120%;
    }

    h4,
    .h4 {
        font-size: 25px;
        line-height: 120%;
    }

    h5,
    .h5 {
        font-size: 20px;
        line-height: 120%;
    }

    .hero-text .h1 svg {
        bottom: -12px;
    }

    .hero-area {
        padding-top: 170px;
        padding-bottom: 80px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .box.style1 .info {
        padding: 20px;
    }

    .box.style1 .hover {
        display: none;
    }

    .counter-box .num {
        font-size: 46px;
    }

    .icon-teaser.style1 {
        padding: 24px;
        font-size: 14px;
        line-height: 24px;
    }

    .icon-teaser.style1 img {
        height: 62px;
    }

    .icon-teaser.style1 .title {
        font-size: 20px;
    }

    .tetimonial-box .title {
        font-size: 24px;
    }

    .tetimonial-box {
        padding: 25px;
    }

    .box.style2 img {
        height: 220px;
    }

    .cta-inner.text-center {
        padding: 40px;
    }

    .cta-inner.text-center br {
        display: none;
    }

    a.footer-logo {
        margin: 0 auto 20px;
        display: block;
    }

    .footer-newsletter .title {
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .footer-newsletter form {
        justify-content: center;
    }

    .footer_title {
        text-align: center;
    }

    .footer-menu {
        margin-top: 30px;
    }

    .footer-menu ul li a {
        font-size: 14px;
        line-height: normal;
        display: block;
    }

    .footer-area.alt .footer-top {
        padding-top: 230px;
        padding-bottom: 50px;
    }

    .footer_call a {
        display: inline-flex;
        width: auto
    }

    .footer-newsletter.footer_call {
        text-align: center;
    }

    .hero-text .h1 {
        font-size: 40px;
    }

    .counter-area .section_heading.alt {
        width: 100%;
    }

    .icon-teaser-border .section_heading.alt::before {
        top: 0;
        width: 150px;
    }

    img.hero_img {
        position: relative;
        z-index: 1;
        width: 100%;
        right: -15px;
        margin-top: 20px
    }

    .hero-area .link_text {
        margin-left: 0px;
        font-size: 16px;
        margin-top: 15px;
        display: block;
    }

    .hero-area {
        padding-bottom: 0;
        text-align: center
    }

    .hero-text .content {
        margin: 0 auto
    }

    .stripe-bar-area .inner .widgets:not(.main_w) {
        align-items: center;
        flex-direction: column;
        padding: 0 15px;
        text-align: center;
        font-size: 14px
    }

    .stripe-bar-area .inner .widgets:not(.main_w) img {
        height: 34px;
        margin-right: 0;
        margin-bottom: 10px;

    }

    .counter_box .title {
        font-size: 40px;
    }

    .counter_box {
        padding: 25px;
        font-size: 16px;
        line-height: 25px;
    }

    .featured_logos .inner {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

}

@media(max-width:767px) {
    .box.style2 img {
        height: 240px;
    }

    a.site-logo {
        width: 160px;
        position: relative;
        top: 8px;
    }

    .header-action .call_action {
        margin-right: 0;
        display: none;
    }

    .header-action .cta-btn {
        display: none;
    }

    h1,
    .h1 {
        font-size: 30px;
        line-height: 120%;
    }

    h2,
    .h2 {
        font-size: 26px;
        line-height: 120%;
    }

    h3,
    .h3 {
        font-size: 22px;
        line-height: 120%;
    }

    h4,
    .h4 {
        font-size: 20px;
        line-height: 120%;
    }

    h5,
    .h5 {
        font-size: 18px;
        line-height: 120%;
    }

    .hero-text .h1 svg {
        bottom: -10px;
        width: calc(100% - 80px);
        left: 60px;
    }

    .hero-text p {
        font-size: 16px;
        line-height: 26px;
    }

    .hero-text .cta-btn {
        margin-top: 10px;
    }

    .box.style1 .info {
        padding: 20px;
    }

    .box-slider-v1 .slide {
        padding: 0 8px;
    }

    .box-slider-v1 .slick-list {
        margin-left: -8px;
        margin-right: -8px;
    }

    .section_heading {
        margin-bottom: 20px;
    }

    .slick-arrow {
        width: 50px;
        height: 50px;
    }

    .slick-prev {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .slick-next {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .counter-box .num {
        font-size: 44px;
    }

    .icon-teaser.style1 .title {
        font-size: 20px;
    }

    .icon-teaser.style1 img {
        height: 65px;
    }

    .icon-teaser.style1 {
        padding: 20px;
    }

    .tetimonial-box {
        padding: 20px;
    }

    .tetimonial-box img.quote_icon {
        width: 44px;
    }

    .tetimonial-box .title {
        font-size: 20px;
    }

    .logo-carousel .item {
        width: 27%;
        padding: 0 5px;
    }

    .logo-carousel {
        gap: 15px;
    }

    .box.style2 .text {
        padding: 20px;
    }

    .box.style2 .title {
        font-size: 18px;
    }

    .cta-inner.text-center {
        padding: 30px;
    }

    .cta-inner.text-center br {
        display: none;
    }

    .footer-menu ul li a {
        font-size: 14px;
    }

    .copyright .inner {
        font-size: 12px;
        line-height: 20px;
    }

    .fixed_btns {
        display: flex;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 99;
    }

    .fixed_btns > * {
        display: inline-block;
        flex: 1;
        padding: 10px 20px;
        background: #DF302B;
        color: #fff;
        font-family: 'Sansation';
        font-weight: 700;
        font-size: 14px;
        text-align: center;
        border-right: 1px solid #b92621;
    }

    .show-bottom-buttons {
        padding-bottom: 50px;
    }

    .hero-area {
        text-align: center;
        padding-top: 130px;
        padding-bottom: 50px;
    }

    .box.style1 .title {
        font-size: 16px;
    }

    .box.style1 .hover {
        display: none;
    }

    .counter-box .title {
        line-height: normal;
        font-size: 14px;
    }

    .icon-teaser.style1 {
        text-align: center;
        padding: 20px 40px;
    }

    .icon-teaser.style1 img {
        margin: 0 auto 15px;
    }

    .icon-teaser-border .icon-teaser.style1.alt {
        text-align: left;
    }

    .icon-teaser-border .icon-teaser.style1.alt img {
        margin-left: 0;
    }

    .icon-teaser-border .col-md-4:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.12)
    }

    .icon-teaser-border .col-md-4:nth-last-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12)
    }

    .icon-teaser-border .col-md-4:nth-last-child(-n+1) {
        border-bottom: 0
    }

    .pager-banner {
        padding-top: 120px;
    }

    .pager-banner.blog-banner {
        padding-bottom: 150px;
    }

    .content-area.post-content-area {
        margin-top: -150px;
    }

    .post-content h2 {
        font-size: 30px;
    }

    .post-content h3 {
        font-size: 26px;
    }

    .post-content h4 {
        font-size: 20px;
    }

    .post-content h5 {
        font-size: 18px;
    }

    .footer-top {
        padding: 50px 0;
    }

    .hero-text .h1 {
        font-size: 30px;
    }

    .hero-text .animated_line {
        font-size: 20px;
    }

    .animated_line svg {
        width: calc(100% - 50px);
    }

    .hero-text .content {
        width: 100%;
    }

    .counter_box .title {
        font-size: 34px;
    }

    .icon-teaser-slider .icon-teaser.style1 img {
        margin-top: -60px;
    }

    .icon-teaser-border {
        margin-bottom: 26px;
    }

    .featured_logos .inner {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .animated_headline_alt {
        font-size: 16px;
    }

    .icon-teaser-slider {
        margin-bottom: 0 !important
    }

    .hero-text .cta-btn {
        margin-top: 20px;
    }

    .popup-form .modal-header {
        padding: 15px 20px;
        padding-top: 20px;
    }

    .popup-form .modal-body {
        padding: 24px;
        padding-top: 10px;
    }


    .stripe-bar-area .inner {
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px;
    }

    .stripe-bar-area .inner .widgets {
        flex: auto;
        padding: 15px;
        width: 50%;
        font-size: 14px;
    }

    .stripe-bar-area .inner .widgets::after {
        display: none
    }

    .stripe-bar-area .inner .widgets.main_w {
        width: 100%;
        text-align: center;
        font-size: 16px
    }

    .stripe-bar-area .inner .widgets.main_w img {
        margin: 10px auto 0
    }

    .stripe-bar-area .inner .widgets:not(.main_w) img {
        height: 26px;
        margin-right: 10px;
    }

    .stripe-bar-area .inner .title.alt.nums {
        font-size: 32px;
        margin-right: 10px;
    }

    .counter_box {
        padding: 20px;
        font-size: 15px;
        line-height: 25px;
    }

    .stripe-bar-area .inner .widgets:not(.main_w) {
        padding: 10px 15px
    }

    .hero-area {
        padding-bottom: 0
    }

    .stripe-bar-area .inner .widgets:not(.main_w) {
        width: 25%
    }

    .mobile_phone {
        display: inline-flex;
    }

    .mobile_phone a {
        display: inline-flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: #DF302B;
        border-radius: 5px;
    }

    .mobile_phone a:hover {
        color: #fff
    }
	.mainmenu .call_action{
		display:flex
	}
	.mainmenu .call_action{
		margin-top:30px
	}
	.not-found {
    padding-top: 130px;
}
	.not-found h1 {
    font-size: 80px;
    line-height: 100%;
}
}

@media(max-width:575px) {

    .footer_title {
        text-align: left;
    }

    .cta-btn {
        padding: 10px 20px;
        width: 100%
    }

    .content-img {
        margin-bottom: 30px;
    }

    .content-heading-box {
        margin-top: 0;
        height: auto;
        text-align: center;
    }

    .icon-teaser.style1 .title {
        font-size: 19px;
    }

    .icon-teaser.style1.alt {
        text-align: left;
    }

    .icon-teaser.style1.alt .title {
        font-size: 18px;
    }

    .icon-teaser.style1.alt ul li {
        margin-top: 16px;
        font-size: 14px;
        line-height: normal;
    }

    .icon-teaser.style1.alt img {
        margin-left: 0;
    }

    .icon-teaser-border .icon-teaser.style1.alt {
        padding: 15px;
    }

    .footer-area.alt .footer-top {
        padding-top: 240px;
        padding-bottom: 30px;
    }

    .footer-menu ul {
        column-count: 2;
    }

    .footer-menu ul li {
        margin-bottom: 3px;
    }

    .footer-menu {
        margin-top: 15px;
    }


    .footer_acc.acc ul {
        display: block;
    }

    .footer_acc .footer_title {
        position: relative;
        padding: 10px;
        margin: 0;
        display: block;
        font-size: 16px;
        padding: 10px 0;
    }

    .footer_acc .footer_title:before {
        content: "+";
        position: absolute;
        top: 50%;
        right: 0px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 26px;
        font-weight: 400
    }

    .footer_acc.acc .footer_title:before {
        content: "-";
        top: 42%;
        font-size: 36px;
    }

    .footer_acc ul {
        display: none;
        padding: 10px 0;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2
    }

    .footer_bg {
        opacity: 0.6;
        display: none;
    }

    .footer_title {
        font-size: 18px;
        margin: 0;
        position: relative;
    }

    .footer-menu ul li {
        margin-bottom: 10px;
    }

    .hero-area {
        padding-bottom: 0
    }

    .cta-btn {
        padding: 8px 16px;
        width: 100%;
        font-size: 14px;
    }

    .counter_box {
        padding: 30px;
        font-size: 16px;
        margin: 15px 0;
        height: auto
    }

    .counter-area .section_heading.alt {
        margin-bottom: 20px
    }

    .icon-teaser-border .section_action .cta-btn {
        min-width: calc(100% - 30px);
        width: calc(100% - 30px);
    }

    .featured_logos {
        margin-bottom: 30px
    }

    .modal-body .gform_fields .gfield {
        width: 100%
    }

    .stripe-bar-area .inner .widgets:not(.main_w) img {
        margin-right: 0
    }

    .stripe-bar-area .inner .widgets:not(.main_w) {
        width: 50%
    }

    .image-text-v2 .content-img {
        margin-bottom: 0;
        margin-top: 30px
    }

    .featured_logos {
        margin-bottom: 0
    }
}
@media(min-width:2000px){
	img.hero_img {
    width: 39%;
}
}
@media (min-width: 2350px) and (max-width: 2800px) {
	img.hero_img {
    width: 34%;
}
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media(max-width: 585px) {
	
	.copyright-right a {
    	color: #ff3f3a;
	}
	
    .cta-inner.text-center {
        color: #fff;
    }
	
}


body:not(.home) header {
    background: #0A1725;
}

.cookie-wrapper {
    position: relative;
}

#cky-policy-container {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 310px;
	padding-left: 20px;
	padding-right: 20px;
}

#cky-policy-container h1 {
    background: #0A1725;
    padding: 0 20px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    height: 200px;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cky-policy-container h2 {
    font-weight: bold;
    font-size: 32px;
}

#cky-policy-container h3 {
    font-weight: bold;
    font-size: 25px;
}

.cky-banner-element {
    display: none;
}

.cky-banner-element + br {
    display: none;
}

@media (max-width: 1200px) {
	
#cky-policy-container h1 {
    font-size: 37px;
    height: 150px;
    top: 80px;
}

#cky-policy-container {
    padding-top: 225px;
}
	
}

.copyright-right > a {
    color: #fff !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.copyright-right > a:hover {
    color: #DF302B !important;
}
