html{
    scroll-behavior: smooth;
}

@font-face {
    font-family: trajanPro-regular;
    src: url("/fonts/trajan-pro/TrajanPro-Regular.ttf");
}

@font-face {
    font-family: trajanPro;
    src: url("/fonts/trajan-pro/Trajan-Pro.ttf");
}

@font-face {
    font-family: trajanbold;
    src: url("/fonts/trajan-pro/TrajanPro-Bold.otf");
}

@font-face {
    font-family: Rouge Script;
    src: url("/fonts/RougeScript-Regular.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: currentColor;
    font-family: trajanPro;
}

.pr{
    position: relative;
}

a:hover{
    text-decoration: none;
}

body{
    background-color: black;
    overflow: hidden;
    overflow-y: auto;
}

.ofh{
    overflow: hidden;
}

.heading-h3{
    text-align: center;
    font-size: 28px;
    position: absolute;
    left: 0px;
    top: 30%;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    white-space: nowrap;
    z-index: 19;
    background: black;
    padding: 29px 10px 10px 18px;
    border-radius: 50px 0px 0px;
    font-weight: 500;
    color: #d7b56d4f;
}

.heading-h3.hh-white{
    color:#ffffff29;
    background-color: transparent;
}

.news-hed{
    font-size: 36px;
    white-space: nowrap;
    background: black;
    font-weight: 400;
    color: #d7b56d;
}

/*--- Loader Css ---*/
.loading-page {
    background: #0d0d0d;
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1025;
}

.loading-page .counter {
    text-align: center;
}

.loading-page .counter span {
    color: white;
    font-weight: 900;
    letter-spacing: 20px;
    font-size: 8rem;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
    font-family: 'Rubik', sans-serif;
}

.deactivate {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s 2s ease-in-out;
    -o-transition: all 0.3s 2s ease-in-out;
    transition: all 0.3s 2s ease-in-out;
}

/*--- Header Css ---*/

.main-header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1024;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(5px);
}

.main-header.scroll {
    opacity: 1;
    background-color: #53535387;
}

.main-header .sitename {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px;
    cursor: pointer;
    color: white;
    margin: 0;
}

.main-header.scroll .sitename {
    opacity: 1;
    visibility: visible;
}

.voice-icon {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: white;
    border-radius: 50px;
    padding: 8px;
}

.voice-icon svg:nth-child(1),
.voice-icon.muted svg:nth-child(2) {
    display: none;
}

.voice-icon.muted svg:nth-child(1),
.voice-icon svg:nth-child(2) {
    display: block;
}


.menu-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon span {
    width: 100%;
    padding: 1.2px;
    margin: 4px 0;
    display: block;
    border-radius: 30px;
    background-color: #000;
    transition: 0.3s;
}

.menu-icon.active span,
.menu-icon:hover span {
    background-color: #000;
}

.menu-icon:hover span:nth-child(1),
.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
    margin: -1px;
}


.menu-icon:hover span:nth-child(2),
.menu-icon.active span:nth-child(2) {
    transform: rotate(-45deg);
    margin: -1px;
}

.overflowhidden {
    overflow: hidden;
}

/*--- Main Video ---*/

.main-video{
    position: relative;
    background: #fcfcfc;
    /* overflow: hidden; */
    justify-content: center;
    align-items: center;
    display: flex;
    padding-top: 50%
}

.main-video .video-bx{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 51%;
    overflow: hidden;
}

.main-video .video-bx::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #0000002b;
}

.main-video #home-video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transform: scale(1.2);
}

.main-video h1{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    font-size: 75px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 20px;
    white-space: nowrap;
}


/*--- Blog Details-header start Css ---*/

.blogdetails-header.scroll {
    opacity: 1;
    background-color: #53535387;
}

.blogdetails-header.scroll .sitename {
    opacity: 1;
    visibility: visible;
}

.blogdetails-header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1024;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(5px);
}

