/* Reset  */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html {
  scroll-behavior: smooth;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Condensed", sans-serif;
    font-family: "Arya", sans-serif;
    font-weight: 400;
}

ol, ul {
    list-style: none;
}
a {
    text-decoration: none;
}
blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

p {
    line-height: 22px;
}

body {
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    color: #555555;
}

.tab-content > .tab-pane {
    display: none;
    position: relative;
}

.tab-content > .active {
    display: block;
}


/*****************************************/
.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.slick-slider {
    width: 100%;
    margin: 0;
}

.eqlh {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.float-left {
    float: left;
}

.clear-both {
    clear: both;
}
/****************************************/


/**heder*/
.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    padding: 0px;
    box-sizing: border-box;
    background: #fff;
    height: auto;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

.header-main {
    background-color: #ffffff;
    padding: 0;
    border-radius: 4px;
    width: 100%;
}

.header .logo {
    padding: 6px 0px;
    width: 420px;
    float: left;
    margin-right: 30px;
}

.header .logo img {
    width: 100%;
}

.header .logo a {
    font-size: 30px;
    text-transform: capitalize;
    color: #e91e63;
}

.header .nav-menu {
    padding: 0 15px;
    float: left;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.header .menu > .menu-item {
    display: inline-block;
    position: relative;
    padding: 0;
}
.menu-active {
    border-bottom: 3px solid #ff7700 !important;
    color: #ff7700 !important;
}

.header .menu > .menu-item > a {
    display: block;
    padding: 35px 20px;
    color: #6d6d6d;
    text-transform: capitalize;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.6;
    border-bottom: 3px solid transparent;
}

.header .menu > .menu-item > a .plus {
    border: solid #626262;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 6px;
    transform: rotate(45deg);
}

/*.header .menu > .menu-item:hover > a .plus{
    border: solid #fff;
    border-width: 0 2px 2px 0;
}*/
.header .menu > .menu-item > a .plus:after {
    transform: translate(-50%,-50%) rotate(-90deg);
}

.header .menu > .menu-item:hover > a {
    border-bottom: 3px solid #ff7700;
    color: #ff7700;
}

.header .menu > .menu-item > .sub-menu {
    box-shadow: 0px 0 10px rgb(0 0 0 / 20%);
    width: 220px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    padding: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 992px) {
    
    .header .menu > .menu-item-has-children:hover > .sub-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header .menu > .menu-item-has-children:hover > a .plus:after {
        transform: translate(-50%,-50%) rotate(0deg);
    }
}

.header .menu > .menu-item > .sub-menu > .menu-item {
    display: block;
}
/*.header .menu > .menu-item > .sub-menu > .menu-item > a:last-child{
    border-bottom: none;
}*/
.header .menu > .menu-item > .sub-menu > .menu-item > a {
    display: block;
    margin: 12px 20px;
    color: #000;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    padding-bottom: 11px;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:before {
    display: block!important;
    content: '';
    width: 0;
    height: 2px;
    margin-top: 6px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #ff7700;
}

.header .menu > .menu-item > .sub-menu > .menu-item:hover>a:before {
    width: 10px;
    margin-right: 5px;
}

.header .open-nav-menu {
    height: 34px;
    width: 40px;
    /* margin-right: 35px; */
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .open-nav-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: #000000;
    position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    box-sizing: border-box;
}

.header .open-nav-menu span:before {
    top: -7px;
}

.header .open-nav-menu span:after {
    top: 7px;
}

.header .close-nav-menu {
    height: 40px;
    width: 40px;
    background-color: #ffffff;
    margin: 0 0 15px 15px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.header .close-nav-menu img {
    width: 16px;
}

.header .menu-overlay {
    position: fixed;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.right-header-part {
    padding: 4px 5px 4px 20px;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    border: 1px solid #ff7700;
    border-radius: 30px;
    display: inline-block;
    text-align: right;
}

.right-header-part a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%;
    padding: 0px;
    color: #ff7700;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 12px;
    text-decoration: none;
}

.right-header-part a:hover .arrow span {
    width: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.right-header-part a span {
    margin-left: 10px;
}

.right-header-part a b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    margin-left: 5px;
    float: right;
    left: 0;
}

@media(max-width: 991px) {
    .header .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }
    .header .nav-menu {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }
    .right-header-part {
        margin-top: 20px;
        margin-left: 10px;
    }
    .header .nav-menu {
        position: fixed;
        right: -280px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top: 0;
        overflow-y: auto;
        background-color: #222222;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s ease;
    }

    .header .nav-menu.open {
        visibility: visible;
        right: 0px;
    }

    .header .menu > .menu-item {
        display: block;
        margin: 0;
    }

    .header .menu > .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .menu > .menu-item > a {
        color: #ffffff;
        padding: 12px 15px;
        border-bottom: 1px solid #333333;
    }

    .header .menu > .menu-item:first-child > a {
        border-top: 1px solid #333333;
    }

    .header .menu > .menu-item > a .plus:before, 
    .header .menu > .menu-item > a .plus:after {
        background-color: #ffffff;
    }

    .header .menu > .menu-item-has-children.active > a .plus:after {
        transform: translate(-50%,-50%) rotate(0deg);
    }

    .header .menu > .menu-item > .sub-menu {
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border: none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top: auto;
        max-height: 0;
        overflow: hidden;
    }

    .header .menu > .menu-item > .sub-menu > .menu-item > a {
        padding: 12px 45px;
        color: #ffffff;
        border-bottom: 1px solid #333333;
    }

    .header .close-nav-menu,
    .header .open-nav-menu {
        display: flex;
    }
}
/**heder*/  

/******************/
.top-banner {
    position: relative;
    clip-path: polygon(0 0, 0 100%, 25% 95%, 50% 100%, 75% 95%, 100% 100%, 100% 0);
    overflow: hidden;
}
.home-banner {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 0px 0;
    overflow: hidden;
    height: 100vh;
}
.home-banner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 80%);
    width: 70%;
    height: 100%;
    z-index: 1;
}

