
/* STRUCTURE */

.wrapper1 {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

.wrapper1 button  {
    background-color: #56baed;
    border: none;
    color: white;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }


  .wrapper1 button:hover  {
    background-color: #39ace7;
  }
  
  .wrapper1 button:active  {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }

.wrapper1 input[type=button], input[type=submit], input[type=reset]  {
  background-color: #56baed;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.wrapper1 input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

.wrapper1 input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.wrapper1 input[type=text] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

.wrapper1 input[type=text]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

.wrapper1 input[type=text]:placeholder {
  color: #cccccc;
}


.wrapper1 input[type=email] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
  }
  
  .wrapper1 input[type=email]:focus {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
  }
  
  .wrapper1 input[type=email]:placeholder {
    color: #cccccc;
  }


  .wrapper1 input[type=password] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
  }
  
  .wrapper1 input[type=password]:focus {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
  }
  
  .wrapper1 input[type=password]:placeholder {
    color: #cccccc;
  }

.order_box {
    background: #000;
    padding: 30px;
}
.order_box h2 {
    border-bottom: 1px solid #dddddd;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 15px;
}

.order_box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.order_box .list li a {
    font-size: 14px;
    color: #f9f9f9;
    font-weight: normal;
    border-bottom: 1px solid #eeeeee;
    display: block;
    line-height: 42px;
}
.order_box .list li a span {
    float: right;
}
.order_box .list li a .middle {
    float: none;
    width: 50px;
    text-align: right;
    display: inline-block;
    margin-left: 30px;
    color: #f9f9f9;
}

.order_box .list_2 li a {
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}
.order_box .list_2 li a span {
    color: #fff;
    text-transform: capitalize;
}

.order_box .btn_3 {
    display: block;
    line-height: 38px;
    text-transform: uppercase;
    text-align: center;
}
.btn_3 {
    display: inline-block;
    padding: 3px 47px;
    border-radius: 5px;
    background-color: #b5b6b0;
    border: 1px solid #fff;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}

.caption,
.slick-slide::before,
.slick-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto !important;
    border: 1px solid transparent;
}

.slick-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slick-slide1 {
    height: auto !important;
}

.main-slider {

    transition: all 1.2s ease;
}

.main-slider.slick-initialized {
    opacity: 1;
    visibility: visible;
}

.slick-slide {
    position: relative;
    height: 38vw;
}

.slick-slide::before {
    background-color: #000;
    opacity: 0.3;
    z-index: 1;
}

.slick-slide video {

    width: 100%;
}

.slick-slide {
    display: none;
    float: left;
    min-height: 1px;
}

.slick-slide iframe {
    position: relative;
    pointer-events: none;
}

.slick-slide figure {
    position: relative;
    height: 100%;
}

.slick-slide .slide-image {
    opacity: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.8s ease;
}

.slick-slide .slide-image.show {
    opacity: 1;
}

.slick-slide .image-entity {
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.slick-slide .loading {
    position: absolute;
    top: 44%;
    left: 0;
    width: 100%;
}

.slick-slide .slide-media {
    -webkit-animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
    animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}

.slick-slide.slick-active {
    z-index: 1;
}

.slick-slide.slick-active .slide-media {
    -webkit-animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
    animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}

.slick-slide.slick-active .caption {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
}

.caption {
    position: absolute;
    top: 44%;
    left: 5%;
    text-align: center;
    padding: 20px;
    border: 3px solid;
    color: #fff;
    margin: 0;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.02em;
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease;
    transform: translateY(100px);
}

.slick-dots {
    text-align: center;
    padding-top: 15px;
}

.slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
}

.slick-dots li button {
    width: 16px;
    height: 16px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 0 transparent;
    vertical-align: middle;
    color: #fff;
    background-color: #fff;
    transition: all 0.3s ease;
    opacity: 0.4;
}

.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover {
    opacity: 1;
}

.slick-dots li.slick-active button {
    border-color: #2d3042;
    box-shadow: 0 0 0 2px #fff0;
    opacity: 1;
}

.item figure {
    margin: 0 0 1rem !important;
}

.slick-dots li {
    margin: 0 0px !important;
}

@-webkit-keyframes slideIn {
    from {
        filter: blur(15px);
    }

    to {
        filter: blur(0);
    }
}

