body {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #6f6f6f;
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.slick-prev, 
.slick-next {
  position: absolute;
  top: 50%; /* Center vertically */
  transform: translateY(-50%);
  width: 40px; /* Button size */
  height: 40px;
  background-color: #942e2a; /* Button background color */
  border-radius: 50%; /* Round buttons */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff; /* Icon color */
  font-size: 18px; /* Icon size */
  z-index: 1000; /* Make sure it's above the slides */
  border: none; /* Remove default border */
  cursor: pointer;
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

.slick-prev:hover, 
.slick-next:hover {
  background-color: #942e2a; /* Darker blue on hover */
}

/* Positioning */
.slick-prev {
  left: -50px; /* Adjust distance from the slider */
}

.slick-next {
  right: -50px; /* Adjust distance from the slider */
}

/* Hide buttons if disabled */
.slick-prev.slick-disabled, 
.slick-next.slick-disabled {
  opacity: 0.5;
  pointer-events: none; /* Disable interaction */
}

/* Optional: Style icons for better appearance */
.slick-prev::before, 
.slick-next::before {
  content: ''; /* Remove default arrows */
}

.slick-prev::after, 
.slick-next::after {
  content: '‹'; /* Custom left arrow */
  font-family: Arial, sans-serif;
}

.slick-next::after {
  content: '›'; /* Custom right arrow */
}

.fa-phone {
            transform: scaleX(-1);
        }

.btn-link {
    font-weight: 500;
    color: #a90000;
    text-decoration: none;
}
.btn-link:hover {
    color: black;
    text-decoration: none;
}
img {
    max-width: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
a:focus,
input:focus,
textarea:focus,
button:focus,
.slick-initialized .slick-slide:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
a:focus,
a:hover {
    text-decoration: none;
}
i,
span,
a {
    display: inline-block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin: 0px;
}
h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
    color: #1e1e1e;
}
h1 {
    font-size: 48px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0px;
    font-family: "Poppins", sans-serif;
}
a {
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
a,
a:hover {
    color: #a90000;
}
.bg-cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
input,
textarea {
    width: 100%;
    height: 60px;
    background-color: transparent;
    padding: 0px 20px;
    border: 1px solid #dcdfe2;
    font-size: 14px;
    color: #6f6f6f;
}
input[type="submit"] {
    width: auto;
    padding: 0 35px;
    font-weight: 600;
    color: #fff;
    background-color: #a90000;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border: none;
    text-transform: uppercase;
}
input[type="submit"]:hover {
    background-color: #16ad44;
}
textarea {
    height: 195px;
    padding-top: 20px;
}
::-webkit-input-placeholder {
    font-size: 14px;
    color: #999999;
}
:-ms-input-placeholder {
    font-size: 14px;
    color: #999999;
}
::-ms-input-placeholder {
    font-size: 14px;
    color: #999999;
}
::placeholder {
    font-size: 14px;
    color: #999999;
}
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #16ad44;
    z-index: 9999999;
}
#preloader > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
#preloader > div div {
    height: 40px;
    width: 40px;
    background-color: #fff;
    -webkit-animation: rotateplane 1.2s infinite ease-in-out;
    animation: rotateplane 1.2s infinite ease-in-out;
}
@media (min-width: 1700px) {
    .container-fluid.container-extra {
        max-width: 1650px;
    }
}
@media only screen and (min-width: 1400px) and (max-width: 1699px) {
    .container-fluid.container-extra {
        max-width: 1350px;
    }
}
.section-title h2 {
    font-size: 55px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-title h2 {
        font-size: 45px;
    }
}
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
}
@media (max-width: 399px) {
    .section-title h2 {
        font-size: 22px;
    }
}
.section-title p.title-tag {
    font-size: 20px;
    color: #a90000;
    font-weight: 600;
    line-height: 30px;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .section-title p.title-tag {
        font-size: 16px;
    }
}
@media (max-width: 399px) {
    .section-title p.title-tag {
        font-size: 14px;
    }
}
.section-title p.title-tag:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    content: "";
    z-index: 2;
}
.bg-color {
    background-color: #edf1fa;
}
@-webkit-keyframes hvr-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}
@keyframes hvr-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}
@-webkit-keyframes ripple-white {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    40% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
}
@keyframes ripple-white {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    40% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
}
@-webkit-keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}
@keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}
@-webkit-keyframes sticky {
    0% {
        top: -200px;
    }
    100% {
        top: 0;
    }
}
@keyframes sticky {
    0% {
        top: -200px;
    }
    100% {
        top: 0;
    }
}
@-webkit-keyframes rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
@keyframes rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
header {
    height: 90px;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    header {
        height: auto;
    }
}
header.haeder-absolute {
    position: relative;
    left: 0;
    top: 0;
    height: 110px;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #9b2823;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    header .nav {
        padding-right: 50px;
    }
}
@media (max-width: 767px) {
    .haeder-mobile .logo img {
        width: 100%;
        margin-top: 15px !important;
        margin-bottom: 15px !important;
        max-width: 320px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    header .nav .main-mneu {
        display: none;
    }
}
@media (max-width: 767px) {
    header .nav .main-mneu {
        display: none;
    }
}
header .nav .main-mneu ul li {
    margin: 0px 15px;
    display: inline-block;
    position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    header .nav .main-mneu ul li {
        margin: 0px 5px;
    }
}
header .nav .main-mneu ul li a {
    font-size: 14px;
    font-weight: 600;
    color: #1e1e1e;
    display: block;
    padding: 0 10px;
    line-height: 90px;
    display: block;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
header .nav .main-mneu ul li a:hover {
    color: #a90000;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    header .nav .main-mneu ul li a {
        padding: 0px 8px;
    }
}
header .nav .main-mneu ul li a i {
    font-size: 12px;
}
header .nav .main-mneu ul li.active a {
    color: #a90000;
}
header .nav .main-mneu ul li ul.submenu {
    position: absolute;
    left: 0;
    top: 110%;
    width: 200px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
}
header .nav .main-mneu ul li ul.submenu li {
    display: block;
    margin: 0;
}
header .nav .main-mneu ul li ul.submenu li a {
    padding: 0 20px;
    line-height: 55px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
header .nav .main-mneu ul li ul.submenu li a:hover {
    background-color: #a90000;
    color: #fff;
}
header .nav .main-mneu ul li:hover ul.submenu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}
header .mobilemenu .mean-bar {
    background: transparent;
    min-height: 0;
    padding: 0;
}
header .mobilemenu .mean-bar .meanmenu-reveal {
    top: -73px;
}
header .mobilemenu .mean-bar .meanmenu-reveal span {
    width: 30px;
    height: 2px;
    background-color: #000;
    margin: 5px 0;
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
header .mobilemenu .mean-bar .meanmenu-reveal.meanclose span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}
header .mobilemenu .mean-bar .meanmenu-reveal.meanclose span:nth-of-type(2) {
    opacity: 0;
}
header .mobilemenu .mean-bar .meanmenu-reveal.meanclose span:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}
header .mobilemenu .mean-bar .mean-nav {
    margin-top: 0;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #1e1e1e;
}
header .mobilemenu .mean-bar .mean-nav ul li a {
    font-size: 15px;
    text-transform: none;
}
header .mobilemenu .mean-bar .mean-nav ul li a.mean-expand {
    height: 28px;
}
header .mobilemenu .mean-bar .mean-nav ul li a i {
    display: none;
}
header .header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 90px;
    position: relative;
}
header .header-right .search-icon {
    font-size: 20px;
    color: #1e1e1e;
    padding: 10px;
}
header .header-right .search-form {
    position: absolute;
    top: 110%;
    right: 0;
    width: 500px;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
}
@media (max-width: 767px) {
    header .header-right .search-form {
        width: 400px;
    }
}
@media (max-width: 574px) {
    header .header-right .search-form {
        width: 280px;
    }
}
@media (max-width: 399px) {
    header .header-right .search-form {
        width: 250px;
        right: -40px;
    }
}
header .header-right .search-form.show-search {
    top: 100%;
    opacity: 1;
    visibility: visible;
}
header .header-right .search-form form {
    position: relative;
}
header .header-right .search-form form input {
    border: none;
    padding-right: 60px;
}
header .header-right .search-form form button {
    position: absolute;
    right: 3px;
    top: 3px;
    width: 50px;
    bottom: 3px;
    border: none;
    background-color: #a90000;
    color: #fff;
    z-index: 2;
}
header .header-right .off-canver-menu {
    padding: 10px;
    margin-left: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    header .header-right .off-canver-menu {
        display: none;
    }
}
@media (max-width: 767px) {
    header .header-right .off-canver-menu {
        display: none;
    }
}
header .header-right .off-canver-menu span {
    display: block;
    width: 30px;
    height: 2.5px;
    background-color: #1e1e1e;
    margin-bottom: 5px;
}
header .header-right .off-canver-menu span:nth-child(2) {
    width: 18px;
}
header .header-right .off-canver-menu span:last-child {
    margin-bottom: 0;
    width: 24px;
}
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04);
    z-index: 999;
    -webkit-animation: sticky 1.2s;
    animation: sticky 1.2s;
}
.haeder-mobile{
    display: none;
}
.haeder-absolute .container-extra{
    width: 100%;
}
.logo {
    width: 100%;
    text-align: center;
}
.logo.tab1 img {
    width: 128px;
    height: auto;
    left: 15px;
    top: -7px;
    position: absolute;
    margin: 0 !important;
}
.off-canvas-wrap {
    position: fixed;
    width: 450px;
    top: 0;
    min-height: 100vh;
    right: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 999;
    margin-right: -450px;
}
.off-canvas-wrap.show-off-canvas {
    margin-right: 0;
}
.off-canvas-wrap .overly {
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 998;
    background-color: #1e1e1e;
    left: 0;
    top: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}