.blogdetails-header .sitename {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 10px;   
    transition: all 0.3s ease;
    padding: 10px;
    cursor: pointer;
    color: white;
    margin: 0;
}

.blogdetails-header .breadcrumb-back-icon{
    align-items: center;
    background-color: #d2e5f11a;
    border-radius: 50%;
    color:#ffffff;
    cursor: pointer;
    /* display: flex; */
    height: 40px;
    justify-content: center;
    left: 10px;
    padding: 8px;
    position: absolute;
    top: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    width: 40px;
}

.blogdetails-header .breadcrumb-back-icon a{
    color: white;
}

.blogdetails-header .breadcrumb-back-icon svg {
    left: -2px;
    position: relative;
}


/*--- Blog Details-header end Css ---*/

/* --- */
.home-slider-section{
    position: relative;
}

.home-slider-section::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: linear-gradient(0deg, black, transparent);
}

.home-slider-item{
    height: 100vh;
    overflow: hidden;
}

.home-slider-item img{
    width: 100%;
    height: 100%;
    object-position: center top;
    object-fit: cover;
    filter: grayscale(1);
}

.home-slider-section .home-slider-content{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.13);
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20px;
    flex-direction: column;
}

.home-slider-section .home-slider-content .hsc-img{
    max-width: 370px;
    width: 100%;
    /* width: 280px; */
    display: block;
    animation: fadeIn ease 5s;
}

.home-slider-section .home-slider-content .hsc-title{
    font-size: 24px;
    /* font-size: 20px; */
    font-weight: 600;
    color: white;
    letter-spacing: 5px;
    margin-top: 15px;
    text-align: center;
}

.home-slider-section .home-slider-content .hsc-sub-title {
    font-size: 16px;
    /* font-size: 12px; */
    /* line-height: 17px;  */
    font-weight: 500;
    color: white;
    display: block;
    margin-top: 10px;
    max-width: 320px;
    width: 100%;
    text-align: center;
}

.home-slider-section .home-slider-content .hsc-downicon{
    position: relative;
    color: #d7b56d;
    width: 32px;
    height: 32px;
    animation: jumpInfinite 1.5s infinite;
    margin-top: 10px;
}

.home-slider-section .home-slider-content .hsc-downicon svg{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
}

@keyframes jumpInfinite {
    0% {
      top: 0;
    }
    50% {
      top: 10px;
    }
    100% {
      top: 0;
    }
}
  
@keyframes fadeIn{
0% {
    opacity:0;
}
100% {
    opacity:1;
}
}
  


.social-icon{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 7px;
}

.si-item{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 10px;
    background-color: #535353c9;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease-in-out;
}

.si-item:hover{
    background-color: black;
}

.si-item img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
}


/* contact-me */

.contact-me{
    /* height: 80vh; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-image: url(/img/patten4.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 10px;
}


.contact-me .mail-link h3{
    font-size: 36px;
    text-align: center;
    margin: 0;
    color: #d7b56d;
}

.contact-me .mail-link a{
    color: white;
    font-size: 70px;
    font-weight: bold;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
    transition: all 0.3s ease;
    line-height: normal;
    margin-top: 20px;
    display: block;
    font-family: 'Rubik', sans-serif;
}

.contact-me .mail-link a:hover{
    -webkit-text-fill-color: white;
    text-decoration: none;
}

.social-link-bx{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    margin-top: 10%;
    flex-wrap: wrap;
}

.social-link-bx a{
    color: hsla(0, 0%, 95%, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 24px;
    transition: all 0.3s ease;
    margin: 10px 0;
    padding: 0 10px;
    display: inline-block;
}

.social-link-bx a:hover{
    text-decoration: none;
    color: #fff;
}

.social-link-bx a.insta-link:hover{
    text-decoration: none;
    color: #8a3ab9;
}

.social-link-bx a.face-link:hover{
    text-decoration: none;
    color: #3b5998;
}

.social-link-bx a.ld-link:hover{
    text-decoration: none;
    color: #0077b5;
}

.social-link-bx a.tw-link:hover{
    text-decoration: none;
    color: #00aced;
}

.social-link-bx a svg{
    width: 18px;
    height: 18px;
    opacity: 0.7;
    /* visibility: hidden; */
    transition: all 0.3s ease;
    fill: currentColor;
}

