/*  PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.preloader .preloader-before,
.preloader .preloader-after {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(21, 40, 75, 0.9);
}

.preloader .preloader-before {
  top: 0;
}

.preloader .preloader-after {
  bottom: 0;
}

.preloader .preloader-block {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
}

.preloader .preloader-block.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.preloader .preloader-block .title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-110px, -110px);
  -ms-transform: translate(-110px, -110px);
  transform: translate(-110px, -110px);
  text-align: center;
  z-index: 2;
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
  margin: auto;
}

.preloader .preloader-block .title img {
  -webkit-animation: lds-ripple 4s ease-in-out infinite;
  animation: lds-ripple 4s ease-in-out infinite;
  width: 150px;
}

.preloader .preloader-block .percent {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  font-weight: 700;
  font-size: 24vw;
  color: rgba(54, 54, 53, 0.1);
  z-index: 1;
}

.preloader .preloader-block .loading {
  position: absolute;
  top: calc(50% + 16px);
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  -webkit-animation: blink-animation 2.2s linear infinite;
}

.preloader .preloader-bar {
  position: absolute;
  z-index: 2;
  top: calc(50% - 1px);
  right: 0;
  width: 100%;
  height: 2px;
  background: #05313f;
}

.preloader .preloader-bar .preloader-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  height: 100%;
  width: 0;
  background: #fff;
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #f7f5f3;
  top: 0;
  left: 0
}

.preloader .loader {
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-42%);
    transform: translateY(-42%);
    text-align: center;
    margin: 0 auto;
    width: 50px;
    height: 50px
}

.preloader .box {
    width: 100%;
    height: 100%;
    background: #05313f;
    -webkit-animation: animate .5s linear infinite;
    animation: animate .5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px
    
}

.preloader .shadow {
    width: 100%;
    height: 5px;
    background: rgb(202, 195, 195);
    opacity: .5;
    position: absolute;
    top: 59px;
    left: 0;
    border-radius: 50%;
    -webkit-animation: shadow .5s linear infinite;
    animation: shadow .5s linear infinite
}

@-webkit-keyframes loader {
  0% {
      left: -100px
  }

  100% {
      left: 110%
  }
}

@keyframes loader {
  0% {
      left: -100px
  }

  100% {
      left: 110%
  }
}

@-webkit-keyframes animate {
  17% {
      border-bottom-right-radius: 3px
  }

  25% {
      -webkit-transform: translateY(9px) rotate(22.5deg);
      transform: translateY(9px) rotate(22.5deg)
  }

  50% {
      -webkit-transform: translateY(18px) scale(1,.9) rotate(45deg);
      transform: translateY(18px) scale(1,.9) rotate(45deg);
      border-bottom-right-radius: 40px
  }

  75% {
      -webkit-transform: translateY(9px) rotate(67.5deg);
      transform: translateY(9px) rotate(67.5deg)
  }

  100% {
      -webkit-transform: translateY(0) rotate(90deg);
      transform: translateY(0) rotate(90deg)
  }
}

@keyframes animate {
  17% {
      border-bottom-right-radius: 3px
  }

  25% {
      -webkit-transform: translateY(9px) rotate(22.5deg);
      transform: translateY(9px) rotate(22.5deg)
  }

  50% {
      -webkit-transform: translateY(18px) scale(1,.9) rotate(45deg);
      transform: translateY(18px) scale(1,.9) rotate(45deg);
      border-bottom-right-radius: 40px
  }

  75% {
      -webkit-transform: translateY(9px) rotate(67.5deg);
      transform: translateY(9px) rotate(67.5deg)
  }

  100% {
      -webkit-transform: translateY(0) rotate(90deg);
      transform: translateY(0) rotate(90deg)
  }
}

@-webkit-keyframes shadow {
  50% {
      -webkit-transform: scale(1.2,1);
      transform: scale(1.2,1)
  }
}

@keyframes shadow {
  50% {
      -webkit-transform: scale(1.2,1);
      transform: scale(1.2,1)
  }
}
/*   END PRELOADER */








/*  MAIN MENU */
.MENU-UPPER {
  width: 100%;
  height: 60px; 
  padding-top: 12.5px;
  padding-bottom: 12.5px;
}

.MENU-UPPER a:hover {
  color: #b89535  !important;
}





.MENU-LOWER {
  width: 100%;
  min-height: 5rem;
  position: fixed;
  top: 0px;
  z-index: 98;
  
  /*border-top: #b89535  solid 2px;*/
  /*border-bottom: #b89535 solid 2px;*/
}


.right-75 {
  right: 75px;
  position: absolute;
}

.right-50 {
  right: 50px;
  position: absolute;
}

.right-25 {
  right: 25px;
  position: absolute;
}



.bg-transparent {
  background-color: transparent !important;
}

.absolute {
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  min-height: calc(100vh);
}



.banner-bottom-form {
  width: 100%;
  float: left;
  height: 90px; 
  position: sticky;
  top: 0px;
  z-index: 98;
}

.banner-bottom-form.fixed {
    position: fixed;
    top: 0;
    z-index: 10000;
}