.home-banner .home-banner-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.home-banner .home-banner-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: relative;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}
.banner-content .banner-content-left {
    color: #fff;
}
.banner-content .banner-content-left h5 {
    font-size: 20px;
    line-height: 22px;
    color: #ff7700;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}

.banner-content .banner-content-left h1 {
    font-size: 70px;
    line-height: 70px;
}

.banner-content .banner-content-left p {
    margin-bottom: 20px;
    margin-top: 20px;
}

.banner-content .banner-content-left a {
    background-color: #2a5213;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    padding: 15px 30px;
    border: 0;
    border-radius: 5px;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
    text-decoration: none;
}

.banner-content .banner-content-left a:hover {
    background-color: #d37016;
    transition: all .4s ease;
}
/*******************************************/
.banner-slider {
    position: relative;
    overflow: hidden;
}

.title {
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    position: fixed;
    text-align: right;
    top: 0;
    right: 0;
    padding: 10px 15px;
    margin: 0;
    z-index: 100;
}

.slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.slide {
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
}

.slide.active {
    transform: translateX(-100%);
}

.slide  .banner-img_overlay {
    transform: translate3d(0px, 0px, 0px);
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    position: absolute;
    transition: opacity 1s;
    pointer-events: none;
    width: 75%;
    height: 100%;
    left: -1px;
    top: 0;
    opacity: 1;
}

.slide .info {
    background-color: transparent;
    color: #fff;
    padding: 20px 15px;
    position: absolute;
    opacity: 0.01;
    top: 50%;
    /*left: 40px;*/
    width: 50%;
    max-width: 100%;
    transform: translateY(10%);
    transition: all 0.5s linear;
}

.slide.active .info {
    opacity: 1;
    transform: translateY(-40%);
    transition: all 0.5s linear;
}

.slide .info h5 {
    font-size: 20px;
    line-height: 22px;
    color: #ff7700;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}

.slide .info h1 {
    font-size: 70px;
    line-height: 70px;
}

.slide .info p {
    margin-bottom: 20px;
    margin-top: 20px;
}

.eraser {
    background: rgb(0 0 0 / 50%);
    background: #f5f5f5;
    background: #fff;
    position: absolute;
    transition: all .4s linear;
    opacity: 0.95;
    bottom: 0;
    left: 100%;
    height: 89.5vh;
    width: 100%;
    z-index: 1;
}

.eraser.active {
    transform: translateX(-100%);
    transition: all .4s linear;
}

.buttons-container {
    position: absolute;
    bottom: 50px;
    right: 60px;
}

.buttons-container button {
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 8px 30px;
    margin-right: 10px;
}

.buttons-container button:hover {
    background-color: #fff;
    color: #A9A9A9;
    opacity: 0.9;
}

@media (max-width: 400px) {
    .slide .info {
        top: 100px;
        left: 10px;
    }
}
/**************************************************/

.home-about-sec {
    padding: 100px 0 200px;
    position: relative;
    overflow: hidden;
}

.shiv-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    opacity: 0.3;
    width: 100%;
}

.shiv-img img{
    width: 100%;
}

.home-about-sec .container .row {
    align-items: center;
}

.home-about-sec .right-content{
    padding-left: 60px;
}

.home-about-sec .right-img{
    width: 90%;
    float: right;
    position: relative;
}
.home-about-sec .right-img img{
    width: 100%;
    display: inline-block;
    position: relative;
    transition: all .3s ease;
    transform: translate3d(10px, 10px, 0);
}
.home-about-sec .right-img:hover img{
    transition: all .3s ease;
    transform: translate3d(-10px, -10px, 0);
}
.home-about-sec .right-img:before {
    display: inline-block;
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 4px solid #ff7700;
    z-index: 0;
    transition: all .3s ease;
    transform: translate3d(-10px, -10px, 0);
}
.home-about-sec .right-img:hover:before{
    transition: all .3s ease;
    transform: translate3d(10px, 10px, 0);
}
.common-header {

}
.common-header h5{
    font-size: 20px;
    line-height: 22px;
    color: #ff7700;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}
.common-header h5:before{
    /*content: 'ÃƒÂ Ã‚Â¥Ã‚Â';*/
    content: '\0950';
    font-family: "Arya", sans-serif;
    position: relative;
    left: 0;
    font-size: 20px;
    margin-right: 5px;
}
.common-header h5:after{
    /*content: 'ÃƒÂ Ã‚Â¥Ã‚Â';*/
    content: '\0950';
    font-family: "Arya", sans-serif;
    position: relative;
    right: 0;
    font-size: 20px;
    margin-left: 5px;
}
.common-header h2{
    font-size: 60px;
    font-weight: 600;
    color: #0F0F0F;
    line-height: 60px;
    margin-bottom: 20px;
}
.common-header p{
    margin-bottom: 20px;
}

ul.common-ul {
    padding-left: 24px;
}

ul.common-ul li {
    color: #000;
    font-weight: 400;
    position: relative;
    margin-bottom: 20px;
    line-height: 22px;
}

ul.common-ul li strong {
    font-weight: 700;
}

ul.common-ul li:before {
    content: "\2713";
    font-size: 18px;
    color: #fa4729;
    position: absolute;
    top: 0px;
    left: -24px;
    font-weight: 900;
}

.common-header.color-white h5{
    color: #fff;
}

.common-header.color-white h2{
    color: #fff;
}
.common-header.color-white p{
    color: #fff;
}
/**************************************************/
.photo-gallery {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.photo-gallery-area {

}
.photo-gallery-area .col-12{
    margin: 0;
    padding: 0;
}

.gallery-photo {
    width: 100%;
    overflow: hidden;
    margin: 6px;
    padding: 10px;
    box-sizing: border-box;
    /* border: 1px solid #151515; */
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    cursor: pointer;
}
.gallery-photo a{
    margin: 0;
    overflow: hidden;
    display: block;
    position: relative;
}

.gallery-photo a .black-patch{
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .3s linear;
    padding: 10px;
    box-sizing: border-box;
}
.gallery-photo:hover a .black-patch{
    opacity: 1;
    transition: all .3s linear;
}
.gallery-photo a .black-patch .border-line{
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    transform: scale(0.95);
    transition: all .3s linear;
}
.gallery-photo:hover a .black-patch .border-line{
    transform: scale(1);
    transition: all .3s linear;
}
.gallery-photo a .black-patch svg{    
    position: absolute;    
    width: 30px;    
    height: 30px;    
    fill: #fff;    
    top: 50%;    
    left: 50%;    
    transform: translate(-50%, -50%);
    transform: scale(0.5);
    transition: all .3s linear;
}
.gallery-photo:hover a .black-patch svg{
    transform: scale(1);
    transition: all .3s linear;
}
.gallery-photo:hover img{
    transition: all .3s linear;
    transform: scale(1);
}
.gallery-photo img{
    overflow: hidden;
    width: 100%;
    display: block;
    height: 330px;
    object-fit: cover;
    transform: scale(1.1);
    transition: all 0.3s linear;
}
.photo-gallery .container-fluid {
    width: 97%;
}
/**************************************************/

.banner-header {
    background: url("../images/offerings-banner-bg.jpg") center center / cover no-repeat fixed;
    padding: 110px 0px 0px;
    position: relative;
    z-index: 0;
    text-align: center;
    box-sizing: border-box;
    height: 480px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 100%, 25% 95%, 50% 100%, 75% 95%, 100% 100%, 100% 0);
}

.banner-header .banner-bg-img {
    position: absolute;
    width: 100%;
    top: 0px;
    height: 100%;
    overflow: hidden;
}

.banner-header .banner-bg-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banner-header .banner-bg-img::before {
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
}

.banner-header.product-overview-page .banner-bg-img::before {
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 128, 0, 0.2);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 20px;
    text-align: left;
}

.breadcrumb .breadcrumb-item {
    display: inline-block;
    vertical-align: middle;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 12px;
}

.breadcrumb .breadcrumb-item li {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 0px;
}

.breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 0px;
}