.social-link-bx a:hover svg{
    opacity: 1;
    visibility: visible;
}

.contact-phone a{
    color: hsla(0, 0%, 95%, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 17px;
    transition: all 0.3s ease;
    margin: 10px 0;
    padding: 0 10px;
    display: inline-block;
}

.contact-phone a:hover {
    color: hsla(0, 0%, 95%, 0.76);
}

.contact-phone a img{
    padding: 10px;
}

/*------ footer css ------*/
footer{
    background-color: black;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
    /* margin-bottom: 10px; */
}

.mede-with {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
    /* margin-bottom: 10px; */
    display: inline-block;
}

.mede-with a {
    color: rgba(255, 255, 255, 0.5);
}

.mede-with a:hover {
    color: #dc493a;
}

.icons-box-made {
    /* border: 1px solid red; */
    width: 14px;
    height: 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: 3px;
}

.icons-box-made .fa-heart,
.icons-box-made .fa-heart-o {
    position: absolute;
}

.mede-with .fa-heart-o {
       color: #d1d1d1;
    font-size: 12px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
}

.mede-with .fa-heart {
    color: #d1d1d1;
    font-size: 12px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.mede-with:hover .fa-heart-o {
    opacity: 0;
}

.mede-with:hover .fa-heart {
    opacity: 1;
    color: #dc493a;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


/* about sectin */

.about-section{
   /* position:fixed;
   top: 0;
   left: 0;
   background-color: #fff;
   width: 100%;
   height: 100vh;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s ease;
   overflow: hidden;
   overflow-y: auto;
   z-index: 1023; */
}

.about-section.active{
   opacity: 1;
   visibility: visible;
}

.about-section .about-img-bx{
    background-image: url(/img/about/Vijaygiri4.jpg);
    background-position: 76%, 0;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh; 
}


.about-section .about-img{
    width: 90%;
    margin: auto;
    display: block;
    /* margin-bottom: 30px; */
    border-radius: 5px;
    overflow: hidden;
    /* animation: img-fill 5s ease 2s forwards; */
    filter: grayscale(1);
}



.about-section .about-text{
    width: 100%;
    /* max-width: 768px; */
    margin: auto;
}

.about-section .about-text .orm{
    display: none;
}

.about-section .about-text span{
    color: white;
    opacity: 0.7;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    font-family: trajanPro;
    text-decoration: underline;
}

.about-section .about-text .signature{
    width: 160px;
    margin-right: auto;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}

.about-section .about-text span:hover{
    cursor: pointer;
    font-weight: 600;
    opacity: 1;
}

.about-section .about-text h3{
    /* text-align: center; */
    margin: 100px 0 20px 0;
    font-size: 60px;
}

.about-section .about-text p{
    font-size: 16px;
    color: #f2f2f2b3;
}

.about-section .about-text span.read-more-btn{
    display: flex;
    align-items: center;
}

.about-section .about-text span.read-more-btn svg{
    width: 20px;
    height: 20px;
    margin-right: 5px;
    color: #d7b56d;
}

.about-section .about-text span.read-more-btn.active svg:nth-child(2),
.about-section .about-text span.read-more-btn svg:nth-child(1){
    display: block;
}

.about-section .about-text span.read-more-btn.active svg:nth-child(1),
.about-section .about-text span.read-more-btn svg:nth-child(2){
    display: none;
}


.video-play-btn{
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    /* margin-left: auto; */
}

.video-play-btn .vpb-icon {
    width: 50px;
    height: 50px;
    padding: 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #d7b56d;
    font-size: 20px;
    background-color: white;
    border-radius: 50%;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.video-play-btn:hover .vpb-icon{
    background-color: #d7b56d;
    color: white;
}

.video-play-btn .vpb-icon svg {
    position: relative;
    left: 1px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-play-btn .vpb-icon:before,
.video-play-btn .vpb-icon::after{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.644);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 currentColor;
    box-shadow: 0 0 0 0 currentColor;
    opacity: .6;
    z-index: -1;
}

.video-play-btn .vpb-icon::after {
    -webkit-animation: button-ripple 4s infinite;
    animation: button-ripple 4s infinite;
}

.video-play-btn .vpb-icon:before {
    -webkit-animation: button-ripple 3s infinite;
    animation: button-ripple 3s infinite;
}

@-webkit-keyframes button-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 15px currentColor;
        box-shadow: 0 0 0 15px currentColor;
        opacity: 0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 currentColor;
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0
    }
}

@keyframes button-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 15px currentColor;
        box-shadow: 0 0 0 15px currentColor;
        opacity: 0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 currentColor;
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0
    }
}