.search_nav {
  margin: 33px 0 0 36px;
  width: 80%;
  float: left;
}

.inner-banner-botm .search_nav li a {
  font-size: 14px;
  float: left;
  margin-inline-end: 30px;
  position: relative;
  color: #fff;
  cursor: pointer;
  font-family: ExpoArabic-Light; 
}

.inner-banner-botm .search_nav li {
  float: left;
}


.search_nav li a:before {
  top: 7px;
  height: 16px;
  right: -15px;
}

.search_nav li:last-child a:before {
  background: none;
}

.inner-banner-botm .search_nav {
  margin-inline-end: 0;
  width: 80%;
}

.inner-banner-botm .search_nav li:first-child a {
    margin-inline-end: 0px;
  }

.inner-banner-botm .search_nav li a:hover, header.fixed .inner-banner-botm nav ul li a:hover {
  color: #05313f;
}


nav ul li a:before, .search_nav li a:before, .home_block7 .footer-menu a:before, .breadcrumb li a:before {
    background: url('/imgs/nav_divider.png') no-repeat;
    position: absolute;
    content: "";
    top: 7px;
    width: 1px;
    height: 10px;
}

nav ul li a:before {
  background: none !important;
}


.search-form {
  float: right;
  width: 20%;
  padding-top: 15px;
  position: relative;
}

.inner-banner-botm .search-form input {
  font-size: 16px;
  min-height: 40px;
}

.search_nav li a.active {  
  font-family: ExpoArabic-Light !important;
  color: #05313f;
}
/*   END MAIN MENU */



/*  FOOTER */
.FOOTER-UPPER {
  color: #f8f9fa ;
  border-bottom: #fff solid 2px;
}

.FOOTER-UPPER a:hover {
  color: #b89535;
}

.FOOTER-LOWER {
  min-height: 3.125rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #05313f;
  font-size: 0.875rem;
}

.FOOTER-LOWER a {
  color: #05313f;
  border-bottom: none;
  text-decoration: none;
}

.FOOTER-LOWER a:hover {
  color: #f8f9fa ;
}

#ToTop 
{
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #05313f;
  color: #ffffff;
  cursor: pointer;
  padding: 0.9rem 1rem;
  border-radius: 30px;
  border: 3px solid #ffffff !important;
  display: none;
}
    
#ToTop:hover 
{
  color: #00656f;
  background-color: #ffffff;
  border: 3px solid #05313f !important;
}
/*   END FOOTER */









/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
 /* Handle */
 ::-webkit-scrollbar-thumb {
  background:#05313f ; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b89535 ; 
}

/* width */
 ::-webkit-scrollbar {
  width: 10px;
}


@font-face 
{ 
    font-family: ExpoArabic-Light; 
    src: url('/fonts/ExpoArabic-Light.ttf');
}

@font-face 
{ 
    font-family: ExpoArabic-Medium; 
    src: url('/fonts/ExpoArabic-Medium.ttf');
}



.transparent-counter {
  left: 5%;
  right: 5%;
  top: 34%;
  color: white;
  text-align: center;
  position: absolute;
  width: auto;
  z-index: 90;
}


.bg-major {
  background-color: #05313f !important;
}

.bg-minor {
  background-color: #b89535 !important;
}


.text-major {
  color: #05313f !important;
}

.text-minor {
  color: #b89535 !important;
}


.border-major {
  border-color: #05313f !important;
}

.border-minor {
  border-color: #b89535 !important;
}


.modal-footer a:hover {
  color: #05313f !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-context {
  cursor: context-menu !important;
}


.btn-major {
  color: #fff;
  background-color: #05313f;
  border-color: #fff ;
}

.btn-major:hover {
  color: #fff;
  background-color: #05313fc9;
  border-color: #fff;
}

.btn-major:focus,
.btn-major.focus {
  box-shadow: 0 0 0 0.2rem #05313fc9;
}

.btn-major.disabled,
.btn-major:disabled {
  color: #fff;
  background-color: #05313fc9;
  border-color: #fff ;
}



.btn-minor {
  color: #fff;
  background-color: #b89535;
  border-color: #fff ;
}

.btn-minor:hover {
  color: #fff;
  background-color: #b89535c9;
  border-color: #fff;
}

.btn-minor:focus,
.btn-minor.focus {
  box-shadow: 0 0 0 0.2rem #b89535c9;
}

.btn-minor.disabled,
.btn-minor:disabled {
  color: #fff;
  background-color: #b89535c9;
  border-color: #fff ;
}





.font-light {
  font-family: ExpoArabic-Light !important; 
}

.font-bold {
  font-family: ExpoArabic-Medium !important; 
}





.gab-5 {
  margin-bottom: 250px;
}

.gab-4 {
  margin-bottom: 200px;
}

.gab-3 {
  margin-bottom: 150px;
}

.gab-2 {
  margin-bottom: 100px;
}

.gab-1 {
  margin-bottom: 50px;
}

.gab-0 {
  margin-bottom: 25px;
}





ul {
  list-style-type: none;
}

