@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body {
    font-family: "Roboto", serif;
    font-weight: normal;
    font-style: normal;
    color: #798795;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Condensed", serif;
    font-weight: 500;
    color: #222;
    margin: 0px;
    text-transform: uppercase;
    font-style: italic;
}
.container_wrapper {
    padding: 0px 120px 0px;
    width: 100%;
}
/*===== All Button Style =====*/

.main-btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 0 25px;
    font-size: 16px;
    line-height: 43px;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background-color: #f30a46;
}
.main-btn:hover {
    background-color: #fff;
    color: #f30a46;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(34, 34, 34, 0.15);
    -moz-box-shadow: 0px 0px 25px 0px rgba(34, 34, 34, 0.15);
    box-shadow: 0px 0px 25px 0px rgba(34, 34, 34, 0.15);
}
.main-btn.main-btn-2 {
    background-color: #DD0000;
}
.main-btn.main-btn-2:hover {
    background-color: #ff1f59;
}
.main-btn:hover {
    color: #f30a46;
}
.main-btn:hover::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}
/*===== All Preloader Style =====*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}
#preloader .preloader {
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 0px;
    text-align: left;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
}
#preloader .preloader span {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #f30a46;
    -webkit-animation: preloader 1.3s linear infinite;
    animation: preloader 1.3s linear infinite;
}
#preloader .preloader span:last-child {
    animation-delay: -0.8s;
    -webkit-animation-delay: -0.8s;
}
@keyframes preloader {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
@-webkit-keyframes preloader {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}
/*===== All Section Title Style =====*/