@keyframes slideIn {
    from {
        filter: blur(15px);
    }

    to {
        filter: blur(0);
    }
}

@-webkit-keyframes slideOut {
    from {
        filter: blur(0);
    }

    to {
        filter: blur(15px);
    }
}

@keyframes slideOut {
    from {
        filter: blur(0);
    }

    to {
        filter: blur(15px);
    }
}

.offcanvas__social {
    margin-top: 30px;
}

.room-section {
    padding: 4rem 0;
    background-size: cover;

}

.room-section2 {
    padding: 4rem 0;
    background-size: cover;

}

.head-section1 {
    padding: 6rem 0;
    background-size: cover;
}

.head-section1 .hero-man1 {
    position: absolute;
    left: -90px;
    bottom: -108px;
    z-index: 1;
}

.live-section {
    padding: 7rem 0;
    background-image: url(../img/bg2.png);
    background-size: cover;

}

.lix-section {
    padding: 7rem 0;
    background-image: linear-gradient(#050a35c2, rgb(31 32 37 / 81%)), url(../img/bg_05.jpg);
    background-size: cover;

}

.carousel-indicators li {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50px !important;
}

.main-header {
    background-color: #f3f3f3;
    border-bottom: 1px solid #bcbcbc;
}

.header-info-right ul {
    margin-top: 0;
    padding: 5px 0;
    margin-bottom: 0rem;
}

.main-header .header-top .header-info-right .header-social li {
    display: inline-block;
}

.main-header .header-top .header-info-right .header-social li a {
    color: #fff;
    font-size: 16px;
    padding-left: 0px;
}

.header__top__right__language {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.header__top__right__language div {
    color: #515151;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 4px;
}

.header__top__right__language img {
    margin-right: 6px;
}

.header__top__right__language i {
    font-size: 6px;
    color: #515151;
    position: relative;
    top: -2px;
}

.header__top__right__language:hover ul {
    top: 32px;
    opacity: 1;
    margin-left: 20px;
    visibility: visible;
}

.header__top__right__language ul {
    background: #222;
    width: 83px;
    text-align: left;
    margin-left: 20px;
    padding: 0px 0;
    position: absolute;
    left: 0;
    top: 43px;
    z-index: 9999;
    opacity: 1;
    visibility: hidden;
    -webkit-transition: all, .3s;
    -moz-transition: all, .1s;
    -ms-transition: all, .3s;
    -o-transition: all, .3s;
    transition: all, .2s;
}

.header__top__right__language ul li {
    ist-style: none;
    padding: 8px;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #ffffff1f;
}

.header__top__right__language ul li a {
    color: #fff !important;
    -webkit-transition: all, .1s;
    -moz-transition: all, .1s;
    -ms-transition: all, .1s;
    -o-transition: all, .1s;
    transition: all, .0s;
}




main.container-fluid {
    padding-left: 0;
    padding-right: 0;
}



.section>.row>.col {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

#intro .col {
    height: 50vh;
    padding: 9vw 6vw;
    font-size: 18px;
}

@media (min-width: 1000px) {
    #intro .col {
        padding: 18vw 12vw;
        font-size: 2.7vw;
    }
}

#one {
    background-color: #212121;
}

#one .elem {
    opacity: 0;
    letter-spacing: 0.04em;
}

#one .text-block h2 {
    font-size: 5vw;
    letter-spacing: 0.2em;
    font-weight: 300;
    line-height: 1;
}

#one .text-block h5 {
    font-size: 4vw;
    line-height: 1;
}

#one .elem .blocks {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

#one .elem .blocks>div {
    height: 20px;
    width: 20px;
    margin: 2px;
    border-radius: 2px;
    background-color: #333;
}

#two {
    height: auto;
    overflow: hidden;
    padding: 3vw 15vw 10vw;
    background: linear-gradient(0deg, #69b7bf 25%, #ffe664);
}

#three,
#four {
    position: relative;
    overflow: hidden;
}

#three .image,
#four .image {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}


#four .image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 5.5 !important;
}

.dzsap-sticktobottom.dzsap-sticktobottom-for-skin-wave {
    bottom: 0;
    opacity: 1;
}

.audiogallery .nav-main .nav-clipper {
    position: relative;
    text-align: center;
}

