.red-color::marker{
  color: red;
}
.blue-color::marker{
  color: blue;
}
.green-color::marker{
  color: green;
}
.orange-color::marker{
  color: orange;
}


*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: source;
  src: url(./font/SourceSans3-VariableFont_wght.ttf);
}
@font-face {
  font-family: briem;
  src: url(./font/BriemHand[wght].ttf);
}

::selection{
  background-color: #ce1212;
  color: white;
}

:root{
  --white: #ffffff;
  --black: #000000;
  --darkgrey: darkgrey;
  --grey: grey;
  --blue: #1B68D9;
  --main: #ce1212;
  --dividered-Width: 140px;
  --dividered-MarginTop: 10px;
}


a{
  text-decoration: none;
}

p{
  font-size: 20px; 
  margin-bottom: 0px !important;
}
h1,h2,h3,h4,h5,h6{
  font-family: source;
}
body{
  background: url(../images/event/event-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fdfdfd;
  transition: all 0.5s;
  height: 90px;
  box-shadow: rgba(29, 67, 131, 0.062) 0px 4px 8px -2px, rgba(153, 188, 248, 0) 0px 0px 0px 1px;
}

@media (max-width: 575px) {
  .header {
    height: 90px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 80px;
  margin-right: 6px;
}

.header .logo h3 {
  font-size: 34px;
  font-weight: 700;
  color: #000 !important;
  text-decoration: underline;
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table {
  font-size: 18px;
  color: #fff;
  background: var(--main);
  padding: 10px 26px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover {
  border: 2px soild #f20606;
  color: #fff;
  background: rgba(213, 20, 20, 0.8);
}

.header .btn-book-a-table i {
  padding-right: 10px;
}

@media (max-width: 680px) {
  .header .logo h3 {
    display: none;
  }
}
@media (max-width: 456px) {
  .header .btn-book-a-table {
    padding: 8px 20px;
    font-size: 14px;
  }
}


/* ========================================================= Events section here =========================================== */
.e{
  position: relative;
}
.events {
  margin-top: 100px;
}

.events .mainbody {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.24);
  border-radius: 10px;
}

.events .mainsection h1 {
  font-size: 60px;
  color: var(--main);
  font-weight: 700;
  font-family: briem;
}


.events .accordion-item {
  border: 0.5px solid #000 !important;
  border-radius: 10px;
  overflow: hidden;
}



.events .accordion-button:not(.collapsed) {
  background-color: rgb(255, 229, 229);
}

.events .accordion-button:focus {
  border-color: none;
  box-shadow: none;
}
.accordion-header h5{
  font-size:24px;
  font-weight: 700;
}
.accordion-header h6{
  font-size: 22px;
  font-weight: 700;
}
.accordion-header h6 span{
  font-weight: 500;
}
.accordion-body ul li{
  font-size: 18px;
  font-weight: 700;
}

.accordion-body ul li span{
  font-weight: 500;
}
.events .accordion-body .agnda ul li{
  font-weight: 500 !important;
}

.events .accordion-item .accordion-header .image{
  width: 80px;
  height: 80px;
  border-radius: 50px;
  overflow: hidden;
  border: 4px solid #fff;
background-color: #fff;
display: grid;
place-items: center;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.events .accordion-item .accordion-header .image img{
  width:80%;
  height: 80%;
  object-fit: cover;
}
.accordion-button{
  padding:10px 20px;
}

.e .shape{
  position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.e .shape2{
  position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transform: rotate(180deg);
}
@media(max-width:500px){
  .events .accordion-item .accordion-header .image{
    width:50px;
    height: 50px;
  }
  .accordion-header h5{
    font-size: 17px;
  }
  .accordion-header h6{
    font-size: 14px;
  }
  .accordion-body ul li{
    font-size: 16px;
  }
}

  /* ----- *********************   Section1   ******************** ----- */


/*-- ************* Footer ************* --*/
footer{
  background-color: #ffffff;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

footer .data h4{
  color: #000;
  font-weight: 700;
  font-family: source;
}
footer .inside h4 a{
  color: #000;
  font-weight: 700;
  text-decoration: underline;
}
footer .inside h4{
  color: #000;
  font-weight: 700;
}
footer .inside h4 a:hover{
  color: var(--main);
}