.bdrop-section-title .sub-titler {
    font-size: 15px;
    color: #f30a46;
    font-family: "Roboto Condensed", serif;
    font-weight: 700;
}
@media (max-width: 767px) {
    .bdrop-section-title .sub-titler {
        font-size: 14px;
    }
}
.bdrop-section-title .main-title {
    font-size: 44px;
    margin-top: 10px;
}
@media (max-width: 767px) {
    .bdrop-section-title .main-title {
        font-size: 20px;
    }
}
.bdrop-section-title.bdrop-section-title-2 .main-title {
    color: #fff;
}
.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.bdrop-section-title ul {
    padding: 0;
    margin: 8px 0 0;
    list-style-type: none
}
.bdrop-section-title ul li {
    display: inline-block;
    position: relative;
    margin: 0 15px;
    color: #798795;
    font-size: 15px;
}
.bdrop-section-title ul li::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #f30a46;
    width: 8px;
    height: 8px;
    border-radius: 50%
}
.bdrop-section-title ul li:first-child::before {
    display: none
}
.toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 7px 0;
    display: block;
}
.is-sticky .toggler-icon {
    background-color: #2b2a35;
}
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 9999;
    padding-top: 25px;
    padding-left: 55px;
    padding-right: 55px
}
.bg-light {
    background-color: transparent !important
}
.navbar-brand {
    font-weight: 700;
    font-size: 40px
}
a {
    -webkit-transition: .5s;
    transition: .5s;
    text-decoration: none;
    display: block;
}
a:hover {
    text-decoration: none;
}
.navbar-brand span {
    color: #f30a46;
}
.navbar-brand b {
    color: #222;
}
.navbar-nav {
    margin-right: 20px;
}
.navbar-nav .nav-item .nav-link {
    font-size: 15px;
    padding: 30px 15px;
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.is-sticky .navbar-nav .nav-item .nav-link {
    color: #2b2a35;
}
.navbar-nav .nav-item .nav-link.active, .navbar-nav .nav-item .nav-link:hover {
    color: #f30a46;
}
.navbar-nav .nav-item.active .nav-link {
    color: #f30a46;
}
.navbar-nav .nav-item .nav-link:focus {
    color: #f30a46;
}
.default-btn {
    background-color: #22b663;
    color: #fff;
    border: 1px solid #22b663;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    display: inline-block;
    font-weight: 700;
}
.default-btn i {
    margin-right: 2px
}
.default-btn:hover {
    background-color: #f30a46;
    color: #fff;
    border-color: #f30a46
}
.default-btn-two {
    background-color: #f30a46;
    color: #fff;
    border: 1px solid #f30a46;
    padding: 11px 30px 12px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    font-weight: 700
}
.default-btn-two i {
    margin-right: 2px
}
.default-btn-two:hover {
    background-color: #22b663;
    color: #fff;
    border-color: #22b663
}
.main-banner {
    height: 700px;
    position: relative;
    z-index: 1
}
.main-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #00172f;
    opacity: 0.80;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.d-table {
    height: 100%;
    width: 100%
}
.d-table-cell {
    vertical-align: middle
}
.main-banner-content {
    text-align: center;
    margin-top: 70px
}
.main-banner-content h1 {
    font-size: 62px;
    margin: 0;
    line-height: 72px;
    font-family: "Roboto Condensed", serif;
    color: #fff;
}
.main-banner-content h3 {
    margin-bottom: 12px;
    font-size: 17px;
    font-family: "Roboto Condensed", serif;
    color: #f30a46;
}
.main-banner-content h3 a {
    color: #f30a46;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 2px;
    font-style: normal;
}
.text-content-30 {
    width: 30%;
    margin: 0 auto;
}
@media (max-width: 1198.98px) {
    .text-content-30 {
        width: 60%;
    }
}
img {
    max-width: 100%
}
.navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
    -webkit-box-shadow: 0 0 18px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 18px 1px rgba(0, 0, 0, .1);
    background-color: #fff !important;
    -webkit-animation: .5s ease-in-out 0s normal none 1 running fadeInDown;
    animation: .5s ease-in-out 0s normal none 1 running fadeInDown
}
.demo-area .container-fluid {
    padding-left: 45px;
    padding-right: 45px
}
.demo-area-wrapper {
    margin-top: -35px;
}
.single-demo {
    text-align: center;
    position: relative;
    -webkit-transition: .5s;
    transition: .5s;
    margin-bottom: 60px
}
.single-demo:hover {
    -webkit-box-shadow: 0 20px 8px rgba(0, 0, 0, .06);
    box-shadow: 0 20px 8px rgba(0, 0, 0, .06);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px)
}
.single-demo .image {
    -webkit-box-shadow: 0 22px 70px rgba(0, 0, 0, .13);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .13);
    position: relative
}
.single-demo .content-two {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    -webkit-transition: .5s;
    transition: .5s
}
.single-demo .content-two h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 400;
}
.single-demo .content-two h3 a {
    color: #000;
    padding: 20px 10px;
    -webkit-transition: .5s;
    transition: .5s;
    border-top: 1px solid #eee;
    font-style: normal;
}
.single-demo:hover .content-two h3 a {
    color: #fff;
    background: #f30a46;
    border-color: #f30a46;
}
.demo-area .section-title {
    margin-bottom: 60px;
    padding-top: 35px;
}
.features-area {
    background-color: #fafafa;
    padding: 100px 0 60px;
    margin-top: 40px;
}
.demo-area .section-title .title {
    font-size: 44px;
    margin-bottom: 10px;
}
@media (max-width: 1199px) {
    .demo-area .section-title .title {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    .demo-area .section-title .title {
        font-size: 32px;
    }
}
.single-features {
    text-align: center;
    background: #fff;
    margin-bottom: 40px;
    padding: 37px 15px 40px;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-box-shadow: 0 -2px 20px 0 rgba(0, 0, 0, .06);
    box-shadow: 0 -2px 20px 0 rgba(0, 0, 0, .06)
}
.single-features:hover {
    background: #fff;
    -webkit-box-shadow: 0 40px 44px 0 rgba(0, 0, 0, .06), 0 40px 44px 0 rgba(0, 0, 0, .06);
    box-shadow: 0 40px 44px 0 rgba(0, 0, 0, .06), 0 40px 44px 0 rgba(0, 0, 0, .06)
}
.single-features h3 {
    margin-bottom: 0;
    font-size: 18px;
    margin-top: 25px;
    text-transform: capitalize;
    font-style: normal;
}
.footer-area {
    background-color: #222;
    padding: 100px 0 45px;
}
.footer-content {
    text-align: center;
    margin: 0 auto;
    max-width: 750px
}
.footer-content h1 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1.3
}
.footer-content p {
    margin: 0 auto 30px;
    max-width: 585px;
    line-height: 1.9;
    color: #fff
}
.footer-content .copyright {
    margin-top: 55px
}
.footer-content .copyright span {
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    font-weight: 400;
}
.footer-content .copyright .img a {
    display: inline-block
}
.you-may-also-like {
    padding: 100px 0 70px
}
.you-may-also-like .section-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0
}
.you-may-also-like .section-title h2 {
    margin-left: 0;
    margin-right: 0
}
.single-slide-demo {
    position: relative
}
.single-slide-demo .link-btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2
}
.single-slide-demo .link-btn a i {
    display: none
}
.single-slide-demo .img {
    overflow: hidden
}
.single-slide-demo .img img {
    -webkit-transition: all 1.3s ease-out;
    transition: all 1.3s ease-out
}
.single-slide-demo .content {
    background: #fdf8f8;
    padding: 20px
}
.single-slide-demo .content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 28px
}
.single-slide-demo .content h3 a {
    text-decoration: none;
    color: #000
}
.single-slide-demo .content h3 a:hover {
    color: #222
}
.single-slide-demo:hover .img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}
.owl-theme .owl-nav {
    margin-top: 0;
    line-height: .01;
    position: absolute;
    right: 15%;
    top: -135px
}
.like-slides.owl-theme .owl-nav [class*=owl-] {
    margin: 0 5px;
    background: #f5f5f5;
    color: #000;
    padding: 0 !important;
    width: 55px;
    height: 55px;
    font-size: 25px;
    line-height: 59px;
    -ms-transition: .4s;
    outline: 0;
    border-radius: 50%;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    -webkit-transition: .4s;
    transition: .4s
}
    .like-slides.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #222;
    color: #fff
    }
    .red-color-text {
        color: #f30a46;
    }