.zoomsounds-nav.skin-default .menu-item.active {
    background-color: #fff0 !important;
    color: #19a988 !important;
}

.zoomsounds-nav.skin-default .menu-item .the-name {
    float: left;
    display: block;
    position: relative;
    top: 0px !important;
    margin-right: 0px !important;
    padding: 0px 10px !important;
    opacity: 0.5;
}

.zoomsounds-nav.skin-default .menu-item {
    padding: 10px;
    display: inline-table;
    margin: 0 auto;
    background-color: #ffffff !important;
    color: #252525 !important;
    transition-property: background;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    -moz-transition-property: background;
    -moz-transition-duration: 0.5s;
    -moz-transition-timing-function: ease-out;
    -webkit-transition-property: background;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-property: background;
    -o-transition-duration: 0.5s;
    -o-transition-timing-function: ease-out;
    -ms-transition-property: background;
    -ms-transition-duration: 0.5s;
    -ms-transition-timing-function: ease-out;
}

.audioplayer.skin-wave .ap-controls .con-playpause .playbtn {
    background-color: #313131 !important;
}

/******************************

[Table of Contents]

1. 1600px
2. 1440px
3. 1280px
4. 1199px
5. 1024px
6. 991px
7. 959px
8. 880px
9. 768px
10. 767px
11. 539px
12. 479px
13. 400px

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 280px) and (max-width: 567px) {}

@media only screen and (min-width: 375px) and (max-width: 666px) {}

@media only screen and (min-width: 414px) and (max-width: 735px) {}

@media only screen and (min-width: 768px) and (max-width: 1023px) {}

@media only screen and (min-width: 1024px) and (max-width: 1365px) {}

@media only screen and (min-width: 1290px) {
    .fluid1 {
        width: 75%;
    }
}

@media only screen and (min-width: 1366px) {
    .fluid {
        width: 70%;
    }

    .room11-section {
        margin-bottom: 46px;
    }

    .d2 {
        display: inherit !important;
    }

    .d1 {
        display: none !important;
    }
}



.mt-15 {
    margin-top: 15px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

@media only screen and (max-width: 1600px) {}

/************
2. 1440px
************/

@media only screen and (max-width: 1440px) {}

/************
3. 1380px
************/

@media only screen and (max-width: 1380px) {}

/************
3. 1280px
************/

@media only screen and (max-width: 1280px) {
    .slick-slide {
        display: none;
        float: left;
        height: 100% !important;
        min-height: 1px;
    }
}

/************
4. 1199px
************/

@media only screen and (max-width: 1199px) {
    .dis1 {
        display: none !important;
    }


    .sticky-wrapper.is-sticky .ber-menu {
        background: black;
        color: white;
        transition: opacity 1s ease;
        opacity: 1;
        position: fixed;
        top: 68px !important;
        height: 50px;
        z-index: 2;
        line-height: 50px;
    }

    .ber-menu {
        padding: 0 15px;
        overflow: auto;
        white-space: nowrap;
    }

    .form-content {
        padding: 3rem;
        border-left: 1px solid #fff;
    }

    .room11-section {
        margin-bottom: 17px;
    }

    .ber-menu {
        background: black;
        color: white;
        transition: opacity 1s ease;
        opacity: 1;
        position: fixed;
        top: 68px;
        text-align: center;
        left: 0;
        padding-left: 10px;
        width: 100%;
        height: 50px;
        z-index: 2;
        line-height: 50px;
        transition: all 0.5s ease;
    }
}

/************
4. 1100px
************/

@media only screen and (max-width: 1100px) {}

/************
5. 1024px
************/

@media only screen and (max-width: 1024px) {}

/************
6. 991px
************/
@media only screen and (min-width: 992px) {

    .d2 {
        display: inherit !important;
    }

    .d1 {
        display: none !important;
    }
}

@media only screen and (max-width: 991px) {
    .d2 {
        display: none !important;
    }

    .d1 {
        display: inherit !important;
    }
}

/************
7. 959px
************/

@media only screen and (max-width: 959px) {}

/************
8. 880px
************/

@media only screen and (max-width: 880px) {}

/************
9. 768px
************/