ul a {
  color: #f8f9fa ;
  list-style-type: none;
}

ul a:hover {
  color: #b89535;
}


.note-text:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  z-index: -1;
  width: 100%;
  border-bottom: 1px solid #efefef ;
}
 .note-text {
  position: relative;
  margin: 0 0 9px;
  text-align: center;
  color: #05313f;
  z-index: 1;
}


.note-text span {
  background: #fff;
  padding: 0 17px;
}




.note-text-white {
  background: #fff !important;
  padding: 0 17px;
}

.note-text-light {
  background: #f8f9fa !important;
  padding: 0 17px;
}










.alert-fly {
  position: fixed !important;
  bottom: 10px;
  right: 10px;
  z-index: 500;
  width: 300px;
}




article.rounded-circle.make-round-box {
  width: 225px;
  height: 225px;
  margin: 0 auto;
  position: relative;
  border: 3px dotted #c1971b !important;
}

article.rounded-circle.make-round-box h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    font-size: 14px;
    transform: translate(-50%, -50%);
    color: #000000;
}

hgroup.number-hgroup-tag {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background: #ffffff;
}




.button-background {
background-size: cover;
background-position: center center;
background-image: url(/imgs/button-background.png);
cursor: default;
}

.Box-Img {
  background-image: url(/imgs/avatar.png);
  height: 270px;
  background-size: cover;
  background-position-x: center;
}






.overlay-carousel {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0;
  z-index: 1;
  border-radius: 50px;
}

.eckcon:hover .overlay-carousel 
{
  opacity: 0.8;
}

.category-featured a:before
{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  margin:.5rem;
  border:1px solid #fff;
  border-radius:0px;
  z-index:100;
  opacity:0;
  -webkit-transform:scale(.8) translateY(40px);transform:scale(.8) translateY(40px);
  -webkit-transition:all .3s ease-out;
  transition:all .3s ease-out;
}
  
.category-featured a:hover:before
{
  -webkit-transform:scale(1) translateY(0);
  transform:scale(1) translateY(0);
  opacity:1;
}

.category-featured a:after
{
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  bottom: 0;
  background: #171616;
  opacity: 0.3;
  border-radius: 0px;
}

.category-featured a:before
{
  content:"";
  position:absolute;
  left:15px;
  right:15px;
  top:0;
  bottom:0;
  margin:.5rem;
  border:1px solid #fff;
  border-radius:0px;
  z-index:80;
  opacity:0;
  -webkit-transform:scale(.8) translateY(40px);transform:scale(.8) translateY(40px);
  -webkit-transition:all .3s ease-out;
  transition:all .3s ease-out;
}

.category-featured a:hover:before
{
  -webkit-transform:scale(1) translateY(0);
  transform:scale(1) translateY(0);
  opacity:1;
}

.category-featured a:hover h3
{
  -webkit-transform:translateY(-50%);
  transform:translateY(-50%);
}

.category-featured h3
{
  position:absolute;
  left:0;
  right:0;
  top:50%;
  -webkit-transform:translateY(70%);
  transform:translateY(70%);
  color:#fff;
  text-align:center;
  font-size:20px;
  z-index:80;
  -webkit-transition:all .3s ease-out;
  transition:all .3s ease-out;
}

.category-featured a img.cat-featured-img
{
  display:block;
  width:100%;
  height:auto;
  border-radius: 0px;
}


li.home-btn a {
  line-height: 24px;
  background: none;
  border-color: #ffffff;
  border-style: solid;
  border-width: 1px;
  color: #ffffff !important;
  margin-inline-end: 5px;
  min-width: 125px;
  text-align: center;
  font-size: 14px;
  border-radius: 0px;
  font-family: "ExpoArabic-Light", "Ubuntu regular";
}

li.home-btn a:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #b89535 !important;
}


.nav-link.active {
  background: #ffffff;
  border-color: #ffffff;
  color: #b89535 !important;
}


.pos-f-t .nav-item
{
  margin: 5px -1px;
  padding: 0px 5px;
  text-align: right;
}

.pos-f-t li.home-btn a {

  margin-inline-start: 0px;
}



@media (max-width: 767px) {
  .mobile-view
  {
    display: block;
  }

  .pc-view
  {
    display: none;
  }  
  main {
    width: calc(100%);
    padding-top: 0px;
  }

}

@media (min-width: 768px) {
  .mobile-view
  {
    display: none;
  }
  .pc-view
  {
    display: block;
  }
  main {
    width: calc(100%);
    height: 100vh;
    padding-top: 0px;
  }  

}




.header-btn {
  font-size: 14px;
  color: #fff;
}

.header-btn:hover {
  color: #b89535 !important;
}

.header-btn-active {
  color: #b89535;
  font-size: 16px;
  }
  
.header-btn-active:hover {
  color: #b89535 ;
  }
  

  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 0;
  }  

  .bg-overlay {
    background-color: black;
    opacity: 0.7;
  }








.dropdown-content a 
{    
  padding: 10px 10px !important;
  font-size: 14px !important;
  color: #c4a540 !important;
  margin: 0 !important;
  float: none !important;
  text-align: center !important;
  display: block;
  border-bottom: #2c4a4c solid 1px !important;
}