.breadcrumb .breadcrumb-item::after {
    float: right;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: rgb(255, 255, 255);
    content: ">"
}

.breadcrumb .breadcrumb-item a:hover {
    color: rgb(241, 206, 72);
}

.banner-header .overlay {
    transform: translate3d(0px, 0px, 0px);
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    position: absolute;
    transition: opacity 1s;
    pointer-events: none;
    width: 60%;
    height: 100%;
    left: -1px;
    top: 0px;
    opacity: 1;
}

.banner-header .top-banner-content {
    z-index: 5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.banner-header .top-banner-content h1 {
    font-size: 45px;
    color: rgb(255, 255, 255);
    line-height: 50px;
    font-weight: 700;
    text-align: left;
}

.banner-header .top-banner-content > h2 {
    font-size: 38px;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.banner-header .top-banner-content > p {
    font-size: 20px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin: 40px 0px 20px;
    width: 60%;
    line-height: 30px;
}

.banner-header .top-banner-content > span {
    font-size: 18px;
    color: rgb(255, 255, 255);
    font-weight: 400;
}
/**************************************************/
.contact-section-location {
    background: #fff;
    padding: 100px 0;
}

.contact-section-location .get-in-touch {
    padding: 70px;
    background: #f7f7f7;
    text-align: center;
    display: flex;
    align-items: start;
    justify-content: left;
    border-radius: 0 0 0 100px;
}

.contact-section-location .get-in-touch .location-details {
    /* margin-top: 83px; */
    /* text-align: center; */
}

.contact-section-location .location-details .common-header {
    text-align: left;
}

.contact-section-location .location-details .common-header h2 {
}

.contact-section-location .get-in-touch .location-details .address-location {
    padding: 0;
    font-family: 'Outfit', sans-serif;
    display: flex;
    margin-bottom: 30px;
}

.contact-section-location .get-in-touch .location-details .address-location .icon {
    /* width: 15%; */
}

.contact-section-location .get-in-touch .location-details .address-location .icon svg {
    width: 35px;
    height: 35px;
    color: #c54131;
    margin: 0 auto 0;
}

.contact-section-location .get-in-touch .location-details .address-location .number-part {
    width: 85%;
    margin-left: 20px;
    text-align: left;
}

.contact-section-location .get-in-touch .location-details .address-location .number-part.phone-number {
    margin-bottom: 0;
    margin-top: 7px;
}

.contact-section-location .get-in-touch .location-details .address-location .number-part p, .contact-section-location .get-in-touch .location-details .address-location .number-part a {
    font-size: 16px;
    color: #444444;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}

.contact-section-location .get-in-touch .location-details .address-location .number-part a {
    display: block;
    margin-bottom: 10px;
    word-break: break-all;
}

.contact-section-location .get-in-touch .location-details .address-location .number-part a:last-child {
    margin-bottom: 0;
}

.contact-section-location .get-in-touch .location-details .address-location .number-part a:hover {
    color: #c54131;
}

.contact-us-div {
    font-family: 'Outfit', sans-serif;
}

.contact-section-location .contact-forms {
    padding: 70px;
    background-color: #f7f7f7;
    border-radius: 0 100px 0 0;
}

.contact-section-location .contact-forms h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    color: #003087;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 50px;
}

.contact-section-location .contact-forms form .mb-3 input, .contact-section-location .contact-forms form .mb-3 textarea {
    padding: 17px 17px 17px 17px;
    color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0D0D0D;
    background-color: #0D0D0D;
    resize: none;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    opacity: 1;
    color: #000000;
    border-style: solid;
    border-color: #FFFFFF;
    font-size: 16px;
    background-color: #ebebeb;
    outline: none;
    box-shadow: none;
    font-family: 'Outfit', sans-serif;
}

.contact-section-location .contact-forms form .mb-3 input::-webkit-input-placeholder, .contact-section-location .contact-forms form .mb-3 textarea::-webkit-input-placeholder {
    /* Edge */
    color: #0D0D0D;
}

.contact-section-location .contact-forms form .mb-3 input:-ms-input-placeholder, .contact-section-location .contact-forms form .mb-3 textarea:-ms-input-placeholder {
    /* Internet Explorer */
    color: #0D0D0D;
}

.contact-section-location .contact-forms form .mb-3 input::placeholder, .contact-section-location .contact-forms form .mb-3 textarea::placeholder {
    color: #0D0D0D;
}

.contact-us-div .col-lg-6 {
    padding: 0;
}

.contact-section-location .contact-forms .col-lg-6 {
    padding: 0 10px;
}

.contact-us-div .map-div {
    display: block;
}

.contact-us-div .map-div iframe {
    height: 500px;
}

.contact-us-div .all-product-link {
    margin-top: 20px;
}
/**************************************************/
.slick-track {
    display: flex !important;
    align-items: center !important;
}
.slick-track .slick-slide {
    display: flex !important;
    height: inherit !important;
    justify-content: center;
}

.event-slider .slick-prev {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ff7700;
    border-radius: 6px;
    position: absolute;
    left: 45%;
    bottom: -100px;
    cursor: pointer;
    z-index: 5;
}

.event-slider .slick-prev:before {
    content: "\276E";
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-50%);
    color: #ff7700;
}

.event-slider .slick-arrow.slick-disabled {
    opacity: 0.5;
}

.event-slider .slick-next {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ff7700;
    border-radius: 6px;
    position: absolute;
    right: 45%;
    bottom: -100px;
    cursor: pointer;
}

.event-slider .slick-next:before {
    content: "\276F";
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-50%);
    color: #ff7700;
}
/**************************************************/

