body
{
	font-family: "Poppins", sans-serif;
	color: #333;
	font-size: 16px;
	line-height: 26px;
	overflow-x: hidden;
}

:root
{
  --themeColor: #EF4C4C;
  --textHighlight: #FF8E8E;
  --normalTextBlack: #333333;
  --normalTextWhite: #ffffff;
  --headingColorBlack: #111;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Libre Baskerville", serif;
  margin-bottom: 0; 
  color: var(--headingColorBlack);
  font-weight: 700;
}

h2
{
  font-weight: 700;
  font-size: 40px;
}
  
  a:hover {
  text-decoration: none;
  color: var(--themeColor);
}

  a
  {
    color: var(--textHighlight);
  }

  p
  {
    margin-bottom: 0;
  }

  textarea {
  resize: none;
}

@media (min-width: 1200px)
{
    .container {
    max-width: 1300px;
}
}

.navbar .navbar-nav .nav-item .nav-link
{
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;

}



.navbar
{
  z-index: 999;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: 15px;
      padding-left: 15px;
  }
}


body.offcanvas-active {
  overflow: hidden;
}


.offcanvas-header {
  display: none;
}

.screen-overlay {
  width: 0%;
  height: 100%;
  z-index: 30;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition: opacity 0.2s linear, visibility 0.1s, width 1s ease-in;
}
.screen-overlay.show {
  transition: opacity 0.5s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}

@media all and (max-width: 992px) {
  .offcanvas-header {
    display: block;
  }

  .mobile-offcanvas {
    visibility: hidden;
    transform: translateX(-100%);
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1200;
    width: 80%;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
    background-color: #111 !important;
  }

  html:lang(ar) .mobile-offcanvas {
    transform: translateX(100%);
  }

  .mobile-offcanvas.show {
    visibility: visible;
    transform: translateX(0);
  }

  .nav-cont {
    display: block !important;
    padding-right: auto !important;
    padding-left: auto !important;
  }

  .navbar2 {
    box-shadow: 0px 3px 17px #00000047;
  }
  #navbar_main {
    box-shadow: 0px 3px 17px #00000047;
    width: 100%;
    background: #111;
  }
  .dropdown-menu {
    border: none;
  }
  .nav-item {
    border-bottom: 1px solid #eaeaea;
  }
}

.navbar-light .navbar-nav .nav-link {
  color: rgb(0 0 0 / 70%);
}

.navbar-light .navbar-toggler
{
  border: none !important;
}
.navbar-toggler.btn-close
{
  color: #ffffff !important;
  font-size: 30px !important;
  position: absolute;
  right: 0;
  top: 12px;
}

/* For screens larger than 992px */
@media all and (min-width: 992px) {
  /* Initial state of the dropdown menus */
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20%);
    transition: all 0.5s;
  }

  /* Show first-level dropdown on hover */
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
  }

  .dropdown:hover > .dropdown-menu > .dropdown-submenu
  {
    position: relative;
  }

  /* Initial state of the nested dropdown menus */
  .dropdown-submenu .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20%);
    transition: all 0.5s;
    left: 100%;
    top: 0;
    margin-top: 0; /* Aligns with parent item */
  }

  /* Show second-level dropdown on hover */
  .dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
  }

  /* Additional hover effects for better visibility */
  .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #000;
  }

  .dropdown-toggle::after
  {
    border-top: 5px solid;
    border-right: 5px solid transparent;
    border-bottom: 0;
    border-left: 5px solid transparent;
  }

  /* Rotate the icon on hover */
  .dropdown-submenu > a::after {
    /* content: '\f0da'; 
    font-family: "Font Awesome 6 Free";
    float: right; */
    transform: rotate(0deg);
    transition: transform 0.5s;
    margin-left: 10px;
    right: 10px;
        position: absolute;
        top: 40%;
  }

  .dropdown-submenu:hover > a::after {
    transform: rotate(-90deg); /* Rotate 90 degrees on hover */
  }
}

.fixed-nav
{
  position: fixed;
    top: 0;
    left: 0;
    animation: smoothScroll-nav 1s forwards;
    background: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: position 10s;
    -ms-transition: position 10s;
    -o-transition: position 10s;
    transition: all 0.5s ease;
    width: 100%;
}

