
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #00697F;
  --secondary-color:              #00697F;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #00697F;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             "Inter", sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 40px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
  
  
  
}

/*.why-attend-section{*/
/*    margin-top:80px;padding-bottom: 90px;position: relative;background-image:url('https://cmec.cleanmiddleeast.ae/assets/img/cmec-bg-bg.jpg');background-size:cover;*/
/*}*/

.justify-content-center{
    justify-content: center;
}
.mt-b-15{
    margin-bottom:15px;
}
.contact-phone h5 {
    color:#00697F;
}
.contact-phone p{
    color:#00697F;
}
.contact-phone a{
    color:#00697F;
}
.alert-danger{
    background-color:#ad3640;
}

body {
   
  font-family: "Inter", sans-serif;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: #00697F;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: 400;
}

ul li {
  color: #fff;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: #E5D79A;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}
.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}
/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 90px;
}
.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

select.form-control:not([size]):not([multiple]){
    height:auto;
}
.tab-content {
    border: 1px solid #d5d5d5;
    background-color: #fff;
    padding: 45px;
    border-radius: 15px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: #00697F;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background-image :linear-gradient(45deg, #e5d79ae6, #00697f);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s;
  padding: 15px 35px;
}

.custom-btn:hover {
  background: transparent;
  color: var(--white-color);
  border:2px solid #00697F;
  
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
  
}

.sticky-wrapper.is-sticky .white-logo {
  display:block;
  padding:5px 0px;
}
.sticky-wrapper.is-sticky .color-logo {
  display:none;
}

.navbar {
  background: transparent;
  z-index: 9;
  padding-top:0;
  padding-bottom:0;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
    /*background-image:url('https://www.universalaviation.aero/wp-content/uploads/2022/09/doha-otbd-slider-img.jpg');*/
    /*background-size:cover; */
  position: relative;
  overflow: hidden;
  padding-top: 100px;
 /* height: calc(80vh - 51px); */
 /*height:80vh;*/
 
}
.qataredition{
    color: #fff;
    width: fit-content;
    padding: 10px;
    background-image: linear-gradient(45deg, #e5d79ae6, #00697f);
    border-radius: 5px;
}
@media screen and (max-width: 768px) {
    .hero-section {
        height:100vh;
    }
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
  font-size:20px;
  text-transform:none;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  /*padding-bottom: 50px;*/
}

.hero-section .container .row {
  height: 100%;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}

/*---------------------------------------
  THEME              
-----------------------------------------*/
.theme-section {
  
 /* background-image:url('https://rmdconfex.cleanmiddleeast.ae/assets/images/atoms-left-new.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index:999;*/
  
}

.theme-section img:hover{
    
}

.fa{
    color:#e5d79a;
}
.theme-section h5{
    color:#fff;
}
.theme-section p{
    color:#fff;
}

/*---------------------------------------
  THEME              
-----------------------------------------*/
.form-section {
 background-image: linear-gradient(45deg, #e5d79ae6, #00697f);
     background-color: #00697f;
  position: relative;
}

.contact-section p{
 color: #00697F;
}

.organisers-section {
 
 
}
.organisers-section h5{
 color: #00697F;
 font-weight: 400;
 font-size: 20px;
}
.organisers-section img{ padding:20px 10px;}

/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url('../images/nicholas-green-unsplash-blur.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover{
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}


/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  
  
}


.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-image: linear-gradient(45deg, #e5d79ae6, #00697f);
     background-color: #00697f;
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #e9e9e9;
  padding: 15px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  /*border-bottom-color: transparent;*/
}

.schedule-table thead th {
  border-right: 1px solid #e9e9e9;
  border-bottom-color: transparent;
}

.schedule-table th + td {
 border-bottom-color: #e9e9e9;
  text-align:left;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
 
}

.schedule-table .rock-background-image {

}

.schedule-table .country-background-image {
  
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h5,
.schedule-table p {
    margin: 10px 0;
    color: #00697F;
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight:500;
}
.schedule-table p {
    color: #000;
}

.contact-section {
 
 
}

.border-faq{
    border: 1px solid #00697F;
    border-radius: 15px;
    margin-bottom: 15px;
}
/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 5px;
   margin-left: 5px;
  color: #fff;
    font-weight: 500;
    line-height: 27px;
}

.pricing-list {
  padding-left: 20px;
}



.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 20px;
  outline: none;
  padding: .675rem .75rem;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: 2px solid #00697F;;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: transparent;
  border: 2px solid #00697F;
  color:#00697F;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
 
  position: relative;
 
}