.dropdown-content .active {      
  color: #fff !important;
  background-color: #2c4a4c;
  border-bottom: #fff solid 1px !important;
}

.dropdown-content a:hover {
  background-color: #2c4a4c !important;
  color: #fff !important;
  border-bottom: #fff solid 1px !important;
}

#box
{
    width:100%;
    height:0px;
    margin:0 auto;
    margin-top:3%;
    overflow:hidden;
}


.cube-a 
{   
  width:64px;
  color: #f8f9fa;
  background-color: #e3342f;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
}

.cube-a:hover
{   
  width:64px;
  color: #ffffff;
  background-color: #2a2f34;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  cursor: pointer;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
}

.cubs-a 
{   
  width:64px;
  height:60px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: left;
  background-color: #eee;
  cursor: default;
  border: 1px solid #f8f9fa  !important;
}

.cume-a
{   
  width:64px;
  height:60px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: center;
  cursor: default;
  border: 1px solid #f8f9fa  !important;
}

.cube-c 
{   
  width:64px;
  color: #f8f9fa;
  background-color: #38c172;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
}

.cube-c:hover
{   
  width:64px;
  color: #ffffff;
  background-color: #2a2f34;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  cursor: pointer;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
}

.cubs-c 
{   
  width:64px;
  height:60px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: left;
  background-color: #eee;
  cursor: default;
  border: 1px solid #f8f9fa  !important;
}

.cume-c 
{   
  width:64px;
  height:60px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: center;
  cursor: default;
  border: 1px solid #f8f9fa  !important;
}


.cube-e 
{   
  width:96px;
  color: #f8f9fa;
  background-color: #6cb2eb;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
}

.cube-e:hover
{   
  width:96px;
  color: #ffffff;
  background-color: #2a2f34;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  cursor: pointer;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
}

.cubs-e 
{   
  width:96px;
  height:60px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: left;
  background-color: #eee;
  cursor: default;
  border: 1px solid #f8f9fa  !important;
}

.cume-e 
{   
  width:96px;
  height:60px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  cursor: default;
  border: 1px solid #f8f9fa  !important;
}

.cube-sptop 
{   
  width:96px;
  height:60px;
  font-size: 9px;
  color: #f8f9fa;
  background-color: #cab767;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
  border-bottom: 0 !important;
}

.cube-sptop:hover
{   
  width:96px;
  height:60px;
  font-size: 9px;
  color: #ffffff;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
  cursor: pointer;
  border-bottom: 0 !important;
}

.cubs-sptop 
{   
  width:96px;
  height:60px;
  font-size: 9px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: bottom;
  background-color: #eee;
  cursor: default;
  border: 1px solid #f8f9fa  !important;
  border-bottom: 0 !important;
}

.cume-sptop 
{   
  width:96px;
  height:60px;
  font-size: 9px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  border: 1px solid #f8f9fa  !important;
  border-bottom: 0 !important;
}

.cube-spbottom 
{   
  width:96px;
  height:60px;
  color: #f8f9fa;
  background-color: #cab767;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
  border-top: 0 !important;
}

.cube-spbottom:hover
{   
  width:96px;
  height:60px;
  color: #ffffff;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
  cursor: pointer;
  border-top: 0 !important;
}

.cubs-spbottom 
{   
  width:96px;
  height:60px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: left;
  background-position-y: top;
  background-color: #eee;
  cursor: default;
  border: 1px solid #f8f9fa  !important;
  border-top: 0 !important;
}

.cume-spbottom 
{   
  width:96px;
  height:60px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
  border: 1px solid #f8f9fa  !important;
  border-top: 0 !important;
}


.cube-stop 
{   
  width:192px;
  color: #f8f9fa;
  background-color: #cab767;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
  border-bottom: 0 !important;
}

.cube-stop:hover
{   
  width:192px;
  color: #ffffff;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
  cursor: pointer;
  border-bottom: 0 !important;
}

.cubs-stop 
{   
  width:192px;
  height:60px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  background-color: #eee;
  cursor: default;
  border: 1px solid #f8f9fa  !important;
  border-bottom: 0 !important;
}

.cume-stop 
{   
  width:192px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  border: 1px solid #f8f9fa  !important;
  border-bottom: 0 !important;
}

.cube-sbottom 
{   
  width:192px;
  color: #f8f9fa;
  background-color: #cab767;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
  border-top: 0 !important;
}

.cube-sbottom:hover
{   
  width:192px;
  color: #ffffff;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
  cursor: pointer;
  border-top: 0 !important;
}

.cubs-sbottom 
{   
  width:192px;
  height:60px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
  background-color: #eee;
  cursor: default;
  border: 1px solid #f8f9fa  !important;
  border-top: 0 !important;
}

.cume-sbottom 
{   
  width:192px;
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
  border: 1px solid #f8f9fa  !important;
  border-top: 0 !important;
}