.video-play-btn .vpb-text{
    color: white;
    opacity: 0.7;
    font-size: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.video-play-btn:hover .vpb-text{
    color: #d7b56d;
}
  
  
  
  .video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.80);
    opacity: 0;
    transition: all ease 500ms;
  }
  
  .video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
  }
  
  .video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
  }
  
  .video-overlay-close:hover {
    color: #d7b56d;
  }
  
  .video-overlay iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
  }


/*  */
/* -----------------------------
    Certifications css and Featured css
------------------------------*/
.client-bx {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 5px;
    text-align: center;
}

  
.client-bx::placeholder {
    display: none;
}
  
.client-bx .client-item {
    width: 240px;
    height: 110px;
    border-radius: 5px;
    margin: 0 5px;
    overflow: hidden;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.client-bx .client-item:hover {
    -webkit-box-shadow: 0 0 5px #00000029;
    box-shadow: 0 0 5px #00000029;
}

.client-bx .client-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
  



/*------ media section ------*/
.media-item{
    display: block;
    padding: 10px;
}

.media-item .media-img{
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 56%;
    position: relative;
    margin-bottom: 10px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 28%);
    border-radius: 5px;
}
.media-item .media-img img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.media-item:hover .media-img img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.media-item .media-text span.date{
    text-transform: uppercase;
    color: #444444;
    letter-spacing: 0.2em;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 10px;
}

.media-item .media-text h6{
    font-weight: 600;
    font-size: 18px;
    margin-top: 3px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.50;
    overflow: hidden;
    margin-bottom: 0;
    color: #000000;
}

.media-item .media-text p{
    color: #444444;
    font-weight: 400;
    font-size: 14px;
    margin-top: 3px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 0;
    line-height: 1.75;
}


.news-bx{
    margin-bottom: 30px;
    display: inline-flex;
    justify-content: center;
    width: 49%;
    cursor: pointer;
    padding-right: 15px;
}

.news-bx img{
    width: 150px;
    height: 90px;
    flex: 0 0 150px;
    background-color: #f2f2f2;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 0px 1px #d3d3d354, rgb(33 35 38) 0px 10px 10px -10px;
}

.news-bx:hover img{
    transform: scale(1.05);
}

.news-bx .news-content-bx{
    display: inline-block;
}

.news-bx span{
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #f2f2f2;
}