@keyframes smoothScroll-nav {
  0% {
    transform: translateY(-40px);
}

100% {
  transform: translateY(0px);
}
}




.menu-icon
{
  width: 35px;
}

.navbar .navbar-nav .nav-item.active .nav-link
{
  color: var(--textHighlight);
  position: relative;
}

.navbar .navbar-nav .nav-item.active .nav-link::after
{
  content: '';
  position: absolute;
  width: 90%;
    height: 2px;
    background: var(--textHighlight);
    bottom: 0px;
    left: 5%;
  
}

.navbar .navbar-nav .nav-item
{
  padding-left: 8px;
  padding-right: 8px;
}



.banner-section
{
  /* background: url(../images/banner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center; */
    padding: 230px 0 160px 0;
    margin-top: -105px;
    background: #111;
    position: relative;
            width: 100%;
            /* height: 100vh; */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: left;
            overflow: hidden;
            /* z-index: 0; */
}

/* .banner-right-img img
{
  margin-top: -90px;
} */

.banner-content
{
  position: relative;
  z-index: 1;
}

/* Video Background */
.banner-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Semi-Transparent Black Overlay */
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 70%);
  z-index: 1;
}

.menu-navbar
{
  z-index: 2;
}

.banner-content h1
{
  color: #ffffff;
  font-size: 48px;
  font-family: "Poppins", sans-serif;
  line-height: 62px;
  margin-bottom: 20px;
  padding: 0 80px;
    padding-top: 15px;
}

.banner-content p
{
  padding: 0 100px;
}

/* .banner-content h1::before
{
  content: url(../images/banner-text-corner-design.png);
    position: absolute;
    top: -10px;
    left: 10px;

} */

.align-item-start
{
  align-items:flex-start !important;
}

#navbarNavDropdown
{
  min-height: 80px;
}

.book-now-btn
{
  min-height: 80px;
  display: flex;
  align-items: center;
}

.banner-btn
{
  border-radius: 12px;
  color: #fff;
  padding: 8px 20px;
  transition: all .5s;
  background: var(--themeColor);
  box-shadow: 0px 5px 0px #FF9898;
}

.contact-main-box .contact-form-part .btn-submit
{
  border-radius: 12px;
  color: #000000;
  padding: 8px 20px;
  transition: all .5s;
  background: #46D1E6;
  box-shadow: 0px 5px 0px #0A2B53;
}

.contact-main-box .contact-form-part .btn-submit i
{
  margin-left: 5px;
}

.banner-btn:hover
{
  color: #fff !important;
  transform: scale(1.1);
}

.banner-btn i
{
  margin-left: 10px;
}

.banner-btn:hover
{
  border-color: var(--themeColor);
  color: var(--themeColor);
}

.home-about-right-content h2
{
  color: var(--themeColor);
  font-size: 36px;
  margin-bottom: 15px;
}