.cube-n 
{   
  width:64px;
  color: #f8f9fa;
  background-color: #f8f9fa;
  margin-bottom: 0 !important;
  padding: 1rem !important;
  text-align: center;
  border: 1px solid #f8f9fa  !important;
}

.cube-hover
{   
  color: #ffffff !important;
  background-color: #2a2f34;
  cursor: pointer;
  text-align: center;
}

.cube-active
{   
  color: #ffffff !important;
  background-color: #2a2f34;
  cursor: pointer;
  text-align: center;
}




.btn-good {
  color: #fff !important;
  background-color: #b89535;
  border: 1px solid #fff !important;
  border-radius: 0 !important;
  padding: 1rem !important;
  width:150px;
  font-size: 16px;
}

.btn-good:hover {
  color: #fff;
  background-color: #6c757d;
  cursor: pointer;
}

.btn-bad {
  color: #2c4a4c !important;
  background-color: #fff;
  border: 1px solid #dee2e6 !important;
  border-radius: 0 !important;
  padding: 1rem !important;
  width:150px;
  font-size: 16px;
}

.btn-bad:hover {
  color: #2c4a4c;
  background-color: #f2f6e2;
  cursor: pointer;
}







.btn-service {
  color: #fff !important;
  background-color: #b89535;
  border: 2px solid #00656f45 !important;
  border-radius: 50rem !important;
  padding: 0.8rem !important;
  width: 150px;
  font-size: 14px;
}

.btn-service:hover {
  color: #fff;
  background-color: #6c757d;
  cursor: pointer;
}








.circle-active
{ 
  width: 45px;
  height: 45px; 
  color: #f8f9fa;
  font-size: 22px;
  background-color: #343a40;
  margin-bottom: 0 !important;
  padding: 8px 8px !important;
  text-align: center;
  border-radius: 50% !important;
  border: 1px solid #343a40 !important;
}

.circle-active:hover {
  cursor: pointer;
}

.circle-normal
{ 
  width: 45px;
  height: 45px; 
  color: #343a40;
  font-size: 22px;
  background-color: #E3E1E0;
  margin-bottom: 0 !important;
  padding: 8px 8px !important;
  text-align: center;
  border-radius: 50% !important;
  border: 1px solid #E3E1E0 !important;
}

.circle-normal:hover {
  cursor: pointer;
}


.program-title {
  text-align: center;
  background-size: contain;
  padding: 1rem !important;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  color: #fff;
  background-image: url(/imgs/title_decoration.png);
  cursor: default;
}

















/*Custom cursor animation*/
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#typed2::after {
  content: "|";
  display: inline;
  animation: blink 0.7s infinite;
  margin: 0 2px;
}


 .hor-g-line {
  height: 1px;
}

.hor-g-line {
  opacity: .5;
}

.hor-g-line {
  margin: 3rem 0;
}

.w-100.hor-g-line {
  margin-left: auto;
}

.hor-g-line {
  height: 2px;
  margin: 0px;
  /*margin: 15px 0;*/
  background: white;
  background: -webkit-linear-gradient(left,rgba(255,255,255,0) 0,rgba(255,255,255,.489233) 25%,white 50%,rgba(255,255,255,.514443) 75%,rgba(255,255,255,0) 100%);
  background: linear-gradient(90deg,rgba(255,255,255,0) 0,rgba(255,255,255,.489233) 25%,white 50%,rgba(255,255,255,.514443) 75%,rgba(255,255,255,0) 100%);
}











































.tvtc__info {
  background-color: #fff;
  position: relative;
  padding: 4rem 0
}

.tvtc__info .tvtc__info__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  grid-gap: 16px
}

@media (max-width: 991px) {
  .tvtc__info .tvtc__info__container {
      grid-template-columns: repeat(1, 1fr);
      grid-template-rows: repeat(2, 1fr)
  }
}


.tvtc__info .tvtc__info__container .tvtc__video {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 30px #cadbe3
}

.tvtc__info .tvtc__info__container .tvtc__video .video__content .video__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0
}

.tvtc__info .tvtc__info__container .tvtc__video .video__content .video__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.tvtc__info .tvtc__info__container .tvtc__video .video__content .video__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #075376cf;
  z-index: 0;
  display: block;
  z-index: 1;
  transition: all .3s ease-in
}

.tvtc__info .tvtc__info__container .tvtc__video .video__content .btn__play {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100px;
  height: 100px;
  margin: auto;
  padding: .5rem;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #005b85;
  border-radius: 50%;
  z-index: 3
}

.tvtc__info .tvtc__info__container .tvtc__video .video__content .btn__play img {
  width: 100%
}

.tvtc__info .tvtc__info__container .tvtc__video .video__content .video__title {
  position: absolute;
  bottom: 1rem;
  color: #fff;
  font-family: "ExpoArabic-Light", "Ubuntu regular";
  font-size: 1.5rem;
  line-height: 1.5;
  z-index: 3
}



.tvtc__info .tvtc__info__container .tvtc__location {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 30px #cadbe3;
  z-index: 2
}

.tvtc__info .tvtc__info__container .tvtc__location .location__content .map {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column
}