@media only screen and (max-width: 768px) {
    .room-section2 {
        background-image: none !important;
        background-color: #f9f9f9;
        background-size: cover;

    }

    .detail {
        padding: 1rem 0;
    }

    .owl-nav .owl-prev {
        left: 25px !important;
    }

    .owl-nav .owl-next {
        right: 25px !important;
    }

    .owl-nav>div {
        margin-top: -26px;
        position: absolute;
        top: 50%;
        color: #59c4b1;
    }

    .subscribe-area .subscribe-caption form input {
        width: 100%;
        margin-bottom: 8px;
    }

    .subscribe-area .subscribe-caption form button.subscribe-btn {
        width: 100%;
        margin-left: 0px;
        height: 48px;
    }

    .head-section1 {
        padding: 2rem 0;
        background-size: cover;
    }

    .subscribe-area .subscribe-caption h3 {
        color: #fff;
        font-size: 40px;
    }

}

/************
11. 539px
************/

@media only screen and (max-width: 539px) {}

/************
12. 480px
************/

@media only screen and (max-width: 480px) {
    .room1-section {
        margin-top: 40px !important;
    }

    .experience {
        right: auto;
    }

    h1 {
        font-size: 26px !important;
    }

    .post-slide2 .post-content {
        background: #fff;
        padding: 20px 0;
        text-align: center;
    }

    .post-slide2 .post-bar {
        padding: 0;
        margin-bottom: 15px;
        list-style: none;
        text-align: center;
    }

    .ber-menu a {
        color: white;
        padding: 0 5px;
        text-decoration: none;
    }

    .blog-des h1 {
        margin: 0;
        font-size: larger;
    }



    .ga-vertical-gallery .slider-main div img {
        width: 100%;
        height: 100%;
    }

    .ga-vertical-gallery .nav-container {
        height: 290px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .ga-vertical-gallery .nav-container i.fa {
        display: none;
    }

    .ga-vertical-gallery .nav-container img {
        /* max-height: 135px; */
        height: 100%;
        width: 100%;
    }

    .nav111 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: inline-flex !important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-left: 0;
        width: 100%;
        margin-bottom: 0;
        list-style: none;
        flex-direction: row;
        justify-content: center;
    }

    .nlink {
        color: #999 !important;
        background-color: #84848400 !important;
        border: 1px solid #fff0 !important;
        border-radius: 0% !important;
        width: 100% !important;
        height: 100% !important;
    }

    .nav-pills .nlink.active,
    .nav-pills .show>.nlink {
        border-right: 3px solid #fff0 !important;
    }

    .nitem {
        padding: 20px !important;
        text-align: center !important;
        border-right: 1px solid #fff0;
        width: 170px;
        height: 140px;
        border-bottom: 1px solid #dedede !important;
    }
}

/************
13. 479px
************/

@media only screen and (max-width: 479px) {}

#back-to-top {
    position: fixed;
    bottom: 18px;
    right: 26px;
    z-index: 9999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 39px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    opacity: 0;
    background: #1f1f20;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.5s ease-out 0s;
}

#back-to-top:hover {
    background: #353536;
}

#back-to-top.show {
    opacity: 1;
}


/* fix blank or flashing items on carousel */
.owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}

/* end fix */
.owl-nav>div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
}

.owl-nav i {
    font-size: 52px;
    color: #f9f9f9;
}

.owl-nav .owl-prev {
    left: -30px;
}

.owl-nav .owl-next {
    right: -30px;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next {
    right: 0;
}

.owl-dots {
    text-align: center;
    padding-top: 15px;
}

.owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.owl-dots button.owl-dot.active {
    background-color: #000;
}

.owl-dots button.owl-dot:focus {
    outline: none;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}

.owl-nav button:focus {
    outline: none;
}

.video-main {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 80px;

}



.fa-play:before {
    content: "\f04b";
}


/*************************vdo********************/
.wrapper {
    display: inline-block;
}

.video-main {
    position: relative;
    display: inline-block;
}

.video-main {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 80px;

}

.video-main1 {
    position: relative;
    display: inline-block;
}

.video-main1 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 180px;
    height: 69px;

}

.video-main i {
    font-size: 80px;
    color: #fff;
}


@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.fa-play:before {
    content: "\f04b";
}

.waves {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #335b2c;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    right: 50px;
    left: 50px;
    margin: auto;
    bottom: 0;
    top: 0;
    z-index: 0;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

/*************************vdo********************/