@media only screen and (max-width:767px) {
    .navbar {
        padding-top: 5px;
        padding-left: 15px;
        padding-right: 15px
    }
    .navbar-light .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(228, 147, 32, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
    }
    .navbar-brand {
        font-size: 35px
    }
    .navbar-light .navbar-toggler {
        color: #222;
        border-color: #222;
        outline: 0 !important;
        border-radius: 0
    }
    .navbar-light .navbar-nav {
        background: #fff;
        padding: 15px 15px 10px;
        border: 1px solid #eee;
        border-bottom: none
    }
    .default-btn-two {
        margin-bottom: 12px
    }
    .navbar-nav .nav-item .nav-link {
        padding: 5px 10px
    }
    .navbar-light .others-options {
        background-color: #fff;
        border: 1px solid #eee;
        border-top: none;
        padding: 0 15px 15px
    }
    .main-banner {
        height: 470px;
        position: relative;
        z-index: -1
    }
    .main-banner-content h3 {
        margin-bottom: 15px;
        font-size: 16px
    }
    .main-banner-content h1 {
        font-size: 32px;
        margin: 0;
        font-weight: 700;
        line-height: 42px
    }

    .main-banner-content h1 br {
        display: none
    }
    .demo-area .container-fluid {
        padding-left: 15px;
        padding-right: 15px
    }
    .single-demo {
        margin-bottom: 40px
    }
    .single-demo .content .text h3 {
        font-size: 18px
    }
    .single-demo .content-two h3 {
        font-size: 17px
    }
    .features-area {
        padding: 55px 0 25px;
        margin-top: 25px
    }
    .section-title {
        margin-bottom: 50px
    }
    .section-title h2 {
        font-size: 30px
    }
    .section-title-bg {
        font-size: 55px
    }
    .section-title ul li {
        font-size: 12px;
        letter-spacing: 0
    }
    .single-features {
        margin-bottom: 30px;
        padding: 35px 15px 35px
    }
    .single-features h3 {
        font-size: 18px
    }
    .footer-area {
        padding: 65px 0 45px
    }
    .footer-content h1 {
        font-size: 26px;
        margin-bottom: 25px
    }
    .footer-content p {
        margin: 0 auto 25px;
        font-size: 15px
    }
    .you-may-also-like {
        padding: 55px 0
    }
    .owl-theme .owl-nav {
        margin-top: 30px;
        line-height: .01;
        position: relative;
        right: 0;
        top: 0
    }
    .like-slides.owl-theme .owl-nav [class*=owl-] {
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 41px
    }
    .single-slide-demo .content {
        padding: 20px 15px
    }
    .single-slide-demo .content h3 {
        font-size: 15px;
        line-height: 26px
    }
    .single-slide-demo .content h3 br {
        display: none
    }
    .demo-area .section-title {
        margin-bottom: 35px
    }
}
@media only screen and (min-width:768px) and (max-width:991px) {
    .navbar-light .navbar-toggler {
        color: #222;
        border-color: #222;
        outline: 0 !important;
        border-radius: 0
    }
    .navbar-light .navbar-nav {
        background: #fff;
        padding: 15px 15px 10px;
        border: 1px solid #eee;
        border-bottom: none
    }
    .navbar-nav .nav-item .nav-link {
        padding: 5px 10px
    }
    .navbar-light .others-options {
        background-color: #fff;
        border: 1px solid #eee;
        border-top: none;
        padding: 0 15px 15px
    }
    .navbar-light .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 72, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
    }
    .main-banner-content h1 {
        font-size: 2.15rem;
        line-height: 52px;
    }
    .main-banner-content h3 {
        font-size: 19px
    }
    .main-banner {
        height: 590px
    }
    .main-banner-content h1 br {
        display: none
    }
    .section-title-bg {
        font-size: 65px
    }
    .section-title h2 {
        font-size: 35px
    }
    .single-demo .content-two h3 {
        font-size: 20px
    }
    .section-title ul {
        margin: 10px 0 0
    }
    .section-title ul li {
        font-size: 14px
    }
    .single-features h3 {
        font-size: 18px
    }
    .section-title {
        margin-bottom: 55px
    }
    .footer-content p {
        margin: 0 auto 30px;
        font-size: 15px
    }
    .footer-content h1 {
        font-size: 35px;
        margin-bottom: 27px
    }
    .owl-theme .owl-nav {
        right: 10%;
        top: -105px
    }
    .you-may-also-like {
        padding: 80px 0 50px
    }
    .single-slide-demo .content h3 br {
        display: none
    }
}
@media only screen and (min-width:1650px) {
    .main-banner {
        height: 700px
    }
}