.site-footer-top {
  background-color: var(--secondary-color);
  background-repeat: no-repeat;
  padding-top: 5px;
  padding-bottom: 5px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  margin-top: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

.stroke {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #00697F;
}
.feature-box img {
    margin-top: 0;
}
.feature-box {
    filter: drop-shadow(2px 2px 4px #606060);
    box-shadow: 0px 0px 2px #a1ced7 inset;
    background-image: linear-gradient(45deg, #e5d79a, #00697f);
    background-color: #00697f;
    padding: 10px 30px;
    border-radius:15px;
    height: auto;
}
.feature-box p{
    font-size: 17px;
}
.feature-box h5{color: #fff;
    font-size: 20px;
    font-weight:500;}  
    
.center{
    text-align:center;
}

@media (max-width: 767.98px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.faq-section{
    
}

.question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color:#00697F;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
    color:#00697F;
  padding: 0 20px 20px;
  line-height: 1.5rem;
}

.rotate{
    transform: rotate(360deg);
}

.dashed-border{    border: #fff 1px dashed;
    border-radius: 15px;
    padding: 50px 0px;}
    
.show-section{
    display:none;
}    
@media screen and (max-width: 990px) and (min-width:768px){
    .hide-section{
        display:none;
    }
    .show-section{
        display:block;
    }
}

@media screen and (min-width: 1200px) {
    .mt-max{
        margin-top:20px;
    }
}

.logo-padding{
    padding: 10px 0px;
}

.date-wrap h5{color:#fff;font-weight: 500;}
.location-wrap h5{color:#fff;font-weight: 500;}
.social-share h5{color:#fff;font-weight: 500;}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
  display:flex;
}
.pricing-list li{
    list-style:none;
}
.pricing-list li::before{
    content: '';
    min-width: 20px;
    height: 20px;
    background: url('https://www.cmec.cleanmiddleeast.ae/assets/img/businessmann.jpg');
    background-repeat: no-repeat;
    }
    .pricing-list-item h3
    {
    font-weight: 500;
    font-size:18px;
    color:#00697f;
    padding-left:10px;
    }
    .checkbox p
    {
    color:#717275;
    font-weight:500;
    }
    #home-top-video:before {
    content:"";
    position: absolute;
    top:0;
    right:0;
    left:0;
    bottom:0;
    z-index:1;
    background-color:rgba(2, 23, 28, 0.6);
    }


.tc-txt p{
    font-size:14px;
}

.main-text h1{
    font-size:57px;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
   .main-text h1{
         font-size:30px;
    }
}

.points li {
    color:#00697F;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.flip-card:focus {
    outline: 0;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner{
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

    .flip-card-front 
    {
   box-shadow: 1px 1px 1px 1px #fff3be inset;
    /*background-image: linear-gradient(45deg, #e5d79a, #00697f);*/
    background-color: #00697f;
    z-index: 2;
    padding: 20px 10px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    }

.flip-card-back {
   box-shadow: 0px 0px 2px #e5d79a inset;
    background-color: #00697f;
  transform: rotateY(180deg);
  z-index: 1;
   padding: 20px 10px;
    border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flip-card-front h5{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}
.flip-card-front img{
    width:50px;
    margin-bottom:5px;
}
.flip-card-back p{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.tablink {
  background-color: #060606;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 17px;
  width: 30%;
}

.tablink:hover {
  background-color: #777;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  display: none;
  padding: 20px 20px;
  /*height: 100%;*/
}

.agenda-btn{
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    transition: all 0.3s;
    padding: 10px 10px;
}

@media screen and (max-width: 425px) {
    .agenda-btn{
        font-size:8px
    }
    
}




.tabs-block {
	display: flex;
	align-items: center;
	justify-content: center;
}

/**
 * Tabs
 */
.tabs {
	display: flex;
}

.tabs > ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 15%;
}

.tabs > ul li {
	display: block;
}

.tabs > ul li:not(:last-child) {
	border-bottom: 1px solid #262626;
}

.tabs > ul li a,
.tabs > ul li a:visited {
	display: flex;
	border-bottom: none;
	text-decoration: none;
	background-color: #000;
	color: #fff;
	padding: 1rem 1.5rem;
	transition: all 0.2s ease-in-out;
	word-wrap: break-word;
}

.tabs > ul li a:hover,
.tabs > ul li a:focus,
.tabs > ul li a:active {
	border-bottom: none;
	outline: 0;
}

.tabs > ul li a.active {
	background-color: #00697F;
	color: #fff;
}

.tabs > ul li a:hover:not(.active) {
	color: #0067b8;
}

.tabs > ul li a > span {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.tabs > ul li a > span.tab-label {
	display: none;
}

.tabs section {
	width: 85%;
	background-color: #fff;
	padding: 1rem;
	display: none;
	word-wrap: break-word;
	border-bottom: 6px solid #0067b8;
}

.tabs section > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.2s, transform 0.2s;
}

.tabs section > *:nth-child(1) {
	transition-delay: 0.2s;
}

.tabs section > *:nth-child(2) {
	transition-delay: 0.3s;
}

.tabs section > *:nth-child(3) {
	transition-delay: 0.4s;
}

.tabs section > *:nth-child(4) {
	transition-delay: 0.5s;
}

.tabs section > *:nth-child(5) {
	transition-delay: 0.6s;
}

.tabs section > *:nth-child(6) {
	transition-delay: 0.7s;
}

.tabs section > *:nth-child(7) {
	transition-delay: 0.8s;
}

.tabs section > *:nth-child(8) {
	transition-delay: 0.9s;
}

.tabs section > *:nth-child(9) {
	transition-delay: 1s;
}

.tabs section > *:nth-child(10) {
	transition-delay: 1.1s;
}

.tabs section > *:nth-child(11) {
	transition-delay: 1.2s;
}

.tabs section > *:nth-child(12) {
	transition-delay: 1.3s;
}

.tabs section > *:nth-child(13) {
	transition-delay: 1.4s;
}

.tabs section > *:nth-child(14) {
	transition-delay: 1.5s;
}

.tabs section > *:nth-child(15) {
	transition-delay: 1.6s;
}

.tabs section > *:nth-child(16) {
	transition-delay: 1.7s;
}

.tabs section > *:nth-child(17) {
	transition-delay: 1.8s;
}

.tabs section > *:nth-child(18) {
	transition-delay: 1.9s;
}

.tabs section > *:nth-child(19) {
	transition-delay: 2s;
}

.tabs section > *:nth-child(20) {
	transition-delay: 2.1s;
}

.tabs section.active {
	display: block;
}

.tabs section.active-content > * {
	opacity: 1;
	transform: translateY(0);
}
@media (min-width: 576px) {

	.tabs > ul {
		width: 20%;
	}

	.tabs > ul li a {
		flex-wrap: wrap;
	}

	.tabs > ul li a > span {
		width: 100%;
	}

	.tabs > ul li a > span.tab-label {
		width: 100%;
		display: block;
		margin-top: 0.2rem;
	}

.tabs section {
		/*width: calc(100% - 150px);
		padding: 2rem 2rem;*/
	}
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
}
.frame {
  height: 80vh;
  width: 100%;
  background-color: #eee;
  background-position: center;
  background-size: cover;
  
  animation: image 10s infinite alternate;
}


@keyframes image {
  0% {
    background-image: url('https://cmec.cleanmiddleeast.ae/assets/img/cmec_banner_01-min.jpg');
  }
  
  50% {
    background-image: url('https://cmec.cleanmiddleeast.ae/assets/img/dubai_bg.jpg');
  }
  80% {
    background-image: url('https://cmec.cleanmiddleeast.ae/assets/img/cmec_banner_03-min.jpg');
  }
   100% {
    background-image: url('https://cmec.cleanmiddleeast.ae/assets/img/cmec_banner_04-min.jpg');
  }
}



.count-digit{color:#fff;font-size:50px;}
.count-title{color:#fff !important;}
 .single_speaker{background: rgb(0 105 127);padding: 10px;border-radius: 10px;margin-bottom: 25px;}
    .speaker_thumb{height: 250px;}
    .speaker_name{padding-top: 20px;}
    .speaker_name h3{font-size: 20px;}
    .speaker_name p{font-size: 16px;}
    .size-size p{
    font-size:16px;
    margin-bottom:5px;}
.size-size ul li{
    font-size:16px;
    color:#000;
    font-weight: 400;
}

.agenda-conf h5{
    color:#000;
}
.agenda-conf p{
    color:#00697f;
    font-style:italic;
    font-weight:500 !important;
}
.schedule-table th{
    font-weight:400;
}
.schedule-table p{
    font-weight:400;
}
@media screen and (max-width:630px){
    .hide{
        display:none;
    }
}
.day2-content p{
color:#000;
}
.day2-content{
    text-align:left;
    padding: 20px 20px;
    margin: 30px;
    border: 2px solid #dfdfdf;
    border-radius:20px;
}
.modal-backdrop.show {
    opacity: .5;
    z-index: -500 !important;
}
.contcls img {
    border-radius: 100%;
    border: 2px solid #00697f;
    margin-bottom: 10px;
    vertical-align: middle !important;
}
.mx-img {
    margin-left: 20px;
}
.contcls .img-fluid {
    max-width: 100%;
    height: 100%;
}
.contcls p {
    margin-top: 5px;
    padding-left: 15px;
    font-size:16px;
    margin-bottom:5px;
    color:#000;
    font-weight:400 !important;
}
.alert {
    margin-top: 31px;
    color: #fff;
    background-color: #00697f;
    padding: 5px;
    border-radius: 5px;
}

.count-area-content h2{
    display: flex;
    color: #fff;
    font-size:50px;
}