.news-bx h5{
    display: block;
    color: #f2f2f2;
    opacity: 0.7;
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: lowercase;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.news-bx:hover h5{
    color: white;
    opacity: 1;
}


.imgslider .imgslider-inner img{
    width: 250px;
    height: 250px;
    object-position: top center;
    object-fit: cover;
}



/*------ Porfolio  ------------------------------------------------*/

.gallery-filters{
    text-align: center;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
}

.gallery-filters .gallery-filter{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 5px 5px;
    margin: 0px 10px;
    color: #121212;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    width: fit-content;
    opacity: 0.8;
    border-bottom: 2px dotted transparent;
}

.gallery-filters .gallery-filter:hover{
    color: black;
    opacity: 1;
}

.gallery-filters .gallery-filter.active{
    border-color:  black;
    color:  black;
    opacity: 1;
}

.gallery-items {
	width:100%;
	position:relative;
}

.gallery-item{
	width: 20%;
	position:relative;
	float:left;
    padding: 5px 5px 10px 5px;
}

.gallery-item a{
    overflow: hidden;
    border-radius: 5px;
    display: block;
    position: relative;
}

.gallery-item a .gallery-over {
    padding: 5px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: radial-gradient(#00000042, #0000003d);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item a .gallery-over .fa{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--color1);
    font-size: 18px;
    text-align: center;
    line-height: 40px;
    display: none;
}

.gallery-item a:hover .gallery-over {
    opacity: 1;
    visibility: visible;
}

.gallery-item img{
	width: 100%;
	height: auto;
	position:relative;
	z-index:1;
    filter: grayscale(1);
    transition: all 0.3s ease-in-out;
}

.gallery-item a:hover img{
    filter: grayscale(0);
}

.gallery-item .gallery-text{
    padding: 5px 0px;
    display: none;
}

.gallery-item .gallery-text h6 {
    font-weight: 600;
    font-size: 16px;
    color: rgb(0, 0, 0);
    margin-bottom: 2px;
}

.gallery-item .gallery-text p {
    color: var(--color4);
    font-size: 12px;
    margin-bottom: 0;
}




.dismiss {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    right: 0px;
    top: 0px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 1;
}

.dismiss:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    border-radius: 50%;
}

.dismiss .closes {
    position: absolute;
    width: 50%;
    height: 1.5px;
    display: inline-block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.dismiss.closes-bgcw .closes {
    background-color: white;
}

.dismiss.closes-bgcb .closes {
    background-color: rgb(0, 0, 0);
}

.dismiss:hover .closes {
    background-color: rgb(223, 7, 7);
  }

.dismiss .closes:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dismiss .closes:nth-child(2) {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}



.movies-item {
    position: relative;
}

.movies-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 142%;
    position: relative;
    margin-bottom: 10px;
    margin-left: auto;
    border-radius: 10px;
    /* box-shadow: 0px 0px 0px 1px #d3d3d3e0, rgb(33 35 38 / 58%) 0px 10px 10px -10px; */
}

.movies-img .movies-over {
    padding: 15px 15px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: radial-gradient(#00000042, #000000bd);
    opacity: 0.5;
    visibility: visible;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.movies-item:hover .movies-over {
    opacity: 1;
    visibility: visible;
}


.movies-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.movies-img img:hover{
    transform: scale(1.05);
}

.movies-text h6 {
    font-weight: 400;
    font-size: 16px;
    color: black;
    margin-bottom: 4px;
}

.movies-text p {
    color: black;
    font-size: 10px;
    margin-bottom: 0;
}



/*------ owl buttons css ------*/
.owl-style .owl-nav {
    position: absolute;
    top: -45px;
    right: -30px;
    text-align: center;
    margin: 0;
    transform: translateX(-50%);
    z-index: 2;
}
/* .owl-style-invert .owl-nav {
    filter: invert(1);
} */

.owl-style .owl-nav .owl-next,
.owl-style .owl-nav .owl-prev {
    width: 30px !important;
    height: 30px !important;
    background-color: rgb(51 51 51 / 0%) !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: white !important;
    opacity: 0.7;
}

.owl-style .owl-next svg {
    width: 30px;
    height: 30px;
    position: relative;
    right: -1px;
}

.owl-style .owl-prev svg {
    width: 30px;
    height: 30px;
    position: relative;
    left: -1px;
}

.owl-style .owl-next:hover,
.owl-style .owl-prev:hover {
    opacity: 1;
}

.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.owl-dots .owl-dot span {
    width: 9px !important;
    height: 9px !important;
    margin: 4px 4px !important;
    background-color: white !important;
    opacity: 0.7;
}

.owl-dots .owl-dot.active span {
    opacity: 1;
}

.modal{
    backdrop-filter: blur(8px);
}

.videopopup .modal-content {
    background-color: transparent;
    border-radius: 0px;
    border: none;
}

.popupvideo-container {
    width: 100%;
    padding-top: 56%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.popupvideo-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}






/* founder-popup */
.founder-popup h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.founder-popup img {
    width: 140px;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 1px #e9e9e954, rgb(0 0 0) 0px 10px 10px -10px;
    float: left;
    margin-right: 16px;
    margin-bottom: 10px;
}

.founder-popup p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}




/* --- upcoming-films --- */
.upcoming-films{
    height: 350px;
    overflow: hidden;
    position: relative;
}

.images-slider-bx{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.images-slider-bx img{
    width: 180px;
    height: 100%;
    object-position: center;
    object-fit: contain;
    background: white;
    /* margin: 0 5px;
    border-radius: 5px; */
}

.upcoming-text-bx{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.432), black);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.upcoming-text-bx .utb-img{
    width: 100px;
}

.upcoming-text-bx .utb-lable{
    color: white;
    font-weight: 500;
    font-size: 16px;
}

.upcoming-text-bx .utb-text{
    color: white;
    font-weight: 600;
    font-size: 36px;
    margin: 20px 0;
    text-align: center;
}

.upcoming-text-bx .utb-link{
    color: white;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    border-radius: 50px;
    border: 1px solid white;
    padding: 8px 14px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    display: block;
}

.upcoming-text-bx .utb-link:hover{
    color: black;
    border: 1px solid white;
    background-color: white;
}



/*  */
.instagram-slider-item{
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
    padding-top: 110%;
    position: relative;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.instagram-slider-item .isi-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; 
}

.instagram-slider-item .isi-overlayer{
    width: 100%;
    height: 100%;
    background-color: #0000000f;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.instagram-slider-item:hover .isi-overlayer{
    background-color: #00000083;
}

.instagram-slider-item .isi-overlayer > div{
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.instagram-slider-item:hover .isi-overlayer > div{
    transform: scale(1);
    opacity: 1;
}

.instagram-slider-item .isi-overlayer > div .insta-icon{
    width: 40px;
    height: 40px;
    background-color: rgb(255, 255, 255);
    padding: 5px;
    border-radius: 50%;
    margin: auto;
}

.instagram-slider-item .isi-overlayer > div p{
    font-size: 24px;
    margin-top: 5px;
    font-family: Rouge Script !important;
    position: relative;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.instagram-item {
    max-width: 1140px; 
    margin: auto;
    width: 100%; 
    height: 530px; 
    color: #f2f2f2;
}

/* Blog start css */


.blog-slider-item{
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
    padding-top: 60%;
    position: relative;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-slider-item .isi-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    /* height: 100%; */
    border-radius: 10px;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; 
}

.blog-slider-item .blog-lable{
    display: block;
    color: #f2f2f2;
    opacity: 0.7;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: lowercase;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.blog-slider-item .blog-lable:hover {
    color: white;
    opacity: 1;
}

.blog-slider-item .isi-img:hover {
    width: 103%;
    object-position: top center;
    object-fit: cover;
}

/* Blog end css */

/* --- Breadcrumb Css Start --- */
.breadcrumb-bx{   
    display: -webkit-inline-box;   
    display: -webkit-inline-flex;   
    display: -moz-inline-box;   
    display: -ms-inline-flexbox;   
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    white-space: nowrap;
    width: 100%;
    position: relative;
  }
  
  .modal {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  
  .modal-content.custom-content {
    background-color: #0000008a;
    -webkit-border-radius: 16px;
       -moz-border-radius: 16px;
            border-radius: 16px;
  }
  
  .custom-modal-header {
    padding: 25px 15px 10px;
    position: -webkit-sticky;
    position: sticky;
  }
  
  .custom-modal-header .cmh-lable {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
  }
  
  .modal {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  
  .modal-close-icon:hover{
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
    }
  
  .modal-close-icon {
    background: #0000;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    -webkit-box-shadow: 2px 4px 12px #0000;
       -moz-box-shadow: 2px 4px 12px #0000;
            box-shadow: 2px 4px 12px #0000;
    color: var(--white);
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    padding: 4px;
    position: absolute;
    right: 10px !important;
    top: 10px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    width: 35px;
  }
  
  .textlayout-main-bx {
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 20px;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 25px 0;
  }
  
  .breadcrumb-bx .breadcrumb-link{
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
    color: var(--white);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  
  .breadcrumb-bx .breadcrumb-link.breadcrumb-active{
    font-weight: 500;
    color: #d3d3d3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    pointer-events: none;
    text-decoration: none;
  }
  
  .breadcrumb-bx .breadcrumb-link:hover{
    color: var(--medium-Aquamarine);
    cursor: pointer;
  }
  
  .modal {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: #ffffff5e;
  }
  
  .has-error {
    color: red;
  }
  .signinup-group  .has-error input, .has-error textarea{
    border: 1px solid red;
  }
  
  /* --- Breadcrumb Css End --- */

/* Blog Delail start css */


.breadcrumb-bx .breadcrumb-link {
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
    color:#f2f2f2;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    cursor: pointer;
}

.breadcrumb-bx .breadcrumb-link:hover{
    color: #d7b56d;
}

.common-details-title{
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #d7b56d;
    margin-bottom: 20px;
}

.details-link {
    cursor: pointer !important;
    color: #d3d3d3 !important;
}

.details-link:hover {
    color: #d7b56d !important;
}

.breadcrumb-bx .breadcrumb-link {
    font-size: 14px;
    font-weight: 500;
    margin-right: 5px;
    color: white;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.breadcrumb-bx .breadcrumb-link.breadcrumb-active {
    font-weight: 500;
    color: #d3d3d3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    pointer-events: none;
    text-decoration: none;
}

.blog-item .blog-imgs {
    position: relative;
    margin-bottom: 15px;
    border-radius: 20px;
    overflow: hidden;
}

.blog-item .blog-imgs img {
    width: 100%;
}

.blog-item .blog-imgs::after {
    content: "";
    position: absolute;
    inset: 1;
    opacity: 0;
    z-index: 2;
    background-color: black;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.common-sub-content p{
    color: #f2f2f2;
    font-size: 16px;
    opacity: 0.7;
    /* margin-top: 17px; */
} 

.common-sub-content p span,
.common-sub-content .common-sub-heading{
    color: #ffffff;
    font-size: 16px;
    margin-top: 35px;
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 1;
}

.common-sub-content img {
    border-radius: 15px;
    margin: 35px auto 35px auto;
    display: block;
    max-width: 500px;
}

/* Blog Delail end css */

/* Career start css */

.career-heading{
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #d7b56d;
    margin-bottom: 20px;
}

.career-item .career-sub-head{
    color: #f2f2f2;
    font-size: 16px;
    opacity: 1;
}

.career-item p{
    color: #f2f2f2b3;
    font-size: 14px;
    /* opacity: 0.7; */
    text-align: justify;
}

.about-text P .career-link,
.career-item p .career-link{
    color: #ffffff;
    text-decoration: underline;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.about-text P .career-link:hover,
.career-item p .career-link:hover{
    color: #d7b56d;
}

/* Career end css */

/* Instagram start css */

.insta-links-bx .overinsta {
    width: 100%;
    height: 100%;
    background-color: #0000000f;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.insta-links-bx .overinsta span .insta-icon {
    height: 45px;
    width: 45px;
    background-color: rgb(255, 255, 255);
    padding: 5px;
    border-radius: 50%;
    margin: auto !important;
    position: absolute;
    bottom: 70px;
    right: 7px;
}

.insta-links-bx .overinsta span {
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.insta-links-bx:hover .overinsta {
    background-color: #00000083;
}

.insta-links-bx .overinsta span p {
    font-size: 1.8rem !important;
    font-family: Rouge Script !important;
    position: relative !important;
    text-align: center !important;
    color: white !important;
    top: 35px;
}

.owl-carousel .owl-item {
    margin-top: 1px;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.insta-links-bx:hover .overinsta span {
    transform: scale(1);
    opacity: 1;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

/* Instagram end css */


@media (max-width:1400px) {
    .heading-h3{
        display: none;
    }
}

@media screen and (max-width:1200px) {
    .gallery-item {
        width: 25% !important;
    }
}

@media (max-width:1100px) {

    .main-video h1{
        font-size:60px ;
        letter-spacing: 10;
        animation: hideMe 10s forwards;
    }
    @keyframes hideMe{
        0%{
            opacity: 1;
        }
        50%{
            opacity: 1;
        }
        100%{
            opacity: 0;
        }
    }

    .main-header .sitename {
        font-size: 18px;
        letter-spacing: 0px;
        margin-left: 10px;
        margin-bottom: 0;
        letter-spacing: 10px;
    }

}

@media screen and (max-width:992px) {
    .gallery-item {
        width: 33.3% !important;
    }
    .main-video h1{
        font-size:60px ;
        letter-spacing: 5px;
    }
}

@media (max-width:950px) {

    .main-video h1{
        font-size:60px ;
    }
}

@media (max-width:900px) {
    .contact-me .mail-link a{
        font-size: 40px;
    }
}

@media (max-width:800px) {

    .main-video h1{
        font-size:40px ;
        letter-spacing: 0px;
    }

    .main-video{
        padding-top: 51%
    }

}

@media (max-width:768px) {

    .news-bx{
        flex-direction: column;
    }
    .news-bx img{
        margin-bottom: 15px;
    }

    .gallery-item {
        width: 50% !important;
    }

    .upcoming-text-bx .utb-text{
        font-size: 28px;
    }

    .common-sub-content p{
        font-size: 14px;
    } 

}

@media (max-width:650px) {

    .main-video h1{
        font-size:28px ;
        letter-spacing: 0;
    }
}

@media (max-width:576px) {

    .contact-me .mail-link a{
        font-size: 24px;
    }
    
    .loading-page .counter span {
        letter-spacing: 7px;
        font-size: 6rem;
    }

    .news-bx{
        width: 100%;
    }
    .news-bx{
        flex-direction: row;
    }

    .main-video h1{
        font-size:24px;
    }

    .home-slider-item{
        height: calc(100vh - 50px);
        overflow: hidden;
    }

    .contact-phone a{
        font-size: 14px;
    }

    .common-sub-content img {
        max-width: 350px;
    }

    .home-slider-section .home-slider-content .hsc-img{
        max-width: 240px;
    }
    
    .home-slider-section .home-slider-content .hsc-title{
        font-size: 20px;
    }

    .home-slider-section .home-slider-content .hsc-sub-title {
        font-size: 12px;
    }
}

@media (max-width:460px) {
    .founder-popup h3 {
        font-size: 24px;
    }

    .upcoming-text-bx .utb-text{
        font-size: 24px;
    }

    .common-sub-content img {
        max-width: 320px;
    }

}

@media (max-width:420px) {
    .founder-popup img {
        float: none;
        margin: 0 auto 15px;
        display: block;
    }

    .founder-popup h3 {
        text-align: center;
    }
    .main-video h1{
        font-size:22px;
    }

    .common-sub-content img {
        max-width: 280px;
    }

}

@media (max-width:380px) {
    
    .contact-me .mail-link a{
        word-break: break-all;
    }
    .loading-page .counter span {
        font-size: 4rem;
    }
    .main-video h1 {
        font-size: 26px;
        letter-spacing: 0;
    }
    .main-video h1{
        font-size:20px;
    }

}


@media screen and (max-width:340px) {
    .gallery-item {
        width: 100% !important;
    } 

    .contact-phone a{
        font-size: 12px;
    }

}

@media screen and (orientation: landscape) and (max-height: 420px) {
    .home-slider-item{
        height: 576px;
    }
}