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

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

:root {
    --primary-color: #800e0e;
    --secondary-color: #5A0101;
    --third-color: #ee4266;
    --font-color: #707376;
    --bg-color: #fff;
    --heading-color: #181918;
    --primary-dark: #212529;
    --border-radius: 4px;
    --border-radius-full: 35px;
    --border-color: transparent;
    --border-color-light: #e4e6e5;
    --nav-color: #1b0f31;
    --dropdown-color: #fff;
    --box-shadow: 0 25px 90px 0 rgb(4 2 0 / 3%);
    --iframe-filter: grayscale(0%);
    --bg-grey: #edf3f0;
    --bg-lightgrey: #f1f3f8;
    --layer: rgb(0 0 0 / 10%);
    --footer-bg: #060500;
    --footer-bglight: #0e0e0e;
}

[data-theme="dark"] {
    --primary-color: #800e0e;
    --secondary-color: #5A0101;
    --third-color: #ee4266;
    --font-color: #c2c2c2;
    --bg-color: #131212;
    --heading-color: #eee;
    --border-color: rgba(255, 255, 255, 0.2);
    --border-color-light: rgba(255, 255, 255, 0.1);
    --nav-color: #fff;
    --dropdown-color: #121725;
    --box-shadow: 0 25px 98px 0 rgb(4 2 0 / 9%);
    --iframe-filter: grayscale(100%);
    --bg-grey: #0c0c0c;
    --bg-lightgrey: #131617;
    --layer: rgb(0 6 0 / 75%);
    --footer-bg: #000;
    --footer-bglight: #111;
}

.noscroll {
    overflow: hidden;
    height: 100vh;
}

html {
    scroll-behavior: smooth;
}

body,
html {
    margin: 0;
    padding: 0;
    background: var(--bg-color);
    color: var(--font-color);
    font-family: 'Kumbh Sans', sans-serif;
}

body a,
button,
.btn {
    cursor: pointer !important;
}

.clear {
    clear: both;
}

.img-responsive {
    max-width: 100%;
    display: block;
}

.d-grid {
    display: grid;
}

.align-self {
    align-self: center;
}

button,
input,
select,
label,
li,
span {
    -webkit-appearance: none;
    outline: none;
    font-family: 'Kumbh Sans', sans-serif;
}

a,
a:hover {
    text-decoration: none;
}

iframe {
    border: none;
    display: block;
}

ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    color: var(--heading-color);
}

p {
    margin: 0;
    padding: 0;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--font-color);
    font-family: 'Kumbh Sans', sans-serif;
}

li {
    list-style-type: none;
}

p.white {
    color: #eee;
}

.align-center {
    align-self: center;
}

.noscroll {
    min-height: 100vh;
    overflow: hidden;
}

.radius-image {
    border-radius: var(--border-radius);
}

.radius-image-full {
    border-radius: var(--border-radius-full);
}

/*-- container --*/
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}

/*-- //container --*/
.btn-style {
    padding: 18px 16px;
    font-size: 17px;
    line-height: 16px;
    font-weight: 600;
    transition: 0.3s ease-in;
    border-radius: var(--border-radius);
    text-transform: capitalize;
}

.btn-white {
    color: #1b1704;
    background: #fff;
    border: 1px solid #fff;
}

.btn-style1 {
    padding: 8px 35px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
    transition: 0.3s ease-in;
    color: var(--heading-color);
    border-radius: var(--border-radius);
}

.transparant-btn {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
}

.transparant-btn:hover,
.btn-white:hover {
    color: #fff;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.transparant-btn:focus {
    box-shadow: none;
}

.title-w3l,
.title-w3l.two {
    font-size: 36px;
    line-height: 2.6em;
    font-weight: 400;
    text-transform: capitalize;
}

.title-w3l span.thin {
    font-weight: 300;
    font-size: 38px;
    line-height: 2.7em;
    color: var(--heading-color);
}

.title-w3l.two {
    color: #fff;
}

.title-subw3hny {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1.4em;
    color: var(--third-color);
}

a.read {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--heading-color);
    opacity: .8;
}

a.read:hover {
    color: var(--primary-color);
}

a.read span.fa,
a.read span.fas {
    font-size: 15px;
    transition: 0.3s ease-in;
    font-weight: 700;
    vertical-align: 0px;
}

a.read:hover span.fa,
a.read:hover span.fas {
    transform: translateX(4px);
    transition: 0.3s ease-in;
}

@media (max-width: 1280px) {
    .btn-style {
        padding: 18px 34px;
    }
}

@media (max-width: 1080px) {
    .btn-style {
        padding: 18px 32px;
    }
}

@media (max-width: 568px) {
    .btn-style {
        padding: 16px 30px;
    }
}

@media (max-width:480px) {
    .btn-style {
        padding: 14px 28px;
    }
}

@media (max-width: 375px) {
    p {
        font-size: 16px;
        line-height: 26px;
    }
}

/*-- dark and light mode styling --*/
.mode-container {
    width: 24px;
    height: 24px;
    padding: 1px 0;
}

.gg-sun {
    position: relative;
    transform: scale(var(--ggs, 1));
    height: 24px;
    background: linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat 5px -6px/2px 6px, linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat 5px 14px/2px 6px, linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat -8px 5px/6px 2px, linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat 14px 5px/6px 2px;
    border-radius: 100px;
    box-shadow: inset 0 0 0 2px;
    border: 6px solid transparent;
}

.gg-moon {
    overflow: hidden;
    position: relative;
    transform: rotate(-135deg) scale(var(--ggs, 1));
    width: 20px;
    height: 20px;
    border: 2px solid;
    border-bottom: 2px solid transparent;
}

.gg-moon,
.gg-moon:after {
    display: block;
    box-sizing: border-box;
    border-radius: 50%;
    color: #fff;
}

.nav-fixed .gg-moon,
.nav-fixed .gg-moon:after {
    display: block;
    box-sizing: border-box;
    border-radius: 50%;
    color: #fff;
}

.gg-moon:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 18px;
    border: 2px solid transparent;
    box-shadow: 0 0 0 2px;
    top: 8px;
    left: 2px;
}

.gg-sun,
.gg-sun:after,
.gg-sun:before {
    box-sizing: border-box;
    display: block;
    width: 24px;
    color: #eee;
}

.gg-sun:after,
.gg-sun:before {
    content: "";
    position: absolute;
    height: 2px;
    border-right: 4px solid;
    border-left: 4px solid;
    left: -6px;
    top: 5px;
}

.gg-sun:before {
    transform: rotate(-45deg);
}

.gg-sun:after {
    transform: rotate(45deg);
}

.mode-container i.gg-sun {
    display: none;
}

.mode-container i.gg-moon {
    display: block;
}

input:checked+.mode-container i.gg-sun {
    display: block;
}

input:checked+.mode-container i.gg-moon {
    display: none;
}