@media (max-width: 599px) {
  .tvtc__info .tvtc__info__container .tvtc__location .location__content .map svg {
      width: 250px;
      height: 250px
  }
}

.tvtc__info .tvtc__info__container .tvtc__location .location__content .map svg path.active {
  -webkit-animation: scale 2s ease-in infinite;
  animation: scale 2s ease-in infinite;
  transform-origin: center;
  fill: url(#linear-gradient)
}

.tvtc__info .tvtc__info__container .tvtc__location .location__content .map svg path:hover {
  fill: url(#linear-gradient)
}

.tvtc__info .tvtc__info__container .tvtc__location .location__content .map .info__tooltip {
  height: 100px;
  padding: 1rem 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  text-align: initial;
  position: absolute;
  width: 280px;
  box-shadow: 0 0 35px #a7d1e2;
  transition: all .4s ease-in-out
}

[dir="ltr"] .tvtc__info .tvtc__info__container .tvtc__location .location__content .map .info__tooltip {
  transform: translateX(-100%)
}

@media (max-width: 1200px) {
  .tvtc__info .tvtc__info__container .tvtc__location .location__content .map .info__tooltip {
      position: relative;
      top: auto !important;
      left: auto !important
  }

  [dir="ltr"] .tvtc__info .tvtc__info__container .tvtc__location .location__content .map .info__tooltip {
      transform: translateX(0)
  }
}

@media (max-width: 991px) {
  .tvtc__info .tvtc__info__container .tvtc__location .location__content .map .info__tooltip {
      position: relative;
      top: auto !important;
      left: auto !important
  }

  [dir="ltr"] .tvtc__info .tvtc__info__container .tvtc__location .location__content .map .info__tooltip {
      transform: translateX(0)
  }
}

.tvtc__info .tvtc__info__container .tvtc__location .location__content .map .info__tooltip span,
.tvtc__info .tvtc__info__container .tvtc__location .location__content .map .info__tooltip a {
  font-family: "ExpoArabic-Light", "Ubuntu regular";
  font-size: 1rem;
  text-align: center
}

.tvtc__info .tvtc__info__container .tvtc__location .location__content .map .info__tooltip a:visited {
  color: #005b85 !important;
}

.tvtc__info .tvtc__info__container .tvtc__location .location__content .map .info__tooltip a {
  margin: auto
}





.section__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  justify-content: space-between
}

@media (max-width: 599px) {
  .section__header {
      flex-direction: column;
      justify-content: center;
      gap: 1.5rem
  }
}

.section__header .section__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: right; 
  color: #b89535;
}

.section__header .section__title .icon img {
  height: 40px
}

.section__header .section__title h4 {
  font-size: 1.5rem;
  font-family: "ExpoArabic-Light", "Ubuntu regular";
  margin: 0
}


.no-rl-pad {
  padding-right: 0 !important;
  padding-left: 0 !important
}

























.top__radius {
  border-radius: 1rem 1rem 0 0;
}


.services .section__header {
  margin-top: -110px
}

@media (max-width: 991px) {
  .services .section__header {
      margin: 0
  }
}

/*
section:not(.services) {
  overflow: hidden;
  position: relative
}*/


.services {
  position: relative;
  padding: 1.25rem 0 1rem;
  /*background-color: #fff;
  background-image: url(/imgs/services__pattern.svg);*/
  background-position: left;
  background-repeat: no-repeat;
  background-position: bottom right
}


.services .services__container {
  position: relative;
  padding: 0 1.5rem;
  width: 100%
}

@media (max-width: 768px) {
  .services .services__container {
      padding: 0
  }
}

.services .services__container .slick-list {
  min-height: 300px
}

.services .services__container .slick-track {
  margin: auto;
  align-self: center
}

.services .services__container ul.slick-dots {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 16px auto;
  padding: 0;
  width: 100%;
  justify-content: center;
  position: relative;
  bottom: 0
}

.services .services__container ul.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer
}

.services .services__container ul.slick-dots li button {
  background-color: #fff;
  border: 1px solid #005b85;
  font-size: 0;
  line-height: 0;
  display: block;
  width: 16px;
  height: 16px;
  opacity: .5;
  margin: 0 2px;
  border-radius: 20px;
  cursor: pointer;
  color: transparent;
  outline: none;
  transition: all .4s ease-in-out
}

.services .services__container ul.slick-dots li button:hover,
.services .services__container ul.slick-dots li button:focus {
  outline: none
}

.services .services__container ul.slick-dots li button:hover::before,
.services .services__container ul.slick-dots li button:focus::before {
  opacity: 1
}

.services .services__container ul.slick-dots li.slick-active button {
  background: #005b85;
  color: #fff;
  opacity: 1
}

.services .services__container .services__item {
  position: relative;
  margin: 16px;
  color: #005b85;
  border-radius: 1rem;
  min-height: 250px;
  display: flex;
  align-items: center;
  -webkit-perspective: 1000px;
  perspective: 1000px
}

.services .services__container .services__item .services__item__container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 100%;
  min-height: 250px;
  border-radius: 1rem;
  transform-style: preserve-3d;
  transition: all .3s ease-in-out
}