.home-about-right-content-sh
{
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.home-about-section
{
  position: relative;
  overflow: hidden;
}

.home-about-section::after
{
  content: url(../images/home-about-right-design.png);
    position: absolute;
    top: 150px;
    right: -95px;
    z-index: 999;
}

.team-member-box
{
  background: #FFF1F0;
  border-radius: 15px;
  padding: 10px;
}

.team-member-box img
{
  border-radius: 15px;
  width: 100%;
}

.team-member-box h3
{
  font-size: 22px;
  margin: 12px 0 10px;
}

.team-member-box h6
{
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #4b4b4b;
}

.py-80
{
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-about-2nd-section
{
  background: #eff9ff;
}

.home-about-2nd-right-content ul li
{
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
}

.home-about-2nd-right-content ul li img
{
  width: 20px;
  margin-right: 5px;
}

.class-box
{
  border-radius: 15px;
  box-shadow: 0px 0px 20px #11111130;
  padding: 20px 30px;
  margin-bottom: 30px;
  z-index: 99;
  position: relative;
  background: #fff;
}

.class-timing
{
  padding-left: 10px;
}

.class-timing span
{
  display: block;
}

.class-box h4
{
  font-family: "Poppins", sans-serif;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 22px;
}

.classes-section
{
  position: relative;
}

.classes-section::after
{
  content: url(../images/classes-left-design.png);
    position: absolute;
    bottom: -25px;
    left: -80px;
    z-index: 0;
}

.registration-section
{
  background: url(../images/form-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 60px 0 60px 0;
    color: #fff;
}


.date-picker-container, time-picker-container{
  position: relative;
}

.date-picker-input, time-picker-input {
  padding-right: 30px; /* Space for the icon */
}

#datepicker-icon, #timepicker-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 9;
}

.registration-content-part h2, .registration-content-part p
{
  color: #fff;
}

.form-box
{
  background: #fb0102a8;
  border-radius: 20px;
  color: #fff;
  padding: 30px;
}

.form-box h4
{
  color: #fff;
  margin-bottom: 20px !important;
}

.form-box .form-group
{
  margin-bottom: 25px;
}

.form-box .form-group .form-control, .input-group>.custom-select:not(:last-child), .input-group>.form-control:not(:last-child)
{
  border-radius: 6px ;
  background: #fff;
  border-width: 2px;
  color: #fff;
}

.form-box .form-group .form-control::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.form-box .form-group .form-control::-ms-input-placeholder { /* Edge 12-18 */
  color: #fff;
}

.btn-submit
{
  color: #fb0102;
  font-weight: 600;
}

.ftr
{
  background: #151515;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 80px;
}

.ftr h5, .ftr a{
  color: #fff;
  
}

.ftr h5
{
  position: relative;
  margin-bottom: 30px !important;
}
.ftr h5::before
{
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: #fb0102;
  bottom: -15px;
  
}

.ftr ul li
{
  margin-bottom: 15px;
}

.ftr-classes li span
{
  display: block;
  font-size: 12px;
  line-height: 12px;
}

.ftr-hr
{
  border-top: 1px solid rgba(255, 255, 255, 0.527);
}

.ftr-contact-details-list li
{
  padding-left: 38px;
  position: relative;
}

.ftr-contact-details-list li img
{
  position: absolute;
  top: 0;
  left: 0;
}

.ftr ul li a
{
  transition: all .5s;
}

.ftr ul li a:hover
{
  color: #fb0102;
}



.innerpage-banner-section
{
  background: url(../images/inner-banner.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 180px 0 110px 0;
    text-align: center;
    color: #fff;
    margin-top: -105px;
}

.team-box
{
  /* box-shadow: 1px 1px 10px #11111145; */
  border-radius: 20px;
  padding-bottom: 30px;
  margin-top: 150px;
  background: #ffe4ea;
}

.team-box img
{
  margin-top: -100px;
  box-shadow: 2px 2px 12px #4403034f;
    border-radius: 20px;
}

.team-box h3
{
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 15px;
  color: #111;
}

.team-box h5
{
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}



.team-section
{
  padding-top: 70px;
}

/* .team-section p
{
  margin-bottom: 160px !important;
} */

.team-section .team-box p
{
  margin-bottom: 0 !important;
}



/* .gallery-video .modal {
  background-color: rgba(0, 0, 0, 0.4);
}

.gallery-video .modal-header {
  border-bottom: 1px solid #505050;
  padding: 12px 16px 6px 16px;
}
.gallery-video .modal-header .modal-title {
  color: #ccc;
  margin: 0;
}
.gallery-video .modal-header .close {
  font-size: 32px;
  opacity: 1;
  color: #ccc;
  text-shadow: none;
  outline: none;
}

.gallery-video .modal-content {
  border-radius: 0;
  border: 0;
  background-color: #323232;
}

.gallery-video .img-responsive {
  width: 100%;
}

.gallery-video button.btn-play {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 0;
  margin: 0;
  margin-left: -15px;
  border: 0;
  border-radius: 0;
  outline: 0 !important;
  width: 100%;
  background-color: transparent;
  color: rgba(245, 245, 245, 0.8);
}
.gallery-video button.btn-play:hover, .gallery-video button.btn-play:active, .gallery-video button.btn-play:visited, .gallery-video button.btn-play:focus {
  color: white;
}
.gallery-video button.btn-play .glyphicon {
  padding: 0;
  margin: 0;
  color: inherit;
  background-color: inherit;
  font-size: 64px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .gallery-video button.btn-play .glyphicon {
    font-size: 56px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gallery-video button.btn-play .glyphicon {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .gallery-video a.video {
    display: block;
  }

  .gallery-video button.btn-play .glyphicon {
    font-size: 56px;
  }
} */

.video-thumbnail {
  position: relative;
  display: inline-block;
}

.video-thumbnail i
{
  position: absolute;
  top: 35%;
  left: 42%;
  text-align: center;
  /* width: 50px; */
  /* height: 50px; */
  font-size: 70px;
  color: #e5e5e5;
  transition: all .4s;
}

.video-thumbnail:hover i
{
  transform: scale(1.1, 1.1);
  color: #fb0102;
}

.ftr-copy-part
{
  /* position: fixed;
  bottom: 0; */
  color: #fff;
  padding: 8px 0;
  background: #151515;
  z-index: 99999;
  border-top: 1px solid rgba(255, 255, 255, 0.527);
}

.course-page-section .class-timing
{
  color: #111;
  /* font-weight: 500; */
}

.course-page-section .class-timing span
{
  font-size: 14px;
  line-height: 1;
  color: #333;
}

.course-apply-btn
{
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px 15px;
  background: #fb0102;
  border-radius: 10px 0 10px 0;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.course-apply-btn:hover
{
  background: #990101;
  color: #fff;
}

.course-page-section .class-box
{
  position: relative;
}

.event-content
{
  padding: 20px 30px;
}

.workshops-page-section .class-box
{
  overflow: hidden;
}

.event-content .location-event
{
  min-height: 80px;
}

.btn-event-book
{
  background: #fb0102;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border-radius: 40px;
    padding: 8px 25px;
    transition: all .3s ease-in-out;
    
}

.btn-event-book:hover
{
  background: #990101;
  transform: scale(1.1);
  color: #fff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 15px;
  background: #fff7f7;
  /* transition: var(--transition); */
}

.contact-info-icon i {
  font-size: 35px;
  color: #ffffff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50px;
  background: #fb0102;
}

.contact-info h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1d1d1d;
}

.contact-info p {
  color: #444444;
  font-weight: 500;
  font-size: 16px;
}

.contact-img-part img
{
  border-radius: 30px;
  box-shadow: 2px 2px 15px #00000054;
}

.contact-form-section
{
  background: #fff0f1;
}

.contact-form .form-control
{
  background: transparent;
  border-color: #939393;
  border-radius: 6px;
}

.contact-form .form-control.date-picker-input, .contact-form .form-control.time-picker-input
{
  border-width: 1px !important;
  color: #111;
}

.contact-btn-submit
{
  background: #fb0102;
  color: #fff;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.contact-btn-submit:hover
{
  transform: scale(1.1);
}

.class-search-right .input-group input
{
  height: 50px;
  background: #F3F3F3;
  border-radius: 12px !important;
  border-color: #e6e6e6;
  color: #111 !important;
}

.class-search-right .input-group input:focus
{
  border-color: var(--textHighlight);
  outline: none;
  box-shadow: none;
}

.class-search-right .input-group .btn
{
  background: transparent;
  color: var(--themeColor);

}

.class-search-right .input-group .input-group-append
{
  position: absolute;
  right: 0;
  top: 5px;
}

.single-class-box 
{
  border-radius: 10px;
  background: #FFEFEF;
  padding: 12px 12px 30px 12px;
}

.single-class-box ul span
{
  font-weight: 600;
}

.single-class-box ul li
{
  padding: 2px 0;
}

.single-class-box h3
{
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.online-offline-line
{
  color: #F03F3F;
}

.tab-buttons-left .nav-tabs
{
  border: none;
}

.tab-buttons-left .nav-tabs .nav-link
{
  border: 1px solid #AEAEAE;
  border-radius: 10px;
  color: #353535;
  margin-right: 15px;
  transition: all .3s;
}

.tab-buttons-left .nav-tabs .nav-link.active, .tab-buttons-left .nav-tabs .nav-link:hover
{
  background: var(--themeColor);
  color: var(--normalTextWhite);
  border-color: var(--themeColor);
}

.dropdown-tab {
  display: none;
}

.btn-tab-dropd
{
  width: 100%;
  border-radius: 12px;
  height: 50px;
  font-size: 20px;
  margin-bottom: 20px;
  border: none;
  background: var(--themeColor);
  color: var(--normalTextWhite);
}
 
.dropdown-tab .dropdown-menu
{
  width: 100%;
  box-shadow: 1px 1px 20px #1111112e;
  border-radius: 12px;
}


.video-thumbnail {
  position: relative;
  cursor: pointer;
}
.video-thumbnail img {
  width: 100%;
  border-radius: 5px;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(239 76 76 / 85%);
  border-radius: 50%;
  padding: 15px;
  color: #fff;
  font-size: 24px;
}

.video-thumbnail
{
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 5px;
}

.modal-header
{
  padding-top: 10px;
  padding-bottom: 10px;
}

.modal-content
{
  border-radius: 15px;
}

.contact-details
{
  background: #F2F2F2;
}

.contact-form-part
{
  background: #EF4C4C;
  padding: 40px 50px;
}

.contact-main-box
{
  border-radius: 20px;
  overflow: hidden;
}

.contact-details-single
{
  height: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px dashed #949494;
  width: 100%;
}

.contact-details-single:last-child
{
  border-bottom: 0;
}

.contact-details-single i
{
  font-size: 26px;
  color: #EF4C4C;
  margin-bottom: 5px;
}

.contact-details-single a
{
  color: #333;
}

.contact-details-single a:hover
{
  color: #EF4C4C;
}

.contact-form-part input
{
  border-radius: 6px;
}

.contact-form-part .form-group
{
  margin-bottom: 20px;
}

.workshops-box
{
  background: #FFF1F0;
  border-radius: 20px;
}

.occasions-box
{
  background: #ffffff;
  border-radius: 20px;
}

.workshops-box-content, .occasions-box-content
{
  padding: 15px;
}

.workshops-box, .occasions-box
{
  position: relative;
}

.occasions-box
{
  box-shadow: 1px 1px 20px #11111126;
}

.workshops-box .workshop-date
{
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 15px;
  border-radius: 50px;
  background: var(--themeColor);
  color: var(--normalTextWhite);
  box-shadow: 1px 1px 15px #1111115e;
}

.product-img img
{
  width: 50% !important;
  margin: auto;
}


.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
  text-align:center;
  margin-top:20px;
}

.owl-carousel .owl-nav button.owl-prev{
  background: #dddddd !important;
  position: absolute;
  top: 42%;
  left:-55px;
  /* padding: 0 18px 0 15px; */
  border-radius: 50px;
  /* box-shadow: 3px 14px 25px -10px #92b4d0; */
  transition: background 0.5s ease 0s;
      width: 40px;
  height: 40px;
  line-height: 40px !important;
}

.owl-carousel .owl-nav button.owl-next{
  background: #dddddd !important ;
  position: absolute;
  top: 42%;
  right: -55px;
  /* padding: 0 15px 0 18px; */
  border-radius: 50px;
  /* box-shadow: -3px 14px 25px -10px #92b4d0; */
  transition: background 0.5s ease 0s;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover
{
  background-color: var(--themeColor) !important;
  color: var(--normalTextWhite);
}

.owl-carousel .owl-nav button.owl-prev:hover:after,
.owl-carousel .owl-nav button.owl-next:hover:after
{
  color: var(--normalTextWhite);
}

.owl-carousel .owl-nav button.owl-prev:after,
.owl-carousel .owl-nav button.owl-next:after{
  content:"\f104";
  /* font: var(--fa-font-solid); */
  font-family: FontAwesome;
  /* font-family: "Font Awesome 6 Free"; */
  color: #333;
  font-size: 22px !important;
  line-height: 40px !important;
  
}

.owl-carousel .owl-nav button.owl-next:after{
  content:"\f105";
  /* font: var(--fa-font-solid); */
  font-size: 22px !important;
  line-height: 40px  !important;
  font-family: FontAwesome;
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span 
{
display: none;
}

.occasions-section
{
  background: #FFF1F0;
}