/*--//Light-and-Drak-Mode--*/
/*---/Header-Style--*/
/* header */
header {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 0;
    transition: all 0.4s ease 0s;
    display: grid;
    align-items: center;
    /* box-shadow: 0 3px 9px rgba(0, 0, 0, 0.05); */
    box-shadow: none;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

header.nav-fixed {
    padding: 0;
    background-color: var(--bg-color);
    border-bottom: none;
    box-shadow: var(--box-shadow);
    z-index: 999 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* for z-index:10 to display gallery popup */
}

.navbar .navbar-brand {
    margin: 0;
    padding: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

span.w3yellow {
    color: var(--primary-color);
}

.navbar .navbar-brand i {
    font-weight: 900;
    color: var(--primary-color);
}

.navbar h1 {
    line-height: 0;
}

.navbar .navbar-brand img {
    transition: all 0.5s ease;
}

.navbar-nav .nav-item {
    padding: 0 12px;
    transition: all 0.5s ease;
    position: relative;
}

.navbar-expand-lg .navbar-nav .show>.nav-link,
.navbar-expand-lg .navbar-nav .active>.nav-link,
.navbar-expand-lg .navbar-nav .nav-link.show,
.navbar-expand-lg .navbar-nav .nav-link.active,
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link:focus {
    color: var(--primary-color);
}

.navbar-expand-xl .navbar-nav .show>.nav-link,
.navbar-expand-xl .navbar-nav .active>.nav-link,
.navbar-expand-xl .navbar-nav .nav-link.show,
.navbar-expand-xl .navbar-nav .nav-link.active,
.navbar-expand-xl .navbar-nav .nav-link:hover,
.navbar-expand-xl .navbar-nav .nav-link:focus {
    color: var(--primary-color);
}

nav ul li a,
nav ul li a:after,
nav ul li a:before {
    transition: all .5s;
}

.navbar-expand-xl .navbar-nav .nav-link,
.navbar-expand-lg .navbar-nav .nav-link {
    transition: all 0.5s ease;
    padding: 26px 3px 20px 3px;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: capitalize;
}

a.nav-link:before,
a.dropdown-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

a.dropdown-item {
    font-weight: 400;
    font-size: 1em;
    position: relative;
    color: var(--heading-color);
    padding-top: 0;
    display: block;
    width: 100%;
    padding: 10px 10px;
}

a.dropdown-item:hover {
    color: var(--primary-color);
    background: none;
}

a.dropdown-item.active {
    background: transparent;
    color: var(--primary-color);
}

.navbar-expand-xl .navbar-nav .dropdown-menu,
.navbar-expand-lg .navbar-nav .dropdown-menu {
    transform: translateX(-30px);
    background: var(--bg-color);
    border: 1px solid var(--border-color-light);
}

.navbar-expand-xl .navbar-nav .dropdown-menu:before,
.navbar-expand-lg .navbar-nav .dropdown-menu:before {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--bg-color);
    border: 1px solid var(--border-color-light);
    display: block;
    border-right: none;
    border-bottom: none;
    transform: translateX(-50%) rotateZ(45deg);
    position: absolute;
    top: -7px;
    left: 49%;
    z-index: 1001;
}

.dropdown-toggle::after {
    display: none;
}

/*--/search--*/
.navbar a.btn.search-btn {
    padding: 22px 0;
    color: #fff;
    margin-left: 20px;
    font-size: 18px;
}

.navbar a.btn.search-btn:hover {
    box-shadow: none;
}

.navbar .search-right .popup form input[type="search"] {
    font-size: 18px;
    color: var(--heading-color);
    border: none;
    background: transparent;
    padding: 18px 50px 18px 0px;
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #fff;
}

.navbar .search-right .popup form button {
    position: absolute;
    color: #fff;
    right: 0;
    padding: 18px 0 18px 0px;
    font-size: 20px;
}

.navbar .search-right .popup form button:hover {
    background: transparent;
    color: var(--primary-color);
    outline: none;
    border: none;
    font-size: 20px;
    box-shadow: none;
}

.navbar .search-right .popup form input:focus {
    outline: none;
    border-bottom: 2px solid var(--primary-color);
    background: transparent;
}

.navbar .search-right .pop-overlay {
    position: fixed;
    top: 0px;
    top: 0px;
    /* left: 0; */
    right: 0;
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    background: rgb(0 0 0 / 90%);
    box-shadow: 1px 1px 4px 0 rgb(0 0 0 / 85%);
    height: 100vh;
    width: 100%;
}

.navbar .search-right .pop-overlay:target {
    visibility: visible;
    opacity: 1;
}

.navbar .search-right .popup {
    margin: 0rem auto;
    padding: 40px 50px;
    max-width: 1000px;
    border-radius: 0px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.navbar .search-right .search-top {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    grid-gap: 30px;
    margin-top: 24px;
}

.navbar ul.social-icons-top {
    justify-content: center;
}

.navbar .search-right .popup h3 {
    font-size: 28px !important;
    line-height: 48px;
    font-weight: 600;
    text-align: left;
    color: #fff;
    margin-bottom: 2em;
}

.navbar .search-right .title-side {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: var(--heading-color);
}

.navbar .search-right .search-top li a:hover {
    color: #fff;
}

.navbar .search-right .close {
    position: absolute;
    top: 60px;
    right: 60px;
    transition: all 200ms;
    font-size: 52px;
    text-decoration: none;
    color: #fff;
    opacity: 1;
    background: none;
}

.navbar .search-right .close:hover {
    color: var(--primary-color);
    background: none;
}

/*--//search--
@media (max-width:991px) {
    .navbar-expand-lg .navbar-nav .nav-item {
        padding: 0;
    }
    .navbar a.btn.search-btn {
        padding: 0;
        margin-left: 0px;
        color: var(--primary-color);
        font-size: 18px;
    }
}*/
@media (max-width:600px) {
    .navbar .search-right .popup {
        margin: 0rem auto;
        padding: 20px 20px;
        max-width: 500px;
    }

    .navbar ul.social-icons-top a span {
        margin-right: 4px;
    }
}

@media (max-width: 415px) {}

/*--//serach--*/
.nav-fixed .navbar-nav .nav-link {
    color: var(--heading-color);
    opacity: 0.8;
}

.nav-fixed .navbar-brand {
    color: var(--heading-color);
}

.nav-fixed .navbar-nav a.btn.search-btn {
    color: var(--primary-color);
}

.nav-fixed .gg-moon,
.nav-fixed .gg-moon:after {
    color: var(--heading-color);
}



@media only screen and (max-width: 480px) {
    .navbar .navbar-brand {
        font-size: 30px;
    }

    .w3l-formhny {
        max-width: 300px;
        margin: 0 auto;
    }
}

/*---//Header-Style--*/
/*---/Banner-Style--*/
/*--/slider--*/
/*--/banner--*/
.w3l-main-slider li {
    list-style-type: none;
}

.w3l-main-slider .banner-slider {
    position: relative;
    z-index: 1;
}

.w3l-main-slider .slider-info a img {
    transition: 0.3s ease-in;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -ms-transition: 0.3s ease-in;
}

.w3l-main-slider .companies20-content {
    position: relative;
}

.w3l-main-slider .banner-view {
    background: url(../images/banner-06.jpg) no-repeat center;
    z-index: 99;
    position: relative;
    display: block;
    background-size: cover;
}

.w3l-main-slider .banner-top2 {
    background: url(../images/banner-01.jpg) no-repeat center;
    background-size: cover;
}

.w3l-main-slider .banner-top3 {
    background: url(../images/banner-02.jpg) no-repeat center;
    background-size: cover;
}

.w3l-main-slider .banner-top4 {
    background: url(../images/banner-03.jpg) no-repeat center;
    background-size: cover;
}

.w3l-main-slider .banner-top5 {
    background: url(../images/banner-05.jpg) no-repeat center;
    background-size: cover;
}

.w3l-main-slider .banner-view:before {
    content: "";
    background: var(--layer);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.w3l-main-slider .header-hero-19 {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.w3l-main-slider h3.title-hero-19 {
    color: #fff;
    font-size: 70px;
    text-transform: capitalize;
    font-weight: 700;
    border: none;
    text-shadow: rgb(0 0 0) 0px 0px 0px;
    line-height: 80px;
}

.w3l-main-slider h5 {
    color: #fff;
    font-size: 13px;
    line-height: 28px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

a.btn.btn-style.btn-banner {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid #fff;
}

a.btn.btn-style.btn-banner:hover {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
}

@media (max-width: 1280px) {
    .w3l-main-slider h3.title-hero-19 {
        font-size: 76px;
        line-height: 86px;
    }

    button.owl-prev {
        left: 40%;
    }

    button.owl-next {
        right: 40%;
    }
}

@media (max-width: 1080px) {
    .w3l-main-slider h3.title-hero-19 {
        font-size: 70px;
        line-height: 80px;
    }

    button.owl-prev {
        left: 38%;
    }

    button.owl-next {
        right: 38%;
    }
}

@media (max-width: 1050px) {}

@media (max-width: 1024px) {
    .w3l-main-slider h3.title-hero-19 {
        font-size: 60px;
        line-height: 70px;
    }
}

@media (max-width: 992px) {
    .banner-w3l-media-title {
        padding: 40px 40px;
    }

    .banner-w3l-media-sec {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        position: static;
        right: 0px;
        bottom: 0px;
    }
}

@media (max-width: 800px) {

    .w3l-main-slider .inner-banner,
    .w3l-main-slider .inner-layer {
        min-height: 200px;
    }
}

@media (max-width: 736px) {
    .w3l-main-slider ul.nav-links li a.link-nav {
        display: block;
    }
}

@media (max-width: 667px) {
    .w3l-main-slider .mai-hero-19 {
        grid-gap: 10px;
    }
}

@media (max-width: 600px) {
    .w3l-main-slider h3.title-hero-19 {
        font-size: 44px;
        line-height: 54px;
        margin: 10px 0 10px;
    }
}

@media (max-width: 480px) {}

@media (max-width: 440px) {
    .w3l-main-slider h3.title-hero-19 {
        font-size: 38px;
        line-height: 48px;
        margin: 10px 0 10px;
    }
}

@media (max-width: 387px) {}

@media (max-width: 320px) {
    .w3l-main-slider .banner h3 {
        font-size: 34px;
        line-height: 44px;
    }
}

@media (max-width:667px) {}

/*--//owl-slider--*/
/*--/video--*/
.w3l-index5 {

    -ms-background-size: cover;
    background-size: cover;
    z-index: 0;
    position: relative;
    display: grid;
    align-items: center;
    background-size: cover;
    z-index: 0;
    position: relative;
    border-radius: var(--border-radius);
}

.w3l-index5::before {
    content: "";
    background: var(--layer);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    border-radius: var(--border-radius);
}

.abpagecontent-1-info {
    max-width: 800px;
    margin-right: 0;
}

.w3l-index5 .middle-section h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
}

.w3l-index5 p,
p.vhny-para {
    color: #fff;
    opacity: 0.8;
}

.w3l-index5 span.video-play-icon {
    border: transparent;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: inline-block;
    /* margin-top: 10px; */
    line-height: 82px;
}

.w3l-index5 span.video-play-icon span {
    color: var(--primary-color);
    background: #fff;
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.w3l-index5 span.video-play-icon span:hover {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.w3l-index5 span.fa.fa-play {
    line-height: 55px;
}

.w3l-index5 .play-view {
    left: 0;
    right: 0;
    top: calc(50% - 40px);
}

@media (max-width: 800px) {
    .w3l-index5 .middle-section h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .w3l-clients .logos img {
        margin: 0 0px;
        opacity: 0.9;
    }
}

@media (max-width: 667px) {
    .w3l-index5 .middle-section h2 {
        font-size: 32px !important;
        line-height: 42px;
    }

    #small-dialog,
    #small-dialog1 {
        max-width: 450px;
        margin: 40px auto;
        position: relative;
    }
}

@-webkit-keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 25%), 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%);
    }

    100% {
        box-shadow: 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%), 0 0 0 40px rgba(50, 100, 245, 0);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 25%), 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%);
    }

    100% {
        box-shadow: 0 0 0 10px rgb(255 255 255 / 25%), 0 0 0 20px rgb(255 255 255 / 25%), 0 0 0 40px rgba(50, 100, 245, 0);
    }
}