.mandir-info {
    background: url(../images/mandir-info-bg.jpg);
    padding: 200px 0;
    position: relative;
    background-size: cover;
    position: relative;
    overflow: hidden;
    background-repeat: repeat;
}

.black-patch {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    top: 0;
    left: 0;;
}
.mandir-info .container {
    position: relative;
}
/**************************************************/
.upcoming-event {
    position: relative;
    padding: 100px 0 150px;
    overflow: hidden;
}
.event-content {
    margin-top: 50px;
}
.event-content-box {
    position: relative;
}
.event-img {

}
.event-img img{
    width: 100%;
}
.event-content-area {
    position: absolute;
    overflow: hidden;
    left: 50%;
    bottom: -40px;
    transform: translate3d(-50%, 0, 0);
    padding: 20px 20px 40px;
    box-sizing: border-box;
    transition: all .3s ease;
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.27);
}
.event-content-area h5{
    font-size: 20px;
    line-height: 22px;
    color: #ff7700;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}
.event-content-area h4{
    font-size: 22px;
    line-height: 27px;
    font-weight: 700;
    color: #0F0F0F;
    margin-bottom: 12px;
}
.event-content-area p{    
    margin-bottom: 20px;
}
.event-content-box:hover .event-content-area a{
    visibility: visible;
    height: 50px;
    transition: all .3s ease;
}
.event-content-area a{
    overflow: hidden;
    height: 0;
    transition: all .3s ease;
}
/**************************************************/
.overlay-popup {
    position: fixed;
    z-index: 99;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}
.common-popup {
    position: fixed;
    top: 50%;
    left: 0;
    margin: auto;
    right: 0;
    transform: translateY(-50%);
    width: 540px;
    z-index: 9999999;
    background: transparent;
    border-radius: 15px;
    padding: 0px;
}
.btn-close {
    background: #f48303;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 100%;
    border-width: 0;
    color: #fff;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin: 0;
}
.common-popup h2{
    font-size: 90px;
    text-align: center;
}
.common-popup img{
    width: 100%;
}
/**************************************************/
body {
  --dot-bg: white;
  --dot-color: black;
  --dot-size: 1px;
  --dot-space: 22px;
    background:
        linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
        linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
        var(--dot-color);
}
/**************************************************/
.watch-video {
    position: relative;
    padding: 100px 0 0px;
    overflow: hidden;
}
.watch-video-area {
    position: relative;
    margin-top: 50px;
}
.watch-video-area .row{
    align-items: center;
}
.watch-video-area.all-videos {
    margin-bottom: 50px;
}
.watch-video-area.all-videos .row{
    align-items: unset;
}
.watch-video-area.all-videos .thuambnell-video {
    margin: 15px;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}
.watch-video-area.all-videos .thuambnell-video-area .col-12 {
    padding: revert-rule; 
}
.video-play-box {
    position: relative;
    transition: all 0.3s linear;
    bottom: 0px;
}
.video-play-box:hover {
    box-shadow: 0px 10px 20px 0px rgb(53 82 99 / 52%);
    transition: all 0.3s linear;
    bottom: 2px;
}
.video-play-box img{
    width: 100%;
    display: block;
    position: relative;
}
/*.video-play-box:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    top: 0;
    left: 0;
    z-index: 1;
}*/
.video-play-box a{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 75px;
    height: 50px;
    background-color: red;
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.video-play-box a::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid #fff;
    border-radius: 10px;
    animation-name: pulseInOut;
    opacity: 0;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
.video-play-box a::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid #fff;
    border-radius: 10px;
    animation-name: pulseInOutSM;
    opacity: 0;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
}

@keyframes pulseInOut{
  0%{
    opacity:1;
    transform:scale(.3)
  }
  100%{
    opacity:0;
    transform:scale(1.3)
  }
}

@keyframes pulseInOutSM{
  0%{
    opacity:1;
    transform:scale(.3)
  }
  100%{
    opacity:0;
    transform:scale(1.7)
  }
}
.video-play-box a svg {
    /*margin-left: 7px;*/
    width: 45px;
    height: 45px;
}

.video-content-box{
    position: relative;
    padding: 30px;
    margin: 0;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 10px 50px 0px rgba(53, 82, 99, 0.09);
}

.video-content-box h6{
    font-size: 20px;
    line-height: 22px;
    color: #ff7700;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}
.video-content-box h4{
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    color: #0F0F0F;
    margin-bottom: 20px;
}
.video-content-box p{
    margin-bottom: 20px;
}
.video-content-box a{
    
}
 .thuambnell-video-area  .col-12 {
    padding: 0;
}
.thuambnell-video-area {
    margin-top: 20px;
}
.thuambnell-video {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
}

.thuambnell-video-box {
    position: relative;
    transition: all 0.2s linear;
    margin-bottom: 10px;
    bottom: 0;
}
.thuambnell-video-box:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    top: 0;
    left: 0;
    z-index: 1;
}
.thuambnell-video-box:hover {
    box-shadow: 0px 10px 10px 0px rgb(53 82 99 / 40%);
    transition: all 0.2s linear;
    bottom: 3px;
}
.thuambnell-video-box a{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 50px;
    height: 30px;
    background-color: red;
    color: #fff;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.thuambnell-video-box a::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -12px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid #fff;
    border-radius: 5px;
    animation-name: pulseInOut;
    opacity: 0;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}
.thuambnell-video-box a::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -12px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid #fff;
    border-radius: 5px;
    animation-name: pulseInOutSM;
    opacity: 0;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
}
.thuambnell-video-box a svg {
    margin-left: 0;
}
.thuambnell-video img{
    width: 100%;
    display: block;
    height: 180px;
    object-fit: cover;
}
.thuambnell-video h5{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #0F0F0F;
}
 .broadcast-slider .slick-dots {
        display: flex !important;
        justify-content: center;
        margin-top: 10px;
    }
    .broadcast-slider .slick-dots li {
        margin-right: 10px !important;
    }
    .broadcast-slider .slick-dots li button {
        width: 12px;
        height: 12px;
        border: none;
        border-radius: 50%;
        font-size: 0;
        background: #ffe4cc;
        cursor: pointer;
    }
    .broadcast-slider .slick-dots li.slick-active button {
        background: #ff7700;
    }
