* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
}

*::-moz-selection {
  background-color: #1F1F1F;
  color: #fff;
}

*::selection {
  background-color: #1F1F1F;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #1F1F1F;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #07080c !important;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, #07080c, #000000);
  text-align: center;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  display: none !important;
}

.scroll-top-btn img {
  width: 25px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  background-color: #07080c;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .navbar.home-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
}

.navs-container .navbar .logo {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  margin: 0 10px;
  color: #ddd;
  font-weight: 500;
  position: relative;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.navs-container .navbar .nav-link .icon {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 0 0 10px;
  -webkit-filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(239deg) brightness(107%) contrast(100%);
          filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(239deg) brightness(107%) contrast(100%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .8;
}

.navs-container .navbar .nav-link.active, .navs-container .navbar .nav-link:hover {
  color: #fff;
}

.navs-container .navbar .nav-link.active .icon, .navs-container .navbar .nav-link:hover .icon {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  opacity: 1;
}

.navs-container .navbar .nav-link.visibleLinks {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.navs-container .navbar .lang-butn {
  border: 1px solid #ccc;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  display: block;
  padding: .4rem 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
}

.navs-container .navbar .lang-butn .icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 5px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(82deg) brightness(109%) contrast(102%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(82deg) brightness(109%) contrast(102%);
}

.navs-container .navbar .lang-butn:hover {
  background-color: #E8BA27;
  border: 1px solid #E8BA27;
  color: #fff;
}

.navs-container .navbar .search-wrapper {
  position: relative;
}

.navs-container .navbar .search-wrapper .search-butn {
  background-color: transparent;
  border: none;
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 15px;
}

.navs-container .navbar .search-wrapper .search-butn .icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.navs-container .navbar .search-wrapper .search-butn.active {
  position: relative;
}

.navs-container .navbar .search-wrapper .search-butn.active .icon {
  display: none;
}

.navs-container .navbar .search-wrapper .search-butn.active::before {
  content: '\f00d';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 26px;
  position: absolute;
  top: -4px;
  left: 0;
}

.navs-container .navbar .search-wrapper .form-group {
  position: absolute;
  margin-bottom: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
  top: -15px;
  left: 55px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .navbar .search-wrapper .form-group .form-control {
  position: absolute;
  height: 55px;
  font-size: 14px;
  font-weight: bold;
}

.navs-container .navbar .search-wrapper .form-group .searchIcon {
  position: absolute;
  left: 5px;
  top: 16px;
  background-color: transparent;
  border: transparent;
  opacity: .5;
}

.navs-container .navbar .search-wrapper .form-group .searchIcon:hover {
  opacity: 1;
}

.navs-container .navbar .search-wrapper .form-group.active {
  opacity: 1;
  width: 850px;
  visibility: visible;
}

.navs-container .navbar .search-wrapper .search-results {
  position: absolute;
  width: 100%;
  top: 55px;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.navs-container .navbar .search-wrapper .search-results .result {
  background-color: #f8f8f8;
  padding: 15px 10px;
  font-size: 14px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.navs-container .navbar .search-wrapper .search-results .result:hover {
  background-color: #111;
  color: #fff;
}

.navs-container .navbar .search-wrapper .search-results .no-result {
  background-color: #f8f8f8;
  padding: 15px 10px;
  font-size: 14px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.navs-container .navbar .navbar-toggler {
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 0;
  display: block;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -7px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 7px;
  right: 0px;
}

.navs-container .navbar-fixed-top.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 999;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  background-image: -webkit-gradient(linear, left top, right top, from(#07080c), to(#07080c));
  background-image: linear-gradient(to right, #07080c, #07080c);
  -webkit-box-shadow: 0px 4px 15px 0px #202020;
          box-shadow: 0px 4px 15px 0px #202020;
}

.navs-container .navbar-fixed-top.scrolled .nav-link {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
}

.navs-container .navbar-fixed-top.scrolled .navbar-toggler {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  opacity: 1;
}

.navs-container li:nth-child(1) .nav-link {
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.navs-container li:nth-child(2) .nav-link {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.navs-container li:nth-child(3) .nav-link {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container li:nth-child(4) .nav-link {
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.navs-container li:nth-child(5) .nav-link {
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.navs-container li:nth-child(6) .nav-link {
  -webkit-transition: all .6s linear;
  transition: all .6s linear;
}

.navs-container li:nth-child(7) .nav-link {
  -webkit-transition: all .7s linear;
  transition: all .7s linear;
}

footer .copright {
  padding: 20px 0 15px 0;
  background-color: #07080c;
}

footer .copright .social-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
}

footer .copright .social-links a {
  margin: 0 10px;
  color: #ddd;
}

footer .copright .social-links a:hover {
  color: #fff;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

footer .copright .social-links .follow {
  color: #ccc;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  text-transform: capitalize;
}

footer .copright .copyright_p {
  color: #eee;
}

footer .copright .copyright_p .logo {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 10px;
}

footer .copright .copyright_p .alyom_link {
  color: #ddd;
}

footer .copright .copyright_p .alyom_link:hover {
  color: #fff;
  font-weight: bold;
}

/**********************************************
    Start Public Classes
**********************************************/
.sec-heading .title {
  margin-bottom: 0;
  padding: 0 2rem 0 0;
  border-right: 2px solid #666;
  font-weight: bold;
  color: #202020;
}

.butn {
  position: relative;
  padding: .6rem 2.5rem;
  color: #fff;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.butn span {
  position: relative;
  z-index: 1;
}

.butn::after, .butn::before {
  content: '';
  width: 0;
  opacity: 0;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.butn::before {
  left: 0;
}

.butn::after {
  right: 0;
}

.butn.dark-butn {
  background-color: #1F1F1F;
}

.butn.border-butn {
  border: 1px solid #E8BA27;
  color: #E8BA27;
}

.butn:hover {
  color: #fff;
}

.butn:hover::after, .butn:hover::before {
  width: 50%;
  opacity: 1;
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  background-image: none !important;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-button-next::before,
.swiper-button-prev::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 45px;
  color: #ccc;
  font-size: 26px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #000;
}

.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-button-next {
  left: 0 !important;
}

.swiper-button-next::before {
  content: '\f053';
}

.swiper-button-prev {
  right: 0 !important;
}

.swiper-button-prev::before {
  content: '\f054';
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0;
  margin: 0 6px !important;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-pagination-bullet-active {
  background: #ddbe34;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.container,
.container-fluid {
  position: relative;
  z-index: 5;
}

.pg-heading {
  padding: 40px 0;
  background-color: #f8f8f8;
}

.pg-heading .breadcrumb {
  padding: 0;
  background-color: transparent;
}

.pg-heading .title {
  font-weight: bold;
  text-align: center;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  position: relative;
}

.header .top-header-swiper {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.header .top-header-swiper .swiper-slide {
  position: relative;
}

.header .top-header-swiper .swiper-slide::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
}

.header .top-header-swiper .swiper-slide .bg-header {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}

.header .top-header-swiper .swiper-slide .item-inner {
  padding: 240px 0 70px 0;
  position: relative;
  z-index: 1;
}

.header .top-header-swiper .swiper-slide .item-inner .text-box {
  padding-right: 40px;
  border-right: 2px solid #ddd;
}

.header .top-header-swiper .swiper-slide .item-inner .text-box .title {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0px 20px #333;
}

.header .top-header-swiper .swiper-slide .item-inner .text-box .p {
  color: #FFFFFF;
}

.header .top-header-swiper .swiper-slide .item-inner .text-box .video-butn {
  color: #fff;
  font-weight: bold;
  display: block;
}

.header .top-header-swiper .swiper-slide .item-inner .text-box .video-butn .icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 10px;
  text-align: center;
  background-color: #E8BA27;
  color: #fff;
  -webkit-box-shadow: 0 0 25px 0 rgba(232, 186, 39, 0.5);
          box-shadow: 0 0 25px 0 rgba(232, 186, 39, 0.5);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.header .top-header-swiper .swiper-slide .item-inner .text-box .video-butn:hover {
  color: #E8BA27;
}

.header .top-header-swiper .swiper-slide .item-inner .text-box .video-butn:hover .icon {
  background-color: #333;
  color: #E8BA27;
}

.header .top-header-swiper .swiper-slide-active .bg-header {
  opacity: 1;
}

.header .top-header-swiper .swiper-slide-active .item-inner {
  -webkit-animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 0.7s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.header2 .top-header-swiper .swiper-slide .item-inner {
  padding: 250px 0 30px 0;
  position: relative;
  z-index: 1;
}

.items-sec {
  padding: 70px 2vw 0px 2vw;
}

.items-sec .swiper-button-next,
.items-sec .swiper-button-prev {
  top: 40%;
}

.item_card {
  position: relative;
  margin-bottom: 35px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.item_card .img-box {
  height: 285px;
  position: relative;
  overflow: hidden;
}

.item_card .img-box::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(232, 186, 39, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

.item_card .img-box .card_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.item_card .butn {
  padding: .5rem 3rem;
  display: none;
}

.item_card .title {
  color: #666;
  line-height: 2rem;
}

.item_card:hover {
  -webkit-box-shadow: 0 0 35px 0 #ddd;
          box-shadow: 0 0 35px 0 #ddd;
}

.item_card:hover .card_img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.item_card:hover .title {
  color: #000;
}

.news-sec .news_card {
  border: 1px solid #eee;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about-sec {
  padding: 70px 0;
  position: relative;
}

.about-sec .img-box {
  min-height: 400px;
  height: 100%;
}

.about-sec .img-box .main-img {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  -o-object-fit: cover;
     object-fit: cover;
}

.about-sec .img-box::before {
  content: '';
  width: 50%;
  height: 55%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  bottom: 0;
  right: 45px;
  display: block;
  -webkit-clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
}

.about-sec .text-box .sec-heading .title {
  padding: 0 1.5rem 0 0;
}

.about-sec .text-box .p {
  line-height: 2rem;
}

.about-sec .item_r .text-box {
  -webkit-padding-start: 2vw;
          padding-inline-start: 2vw;
}

.about-sec .item_r .img-box .main-img, .about-sec .item_r .img-box::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
}

.about-sec .item_r .img-box::before {
  right: unset;
  left: 45px;
}

.about-sec .pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/**********************************************
    Start Edit Item Details Page 
**********************************************/
.item-det-sec {
  position: relative;
  padding: 70px 0;
  background-color: #F1F1F1;
}

.item-det-sec .text-box .categ-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.item-det-sec .text-box .categ-wrapper .categ {
  font-weight: bold;
  color: #666;
  font-size: 14px;
}

.item-det-sec .text-box .categ-wrapper .categ::after {
  content: '\f192';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin: 0 10px;
  font-size: 10px;
  color: #888;
}

.item-det-sec .text-box .categ-wrapper .last::after {
  display: none;
}

.item-det-sec .lg-slide-swiper {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.item-det-sec .lg-slide-swiper .img-box {
  position: relative;
  overflow: hidden;
}

.item-det-sec .lg-slide-swiper .img-box .lg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 15px;
  border: 1px solid #999;
  padding: 10px;
}

.item-det-sec .lg-slide-swiper .swiper-slide-active .lg-img {
  -webkit-animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.item-det-sec .sm-slide-swiper {
  overflow: hidden;
}

.item-det-sec .sm-slide-swiper .swiper-slide {
  opacity: .5;
  cursor: pointer;
}

.item-det-sec .sm-slide-swiper .sm-bg-header {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  border: 1px solid #ddd;
  padding: 10px;
}

.item-det-sec .sm-slide-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.item-det-sec .sm-slide-swiper .swiper-slide-thumb-active .sm-bg-header {
  border: 1px solid #666;
}

.item-det-sec .lg-slide-swiper .img-box,
.item-det-sec .sm-slide-swiper {
  height: 430px;
}

.item-det-sec .teamwork-wrapper {
  border-radius: 10px;
  padding: 20px 20px 0 20px;
}

.item-det-sec .teamwork-wrapper .title {
  font-weight: bold;
  color: #666;
}

.item-det-sec .teamwork-wrapper .team_member {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  margin-bottom: 35px;
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
}

.item-det-sec .teamwork-wrapper .team_member .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-det-sec .teamwork-wrapper .team_member .prof-data {
  -webkit-padding-start: 10px;
          padding-inline-start: 10px;
}

.item-det-sec .certi-wrapper {
  border-radius: 10px;
  padding: 20px 20px 0 20px;
}

.item-det-sec .certi-wrapper .title {
  font-weight: bold;
  color: #666;
}

.item-det-sec .certi-wrapper .cert-img {
  width: 100%;
  height: 55px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
}

.item-det-sec .platforms-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.item-det-sec .platforms-wrapper .platform-logo {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 10px;
}

.item-det-sec .series-seaons .season-input {
  background-color: transparent;
  padding: 0;
  border: transparent;
  font-weight: bold;
  font-size: 1.2rem;
  color: #666;
}

.item-det-sec .series-seaons .season-input:focus {
  border: none !important;
}

.item-det-sec .series-seaons .season_card {
  background-color: #fff;
}

.item-det-sec .series-seaons .season_card .img-box {
  height: 150px;
}

.item-det-sec .series-seaons .season_card .rate i {
  color: #dcdc1e;
}

.item-det-sec .imdb-logo {
  width: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.item-det-sec .imdb-logo:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.triller-wrapper {
  height: 400px;
  position: relative;
}

.triller-wrapper .poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-butn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}

.video-butn .icon {
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.video-butn:hover .icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.item-det-sec2 .data-card {
  padding: 35px 25px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px 0 #ddd;
          box-shadow: 0 0 15px 0 #ddd;
}

.item-det-sec2 .data-card .rating {
  font-size: 25px;
  color: #101010;
}

.item-det-sec2 .data-card .rating i {
  color: #dcdc1e;
  -webkit-margin-end: 6px;
          margin-inline-end: 6px;
}

.item-det-sec2 .data-card .item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 25px;
  padding-bottom: 15px !important;
}

.item-det-sec2 .data-card .certi-wrapper {
  padding: 0;
  border-radius: 0;
}

.item-det-sec2 .data-card .certi-wrapper .cert-img {
  height: 60px;
  margin-bottom: 5px;
}

/**********************************************
    Start Edit Contact Page 
**********************************************/
.contact-pg {
  padding: 70px 0;
  position: relative;
}

.contact-pg .contact_info .items {
  padding: 20px 15px;
  background-color: #f8f8f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  border-radius: 10px;
}

.contact-pg .contact_info .items .icons {
  width: 20%;
  text-align: center;
  color: #666;
}

.contact-pg .contact_info .items .icons i {
  font-size: 18px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-pg .contact_info .items a.icons:hover {
  color: #000;
  border-color: #000;
}

.contact-pg .contact_info .items .info {
  width: 70%;
  padding: 15px;
}

.contact-pg .contact_info .items .info h6 {
  color: #999;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-pg .contact_info .items .info h3 {
  color: #1F1F1F;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.contact-pg .form-group .form-control {
  border-radius: 10px;
  font-size: 13px;
}

.contact-pg .form-group input,
.contact-pg .form-group select {
  height: 55px;
}

/**********************************************
    Start Edit Blog det Page 
**********************************************/
.blog_det {
  position: relative;
  padding: 70px 0;
}

.blog_det .blog-inner {
  border-radius: 15px;
  -webkit-box-shadow: 0 0 25px 0 #e5e5e5;
          box-shadow: 0 0 25px 0 #e5e5e5;
  padding: 25px;
}

.blog_det .blog-inner .img-box {
  position: relative;
  height: 300px;
}

.blog_det .blog-inner .img-box .blog-img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.blog_det .blog-inner .blog-heading {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  border-right: 2px solid #ccc;
}

.blog_det .blog-inner .blog-heading .titile {
  font-weight: bolder;
}

.blog_det .blog-inner .blog-heading .subtitle {
  color: #666;
  font-weight: 600;
}

.blog_det .blog-inner .det {
  line-height: 2rem;
}

.blog_det .recent-blog {
  padding: 0 1rem;
}

.blog_det .recent-blog .single-blog {
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.blog_det .recent-blog .single-blog .name {
  color: #888;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.blog_det .recent-blog .single-blog:hover .name {
  color: #101010;
}

/**********************************************
    Start Edit Dark Theme 
**********************************************/
.theme-dark .pg-heading {
  background-color: #101010;
}

.theme-dark .pg-heading .breadcrumb-item.active {
  color: #ddd;
}

.theme-dark .pg-heading a,
.theme-dark .pg-heading .title {
  color: #fff;
}

.theme-dark .items-sec,
.theme-dark header,
.theme-dark footer,
.theme-dark .about-sec,
.theme-dark .item-det-sec,
.theme-dark .contact-pg,
.theme-dark .blog_det {
  background-color: #000;
}

.theme-dark .sec-heading .title,
.theme-dark .items-sec .item_card .title,
.theme-dark footer .content .title,
.theme-dark .newsletter-sec .text-box .title,
.theme-dark .item-det-sec2 .data-card .rating,
.theme-dark .item-det-sec .text-box .item_name,
.theme-dark .item-det-sec .teamwork-wrapper .title,
.theme-dark .item-det-sec .teamwork-wrapper .team_member .prof-data .name {
  color: #fff;
}

.theme-dark .items-sec .item_card:hover {
  -webkit-box-shadow: 0 0 35px 0 #202020;
          box-shadow: 0 0 35px 0 #202020;
}

.theme-dark .news-sec .news_card {
  border: 1px solid #111;
}

.theme-dark .items-sec .item_card .p,
.theme-dark .items-sec .item_card .categ,
.theme-dark .newsletter-sec .p,
.theme-dark footer .content .links .link,
.theme-dark .item-det-sec .certi-wrapper .title,
.theme-dark .item-det-sec .text-box .det {
  color: #ddd;
}

.theme-dark footer .copright {
  background-color: #101010;
}

.theme-dark .newsletter-sec .pattern {
  -webkit-filter: invert(99%) sepia(1%) saturate(2051%) hue-rotate(143deg) brightness(116%) contrast(87%);
          filter: invert(99%) sepia(1%) saturate(2051%) hue-rotate(143deg) brightness(116%) contrast(87%);
}

.theme-dark .about-sec .img-box::before {
  background-color: rgba(255, 255, 255, 0.2);
}

.theme-dark .item-det-sec .sm-slide-swiper .sm-bg-header {
  border: 1px solid #101010;
}

.theme-dark .item-det-sec2 .data-card {
  -webkit-box-shadow: 0 0 15px 0 #202020;
          box-shadow: 0 0 15px 0 #202020;
}

.theme-dark .item-det-sec .lg-slide-swiper .img-box .lg-img {
  border: 1px solid #333;
}

.theme-dark .navs-container .navbar-fixed-top.scrolled {
  -webkit-box-shadow: 0px 4px 15px 0px #333;
          box-shadow: 0px 4px 15px 0px #333;
}

.theme-dark .contact-pg .form-group .form-control {
  background: #000;
  border: 1px solid #666;
  color: #ddd;
}

.theme-dark .contact-pg .contact_info .items {
  background-color: #101010;
}

.theme-dark .contact-pg .contact_info .items .info h3 {
  color: #fff;
}

.theme-dark .contact-pg .contact_info .items .info h6,
.theme-dark .contact-pg .contact_info .items i {
  color: #ccc;
}

.theme-dark .blog_det .blog-inner {
  -webkit-box-shadow: 0 0 25px 0 #111;
          box-shadow: 0 0 25px 0 #111;
}

.theme-dark .blog_det .blog-inner .blog-heading .titile,
.theme-dark .blog_det .blog-inner .blog-heading .subtitile {
  color: #fff;
}

.theme-dark .blog_det .blog-inner .det,
.theme-dark .blog_det .blog-inner .date {
  color: #ddd;
}

.theme-dark .blog_det .recent-blog .title {
  color: #fff;
}

.theme-dark .blog_det .recent-blog .single-blog {
  border-bottom: 1px solid #333;
}

.theme-dark .blog_det .recent-blog .single-blog .name {
  color: #ddd;
}

.themeToggler {
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}

.themeToggler .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 31px;
  margin: 0 15px 0 0;
}

.themeToggler .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.themeToggler .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.themeToggler .slider:before {
  position: absolute;
  content: "Dark";
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  left: -10px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #0F0F08;
  background-color: #0F0F08;
  color: #fff;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
}

.themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #E8BA27;
          box-shadow: 0 0 1px #E8BA27;
}

.themeToggler input:checked + .slider:before {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  content: "Light";
  background-color: #fff;
  border: 1px solid #fff;
  color: #0F0F08;
}

.themeToggler .slider.round {
  border-radius: 10px;
}

.themeToggler .slider.round:before {
  border-radius: 10px;
}
/*# sourceMappingURL=style.css.map */