/*-- //play icon animation --*/


.fadeIn-bottom {
    top: 80%;
}

.fadeIn-top {
    top: 20%;
}

.fadeIn-left {
    left: 20%;
}

.fadeIn-right {
    left: 80%;
}

/*-- play icon animation --*/
/*-- //play icon animation --*/
/*--//video--*/
/*--//w3l-main-slider--*/
/*--/w3l-project--*/
.w3l-3-grids {
    background: var(--bg-color);
}

.w3l-3-grids a.zoom {
    overflow: hidden;
    border-radius: 0;
}

.w3l-3-grids a.zoom img {
    transition: 0.3s ease-in-out;
}

.w3l-3-grids .grids3-info:hover img {
    overflow: hidden;
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.w3l-3-grids img.news-image {
    border-radius: 0;
}

.w3l-3-grids .w3-grids3-info {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: grid;
    align-content: center;
    overflow: hidden;
    padding: 3em;
    background-color: rgb(0 0 0 / 35%);
}

.w3l-3-grids .w3-grids3-info.second {
    background-color: rgb(0 0 0 / 35%);
}

.w3l-3-grids .w3-grids3-info h6 a {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    display: block;
    color: #fff;
    margin-bottom: 14px;
    opacity: 0.8;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.w3l-3-grids .w3-grids3-info h4 a {
    font-size: 26px;
    line-height: 38px;
    font-weight: 700;
    display: block;
    color: #fff;
}

.w3l-3-grids h4.gdnhy-1 {
    display: grid;
    align-items: center;
    grid-template-columns: 4fr 1fr;
    grid-gap: 10px;
}

.w3l-3-grids a.w3item-link i {
    width: 50px;
    height: 50px;
    color: #fff;
    background: transparent;
    line-height: 50px;
    transition: 0.3s ease;
    border-radius: 50%;
    border: 1px solid #fff;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.w3l-3-grids .grids3-info:hover a.w3item-link i {
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/*--/w3l-3-grids--*/
/*--/features--*/
.w3l-features {
    background: var(--bg-grey);
}

.title-content {
    margin: 0 auto;
}

.w3l-features .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--bg-color);
    margin: 0 auto;
    display: block;
}

.main-cont-wthree-2,
.w3l-faq-block {
    margin: auto;
}

.w3l-features .grids-1.box-wrap {
    padding: 0 20px;
}

.w3l-features .grids-1.box-wrap:hover .icon {
    background-color: var(--primary-color);
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.w3l-features .icon i {
    font-size: 32px;
    color: var(--primary-color);
    line-height: 100px;
}

.w3l-features .grids-1.box-wrap:hover .icon i {
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    color: #fff;
}

.w3l-features .box-wrap img {
    max-width: 65px;
    display: block;
    margin: 0 auto;
}

.w3l-features .box-wrap h4 a {
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    margin-top: 25px;
    display: block;
    color: var(--heading-color);
}

.w3l-features .box-wrap h4 a:hover {
    color: var(--primary-color);
}

ul.icon-list-items li {
    list-style: none;
    display: block;
    /* margin-right: 12px; */
    color: var(--font-color);
    font-size: 18px;
}

ul.icon-list-items li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 4px;
}

@media (max-width: 1280px) {
    .grids-1.box-wrap.serhny-gd {
        padding: 40px 20px;
    }
}

@media (max-width: 1080px) {}

@media (max-width: 992px) {}

@media (max-width: 800px) {}

/*--//features--*/
@media (max-width: 1080px) {}

@media (max-width: 736px) {}

@media (max-width: 736px) {}

@media (max-width: 415px) {
    .w3l-aboutblock1 h4 a.title-head {
        margin-bottom: 10px;
        font-size: 20px;
    }
}

/*--/services--*/
.w3l-services-2 {
    background: var(--bg-grey);
}

.serve-title-header {
    max-width: 900px;
}

.grids-of-5 .blog-info {
    padding: 24px 24px;
}

.grids-of-5 .grids5-info h4 a {
    font-size: 20px;
    line-height: 28px;
    color: var(--heading-color);
    display: block;
    font-weight: 700;
    transition: .3s;
}

.grids-of-5 .grids5-info:hover a {
    color: var(--primary-color);
}

/*--/w3-grids-3--*/
.w3l-services-6 {
    background: var(--bg-color);
    position: relative;
    z-index: 1;
}

.w3l-services-6 .area-box {
    background-color: var(--bg-grey);
    padding: 50px 40px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    border: 1px solid var(--border-color-light);
}

.w3l-services-6 .area-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
}

.w3l-services-6 .area-box-feature {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-gap: 25px;
}

.w3l-services-6 .grids-feature span {
    color: #fff;
    font-size: 30px;
    line-height: 80px;
    text-align: center;
    display: block;
}

.w3l-services-6 h4 a.title-head {
    margin-top: 25px;
    display: block;
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    font-size: 20px;
}

.w3l-services-6 h4 a.title-head:hover {
    color: var(--primary-color);
}

.w3l-services-6 .area-box:hover {
    transition: .3s;
    background: var(--primary-color);
}

.w3l-services-6 .area-box:hover .area-icon {
    transition: .3s;
    background: var(--bg-color);
}

.w3l-services-6 .area-box:hover span {
    color: var(--primary-color);
}

.w3l-services-6 .area-box:hover p {
    color: #fff;
    opacity: 0.8;
}

.w3l-services-6 p {
    display: inline-block;
}

@media (max-width: 1080px) {
    .w3l-services-6 .area-box {
        padding: 50px 40px;
    }
}

@media (max-width: 991px) {}

@media (max-width: 480px) {
    .w3l-services-6 h4 a.title-head {
        margin-top: 20px;
    }

    .w3l-services-6 h4 a.title-head {
        font-size: 22px;
    }
}

@media (max-width: 415px) {
    .w3l-services-6 .area-box {
        padding: 40px 30px;
    }

    .w3l-services-6 a.more {
        margin-top: 20px;
    }

    .w3l-services-6 .area-box-feature {
        grid-template-columns: 35px 1fr;
        grid-gap: 15px;
    }

    .w3l-services-6 .grids-feature span.fa {
        font-size: 35px;
    }

    .w3l-services-6 h4 a.title-head {
        font-size: 20px;
    }
}

/*--//w3-grids-3--*/
/*--//services--*/
/*--/Counts--*/
.w3lcounts {
    padding-top: 80px;
}

.w3lcounts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 35px rgb(0 0 0 / 6%);
    border-radius: 4px;
    background: var(--bg-color);
    border: 1px solid var(--border-color-light);
}