/**************************************************/
.marquee-sec {
    padding: 30px 0;
    position: relative;
    background: #cb8837;
    overflow: hidden;
}
.marquee-sec h2 {
    font-size: 60px;
    line-height: 60px;
    font-weight: 800;
    color: transparent;
    margin: 20px 0;
    -webkit-text-stroke: 1px #fff;
    text-shadow: 0px 0px #fff;
  }

/*.marquee-sec h2:before{
    content: '\0950';
    font-family: "Arya", sans-serif;
    position: relative;
    left: 0;
    font-size: 65px;
    margin-right: 25px;
    top: 5px;
}*/
/*.marquee-sec h2:after{
    content: '\0950';
    font-family: "Arya", sans-serif;
    position: relative;
    right: 0;
    font-size: 80px;
    margin-left: 25px;
    top: 10px;
}*/



.carousel-track {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-animation: carousel-loop 10s linear infinite;
    animation: carousel-loop 10s linear infinite;
    white-space: nowrap;
    will-change: transform;
  width: 100%;
}
@keyframes carousel-loop {
  from {
    -webkit-transform:translate3d(0, 0, 0);
    transform:translate3d(0, 0, 0)
  } 
  to { -webkit-transform:translate3d(-50%, 0, 0);
    transform:translate3d(-50%, 0, 0)
  }
}
.carousel-item {
    font-weight: 700;
  padding: 0 20px;
    font-size: 50px;
    line-height: 60px;
    
    color: #dbdbde;
    text-align: center;
}
 
 .view-all-btn {
    text-align: center;
    margin-top: 50px;
 }