.off-canvas-wrap .overly.show-overly {
    visibility: visible;
    opacity: 0.6;
}
.off-canvas-wrap .off-canvas-widget {
    padding: 90px 50px;
    background-color: #fff;
    height: 100vh;
    position: relative;
    z-index: 999;
}
.off-canvas-wrap .off-canvas-widget a.off-canvas-close {
    position: absolute;
    right: 50px;
    top: 40px;
    font-size: 30px;
    color: #1e1e1e;
}
.off-canvas-wrap .off-canvas-widget .widget {
    margin-bottom: 50px;
}
.off-canvas-wrap .off-canvas-widget .widget:last-child {
    margin-bottom: 0;
}
.off-canvas-wrap .off-canvas-widget .widget .widget-title {
    font-size: 24px;
    margin-bottom: 20px;
}
.off-canvas-wrap .off-canvas-widget .widget.recent-post ul li {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 120px 1fr;
    grid-template-columns: 120px 1fr;
    margin-bottom: 30px;
}
.off-canvas-wrap .off-canvas-widget .widget.recent-post ul li:last-child {
    margin-bottom: 0;
}
.off-canvas-wrap .off-canvas-widget .widget.recent-post ul li .post-img {
    background-size: cover;
    background-position: center;
}
.off-canvas-wrap .off-canvas-widget .widget.recent-post ul li .post-content {
    padding-left: 20px;
}
.off-canvas-wrap .off-canvas-widget .widget.recent-post ul li .post-content h6 {
    margin-bottom: 15px;
    font-size: 18px;
}
.off-canvas-wrap .off-canvas-widget .widget.recent-post ul li .post-content .time {
    font-size: 15px;
    font-weight: 500;
}
.off-canvas-wrap .off-canvas-widget .widget.recent-post ul li .post-content .time i {
    margin-right: 10px;
}
.off-canvas-wrap .off-canvas-widget .widget.contact-widget ul li {
    font-size: 18px;
    color: #1e1e1e;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.off-canvas-wrap .off-canvas-widget .widget.contact-widget ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 15px;
}
.off-canvas-wrap .off-canvas-widget .widget.contact-widget ul li a {
    color: #1e1e1e;
}
.off-canvas-wrap .off-canvas-widget .widget.social-widget ul li a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: 1px solid #1e1e1e;
    color: #1e1e1e;
    border-radius: 50%;
    text-align: center;
    font-size: 15px;
    margin-right: 10px;
}
.off-canvas-wrap .off-canvas-widget .widget.social-widget ul li a:hover {
    background-color: #a90000;
    color: #fff;
    border-color: #a90000;
}
.banner-section {
    background-color: #fff;
    height: 625px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-section {
        height: 900px;
    }
}
@media (max-width: 767px) {
    .banner-section {
        height: 500px;
    }
}
.logo img {
    width: 440px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.banner-section .banner-img {
    width: 46%;
    position: absolute;
    right: 0;
    top: 94px;
    bottom: 90px;
    left: auto;
    background-size: cover;
    background-position: center;
    border: 20px solid #fff;
    border-right: 0;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(4, 10, 50, 0.05);
    box-shadow: 0px 0px 10px 0px rgba(4, 10, 50, 0.05);
    border-top-left-radius: 427px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-section .banner-img {
        top: 100px;
        bottom: 100px;
        border-width: 10px;
    }
}
@media (max-width: 767px) {
    .banner-section .banner-img {
        display: none;
    }
}
.banner-section .banner-text {
    position: relative;
}
@media (max-width: 399px) {
    .banner-section .banner-text::before {
        right: 50px;
    }
}
.banner-section .banner-text::after {
    position: absolute;
    left: 50%;
    bottom: -75px;
    content: url(../img/shape/02.png);
}
@media (max-width: 767px) {
    .banner-section .banner-text {
        margin-top: 0px;
    }
}
.banner-section .banner-text h1 {
    font-size: 140px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.857;
}
@media only screen and (min-width: 1400px) and (max-width: 1699px) {
    .banner-section .banner-text h1 {
        font-size: 40px;
    	line-height: 70px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .banner-section .banner-text h1 {
	    font-size: 45px;
	    line-height: 70px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-section .banner-text h1 {
        font-size: 58px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-section .banner-text h1 {
        font-size: 585px;
    }
}
@media (max-width: 767px) {
    .banner-section .banner-text h1 {
        font-size: 58px;
    }
}
@media (max-width: 767px) {
    .banner-section .banner-text h1 {
        font-size: 30px;
        line-height: 45px;
    }
}
.banner-section .banner-text h1 span {
    font-weight: 600;
    text-transform: none;
    position: relative;
    color: #a90000;
    display: block;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-section .banner-text h1 span {
        font-size: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-section .banner-text h1 span {
        font-size: 35px;
    }
}
@media (max-width: 767px) {
    .banner-section .banner-text h1 span {
        font-size: 35px;
    }
}
@media (max-width: 399px) {
    .banner-section .banner-text h1 span {
        font-size: 25px;
    }
}
.banner-section .banner-text .banner-promo {
    font-size: 30px;
    color: #7a7a7a;
    font-weight: 700;
    display: inline-block;
   
    position: relative;
    line-height: 1.1;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-section .banner-text .banner-promo {
        font-size: 22px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-section .banner-text .banner-promo {
        font-size: 20px;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .banner-section .banner-text .banner-promo {
        font-size: 20px;
        line-height: 30px;
    }
    #newsletter-popup {
        padding: 10px;
    }
}
.banner-section .banner-text .banner-promo::after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    content: "";
    background-color: #7a7a7a;
}
.banner-section .banner-text .banner-btn {
    font-size: 20px;
    font-weight: 600;
    padding: 15px 45px;
    background-color: #a90000;
    color: white;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 30px;
    line-height: 35px;
    border-radius: 0;
    border: none;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.banner-section .banner-text .banner-btn a{
    color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-section .banner-text .banner-btn {
        line-height: 55px;
        padding: 0px 35px;
    }
}
@media (max-width: 767px) {
    .banner-section .banner-text .banner-btn {
        line-height: 30px;
        padding: 25px 35px;
        font-size: 18px;
    }
}
.banner-section .banner-text .banner-btn:hover {
    background-color: #a90000;
}
.banner-section::after {
    position: absolute;
    right: calc(46% - 30px);
    bottom: 190px;
    content: url(../img/shape/03.png);
}
@media (max-width: 767px) {
    .banner-section::after {
        display: none;
    }
}
.feature-box {
    padding: 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-bottom-right-radius: 30px;
    background: #fff;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #e2ebff;
    box-shadow: 0 10px 10px #cddbe8;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .feature-box {
        padding: 40px 20px;
    }
}
@media (max-width: 767px) {
    .feature-box {
        padding: 30px;
        margin-bottom: 20px;
    }
}
.feature-box .icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background-color: #a90000;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    margin: 0 auto 30px auto;
    font-size: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.feature-box .icon::after {
    position: absolute;
    left: -5px;
    bottom: -5px;
    width: 100%;
    height: 100%;
    background: transparent;
    content: "";
    border: 1px solid #a90000;
    border-radius: 50%;
    opacity: 0.8;
}
.feature-box .icon.secondary-color {
    background-color: #16ad44;
}
.feature-box .icon.secondary-color::after {
    border-color: #16ad44;
}
.feature-box .icon.third-color {
    background-color: #3b78f3;
}
.feature-box .icon.third-color::after {
    border-color: #3b78f3;
}
.feature-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.about-section {
    position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-section {
        padding-top: 750px;
    }
}
@media (max-width: 767px) {
    .about-section {
        padding-top: 550px;
    }
}
.about-section .about-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 46%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-top-right-radius: 427px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-section .about-img {
        height: 700px;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .about-section .about-img {
        height: 500px;
        width: 100%;
        border-top-right-radius: 220px;
    }
}
.about-section .about-img .prize-tag {
    text-align: right;
    padding-right: 30px;
}
@media (max-width: 767px) {
    .about-section .about-img .prize-tag {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .about-section .about-img .prize-tag img {
        padding-right: 0;
        max-width: 150px;
    }
}
.about-section .about-text .about-list {
    margin-top: 25px;
}
.about-section .about-text .about-list li {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 115px 1fr;
    grid-template-columns: 115px 1fr;
    margin-bottom: 45px;
}
@media (max-width: 767px) {
    .about-section .about-text .about-list li {
        -ms-grid-columns: 100px 1fr;
        grid-template-columns: 100px 1fr;
    }
}
@media (max-width: 399px) {
    .about-section .about-text .about-list li {
        display: block;
    }
}
.about-section .about-text .about-list li:last-child {
    margin-bottom: 0;
}
.about-section .about-text .about-list li .icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #a90000;
    color: #fff;
    position: relative;
    margin-left: 5px;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .about-section .about-text .about-list li .icon {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 399px) {
    .about-section .about-text .about-list li .icon {
        margin-bottom: 25px;
    }
}
.about-section .about-text .about-list li .icon::after {
    position: absolute;
    left: -5px;
    bottom: -5px;
    width: 100%;
    height: 100%;
    background: transparent;
    content: "";
    border: 1px solid #a90000;
    border-radius: 50%;
    opacity: 0.8;
}
.about-section .about-text .about-list li .icon.secondary-color {
    background-color: #16ad44;
}
.about-section .about-text .about-list li .icon.secondary-color::after {
    border-color: #16ad44;
}
.about-section .about-text .about-list li h4 {
    line-height: 65px;
    font-size: 18px;
}
@media (max-width: 767px) {
    .about-section .about-text .about-list li h4 {
        margin-bottom: 15px;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .about-section .about-text .about-list li p {
        font-size: 15px;
    }
}
.portfolio-menu {
    padding-top: 25px;
    text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .portfolio-menu {
        margin-top: 25px;
        text-align: left;
    }
}
@media (max-width: 767px) {
    .portfolio-menu {
        margin-top: 25px;
        text-align: left;
    }
}
.portfolio-menu ul li {
    display: inline-block;
    cursor: pointer;
    line-height: 40px;
    color: #a90000;
    border: 1px solid #dcdfe2;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    padding: 0 38px;
    margin-right: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .portfolio-menu ul li {
        padding: 0 28px;
        margin-right: 10px;
    }
}
@media (max-width: 767px) {
    .portfolio-menu ul li {
        padding: 0 12px;
        font-size: 13px;
        margin-right: 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .portfolio-menu ul li {
        padding: 0 26px;
    }
}
@media (max-width: 399px) {
    .portfolio-menu ul li {
        padding: 0 25px;
        margin-bottom: 10px;
    }
}
.portfolio-menu ul li:last-child {
    margin-right: 0;
}
.portfolio-menu ul li.active {
    background: #a90000;
    color: #fff;
    border-color: #a90000;
}
.portfolio-boxes .row {
    margin-right: -10px;
    margin-left: -10px;
}
.portfolio-boxes .row .col-lg-4 {
    padding-left: 10px;
    padding-right: 10px;
}
.portfolio-boxes .single-portfolio-box {
    background-color: #c9c9c9;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 420px;
    margin-bottom: 20px;
    position: relative;
}
.portfolio-boxes .single-portfolio-box::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #000;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.portfolio-boxes .single-portfolio-box .portfolio-action {
    position: absolute;
    left: 50%;
    top: 55%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.portfolio-boxes .single-portfolio-box .portfolio-action a {
    height: 50px;
    width: 50px;
    background-color: #fff;
    line-height: 50px;
    font-size: 14px;
    color: #6f6f6f;
    border-radius: 50%;
    text-align: center;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.portfolio-boxes .single-portfolio-box .portfolio-action a:hover {
    background-color: #16ad44;
    color: #fff;
}
.portfolio-boxes .single-portfolio-box:hover::after {
    visibility: visible;
    opacity: 0.7;
}
.portfolio-boxes .single-portfolio-box:hover .portfolio-action {
    visibility: visible;
    opacity: 1;
    top: 50%;
}
.portfolio-boxes .single-portfolio-box.long {
    height: 860px;
}
.service-box {
    padding: 20px 25px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-bottom-right-radius: 30px;
    background-color: #edf1fa;
    margin-bottom: 30px;
    height: 90%;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .service-box {
        padding: 40px 20px;
    }
}
@media (max-width: 399px) {
    .service-box {
        padding: 50px 30px;
    }
}
.service-box .icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background-color: #a90000;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    margin-left: 5px;
    font-size: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.service-box .icon::after {
    position: absolute;
    left: -5px;
    bottom: -5px;
    width: 100%;
    height: 100%;
    background: transparent;
    content: "";
    border: 1px solid #a90000;
    border-radius: 50%;
    opacity: 0.8;
}
.service-box .icon.secondary-color {
    background-color: #16ad44;
}
.service-box .icon.secondary-color::after {
    border-color: #16ad44;
}
.service-box .icon.third-color {
    background-color: #3b78f3;
}
.service-box .icon.third-color::after {
    border-color: #3b78f3;
}
.service-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
}
.service-box .link {
    font-size: 14px;
    color: #1e1e1e;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 40px;
}
.service-box .link i {
    margin-left: 10px;
    font-size: 20px;
    position: relative;
    top: 3px;
}
.service-box.red {
    background-color: #e5f4e8;
}
.team-box .team-img {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    overflow: hidden;
    border-bottom-right-radius: 30px;
}
.team-box .team-img::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-bottom-right-radius: 30px;
    z-index: 2;
    background-color: #a90000;
    opacity: 0.4;
}
.team-box .team-img.secondary-color::after {
    background-color: #16ad44;
}
.team-box .team-img.third-color::after {
    background-color: #3b78f3;
}
.team-box .team-img img {
    border-bottom-right-radius: 30px;
    width: 100%;
}
.team-box:hover .team-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.team-box h4 {
    margin-bottom: 10px;
}
.team-box .team-pro {
    font-size: 15px;
}
@media (max-width: 574px) {
    .statistics-section {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media (max-width: 399px) {
    .statistics-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.statistics-section .counter-boxes {
    padding-left: 65px;
    position: relative;
    margin-bottom: 50px;
}
.statistics-section .counter-boxes .counter-num {
    position: absolute;
    left: -8px;
    top: 50%;
    font-size: 50px;
    line-height: 1.2;
    -webkit-transform: matrix(0, -1, 1, 0, 0, 0) translateX(50%);
    transform: matrix(0, -1, 1, 0, 0, 0) translateX(50%);
    -webkit-text-stroke: 1px #a90000;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 399px) {
    .statistics-section .counter-boxes .counter-num {
        font-size: 40px;
        left: 5px;
    }
}
.statistics-section .counter-boxes h3 {
    font-size: 20px;
    line-height: 34px;
}
@media (max-width: 399px) {
    .statistics-section .counter-boxes h3 {
        font-size: 22px;
    }
}
.testimonial-section {
    position: relative;
    min-height: 740px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-section {
        padding-top: 750px;
    }
}
@media (max-width: 767px) {
    .testimonial-section {
        padding-top: 550px;
    }
}
.testimonial-section .video-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 46%;
    height: 100%;
    z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-section .video-wrap {
        width: 100%;
        height: 700px;
    }
}
@media (max-width: 767px) {
    .testimonial-section .video-wrap {
        height: 500px;
        width: 100%;
    }
    .logo.tab1 img {
        width: 93px;
        height: auto;
        left: 0;
        top: 0px;
    }

}
.testimonial-section .video-wrap .video-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    border-top-left-radius: 427px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 767px) {
    .testimonial-section .video-wrap .video-inner {
        border-top-left-radius: 220px;
    }
}
.testimonial-section .video-wrap .video-inner::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #01020f;
    opacity: 0.3;
    border-top-left-radius: 427px;
    z-index: -1;
}
.testimonial-section .video-wrap .video-inner .video-popup {
    height: 98px;
    width: 98px;
    text-align: center;
    line-height: 98px;
    font-size: 18px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .testimonial-section .video-wrap .video-inner .video-popup {
        height: 70px;
        width: 70px;
        line-height: 70px;
    }
}
@media (max-width: 767px) {
    .testimonial-section .video-wrap .video-inner .video-popup {
        height: 70px;
        width: 70px;
        line-height: 70px;
    }
}
.testimonial-section .video-wrap .video-inner .video-popup:hover {
    background-color: #16ad44;
    border-color: #16ad44;
}
.testimonial-section .testimonial-author {
    min-height: 110px;
}
.testimonial-section .testimonial-author .single-thumb {
    cursor: pointer;
    opacity: 0.7;
}
@media (max-width: 399px) {
    .testimonial-section .testimonial-author .single-thumb img {
        max-width: 80px;
        max-height: 80px;
    }
}
.testimonial-section .testimonial-slider .single-testimonial p {
    font-size: 18px;
    font-weight: 500;
}
@media (max-width: 767px) {
    .testimonial-section .testimonial-slider .single-testimonial p {
        font-size: 16px;
    }
}
.testimonial-section .testimonial-slider .single-testimonial h4 {
    margin-top: 50px;
}
.testimonial-section .testimonial-slider .single-testimonial h4 span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    padding-top: 20px;
}
@media (max-width: 767px) {
    .testimonial-section .testimonial-slider .single-testimonial h4 span {
        padding-top: 8px;
    }
}
.testimonial-section .testimonial-slider span.slick-arrow {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 46px;
    height: 30px;
    text-align: center;
    opacity: 0;
    line-height: 32px;
    z-index: 222;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-top-left-radius: 10px;
}
@media (max-width: 767px) {
    .testimonial-section .testimonial-slider span.slick-arrow {
        left: 75%;
    }
}
.testimonial-section .testimonial-slider span.slick-arrow.next-arrow {
    left: calc(50% + 55px);
    border-top-left-radius: 0;
    border-top-right-radius: 10px;
    background-color: #a90000;
    color: #fff;
}
@media (max-width: 767px) {
    .testimonial-section .testimonial-slider span.slick-arrow.next-arrow {
        left: calc(75% + 55px);
    }
}
.testimonial-section .testimonial-slider span.slick-arrow:hover {
    background-color: #a90000;
    color: #fff;
}
.latest-posts .section-title {
    position: relative;
}
.latest-posts .section-title a.blog-page-link {
    font-size: 14px;
    font-weight: 600;
    color: #6f6f6f;
    position: absolute;
    padding: 15px;
    right: 0;
    top: 0;
}
@media (max-width: 767px) {
    .latest-posts .section-title a.blog-page-link {
        top: 30px;
    }
}
.latest-posts .section-title a.blog-page-link i {
    font-size: 16px;
    position: relative;
    top: 2px;
    margin-left: 5px;
}
.latest-posts .post-box {
    margin-bottom: 30px;
    border: 1px solid rgba(191, 193, 194, 0.45);
    padding: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .latest-posts .post-box {
        padding: 22px;
    }
}
@media (max-width: 767px) {
    .latest-posts .post-box {
        padding: 30px;
    }
    .haeder-mobile {
        display: block;
        border-bottom: 1px solid #9b2823;
    }
    .haeder-absolute{
        display: none;
    }
}
@media (max-width: 399px) {
    .latest-posts .post-box {
        padding: 30px 15px;
    }
}
.latest-posts .post-box .post-content .post-meta li {
    display: inline-block;
}
@media (max-width: 399px) {
    .latest-posts .post-box .post-content .post-meta li {
        margin-bottom: 5px;
    }
}
.latest-posts .post-box .post-content .post-meta li a {
    font-size: 14px;
    color: #6f6f6f;
    margin-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .latest-posts .post-box .post-content .post-meta li a {
        margin-right: 10px;
    }
}
@media (max-width: 767px) {
    .latest-posts .post-box .post-content .post-meta li a {
        margin-right: 10px;
    }
}
.latest-posts .post-box .post-content .post-meta li a i {
    margin-right: 10px;
}
.latest-posts .post-box .post-content h4 {
    margin-bottom: 20px;
    margin-top: 10px;
}
.latest-posts .post-box .post-content a.post-link {
    font-size: 14px;
    font-weight: 600;
    color: #6f6f6f;
    text-transform: uppercase;
}
.latest-posts .post-box .post-content a.post-link:hover {
    color: #a90000;
}
.latest-posts .post-box .post-content a.post-link i {
    margin-left: 10px;
    font-size: 18px;
}
.latest-posts .post-box:last-child {
    margin-bottom: 0;
}
.latest-posts .post-box.big-post {
    margin-bottom: 0;
    border: none;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 588px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .latest-posts .post-box.big-post {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .latest-posts .post-box.big-post {
        margin-bottom: 30px;
        height: 500px;
    }
}
.latest-posts .post-box.big-post::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #000000;
    opacity: 0.4;
    z-index: -1;
}
.latest-posts .post-box.big-post h4 a,
.latest-posts .post-box.big-post .post-meta li a,
.latest-posts .post-box.big-post a.post-link {
    color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-list {
        margin-bottom: 60px;
    }
}
@media (max-width: 767px) {
    .contact-list {
        margin-bottom: 60px;
    }
}
.contact-list li {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e1e1e;
}
.contact-list li:last-child {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .contact-list li {
        font-size: 16px;
        margin-bottom: 20px;
    }
}
.contact-list li i {
    font-size: 24px;
    margin-right: 20px;
}
footer {
    background-color: #111111;
}
footer,
footer p,
footer a,
footer .widget-title,
footer h2 {
    color: #fff;
}
footer .widget {
    margin-bottom: 80px;
}
footer .widget .widget-title {
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    footer .widget .widget-title {
        margin-bottom: 25px;
    }
}
footer .widget.contact-widget h2 {
    font-size: 36px;
    margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    footer .widget.contact-widget h2 {
        font-size: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    footer .widget.contact-widget h2 {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    footer .widget.contact-widget h2 {
        font-size: 30px;
    }
}
footer .widget.contact-widget .contact-info li {
    margin-bottom: 20px;
    font-size: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    footer .widget.contact-widget .contact-info li {
        font-size: 18px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    footer .widget.contact-widget .contact-info li {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    footer .widget.contact-widget .contact-info li {
        font-size: 18px;
    }
}
footer .widget.contact-widget .contact-info li:last-child {
    margin-bottom: 0;
}
footer .widget.contact-widget .contact-info li span {
    font-size: 20px;
    margin-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    footer .widget.contact-widget .contact-info li span {
        font-size: 16px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    footer .widget.contact-widget .contact-info li span {
        font-size: 14px;
        margin-right: 10px;
    }
}
@media (max-width: 767px) {
    footer .widget.contact-widget .contact-info li span {
        font-size: 16px;
    }
}
footer .widget.contact-widget .social-icons {
    margin-top: 30px;
}
footer .widget.contact-widget .social-icons li {
    display: inline-block;
    margin-right: 25px;
    font-size: 20px;
}
footer .widget.contact-widget .social-icons li a:hover {
    color: #a90000;
}
footer .widget.nav-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media (max-width: 767px) {
    footer .widget.nav-widget {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
footer .widget.nav-widget ul li {
    line-height: 36px;
}
footer .widget.newsletter-widget form {
    margin-top: 25px;
    position: relative;
}
footer .widget.newsletter-widget form input {
    background-color: #fff;
    border: none;
    padding-right: 70px;
}
footer .widget.newsletter-widget form ::-webkit-input-placeholder,
footer .widget.newsletter-widget form input {
    font-size: 15px;
    color: #888888;
}
footer .widget.newsletter-widget form :-ms-input-placeholder,
footer .widget.newsletter-widget form input {
    font-size: 15px;
    color: #888888;
}
footer .widget.newsletter-widget form ::-ms-input-placeholder,
footer .widget.newsletter-widget form input {
    font-size: 15px;
    color: #888888;
}
footer .widget.newsletter-widget form ::placeholder,
footer .widget.newsletter-widget form input {
    font-size: 15px;
    color: #888888;
}
footer .widget.newsletter-widget form button {
    font-size: 16px;
    color: #fff;
    background-color: #a90000;
    width: 60px;
    border: none;
    position: absolute;
    right: 3px;
    top: 3px;
    bottom: 3px;
    z-index: 2;
}
footer .widget.instagram-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    footer .widget.instagram-widget {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
footer .widget.instagram-widget ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: (90px) [2];
    grid-template-rows: repeat(2, 90px);
    -ms-grid-columns: (85px) [3];
    grid-template-columns: repeat(3, 85px);
    grid-auto-rows: 90px;
    grid-gap: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    footer .widget.instagram-widget ul {
        -ms-grid-columns: (80px) [3];
        grid-template-columns: repeat(3, 80px);
    }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    footer .widget.instagram-widget ul {
        -ms-grid-columns: (80px) [2];
        grid-template-columns: repeat(2, 80px);
    }
}
footer .widget.instagram-widget ul li img {
    width: 100%;
}
footer .copyright-area {
    padding: 30px 0;
    border-top: 1px solid #222;
}
footer .copyright-area .copyright-text a {
    color: #a90000;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    footer .copyright-area .copyright-text {
        text-align: center;
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    footer .copyright-area .copyright-text {
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
    }
}
footer .copyright-area .footer-nav ul li {
    display: inline-block;
    margin-left: 20px;
}
@media (max-width: 767px) {
    footer .copyright-area .footer-nav ul li {
        font-size: 14px;
    }
}
@media (max-width: 399px) {
    footer .copyright-area .footer-nav ul li {
        margin-left: 5px;
    }
}
.go-top-area {
    position: relative;
    z-index: 9999;
}
.go-top-area .go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 24px;
    color: #ffffff;
    background-color: #a90000;
    z-index: 9999;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.9s ease-out 0s;
    transition: all 0.9s ease-out 0s;
    border-right: 0;
}
.go-top-area .go-top i {
    position: absolute;
    top: 50%;
    left: -4px;
    right: 0;
    margin: 0 auto;
    font-size: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.go-top-area .go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}
.go-top-area .go-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #a90000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.go-top-area .go-top:focus,
.go-top-area .go-top:hover {
    color: #fff;
}
.go-top-area .go-top:focus::before,
.go-top-area .go-top:hover::before {
    opacity: 1;
    visibility: visible;
}
.go-top-area .go-top:focus i:first-child,
.go-top-area .go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}
.go-top-area .go-top:focus i:last-child,
.go-top-area .go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.go-top-area .go-top.active {
    top: 98%;
    -webkit-transform: translateY(-98%);
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    right: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .go-top-area .go-top.active {
        top: 93%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .go-top-area .go-top.active {
        top: 93%;
    }
}
.go-top-wrap {
    position: relative;
}
.go-top-wrap .go-top-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    top: 3px;
    z-index: 1;
    background: #a90000;
}
.go-top-wrap .go-top-btn i {
    font-size: 20px;
    font-weight: 700;
    padding-left: 4px;
    color: #fff;
}
.go-top-wrap .go-top-btn::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    background: #a90000;
}
.go-top-wrap .go-top-btn:hover {
    background-color: #000;
    color: #fff;
}
.breadcrumb-section {
    padding: 110px 0;
}
@media (max-width: 399px) {
    .breadcrumb-section {
        padding: 80px 0;
    }
}
.breadcrumb-section .title {
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 800;
}
@media (max-width: 767px) {
    .breadcrumb-section .title {
        font-size: 38px;
    }
}
@media (max-width: 574px) {
    .breadcrumb-section .title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 10px;
    }
}
.breadcrumb-section ul {
    text-align: right;
}
@media (max-width: 574px) {
    .breadcrumb-section ul {
        text-align: center;
    }
}
.breadcrumb-section ul li {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
}
@media (max-width: 767px) {
    .breadcrumb-section ul li {
        font-size: 15px;
    }
}
.breadcrumb-section ul li,
.breadcrumb-section ul li a {
    color: #1e1e1e;
}
.blog-post-loop .single-blog-post {
    margin-bottom: 60px;
}
.blog-post-loop .single-blog-post .post-meta {
    margin-top: 40px;
}
.blog-post-loop .single-blog-post .post-meta ul li {
    margin-right: 30px;
    display: inline-block;
}
@media (max-width: 767px) {
    .blog-post-loop .single-blog-post .post-meta ul li {
        margin-right: 15px;
    }
}
@media (max-width: 399px) {
    .blog-post-loop .single-blog-post .post-meta ul li {
        margin-right: 4px;
        font-size: 14px;
    }
}
.blog-post-loop .single-blog-post .post-meta ul li a {
    color: #6f6f6f;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}
.blog-post-loop .single-blog-post .post-meta ul li a i {
    margin-right: 10px;
}
@media (max-width: 399px) {
    .blog-post-loop .single-blog-post .post-meta ul li a i {
        margin-right: 5px;
    }
}
.blog-post-loop .single-blog-post .post-thumb img {
    border-radius: 5px;
}
.blog-post-loop .single-blog-post .title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.333;
    margin: 30px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-post-loop .single-blog-post .title {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .blog-post-loop .single-blog-post .title {
        font-size: 20px;
    }
}
.blog-post-loop .single-blog-post .read-more {
    padding: 0 45px;
    font-weight: 600;
    color: #fff;
    background-color: #a90000;
    line-height: 60px;
    text-transform: uppercase;
    margin-top: 40px;
}
@media (max-width: 767px) {
    .blog-post-loop .single-blog-post .read-more {
        padding: 0px 35px;
        line-height: 55px;
    }
}
.blog-post-loop .single-blog-post .read-more:hover {
    background-color: #16ad44;
}
.blog-post-loop .single-blog-post.quote-post {
    background-color: #16ad44;
    padding: 60px 40px;
    position: relative;
    z-index: -1;
    border-radius: 5px;
}
@media (max-width: 574px) {
    .blog-post-loop .single-blog-post.quote-post {
        padding: 30px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-post-loop .single-blog-post.quote-post {
        padding: 40px;
    }
}
@media (max-width: 399px) {
    .blog-post-loop .single-blog-post.quote-post {
        padding: 30px 20px;
    }
}
.blog-post-loop .single-blog-post.quote-post .title {
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}
.blog-post-loop .single-blog-post.quote-post::after {
    position: absolute;
    right: 70px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: url(../img/quote.png);
    z-index: -1;
}
.blog-post-loop .single-blog-post.quote-post .quote-author {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    position: relative;
    padding-left: 70px;
    margin-top: 18px;
    line-height: 1;
    color: #fff;
    position: relative;
}
@media (max-width: 399px) {
    .blog-post-loop .single-blog-post.quote-post .quote-author {
        font-size: 16px;
    }
}
.blog-post-loop .single-blog-post.quote-post .quote-author::before {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    height: 3px;
    width: 50px;
    content: "";
}
.blog-details .blog-details-content .main-thumb img {
    border-radius: 5px;
}
.blog-details .blog-details-content .blog-meta {
    margin-bottom: 30px;
}
.blog-details .blog-details-content .blog-meta li {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px;
}
@media (max-width: 574px) {
    .blog-details .blog-details-content .blog-meta li {
        margin-bottom: 5px;
    }
}
.blog-details .blog-details-content .blog-meta li i {
    margin-right: 10px;
    font-size: 15px;
}
.blog-details .blog-details-content .blog-meta li,
.blog-details .blog-details-content .blog-meta li a {
    color: #6f6f6f;
}
.blog-details .blog-details-content h3.title {
    font-size: 27px;
    line-height: 1.4;
    margin-bottom: 35px;
}
@media (max-width: 767px) {
    .blog-details .blog-details-content h3.title {
        font-size: 22px;
    }
}
.blog-details .blog-details-content p {
    margin-bottom: 40px;
}
.blog-details .blog-details-content blockquote {
    margin-bottom: 40px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #1e1e1e;
}
@media (max-width: 767px) {
    .blog-details .blog-details-content blockquote {
        font-size: 18px;
    }
}
.blog-details .blog-details-content figure {
    margin-bottom: 40px;
}
.blog-details .blog-details-footer {
    padding: 30px 0;
    border-top: 1px solid #e0e1e7;
    border-bottom: 1px solid #e0e1e7;
}
.blog-details .blog-details-footer .liked-people a {
    color: #6f6f6f;
    margin-right: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blog-details .blog-details-footer .liked-people a {
        margin-right: 5px;
    }
}
.blog-details .blog-details-footer .social-share {
    text-align: right;
}
@media (max-width: 574px) {
    .blog-details .blog-details-footer .social-share {
        text-align: left;
        margin-top: 10px;
    }
}
.blog-details .blog-details-footer .social-share li {
    display: inline-block;
    margin-left: 5px;
    font-size: 15px;
}
.blog-details .blog-details-footer .social-share li a {
    color: #6f6f6f;
    padding: 0 5px;
}
.blog-details .blog-details-footer .social-share li a:hover {
    color: #a90000;
}
.blog-details .blog-details-footer .post-nav {
    margin-top: 40px;
}
.blog-details .blog-details-footer .post-nav .prev-post a,
.blog-details .blog-details-footer .post-nav .next-post a {
    font-size: 14px;
    font-weight: 600;
    color: #6f6f6f;
    color: #1e1e1e;
    text-transform: uppercase;
}
@media (max-width: 399px) {
    .blog-details .blog-details-footer .post-nav .prev-post a,
    .blog-details .blog-details-footer .post-nav .next-post a {
        font-size: 12px;
    }
}
.blog-details .blog-details-footer .post-nav .prev-post a span,
.blog-details .blog-details-footer .post-nav .next-post a span {
    background-color: #15243b;
    background-size: cover;
    background-position: center;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}
@media (max-width: 399px) {
    .blog-details .blog-details-footer .post-nav .prev-post a span,
    .blog-details .blog-details-footer .post-nav .next-post a span {
        margin-right: 10px;
        height: 45px;
        width: 45px;
        line-height: 45px;
    }
}
.blog-details .blog-details-footer .post-nav .prev-post a span::after,
.blog-details .blog-details-footer .post-nav .next-post a span::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.blog-details .blog-details-footer .post-nav .prev-post a span i,
.blog-details .blog-details-footer .post-nav .next-post a span i {
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    visibility: hidden;
    opacity: 0;
}
@media (max-width: 399px) {
    .blog-details .blog-details-footer .post-nav .prev-post a span i,
    .blog-details .blog-details-footer .post-nav .next-post a span i {
        font-size: 12px;
    }
}
.blog-details .blog-details-footer .post-nav .prev-post a:hover span::after,
.blog-details .blog-details-footer .post-nav .next-post a:hover span::after {
    visibility: visible;
    opacity: 0.5;
}
.blog-details .blog-details-footer .post-nav .prev-post a:hover span i,
.blog-details .blog-details-footer .post-nav .next-post a:hover span i {
    visibility: visible;
    opacity: 1;
}
.blog-details .blog-details-footer .post-nav .next-post {
    text-align: right;
}
.blog-details .blog-details-footer .post-nav .next-post a span {
    margin-left: 20px;
    margin-right: 0;
}
@media (max-width: 399px) {
    .blog-details .blog-details-footer .post-nav .next-post a span {
        margin-left: 10px;
        margin-right: 0;
    }
}
.blog-details .about-author {
    padding: 45px 45px 45px 150px;
    position: relative;
}
@media (max-width: 767px) {
    .blog-details .about-author {
        padding: 170px 45px 45px;
    }
}
.blog-details .about-author .author-img {
    position: absolute;
    left: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .blog-details .about-author .author-img {
        top: 45px;
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
.blog-details .about-author .author-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.blog-details .about-author .author-desc h5 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}
.blog-details .about-author .author-desc .social-link {
    margin-top: 20px;
}
.blog-details .about-author .author-desc .social-link li {
    display: inline-block;
    margin-right: 5px;
    font-size: 15px;
}
.blog-details .about-author .author-desc .social-link li a {
    color: #6f6f6f;
    padding: 0 5px;
}
.blog-details .about-author .author-desc .social-link li a:hover {
    color: #a90000;
}
.blog-details .comments-template .comments-list {
    margin-top: 60px;
}
.blog-details .comments-template .comments-list h3.title {
    font-size: 27px;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .blog-details .comments-template .comments-list h3.title {
        font-size: 22px;
    }
}
.blog-details .comments-template .comments-list ul li {
    position: relative;
    padding-left: 130px;
    margin-bottom: 50px;
}
.blog-details .comments-template .comments-list ul li:last-child {
    margin-bottom: 0;
}
@media (max-width: 574px) {
    .blog-details .comments-template .comments-list ul li {
        padding-left: 100px;
    }
}
.blog-details .comments-template .comments-list ul li .comment-author {
    position: absolute;
    left: 0;
    top: 0;
}
.blog-details .comments-template .comments-list ul li .comment-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
@media (max-width: 574px) {
    .blog-details .comments-template .comments-list ul li .comment-author img {
        width: 80px;
        height: 80px;
    }
}
.blog-details .comments-template .comments-list ul li .comment-desc h5 {
    font-size: 20px;
    margin-bottom: 20px;
}
@media (max-width: 574px) {
    .blog-details .comments-template .comments-list ul li .comment-desc h5 {
        margin-bottom: 15px;
    }
}
.blog-details .comments-template .comments-list ul li .comment-desc h5 .comment-time {
    margin-left: 40px;
    font-size: 16px;
    color: #a90000;
    font-weight: 400;
}
@media (max-width: 574px) {
    .blog-details .comments-template .comments-list ul li .comment-desc h5 .comment-time {
        display: block;
        margin-left: 0;
        padding-top: 8px;
    }
}
.blog-details .comments-template .comments-list ul li .comment-desc .reply-btn {
    margin-top: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #1e1e1e;
}
@media (max-width: 574px) {
    .blog-details .comments-template .comments-list ul li .comment-desc .reply-btn {
        margin-top: 10px;
    }
}
.blog-details .comments-template .comments-list ul li .comment-desc .reply-btn:hover {
    color: #a90000;
}
.blog-details .comments-template .comments-form {
    margin-top: 60px;
}
.blog-details .comments-template .comments-form h3.title {
    font-size: 27px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .blog-details .comments-template .comments-form h3.title {
        font-size: 22px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-sidebar {
        margin-top: 100px;
    }
}
@media (max-width: 767px) {
    .blog-sidebar {
        margin-top: 100px;
    }
}
.blog-sidebar .widget {
    margin-bottom: 50px;
}
.blog-sidebar .widget .widget-title {
    font-size: 22px;
    margin-bottom: 30px;
}
.blog-sidebar .widget.search-widget form {
    position: relative;
}
.blog-sidebar .widget.search-widget form input {
    border: none;
    background-color: #edf1fa;
    padding-right: 60px;
}
.blog-sidebar .widget.search-widget form button {
    position: absolute;
    border: none;
    background-color: transparent;
    width: 50px;
    text-align: center;
    height: 100%;
    top: 0;
    right: 0;
    font-size: 15px;
    color: #999999;
}
.blog-sidebar .widget.recent-post ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
.blog-sidebar .widget.recent-post ul li:last-child {
    margin-bottom: 0;
}
.blog-sidebar .widget.recent-post ul li .post-img {
    background-color: #7a7a7a;
    height: 80px;
    width: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    min-width: 80px;
}
.blog-sidebar .widget.recent-post ul li .post-content {
    padding-left: 20px;
    font-size: 15px;
}
.blog-sidebar .widget.recent-post ul li .post-content h6 {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 10px;
}
.blog-sidebar .widget.recent-post ul li .post-content h6 a {
    color: #1e1e1e;
}
.blog-sidebar .widget.recent-post ul li .post-content a {
    color: #6f6f6f;
}
.blog-sidebar .widget.categorie-widget ul li {
    padding-left: 15px;
    position: relative;
    margin-bottom: 15px;
}
.blog-sidebar .widget.categorie-widget ul li:last-child {
    margin-bottom: 0;
}
.blog-sidebar .widget.categorie-widget ul li a {
    color: #6f6f6f;
    display: block;
}
.blog-sidebar .widget.categorie-widget ul li a i {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.blog-sidebar .widget.categorie-widget ul li:hover a {
    color: #a90000;
    padding-left: 5px;
}
.blog-sidebar .widget.tag-widget ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (45px) [auto];
    grid-template-columns: repeat(auto, 45px);
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}
.blog-sidebar .widget.tag-widget ul li a {
    background-color: #edf1fa;
    color: #6f6f6f;
    font-size: 14px;
    line-height: 44px;
    border: 1px solid transparent;
    display: block;
    text-align: center;
}
.blog-sidebar .widget.tag-widget ul li a:hover {
    border-color: #a90000;
}
.blog-sidebar .widget.newsletter-widget input {
    background-color: #edf1fa;
    border: none;
}
.blog-sidebar .widget.newsletter-widget input[type="submit"] {
    margin-top: 20px;
    background-color: #a90000;
}
.blog-sidebar .widget.newsletter-widget input[type="submit"]:hover {
    background-color: #16ad44;
}
.pagination-wrap ul li {
    display: inline-block;
}
.pagination-wrap ul li a {
    display: block;
    border: 2px solid #e5e5e5;
    color: #859aaa;
    font-size: 18px;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 58px;
    border-radius: 50%;
    margin-right: 8px;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}
@media (max-width: 574px) {
    .pagination-wrap ul li a {
        height: 50px;
        width: 50px;
        line-height: 48px;
        font-size: 14px;
    }
}
@media (max-width: 399px) {
    .pagination-wrap ul li a {
        height: 45px;
        width: 45px;
        line-height: 43px;
        margin-right: 5px;
    }
}
.pagination-wrap ul li a.active,
.pagination-wrap ul li a:hover {
    -webkit-box-shadow: 0px 10px 49.5px 0.5px #ec0015c7;
    box-shadow: 0px 10px 49.5px 0.5px #ec0015c7;
    background-color: #a90000;
    color: #fff;
    border-color: #a90000;
}

#newsletter-popup {
    margin: 70px auto;
    padding: 25px;
    background: #f6f6f6;
    width: 50%;
    border-radius: 0;
    position: relative;
    transition: all 1s ease-in-out;
}
@media screen and (max-width: 1366px){
  #newsletter-popup{
    width: 40%;
  }
}

@media screen and (max-width: 767px){
    #newsletter-popup {
        width: 90%;
        padding: 15px;
    }
    #newsletter-popup h2 {
        font-size: 18px;
    }
    #newsletter-popup a{
        font-size: 19px;
        line-height: 25px;
    }
    .newsletter-in{
        padding: 15px;
    }
}
.newsletter-in {
    border: 1px solid #ddd;
    padding: 25px;
    background: #fff;
}
.newsletter-overlay{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: visible;
  opacity: 1;
  display: none;
  z-index: 999;
}
#newsletter-popup img{
    display: block;
    margin:0 auto 20px auto;
}
#newsletter-popup h2 {
    font-size: 23px;
    text-align: center;
    background-color: #9b2823;
    color: #fff;
    padding: 15px 0;
    font-weight: normal;
}
#newsletter-popup p{
    display: block;
    margin: 20px 0;
    font-size: 20px;
    text-align: center;
}
#newsletter-popup a {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    line-height: 36px;
}
#newsletter-popup .popup-close {
    color: #fff;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 10px;
    font-size: 15px;
    right: 10px;
    background: #000;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    font-weight: bold;
}
/* Mobile view */
@media (max-width: 767px){
    .hero-title{
        padding-top: 40px;
    }
}