.w3lcounts .count-box i {
    position: absolute;
    width: 54px;
    height: 54px;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    border: 2px solid #fff;
    box-shadow: 0px 2px 25px rgb(0 0 0 / 10%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.w3lcounts .count-box p.counter {
    font-size: 36px;
    display: block;
    font-weight: 700;
    color: var(--heading-color);
    margin: 20px 0 14px 0;
}

.w3lcounts .count-box p {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

/*--//Counts--*/
/*--/w3l-services--*/
/*--/w3l-services--*/
/*--/Our--Team--*/
.w3lteam {
    position: relative;
}

.w3lteam .member {
    margin-bottom: 80px;
    position: relative;
}

.w3lteam .member .pic {
    overflow: hidden;
}

.w3lteam .member .member-info {
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    background: var(--bg-color);
    padding: 20px 15px;
    color: var(--heading-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.5s;
    border-radius: var(--border-radius);
}

.w3lteam .member h4 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--heading-color);
    position: relative;
}

.w3lteam .member span {
    display: block;
    font-size: 14px;
}

.w3lteam .member .social {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.w3lteam .member .social a {
    transition: color 0.3s;
    color: var(--primary-color);
    display: inline-block;
}

.w3lteam .member .social a:hover {
    color: var(--secondary-color);
}

.w3lteam .member .social span {
    font-size: 16px;
    margin: 0 4px;
}

@media (max-width: 992px) {
    .w3lteam .member {
        margin-bottom: 110px;
    }
}

/*--//Our--Team--*/
/*--/about--*/
/*--//about--*/
/*--Elements--*/
pre {
    color: #666;
}

.bootstrap-components .bd-example {
    position: relative;
    padding: 40px 30px;
    border: 1px solid var(--border-color-light);
    border-radius: 4px 4px 0px 0px;
}

.code {
    background: var(--bg-grey);
    padding: 40px 30px;
    border-radius: 0px 0px 4px 4px;
}

.components-info {
    padding: 0;
}

.bootstrap-components .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: var(--bg-grey);
    background-clip: border-box;
    border: 1px solid var(--border-color-light);
    border-radius: 0.25rem;
}

.na {
    color: var(--font-color);
}

.s {
    color: var(--font-color);
}

.c {
    color: var(--font-color);
}

.bootstrap-components .h1,
.bootstrap-components .h2,
.bootstrap-components .h3,
.bootstrap-components .h4,
.bootstrap-components .h5,
.bootstrap-components .h6,
.bootstrap-components h1,
.bootstrap-components h2,
.bootstrap-components h3,
.bootstrap-components h4,
.bootstrap-components h5,
.bootstrap-components h6 {
    font-weight: 700;
    color: var(--heading-color);
}

.bootstrap-components .bd-example-row .row>.col,
.bootstrap-component .bd-example-row .row>[class^="col-"] {
    padding-top: .75rem;
    padding-bottom: .75rem;
    background-color: var(--bg-grey);
    border: 1px solid var(--border-color-light);
}

.bootstrap-components h6.title-subw3hny {
    color: var(--primary-color);
    margin: 0 auto !important;
    text-align: center !important;
}

.bootstrap-components .bd-placeholder-img-lg {
    font-size: 2rem;
}

/*--//Elements--*/
/*--/Error-Page--*/
.w3layouts-errorhny {
    height: 100vh;
    background: var(--bg-color);
    display: grid;
    align-items: center;
}

.w3l-error-grid {
    display: grid;
    align-items: center;
}

.w3l-error-grid h1 {
    font-weight: 700;
    font-size: 150px;
    color: var(--heading-color);
    letter-spacing: 5px;
    line-height: 160px;
}

.w3l-error-grid h1 span {
    color: var(--primary-color);
}

.w3l-error-grid h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

@media all and (max-width: 992px) {
    .w3l-error-grid h1 {
        font-size: 100px;
    }
}

@media all and (max-width:600px) {
    .w3l-error-grid h1 {
        font-size: 80px;
    }

    .w3l-error-grid .form-inline.search-form {
        position: relative;
        max-width: 400px;
        margin: auto;
        display: block !important;
    }

    .w3l-error-grid .form-control {
        width: 100%;
        display: block;
    }

    .w3l-error-grid button.btn.search {
        position: static;
        margin-top: 16px;
        width: 100%;
        display: block;
    }

    .w3l-error-grid h2 {
        font-size: 22px;
    }
}

@media all and (max-width:480px) {
    .w3l-error-grid h2 {
        font-size: 20px;
    }
}

@media all and (max-width: 384px) {
    .w3l-error-grid button.btn.search {
        position: relative;
        width: 100%;
        margin-top: 10px;
    }
}

/*--//error--*/
/*--/gallery--*/
ul.gallery_agile {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    grid-gap: 20px;
}

ul.gallery_agile li {
    list-style: none;
}

/*-- portfolio --*/
.w3_agile_portfolio_grid {
    overflow: hidden;
    position: relative;
}

.portfolio .portfolio-item img {
    position: relative;
    top: 0;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.w3_agile_portfolio_grid .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: -50px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: var(--third-color);
    padding: 20px 20px;
    border-radius: 4px;
}

.w3_agile_portfolio_grid .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.w3_agile_portfolio_grid .portfolio-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.w3_agile_portfolio_grid .portfolio-info .preview-link,
.w3_agile_portfolio_grid .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 20px;
    top: calc(50% - 10px);
    color: white;
    transition: ease-in-out 0.3s;
}

.w3_agile_portfolio_grid .portfolio-info .preview-link:hover,
.w3_agile_portfolio_grid .portfolio-info .details-link:hover {
    opacity: 0.8;
}

.w3_agile_portfolio_grid .portfolio-info .details-link {
    right: 15px;
}

.w3_agile_portfolio_grid:hover img {
    top: -30px;
}

.w3_agile_portfolio_grid:hover .portfolio-info {
    opacity: 1;
    bottom: 15px;
}

@media (max-width: 991px) {
    ul.gallery_agile {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media all and (max-width: 767px) {
    ul.gallery_agile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        grid-gap: 20px;
    }

    .wthree_text h3 {
        font-size: 20px;
    }
}

@media (max-width: 415px) {
    ul.gallery_agile {
        grid-template-columns: 1fr;
    }
}

#Choco_overlay {
    background: #0a0a0a !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: none;
    padding: 0;
    margin: 0;
}

#Choco_content {
    display: none;
    width: 800px;
    height: 600px;
    z-index: 1001;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -400px;
    margin-top: -300px;
    border-top: 1px solid transparent;
    /*Yes, adjust image perfectly at the center of a box, don't know why.*/
}

#Choco_left_arrow {
    float: left;
    background-image: url(../images/left.png) !important;
    background-position: 12%;
    left: -20%;
}

#Choco_right_arrow {
    float: right;
    background-image: url(../images/right.png) !important;
    background-position: 88%;
    left: 20%;
}

.Choco_arrows {
    background-repeat: no-repeat;
    display: none;
    position: relative;
    cursor: pointer;
    width: 49%;
    top: -100%;
    height: 100%;
    margin-top: -30px;
}

#Choco_container_photo {
    text-align: center;
    width: 800px;
    height: 600px;
    /*background:url(../images/ajax-loader.gif) center center no-repeat;*/
}

#Choco_container_description {
    padding: 0;
    height: 26px;
    width: 100%;
    color: #FFFFFF;
    font-family: Tahoma;
    clear: both;
    position: relative;
    font-size: 12px;
    margin-top: -5px;
    overflow: hidden;
    visibility: hidden;
}

#Choco_container_title {
    float: left;
    padding: 5px;
}

#Choco_container_via {
    padding: 5px;
    float: right;
}

#Choco_container_via a {
    color: gray;
}

#Choco_container_via a:hover {
    color: white;
    background: gray;
}

#Choco_close {
    width: 32px;
    height: 32px;
    background-image: url(../images/close.png) !important;
    background-repeat: no-repeat;
    z-index: 1002;
    cursor: pointer;
    margin: 0px 0px 15px 0px;
    display: none;
}

#Choco_loading {
    width: 9px;
    height: 11px;
    background-image: url(../images/loading.gif);
    background-repeat: no-repeat;
    z-index: 1002;
    cursor: pointer;
    float: right;
    margin-top: -20px;
    display: none;
}

#Choco_bigImage {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: -5px;
}

/*--//gallery--*/
/*--/inner-banner--*/
.inner-banner {
    background: url(../images/banner4.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    z-index: 0;
}

.inner-banner:before {
    content: "";
    background: var(--layer);
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
}

.w3breadcrumb-gids {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 30px;
    align-items: center;
    padding-top: 4em;
}

.w3breadcrumb-right {
    text-align: right;
}

h2.inner-w3-title {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
}

.inner-banner p.inner-page-para {
    color: #fff;
    opacity: 0.7;
}

.breadcrumbs-custom-path {
    text-align: center;
    display: inline-block;
}

.breadcrumbs-custom-path li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}

.breadcrumbs-custom-path li span {
    font-size: 12px;
}

.breadcrumbs-custom-path a,
.breadcrumbs-custom-path a:active,
.breadcrumbs-custom-path a:focus {
    color: var(--third-color);
    opacity: 0.9;
}

.breadcrumbs-custom-path a:hover {
    color: var(--secondary-color);
}

.breadcrumbs-custom-path li.active {
    color: #fff;
}

p.abinfo-para {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width:992px) {
    .w3breadcrumb-gids {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        align-items: center;
        padding-top: 3em;
    }

    .w3breadcrumb-right {
        text-align: left;
    }
}