/**************************************************/
/**************************************************/
/**************************************************/
/**************************************************/
/**************************************************/



/***********************************/

footer{
    background: #fff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 110px 0 30px 0;
    overflow: hidden;
}
.footer-logo {
    width: 300px;
}
.footer-logo img{
    width: 100%;
}
footer .box ul{
    list-style-type: none;
    padding-left: 0;
}
footer .box ul li{
    text-decoration: none;
    font-size: 16px;
    color: #6d6d6d;
    width: 100%;
}
footer .box ul li a{
    text-decoration: none;
    font-size: 16px;
    color: #6d6d6d;
    width: 100%;
    padding-bottom: 2px;
    transition: all 0.3s linear;
}
footer .box ul li a img{
    margin-right: 16px;
}
footer .box ul li a:hover{
    color: #ff7700;
    transition: all 0.3s linear;
}
footer .box h3{
    margin: 18px 0;
    font-size: 26px;
    color: #ff7700;
    position: relative;
    height: 25px;
}

footer .box p{
    margin-top: 12px;
    text-align: left;
    line-height: 24px;
    font-size: 16px;
    color: #6d6d6d;
    margin-bottom: 20px;
}
footer .box ul li{
    margin-bottom: 0.5rem;
    line-height: 28px;
}
footer .underline_text ul li{
    margin-bottom: 15px;
    line-height: 25px;
    position: relative;
}
.location_img {
  float: left;
  margin-top: 3px;
}
.location_text {
  float: left;
  width: 84%;
  margin-left: 14px;
}
.clear {
    clear: both;
}