.services .services__container .services__item .services__item__container .services__info {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 1rem;
  border: 1px solid #005b85;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  border-radius: 1rem
}

.services .services__container .services__item .services__item__container .services__info .item__content {
  text-align: center
}

.services .services__container .services__item .services__item__container .services__info .rate {
  width: 100%;
  justify-content: center;
  pointer-events: none
}

.services .services__container .services__item .services__item__container .services__info.front {
  background-color: #fff;
  color: #005b85;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center
}

.service__icon {
  background-color: rgba(31, 187, 180, 0.08);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center
}

.service__icon img {
  display: block;
  margin: auto;
  height: 65px;
  margin: auto
}

.services .services__container .services__item .services__item__container .services__info.front .title {
  margin: 16px 0;
  line-height: 1.5;
  font-size: 1rem;
  font-family: "ExpoArabic-Light", "Ubuntu regular";
  max-height: 75px;
  overflow: hidden;
  text-align: center;
  color: #005b85;
}

.services .services__container .services__item .services__item__container .services__info.back {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00656f;
  color: #fff;
  text-align: center;
  transform: rotateY(180deg);
  background-image: url(/imgs/service__item__pattern.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.services .services__container .services__item .services__item__container .services__info.back h4 {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "ExpoArabic-Medium", "Ubuntu regular";
}

.services .services__container .services__item .services__item__container .services__info.back p {
  padding: 0px 15px;
  font-size: 15px;
  line-height: 2;
  max-height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center
}

.services .services__container .services__item .services__item__container .services__info.back a {
  position: relative;
  display: inline-block;
  border-color: #fff;
  color: #fff
}

.services .services__container .services__item .services__item__container .services__info.back a:visited {
  color: #fff !important;
}

.services .services__container .services__item .services__item__container .services__info.back a:visited:hover {
  color: #005b85 !important;
}

.services .services__container .services__item .services__item__container .services__info.back a:hover {
  background-color: #fff;
  color: #005b85;
}

.services .services__container .services__item:hover .services__item__container {
  transform: rotateY(180deg)
}



















.gates {
  color: #fff;
  background-image: linear-gradient(to left bottom, #005b85, #007398, #008ba6, #00a3b0, var(--secondary_color));
  padding: 4rem 0;
  position: relative
}

.gates .gates__list {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  width: 100%;
  grid-gap: 30px
}

@media (max-width: 991px) {
  .gates .gates__list {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
  }
}

.gates .gates__list .gates__item .gates__item__content {
  color: #005b85;
  text-decoration: none;
  background-color: #fff;
  padding: 1rem;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100px;
  transition: all .3s ease-in;
  border: 1px solid rgba(255, 255, 255, 1)
}

.gates .gates__list .gates__item .gates__item__content .gate_icon img {
  height: 50px
}
















/* Dropdown Button */
.dropbtn {
  color: white !important;
  /*background-color: #04AA6D;
  padding: 16px;
  border: none;*/
  font-size: 14px;
}

.dropbtn:hover {
  color: #c0a368 !important;
}

.dropbtn.active {
  color: #c0a368 !important;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  cursor: pointer;  
  position: relative;
  display: inline-block;
  margin-right: 25px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  top: 70px;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {  
  color: #05313f!important;
  padding: 10px 10px !important;
  text-decoration: none;
  display: block;
  min-width: 250px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  border-bottom: solid 1px #b08b40;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  /*background-color: #3e8e41;*/
  border-bottom: solid 2px #b08b40;
  padding: 51px 0;

}

.dropdown .active {
  border-bottom: solid 2px #b08b40;
  padding: 51px 0;
}

















ul {
  margin:0;
  padding:0;
  text-align:center;
}

ul li {
  list-style:none;
}

.list-support {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 30px;
  right: auto;
  top: 40%;
  z-index: 10;
  width: 50px
}

[dir=ltr] .list-support {
  left: auto;
  right: 30px
}

.list-support li {
  margin-bottom: 20px
}

.list-support li:last-child {
  margin-bottom: 0
}

.list-support li a {
  background: #00656f;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease-in-out
}

.list-support li a:hover {
  background: #b08b40
}

.list-support li a img {
  width: 28px
}

.cbq-layout-main {
  display: inline-block
}






.wrapper-slider {
  position:fixed;
  transform:translateY(-50%);
  top:50%;
  right: 25%;
  margin: 0 auto;
  width:50%;
  overflow:hidden;
  text-align: justify;
}

.wrapper-slider p {
  position:absolute;
  left:100%;
  width:100%;
  font-size:2em;
  color:#ffffff;
  top:0;
  cursor:pointer;
  opacity:0;
  transition:left 1.4s, opacity .5s ease;
}

.wrapper-slider p.activeText {
  position:relative;
  left:0;
  opacity:1;
}

.wrapper-slider p.slideLeft {
  left:-100%;
  opacity:0;
}

.wrapper-slider p:before {
  content:"\201D";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.1em;
  vertical-align: -0.4em;
}

.wrapper-slider p:after {
  content:"\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-left: 0.1em;
  vertical-align: -0.45em;
}

.dot {
  width:10px;
  height:10px;
  border-radius:100px;
  background:#7f8c8d;
  display:inline-block;
  text-lign:center;
  cursor:pointer;
}

.wrapper-slider .active {
  background:#ecf0f1;
}








.content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #333;
  color: #fff;
/*   display: flex;
  align-items: center; */
  line-height:100%;
  height:100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ratio2_1:before {
  padding-top: 50%;
}

.ratio1_2:before {
  padding-top: 200%;
}

.ratio4_3:before {
  padding-top: 75%;
}

.ratio16_9:before {
  padding-top: 56.25%;
}




.Icrs-Report:after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  bottom: 0;
  background: #171616;
  opacity: 0.5;
  border-radius: 0px;
}

.Icrs-Report p, .Icrs-Report h5, .Icrs-Report h6 {
  left: 10%;
  right: 10%;
  text-align: right;
  position: absolute;
  z-index: 1;
}


.Icrs-Report p {
  top: 5%;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.Icrs-Report h5 {
  top: 76%;
  font-size: 14px;
  color: #00656f;
  font-weight: bold;
}

.Icrs-Report hr {
  top: 78%;
  left: 50%;
  right: 10%;
  border: 1px solid #cacaca;
  position: absolute;
  z-index: 1;
}

.Icrs-Report h6 {
  top: 83%;
  font-size: 12px;
  color: #b89535;
  font-weight: bold;
}


.Icrs-Report h6:hover { 
  color: #fff ;
}


/*TESTIMONAIL CAROUSEL*/
.testimonail_carousel {
  background: #f6f6f6;
}

#rcmc_TC .carousel-inner {
  width: 80% !important;
  margin: 10px auto;
}

.picture_frame {
  background: url(/imgs/photo_frame.jpg) top right no-repeat;
  padding: 8px;
  width: 362px;
  height: 346px;
}

.picture_dimension {
  width: 329px;
  height: 313px;
  overflow: hidden;
  border-radius: 5px;
  overflow: hidden;
}

.picture_dimension figure {
  width: 329px;
  height: 313px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.testimonial_content:before {
  content: "\f10d";
  font-size: 49px;
  font-family: Font Awesome\ 5 Free;
  font-weight: 800;
  color: rgba(230,230,230,0.9);
  font-style: normal;
  line-height: 52px;
  padding-bottom: 10px;
}

.testimonial_content .content_title h2 {
  font-size: 21px;
  color: #606266;
  line-height: 32px;
  font-weight: 900;
  margin: 30px 0 20px;
}

.testimonial_content .content_post h3.occupation_title {
  font-size: 18px;
  margin-bottom: 0;
}

.testimonial_content .content_post span.name_title {
  font-size: 18px;
}

.testimonial_content .content_post {
  border-right: 3px solid #877750;
  height: 47px;
  padding-right: 10px;
}

.testimonail_carousel .carousel-control-prev {
  left: 10%;
  opacity: 1;
}

  .testimonail_carousel .carousel-control-prev span {
      background: #887852;
      transform: skewX(10deg);
      opacity: 1;
      width: 40px;
      height: 40px;
      color: #ffffff !important;
      line-height: 2;
  }

.testimonail_carousel .carousel-control-next {
  right: 10%;
  opacity: 1;
}

.testimonail_carousel .carousel-control-next span {
  background: #887852;
  transform: skewX(-10deg);
  opacity: 1;
  width: 40px;
  height: 40px;
  color: #ffffff !important;
  line-height: 2;
}



.video-hero--content {
  position: relative;
  text-align: center;
  color: #FFF;
  margin: 150px 0;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.video-hero--content h2 {
  font-size: 34px;
  margin: 0 0 10px;
}

.video-hero--content p {
  font-size: 18px;
  margin: 0;
}

.title {
  display: block;
  font-weight: bold;
  font-size: 18px;
}

.subtitle {
  display: block;
  font-weight: normal;
  font-size: 15px;
  color: #959699;
}

#site-title {
  float: left;
  margin: 0;
}


.jquery-background-video-wrapper {
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.jquery-background-video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.js .jquery-background-video {
  opacity: 0;
  transition: opacity 300ms linear;
}

.js .jquery-background-video.is-visible {
  opacity: 1;
}

.jquery-background-video-pauseplay {
  position: absolute;
  background: transparent;
  border: none;
  box-shadow: none;
  width: 20px;
  height: 20px;
  top: 15px;
  right: 15px;
  padding: 0;
  cursor: pointer;
  outline: none !important;
}

.jquery-background-video-pauseplay span {
  display: none;
}

.jquery-background-video-pauseplay:after,
.jquery-background-video-pauseplay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}

.jquery-background-video-pauseplay.play:before {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #FFF;
}

.jquery-background-video-pauseplay.pause:before,
.jquery-background-video-pauseplay.pause:after {
  border-top: 10px solid #FFF;
  border-bottom: 10px solid #FFF;
  border-left: 5px solid #FFF;
}

.jquery-background-video-pauseplay.pause:after {
  left: 10px;
}