@media (max-width:667px) {
    h2.inner-w3-title {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (max-width:600px) {
    h2.inner-w3-title {
        font-size: 28px;
        line-height: 38px;
    }
}

/*--//inner-banner--*/
/*--/blog-grids--*/
.bloghome {
    background: var(--bg-grey);
}

.w3l-blog a.zoom {
    overflow: hidden;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.w3l-blog .card {
    border: none;
    background: none;
    box-shadow: 0 25px 98px 0 rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color-light);
}

.w3l-blog .card-body.blog-details {
    padding: 2em 2em 0em 2em;
}

.w3l-blogpost-content .card,
.w3l-blogpost-content .card-header {
    border: none;
    background-color: var(--bg-color);
    box-shadow: rgb(1 1 1 / 5%) 1px 1px 5px 0px;
    border-radius: var(--border-radius-full);
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.w3l-blogpost-content .card:hover {
    transform: translateY(-0.25rem);
    box-shadow: rgb(46 41 51 / 8%) 0px 2px 4px, rgb(71 63 79 / 16%) 0px 5px 10px;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.w3l-blog a.zoom img {
    transition: 0.3s ease-in-out;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.w3l-blog .card:hover img {
    overflow: hidden;
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.w3l-blog .card:hover .author img {
    transform: inherit;
}

.w3l-blog a.post-author {
    overflow: hidden;
    border-radius: 50%;
    display: block;
    width: 40px;
    height: 40px;
}

.w3l-blog .card-header {
    border: none;
}

.w3l-blog .card-footer {
    background: var(--bg-color);
    border-top: none;
    padding: 1em 2em 2em 2em;
    border-radius: 0px 0px 4px 4px;
}

.w3l-blog .course-details {
    position: relative;
    padding: 30px;
    background: var(--bg-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid var(--border-color);
}

.w3l-blog span.meta-value {
    color: var(--font-color);
    font-size: 15px;
    font-weight: 700;
    opacity: .6;
}

.meta-item {
    margin-right: 25px;
    display: inline-block;
}

.meta-item:last-child {
    margin-right: 0px;
}

.w3l-blog a.blog-desc {
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 10px;
}

.w3l-blog a.blog-desc:hover {
    color: var(--primary-color);
}

.w3l-blog .course-title a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.w3l-blog .price-review p {
    font-weight: 400;
    font-size: 17px;
    color: #999;
}

.w3l-blog .price-review span {
    text-transform: uppercase;
    line-height: 1.4;
    color: #8c89a2;
    font-size: 15px;
    font-weight: 700;
}

.w3l-blog .course-price-view {
    background: var(--theme-light);
}

.w3l-blog ul.blog-list li {
    list-style-type: none;
    display: inline-block;
    margin-right: 15px;
}

.w3l-blog ul.blog-list a {
    margin: 0;
    font-size: 14px;
    color: var(--font-color);
    line-height: 25px;
}

.w3l-blog ul.blog-list span.fa {
    color: var(--font-color);
}

@media only screen and (max-width: 375px) {
    .w3l-blog a.blog-desc {
        font-size: 18px;
        line-height: 26px;
    }

    .w3l-blog p.sample a {
        font-size: 16px;
    }
}

.card-footer {
    background: var(--bg-color);
    border-top: 1px solid var(--border-color-light);
}

.author {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    grid-gap: 10px;
}

ul.blog-meta li {
    display: inline-block;
}

.blog-meta li a {
    font-size: 16px;
    color: var(--heading-color);
    font-weight: 700;
    line-height: 26px;
}

.blog-meta li a:hover {
    color: var(--primary-color);
}

.date p {
    font-size: 15px;
}

.post-img-anchor {
    width: 36px;
    height: 36px;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
}

/*--//blog-grids--*/
/*--/blog-page--*/
ul.page-pagination li {
    display: inline-block;
}

ul.page-pagination li span.current {
    display: block;
    padding: 10px 18px;
    color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 700;
    background: var(--primary-color);
    transition: background-color .15s linear, color .15s linear;
    box-shadow: 0 25px 98px 0 rgba(19, 19, 19, 0.03);
}

ul.page-pagination li a.page-numbers,
ul.page-pagination li a.next {
    display: block;
    padding: 10px 18px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius);
    font-weight: 700;
    color: var(--font-color);
    transition: background-color .15s linear, color .15s linear;
    box-shadow: 0 25px 98px 0 rgba(19, 19, 19, 0.03);
}

ul.page-pagination li a.page-numbers:hover,
ul.page-pagination li a.next:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* Blog Category */
.blog-w3hny-right .sidebar-widget {
    background: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: 0 20px 40px 0 rgb(50 65 141 / 12%);
    box-shadow: 0 25px 98px 0 rgb(0 0 0 / 4%);
    border: 1px solid var(--border-color-light);
}

.blog-w3hny-right .sidebar-title h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    color: var(--heading-color);
}

.blog-w3hny-right .sidebar-widget .blog-cat {
    position: relative;
    padding: 0;
}

.blog-w3hny-right .sidebar-widget .blog-cat li {
    position: relative;
    list-style: none;
    margin-bottom: 6px;
}

.blog-w3hny-right .sidebar-widget .blog-cat li a {
    position: relative;
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    display: block;
    line-height: 28px;
    display: flex;
    align-items: baseline;
    width: 100%;
    transition: .3s ease;
}

.blog-w3hny-right .sidebar-widget .blog-cat li a label {
    font-size: 14px;
    margin-left: auto;
    width: 27px;
    height: 27px;
    font-size: 12px;
    text-align: center;
    line-height: 27px;
    border-radius: 6px;
    background-color: var(--bg-grey);
}

.blog-w3hny-right .sidebar-widget ul.blog-cat li a span {
    color: var(--primary-color);
    font-size: inherit;
    background: none;
    font-size: 16px;
    margin-right: 8px;
}

.blog-w3hny-right .sidebar-widget figure {
    margin: 0 0 0rem;
}

.blog-w3hny-right .sidebar-widget .blog-cat li.active a,
.blog-cat li a:hover {
    color: var(--primary-color);
}

/* Post Widget */
.blog-w3hny-right .sidebar-widget .popular-posts .post {
    position: relative;
    padding-left: 110px;
    margin-bottom: 25px;
}

.blog-w3hny-right .sidebar-widget:last-child {
    margin-bottom: 0px;
}

.blog-w3hny-right .sidebar-widget .post .post-thumb {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 85px;
    height: 85px;
    overflow: hidden;
}

.blog-w3hny-right .post .post-thumb img {
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.blog-w3hny-right img:hover {
    opacity: 0.9;
}

.blog-w3hny-right .popular-posts .post {
    position: relative;
    padding-left: 100px;
    margin-bottom: 25px;
}

.blog-w3hny-right .post .text a {
    color: var(--heading-color);
    font-size: 18px;
    line-height: 24px;
    margin-top: 0;
    position: relative;
    font-weight: 700;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.blog-w3hny-right .post .text a:hover,
ul.twitter-feed a:hover {
    color: var(--primary-color);
}

/*Instagram Widget*/
.blog-w3hny-right .sidebar-widget .images-outer {
    position: relative;
    margin: 0px -4px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}

/*Tags*/
.blog-w3hny-right .popular-tags a {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 8px 18px 8px;
    margin: 0px 4px 8px 0px;
    color: var(--heading-color);
    text-align: center;
    font-size: 16px;
    border: 1px solid var(--border-color-light);
    background-color: var(--bg-grey);
    border-radius: var(--border-radius);
    font-weight: 700;
}

.blog-w3hny-right .popular-tags a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.blog-w3hny-right .w3l-add-widget {
    background-size: cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center;
    min-height: 350px;
    border-radius: var(--border-radius);
}

.blog-w3hny-right .w3l-add-widget h6 {
    color: #fff;
    font-size: 34px;
    line-height: 40px;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/*--//side-bar--*/
@media (max-width: 1080px) {

    ul.admin-post li a,
    ul.admin-post li p {
        font-size: 15px;
    }
}

@media (max-width: 568px) {
    .author-info {
        grid-template-columns: 80px 120px;
        grid-gap: 10px;
    }

    .author-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 415px) {
    .blog-grid-info .card h5.card-title a {
        font-size: 20px;
    }
}

/*--//blog-grid-info--*/
@media (max-width: 384px) {

    ul.page-pagination li a.page-numbers,
    ul.page-pagination li a.next,
    ul.page-pagination li span.current {
        padding: 7px 15px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .left-sideber {
        order: 2;
    }
}

@media (max-width: 415px) {
    .bloghny-page .sidebar-title h4 {
        font-size: 22px;
    }

    .bloghny-page form.subscribe-wthree button {
        padding: 0 20px;
    }

    .bloghny-page .sidebar-widget {
        margin-bottom: 50px;
    }

    .sidebar-widget:last-child {
        margin-bottom: 0px;
    }
}

.bloghny-page .blog-single-author-date li.circle {
    width: 50px;
    height: 50px;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
}

.bloghny-page h2.title-single {
    font-weight: 700;
}

.bloghny-page ul.blog-single-author-date li {
    display: inline-block;
    margin-right: 20px;
    transition: 0.3s ease-in-out;
}

.bloghny-page ul.blog-single-author-date li span.fa {
    vertical-align: .5px;
    opacity: .5;
    width: 15px;
}

.bloghny-page ul.blog-single-author-date li a {
    color: var(--heading-color);
    font-weight: 700;
}

.bloghny-page ul.blog-single-author-date li a:hover {
    color: var(--primary-color);
}

.bloghny-page .blo-singl {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.bloghny-page ul.share-post li {
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 4px;
    margin: 0px 3px;
}

.bloghny-page ul.share-post li a {
    display: block;
}

.bloghny-page ul.share-post li a span {
    color: #fff;
    font-size: 14px;
    line-height: 36px;
}

.bloghny-page ul.share-post li.facebook {
    background: #3a5998;
    width: 36px;
    height: 36px;
    color: #fff;
}

.bloghny-page ul.share-post li.twitter {
    background: #55acee;
    width: 36px;
    height: 36px;
    color: #fff;
}

.bloghny-page ul.share-post li.google {
    background: #dc4e41;
    width: 36px;
    height: 36px;
    color: #fff;
}

.w3l-blog blockquote {
    padding: 40px 40px;
    background: var(--bg-grey);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color-light);
}

.bloghny-page blockquote p {
    color: var(--heading-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    font-style: italic;
    position: relative;
    z-index: 9;
}

.bloghny-page blockquote i {
    color: var(--primary-color);
    font-size: 60px;
    opacity: 0.5;
    transition: .3s;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -9;
}

.bloghny-page .blockquote-footer {
    background: none;
}

.bloghny-page .text-list li {
    font-style: italic;
    display: block;
    line-height: 25px;
    margin: 12px 0;
    font-size: 18px;
    color: var(--font-color);
}

.bloghny-page .img-circle {
    width: 80px;
    height: 80px;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
}

.bloghny-page .img-circle img {
    width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.w3l-blog ul.time-rply li {
    display: inline-block;
    color: var(--font-color);
    font-size: 15px;
}

.bloghny-page a.name {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
}

.bloghny-page .media-body.comments-grid-right {
    border: 1px solid var(--border-color-light);
    padding: 30px;
    border-radius: var(--border-radius);
    background: var(--bg-grey);
    position: relative;
}

.bloghny-page .media .media .media-body {
    border: none;
    padding: 10px;
}

.bloghny-page ul.time-rply li a {
    color: var(--primary-color);
    font-weight: 500;
    padding-left: 5px;
}

.bloghny-page .media {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-top: 30px;
    grid-gap: 20px;
}

.bloghny-page h6.heading-small-text-9 {
    font-size: 26px;
    color: var(--heading-color);
    font-weight: 500;
}

.bloghny-page .categories ul {
    margin-top: 20px;
}

.bloghny-page .categories ul li {
    list-style: disclosure-closed;
    color: #aaa;
    list-style-position: inside;
    list-style-type: disc;
}

.bloghny-page .categories ul li a {
    color: var(--font-color);
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 5px;
    display: inline-block;
}

.bloghny-page h6.text-left-inner-9 {
    font-size: 20px;
    line-height: 28px;
    color: var(--heading-color);
}

.bloghny-page span.sub-inner-text-9 {
    font-weight: normal;
    font-size: 14px;
    color: var(--font-color);
    margin-top: 6px;
    display: inline-block;
}

.bloghny-page .post-next {
    text-align: right;
}

.bloghny-page span.nav-title {
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    color: var(--primary-color);
    opacity: 1;
}

.bloghny-page a.posts-view-left {
    margin-top: 5px;
    display: block;
}

.bloghny-page a.posts-view-right {
    margin-top: 5px;
    display: block;
}

.bloghny-page a.posts-view label {
    cursor: pointer;
    font-size: 18px;
    line-height: 28px;
    color: var(--heading-color);
    font-weight: 700;
    margin: 0;
}

.bloghny-page a.posts-view label:hover {
    color: var(--primary-color);
}

.bloghny-page nav.post-navigation {
    border: 1px solid var(--border-color-light);
    padding: 0 20px;
    border-radius: var(--border-radius);
    background: var(--bg-grey);
}

.bloghny-page .reply input,
.bloghny-page .reply textarea {
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    border-radius: var(--border-radius);
    min-height: 60px;
    padding: 0px 20px;
    border: 1px solid var(--border-color-light);
    font-size: 17px;
    font-weight: 400;
    color: var(--heading-color);
    background: var(--bg-grey);
    box-shadow: none;
    resize: none;
    height: 60px;
    display: inline-block;
}

.bloghny-page .post-submit {
    text-align: right;
}

.bloghny-page .reply textarea {
    padding: 20px 20px;
    height: 160px;
    resize: none;
}

.bloghny-page .reply input:focus,
.bloghny-page .reply textarea:focus {
    border: 1px solid var(--primary-color);
    background: var(--bg-color);
}

.bloghny-page a.author-image {
    width: 130px;
    height: 130px;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
}

a.author-name {
    font-size: 20px;
    line-height: 30px;
    color: var(--heading-color);
    display: block;
    margin-bottom: 6px;
}

.author-detalis {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    grid-gap: 20px;
}

h3.post-content-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

@media (max-width: 991px) {
    .bloghny-page .blo-singl {
        grid-template-columns: 1fr;
        grid-gap: 15px;
    }

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

    .bloghny-page blockquote {
        padding: 20px 0;
        padding-left: 40px;
        padding-right: 40px;
    }

    .bloghny-page blockquote q {
        font-size: 26px;
    }
}

@media (max-width: 736px) {
    ul.details-list {
        grid-template-columns: 1fr 1fr;
    }

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

    .post-content iframe {
        height: 300px;
    }

    .bloghny-page h2.title-single {
        margin-bottom: 10px;
    }

    .bloghny-page blockquote {
        padding-left: 45px;
        padding-right: 10px;
    }

    .bloghny-page blockquote q {
        font-size: 22px;
        line-height: 34px;
    }
}

@media (max-width: 568px) {
    ul.blog-single-author-date {
        display: grid;
        grid-auto-flow: column;
        justify-content: flex-start;
        grid-gap: 5px;
    }
}

@media (max-width: 480px) {
    .bloghny-page .blo-singl {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .post-content iframe {
        height: 230px;
    }

    ul.details-list li {
        font-size: 17px;
    }

    .bloghny-page .media {
        grid-template-columns: auto;
    }

    .bloghny-page .img-circle {
        width: 80px;
        height: 80px;
    }

    .bloghny-page .reply input,
    .bloghny-page .reply textarea {
        outline: none;
        font-size: 16px;
        padding: 13px 25px;
    }

    .bloghny-page .reply textarea {
        height: 100px;
    }

    .bloghny-page blockquote {
        padding-left: 25px;
        padding-right: 0px;
    }
}

@media (max-width: 415px) {
    .bloghny-page blockquote q {
        font-size: 20px;
        line-height: 28px;
    }

    .bloghny-page .img-circle {
        width: 85px;
        height: 85px;
    }

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

    .bloghny-page a.author-image {
        width: 110px;
        height: 110px;
    }

    ul.details-list {
        grid-template-columns: 1fr;
    }

    .bloghny-page ul.blog-single-author-date li {
        margin-right: 15px;
        font-size: 15px;
    }

    .bloghny-page a.name {
        font-size: 18px;
    }

    .bloghny-page a.posts-view label {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 384px) {
    .bloghny-page a.author-image {
        width: 90px;
        height: 90px;
    }

    .bloghny-page ul.blog-single-author-date li {
        margin-right: 12px;
        font-size: 15px;
    }

    .bloghny-page .img-circle {
        width: 75px;
        height: 75px;
    }
}

/*--//Blog-posts--*/
.w3l-clients {
    background: var(--bg-color);
}

.w3l-clients p.test-p {
    color: #fff;
    opacity: 0.7;
}

.w3test-grids {

    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius);
}

.w3test-grids:before {
    content: "";
    background: var(--layer);
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    border-radius: var(--border-radius);
}

.w3l-clients .testi-des {
    display: flex;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.w3l-clients blockquote q {
    font-size: 18px;
    line-height: 28px;
    color: var(--heading-color);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.w3l-clients a.comment-img {
    left: 0px;
    top: 0px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    display: block;
    border: 4px solid hsl(180deg 12% 98% / 18%);
}

.w3l-clients .bottom-info {
    display: grid;
    grid-template-columns: auto 1fr;
    justify-content: flex-start;
    grid-gap: 20px;
    align-items: center;
}

.w3l-clients .testimonial i {
    font-size: 22px;
    color: var(--primary-color);
    /* display: inline-block; */
    margin-right: 10px;
    vertical-align: middle;
    opacity: 0.9;
}

.w3l-clients .test-img {
    width: 70px;
    height: 70px;
    display: inline-block;
    overflow: hidden;
    background: var(--bg-color);
    border-radius: 50%;
}

.w3l-clients .testimonial img {
    width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.w3l-clients .testimonial .peopl {
    margin: 0;
    text-align: left;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 20px;
    align-items: center;
}

.w3l-clients .testimonial .peopl h3,
.w3l-clients .people-info h3 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.w3l-clients .testimonial p {
    font-size: 17px;
    line-height: 27px;
}

.w3l-clients .testimonial {
    border: 1px solid var(--border-color-light);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    background: var(--bg-color);
}

.w3l-clients .testimonial:before {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--bg-color);
    border: 1px solid var(--border-color-light);
    display: block;
    border-right: none;
    border-bottom: none;
    transform: translateX(-50%) rotateZ(-135deg);
    position: absolute;
    bottom: -7px;
    left: 9%;
    z-index: 1001;
}

.w3l-clients p.identity {
    font-size: 16px;
    font-style: normal;
    margin-bottom: 0;
    text-align: left;
    opacity: 0.8;
    margin-top: 4px;
    color: #fff;
    opacity: 0.9;
}

div#owl-demo2 .owl-dots {
    margin-top: 0px;
    position: absolute;
    left: 0px;
    right: 0;
    bottom: -32px;
    background: none;
}

div#owl-demo2 .owl-dots .owl-dot {
    display: inline-block;
}

div#owl-demo2 .owl-dots,
.owl-theme .owl-nav {
    text-align: right;
}

/*--/w3company-logos--*/
.w3company-logos {
    margin-top: -62px;
    z-index: 1;
    position: relative;
}

.w3company-logos img {
    margin: 0 10px;
    border-radius: 5px;
    background: var(--bg-color);
    padding: 10px 25px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    border-radius: var(--border-radius);
    opacity: .9;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.w3company-logos img:hover {
    opacity: 1;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

/*--//w3company-logos--*/
@media (max-width: 1080px) {
    .w3l-clients blockquote q {
        font-size: 22px;
    }

    .w3l-clients.w3l-test blockquote q::before {
        font-size: 40px;
    }
}

@media (max-width: 375px) {
    .w3l-clients blockquote q {
        font-size: 22px;
        line-height: 32px;
    }

    .w3l-clients p.identity {
        font-size: 17px;
    }

    .w3l-clients.w3l-test blockquote q::before {
        font-size: 35px;
        margin-right: 5px;
    }
}

.w3l-grids-3.w3l-align ul {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 0px 20px;
}

@media (max-width: 1080px) {
    .w3l-grids-3.w3l-align ul {
        grid-template-columns: auto;
    }
}

/*--//testimonials--*/
/*--/contact--*/
.contact-grids {
    grid-template-columns: 1fr 2fr;
    grid-gap: 30px;
}

.contact-left {
    padding-right: 28px;
}

.contact-left h4 {
    font-size: 52px;
    line-height: 60px;
    margin-bottom: 24px;
    font-weight: 500;
    text-transform: capitalize;
}

.contact-grids input,
.contact-grids textarea {
    width: 100%;
    color: var(--font-color);
    background: var(--bg-grey);
    font-size: 18px;
    line-height: 28px;
    font-weight: normal;
    font-style: normal;
    font-family: inherit;
    padding: 16px 26px;
    border: 1px solid var(--bg-grey);
    outline: none;
    margin-bottom: 16px;
    border-radius: var(--border-radius);
}

.cont-left.text-center span {
    color: #fff;
    font-size: 24px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
}

.contact-grids textarea {
    height: 120px;
    margin: 0 0 20px 0;
}

.contact-grids input:focus,
.contact-grids textarea:focus {
    border: 1px solid var(--primary-color);
    background: transparent;
}

.cont-top {
    display: grid;
    grid-template-columns: 1fr 6fr;
    grid-column-gap: 20px;
}

.cont-details p,
.cont-details p a {
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 28px;
    margin-top: 3px;
    color: var(--font-color);
}

.cont-details p a:hover {
    color: var(--primary-color);
}

.margin-up {
    margin-bottom: 3em;
}

.cont-details h6 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.map-iframe iframe {
    -webkit-filter: var(--iframe-filter);
    -moz-filter: var(--iframe-filter);
    -ms-filter: var(--iframe-filter);
    -o-filter: var(--iframe-filter);
    filter: var(--iframe-filter);
}

.contact-right {
    padding-left: 28px;
}

.submit-w3l-button {
    text-align: right;
}

@media (max-width: 992px) {
    .contact-grids {
        grid-template-columns: 1fr;
    }

    .cont-details p,
    .cont-details p a {
        font-size: 18px;
    }
}

@media (max-width: 736px) {
    .margin-up {
        margin-top: 2rem;
    }

    .cont-details h6 {
        font-size: 20px;
    }

    .contact-right {
        padding: 40px 0px;
    }

    .cont-details p,
    .cont-details p a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cont-top {
        grid-column-gap: 10px;
    }

    .cont-details p,
    .cont-details p a {
        font-size: 17px;
    }

    .cont-details h6 {
        font-size: 20px;
    }

    .contact-right {
        padding: 30px;
    }

    .contact-right {
        padding: 30px 20px;
    }

    .contact-grids input,
    .contact-grids textarea {
        padding: 15px 20px;
    }

    .cont-top {
        display: grid;
        grid-template-columns: 1fr 4fr;
        grid-column-gap: 20px;
    }
}

/*--//contact--*/
/*--/foorer--*/
.w3l-footer-29-main .footer-29 {
    background: var(--footer-bg);
}

.w3l-footer-29-main h6.footer-title-29 {
    color: #fff;
    font-size: 22px;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 600;
}

.w3l-footer-29-main .subscribe input[type="email"] {
    background: transparent;
    border: none;
    padding: 15px 0px;
    outline: none;
    width: 100%;
    color: #fff;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #fff;
}

.w3l-footer-29-main .subscribe input[type="email"]:focus {
    border-bottom: 2px solid var(--primary-color);
}

.w3l-footer-29-main .footer-29 .subscribe button {
    text-align: center;
    background: transparent;
    padding-left: 0;
    border: none;
    outline: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    /* width: 18%; */
    border-radius: 0;
    position: absolute;
    right: 0px;
    top: 15px;
}

.w3l-footer-29-main .footer-29 .subscribe button:hover {
    color: var(--primary-color);
    box-shadow: none;
    background: transparent;
}

.main-social-footer-29 a {
    display: inline-block;
    color: var(--primary-color);
    margin-right: 14px;
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    line-height: 42px;
    text-align: center;
    border-radius: 4px;
}

.main-social-footer-29 a:hover {
    background: var(--primary-color);
    color: #fff;
    transition: 0.3s ease-in;
}

.w3l-footer-29-main .footer-29 a:hover {
    color: #fff;
    opacity: 1;
}

.w3l-footer-29-main .footer-list-29 p {
    font-size: 16px;
}

.w3l-footer-29-main .footer-29 form {
    display: flex;
    margin-top: 25px;
    position: relative;
}

.w3l-footer-29-main h2 {
    font-size: 40px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    line-height: 50px;
}

.w3l-footer-29-main .footer-listw3 li {
    list-style: none;
    display: block;
    margin-bottom: 10px;
}

.w3l-footer-29-main p.parahny {
    font-size: 16px;
}

.w3l-footer-29-main .footer-listw3 a {
    text-decoration: none;
    font-size: 18px;
    color: var(--font-color);
}

.w3l-footer-29-main .bottom-copies {
    margin-top: 80px;
}

.w3l-footer-29-main .bottom-copies p a {
    color: #fff;
}

.w3l-footer-29-main .bottom-copies p a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .w3l-footer-29-main h6.footer-title-29 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .w3l-footer-29-main .copy-footer-29 {
        text-align: center;
    }

    .w3l-footer-29-main .main-social-footer-29 {
        text-align: center;
        margin-top: 20px;
    }

    .w3l-footer-29-main ul.list-btm-29 {
        margin-top: 10px;
    }
}

@media (max-width: 568px) {
    .w3l-footer-29-main .footer-2 {
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .w3l-footer-29-main .footer-list-29 h2 a {
        font-size: 25px;
    }
}

.w3l-footer-29-main #movetop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    padding: 0;
    opacity: 1;
    transition: 0.3s ease;
    border-radius: 4px;
}

.w3l-footer-29-main #movetop:hover {
    opacity: .8;
    transition: 0.3s ease;
}

.w3l-footer-29-main #movetop span.fa {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 50px;
}

.subscribe ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff5ee;
    opacity: .5;
}

.subscribe ::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff5ee;
    opacity: .5;
}

.subscribe ::-ms-input-placeholder {
    /* IE 10+ */
    color: #fff5ee;
    opacity: .5;
}

.subscribe ::-moz-placeholder {
    /* Firefox 18- */
    color: #fff5ee;
    opacity: .5;
}

.big-text{
    font-size: 100px;
    line-height: 1.2;
}

.owl-one .banner-view {
    position: relative;
    background-size: cover;
    background-position: center;
    animation: kenburns 20s infinite;
}

/*.animated  {
      -webkit-animation-duration : 0 ms  !important;
      animation-duration : 0 ms  !important;
      -webkit-animation-fill-mode : both  !important;
      animation-fill-mode : both  !important;
}  */
@keyframes kenburns {
    0% {
        transform: scale(1) translate(1, 1);
        background-size: 100%;
    }

    100% {
        transform: scale(1.1) translate(1, 1);
        background-size: 130%;
    }
}

@media only screen and (min-width: 1200px) {

    .hamburger,
    .kebab-toggler,
    .social-menu {
        display: none;
    }
}

@media only screen and (max-width: 1919.98px) {
    .title-content {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        width: 42% !important;
    }
}

@media only screen and (max-width: 1599.98px) {
    .title-content {
        width: 50% !important;
    }

    .title-content p {
        font-size: 0.94rem;
    }

    .title-w3l,
    .title-w3l.two {
        font-size: 28px;
    }
}

@media only screen and (max-width: 1365.98px) {
    .title-content {
        padding: 1.5rem !important;
    }

    .title-content p {
        font-size: 0.82rem;
    }

    .title-w3l,
    .title-w3l.two {
        font-size: 24px;
        line-height: 1.2;
    }
}

@media only screen and (max-width: 1279.98px) {

    .navbar-expand-xl .navbar-nav .nav-link,
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 17px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .hamburger {
        padding: 10px 15px;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: 0.15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
        position: absolute;
        top: 12px;
        right: 65px;
        z-index: 999;
    }

    .hamburger-box {
        width: 32px;
        height: 21px;
        display: inline-block;
        position: relative;
    }

    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -1.5px;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 32px;
        height: 3px;
        background-color: #800e0e;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }

    .hamburger-inner::before,
    .hamburger-inner::after {
        content: "";
        display: block;
    }

    .hamburger-inner::before {
        top: -9px;
    }

    .hamburger-inner::after {
        bottom: -9px;
    }

    .hamburger--collapse .hamburger-inner {
        top: auto;
        bottom: 0;
        transition-duration: 0.13s;
        transition-delay: 0.13s;
        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--collapse .hamburger-inner::after {
        top: -18px;
        transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    }

    .hamburger--collapse .hamburger-inner::before {
        transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--collapse.is-active .hamburger-inner {
        transform: translate3d(0, -9px, 0) rotate(-45deg);
        transition-delay: 0.22s;
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .hamburger--collapse.is-active .hamburger-inner::after {
        top: 0;
        opacity: 0;
        transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
    }

    .hamburger--collapse.is-active .hamburger-inner::before {
        top: 0;
        transform: rotate(-90deg);
        transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .slide-out-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 20px;
        padding: 20px;
        background-color: #fff;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        border: 0;
        transform: translateY(100%) perspective(1px);
        transition: height 0.8s ease-in-out;
        overflow-y: scroll;
        border: 0;
        border-radius: 0;
        text-align: center;
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 65px);
        opacity: 1;
        transform: translateY(0) perspective(1px);
        visibility: visible;
        opacity: 1;
    }

    .slide-out-nav #navigation {
        width: 100%;
    }

    .navbar-nav {
        display: block;
        width: 100%;
    }

    .navbar-nav .nav-item {
        display: block;
        color: #181918;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #800e0e;
    }

    .slide-out-nav #navigation li a.header-btn2 {
        margin-top: 20px;
    }

    .slide-out-nav.fadeInDown {
        -webkit-animation-name: unset;
        animation-name: unset;
    }

    .kebab-toggler {
        position: absolute;
        top: 6px;
        right: 15px;
        width: 50px;
        height: 52px;
        display: block;
        padding: 12px 10px;
        z-index: 99;
    }

    .kebab-toggler.active .circleKebab circle {
        transition: .3s
    }

    .social-menu {
        color: #800e0e;
        background: #ffffff;
        display: none;
        text-align: center;
        z-index: 9;
        padding-top: 10px;
    }

    .social-menu.menu-on {
        display: block;
        position: fixed;
        width: 100%;
        left: 0;
        top: 65px;
    }

    .social-menu li {
        position: relative;
        padding: 10px 40px;
    }

    .social-menu .caption .contact-cap {
        margin-top: -10px;
    }

    .social-menu .caption .contact-cap .contact-info {
        margin-bottom: 0;
    }

    .social-menu .caption .contact-cap .contact-info strong {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .social-menu .caption .contact-cap p {
        color: #800e0e;
    }

    .social-menu .caption .contact-cap p a {
        color: #800e0e;
    }

    .social-menu .icon {
        color: #fff;
    }

    .socmedia {
        margin-top: 15px;
        background-color: #800e0e;
        box-shadow: 0 0 10px 3px rgb(0 0 0 / 5%);
    }

    .socmedia .social-info {
        padding: 8px 15px;
    }

    .socmedia .social-info a {
        color: #800e0e;
        background-color: #fff;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        line-height: 2.4em;
        text-align: center;
        display: inline-block;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 18px;
        color: #181918;
        padding: 12px 20px;
        letter-spacing: -0.03em;
        border-bottom: 1px solid #800e0e78;
        display: block;
    }

    .title-content {
        width: 100% !important;
        padding: 2rem 1.5rem !important;
    }

    .w3l-footer-29-main .bottom-copies {
        margin-top: 50px;
    }

    #grids-3 .gdnhy-1 {
        font-size: 1.6rem;
    }

    .w3l-3-grids a.w3item-link i {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .title-content p{
        font-size: 1.1rem;
    }
}

@media only screen and (max-width: 991.98px) {
    header {
        position: relative;
    }

    .owl-theme .owl-nav.disabled+.owl-dots,
    .owl-one .owl-dots {
        display: none;
    }

    .w3l-3-grids .w3-grids3-info h4 a {
        font-size: 28px;
        line-height: 38px;
    }

    .w3l-3-grids .w3-grids3-info img {
        border-radius: 4px;
    }

    .w3l-3-grids img.news-image,
    .w3l-3-grids a.zoom {
        border-radius: 4px;
    }

    .w3l-3-grids .w3-grids3-info h4 a {
        font-size: 24px;
        line-height: 34px;
    }
}

@media only screen and (max-width: 480.98px) {
    .navbar {
        padding-top: 0.3rem;
    }

    .navbar .navbar-brand {
        max-width: 180px;
    }

    .hamburger {
        top: 10px;
        right: 40px;
    }

    .kebab-toggler {
        top: 4px;
        right: -5px;
    }

    .slide-out-nav.nav-open {
        height: calc(100% - 58px);
    }

    .social-menu.menu-on {
        top: 58px;
    }
}




@media only screen (max-width: 360px) {
        .hamburger {
        right: 35px;
    }

    .kebab-toggler {
        right: -10px;
    }

}

@media only screen and (min-width: 576px) {
    .row-eq-height {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }

}
.room-container .box-wrap {
    height: calc(100% - 15px);
    position: relative;
    padding: 20px 20px 30px;
    box-shadow: 0 5px 20px -5px rgb(0 0 0 / 50%);
    border-radius: 10px;
    margin-bottom: 30px;
}

h1.main-title {
    padding: 24px 0 12px 0;
}

.hr-separator {
    border-top: 1px solid rgb(112 115 118 / 30%);
    width: 100%;
    margin-top: 12px;
}

.fs-14 {
    font-size: 14px !important;
}

.banner-slider {
    width: 100%;
}

.room-details {
    text-align: left;
}


.room-details h2 {
    margin-bottom: 24px !important;
    margin-top: 24px !important;
}

.room-details h4 {
    font-size: 18px;
    color: #707376;
}

.room-details .room-user {
    text-align: center !important;
    margin-right: 0;
}

.room-details .fa-big {
    font-size: 28px;
}


.room-details .fa-small {
    font-size: 18px;
}


.row-room-details-1 {
    border-right: 1px solid rgb(112 115 118 / 30%);
}



.row-room-details-2 p {
    font-size: 14px !important;
}

.room-detailssmall {
    font-size: 10px !important;
}


.row-room-details-2 p span {
    margin-right: 8px;
}

.room-amenities {
    margin-top: 16px;
    margin-bottom: 16px;
}

.room-amenities ul li {
    text-align: left;
    font-size: 14px;
    position: relative;
    border-bottom: 1px solid rgb(112 115 118 / 20%);
    padding: 12px 0;
}


.room-amenities ul li span {
    font-size: 10px;
    position: absolute;
    top: 17px;
    right: 0;
}