.link_over {
    cursor: pointer;
}

.link_over:hover {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.copyright-area {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #dadada;
    padding-top: 30px;
    margin: 93px auto 0;
}
.copyright-area a {
    margin-left: 10px;
}
.copyright-area a svg{
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: all 0.3s linear;
}
.copyright-area a svg:hover{
    fill: #ff7700;
    transition: all 0.3s linear;
}
.copyright-text{
    text-align: center;
    line-height: 24px;
    font-size: 16px;
    color: #6d6d6d;
}

.common-btn{
  display: inline-block;
  position: relative;
  border: none;
  color: #ff7700;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  margin: 0;
  background: rgb(255 119 0 / 20%);
}
.common-btn span{
  display: block;
  padding: 15px 20px;
}
.common-btn::before, .common-btn::after{
  content:"";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #ff7700;
}

.common-btn span::before, .common-btn span::after{
  content:"";
  width:2px;
  height:0;
  position: absolute;
  transition: all 0.2s linear;
  background: #ff7700;
}
.common-btn:hover::before, .common-btn:hover::after{
  width: 100%;
}
.common-btn:hover span::before, .common-btn:hover span::after{
  height: 100%;
}

.common-btn::before{
  left: 50%;
  top: 0;
  transition-duration: 0.3s;
}
.common-btn::after{
  left: 50%;
  bottom: 0;
  transition-duration: 0.3s;
}
.common-btn span::before{
  left: 0;
  top: 50%;
  transition-duration: 0.3s;
}
.common-btn span::after{
  right: 0;
  top: 50%;
  transition-duration: 0.3s;
}
.common-btn:hover::before, .common-btn:hover::after{
  left: 0;
}
.common-btn:hover span::before, .common-btn:hover span::after{
  top: 0;
}
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/


@media(max-width: 1366px) {
    .banner-text {
        left: 10%;
    }
    .banner-content .banner-content-left h1 {
        font-size: 60px;
        line-height: 60px;
    }
    .common-header h2 {
        font-size: 50px;
        line-height: 50px;
    }
    .event-content-area h4 {
        font-size: 25px;
        line-height: 30px;
    }
    .video-content-box h4 {
        font-size: 25px;
        line-height: 30px;
    }
    .marquee-sec h2 {
        font-size: 45px;
        line-height: 45px;
    }
}
@media(max-width: 1280px) {
    .event-content-box {
        position: relative;
        margin: 0 10px;
    }
}
@media(max-width: 768px) {
    
    .top-banner .slide-arrow {
        display: none !important;
    }
    .home-about-sec .right-img {
        width: 95%;
        float: left;
    }
    .home-about-sec .right-content {
        padding-left: 0;
        margin-top: 50px;
    }
    .shiv-img {
        width: 170%;
    }
    .event-content-area {
        bottom: 0;
    }
    .event-content-area button {
        height: 50px;
    }
    .event-slider .slick-prev {
        left: 40%;
    }
    .event-slider .slick-next {
        right: 40%;
    }
}

@media(max-width: 575px) {
    .copyright-area {
        flex-direction: column;
        align-items: center;
    }
    .container, .container-fluid {
        padding: 0 !important;
        width: 93%;
    }
    .photo-gallery .container-fluid {
        width: 90%;
    }
    footer {
        padding: 110px 20px 30px;
    }
    .logo-nav {
        padding: 0 20px;
    }
    .banner-text h1 br {
        display: none;
    }
    .banner-text h1 {
        font-size: 50px;
        line-height: 55px;
    }
    .banner-text {
        width: 90%;
        left: 20px;
    }
    .banner-text a {
        font-size: 18px;
        padding: 20px 20px;
    }
    .event-slider .slick-prev {
        left: 30%;
    }
    .event-slider .slick-next {
        right: 30%;
    }
    .thuambnell-video {
        width: 95%;
        margin: 0 auto 20px;
        box-shadow: 0 0 10px rgb(0 0 0 / 40%);
    }
    .marquee-sec h2 {
        font-size: 34px;
        line-height: 34px;
    }
    .header .logo {
        width: 250px;
    }
    .banner-content .banner-content-left h1 {
        font-size: 50px;
        line-height: 50px;
    }
    .common-header h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .event-content-area {
        position: relative;
        bottom: 40px;
        left: 0;
        width: 100%;
        transform: unset;
    }
    .mandir-info {
        background-size: initial;
        padding: 70px 0;
    }
    .common-popup {
        width: 90%;
    }
    .contact-section-location .get-in-touch {
        padding: 20px;
    }
    .contact-section-location .contact-forms {
        padding: 20px;
        margin-top: 50px;
    }
}

/*#baguetteBox-overlay {
    display: none;
}*/