/** event-section **/

.event-section {
  position: relative;
  background: rgba(250, 250, 250, 0.70);
}

.event-section .content-box {
  position: relative;
  display: block;
  max-width: 450px;
}

.event-section .content-box p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: justify;
}

.event-section .tab-btns li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 30px;
  background: #F5F5F5;
  cursor: pointer;
  text-align: center;
  width: 375px;
  padding: 39px 30px 28px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.event-section .tab-btns li:last-child {
  margin-right: 0px;
}

.event-section .tab-btns li.active-btn {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.event-section .tab-btns li h3 {
  font-size: 24px;
  line-height: 34px;
}

.event-section .tab-btns li span {
  position: relative;
  display: block;
}

.event-block-one .inner-box {
  position: relative;
  display: block;
  padding: 0px 0px 0px 293px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.event-block-one .inner-box .image-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 293px;
  border-radius: 10px;
  overflow: hidden;
}

.event-block-one .inner-box .image-box img {
  width: 100%;
  transition: all 500ms ease;
}

.event-block-one .inner-box:hover .image-box img {
  transform: scale(1.05);
}

.event-block-one .inner-box .inner {
  position: relative;
  display: block;
  padding: 32px 30px 37px 30px;
}

.event-block-one .inner-box h5 {
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.event-block-one .inner-box h5 a {
  display: inline-block;
}

.event-block-one .inner-box h5 a:hover {
  text-decoration: underline;
}

.event-block-one .inner-box p {
  display: block;
  margin-bottom: 10px;
  text-align: justify;
}

.event-block-one .inner-box .info-list {
  position: relative;
  display: flex;
  align-items: center;
}

.event-block-one .inner-box .info-list li {
  position: relative;
  margin-right: 20px;
  padding-left: 21px;
  font-size: 16px;
  line-height: 29px;
  font-family: var(--secondary-font);
  font-weight: 600;
}

.event-block-one .inner-box .info-list li:last-child {
  margin: 0px !important;
}

.event-block-one .inner-box .info-list li i {
  position: absolute;
  left: 0px;
  top: 6px;
  font-size: 15px;
}

.event-section .pattern-layer .pattern-1 {
  position: absolute;
  left: 54px;
  top: 322px;
  width: 201px;
  height: 145px;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.event-section .pattern-layer .pattern-2 {
  position: absolute;
  left: 536px;
  bottom: -70px;
  width: 141px;
  height: 147px;
  background-repeat: no-repeat;
}

.event-section .pattern-layer .pattern-3 {
  position: absolute;
  right: 0px;
  bottom: -800px;
  width: 955px;
  height: 1642px;
  background-repeat: no-repeat;
}

.event-page-section {
  background: transparent;
}

.event-page-section .event-block-one .inner-box {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}


/** rtl-css **/

.rtl .event-section .tab-btns li {
  float: right;
  margin-right: 0px;
  margin-left: 30px;
}

.rtl .event-block-one .inner-box {
  padding-left: 0px;
  padding-right: 293px;
}

.rtl .event-block-one .inner-box .image-box {
  left: inherit;
  right: 0px;
}

.rtl .event-block-one .inner-box .info-list li {
  margin-right: 0px;
  margin-left: 20px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 991px) {
  .event-section .content-box {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .event-section {
    padding: 70px 0px 40px 0px;
  }
}

@media only screen and (max-width: 599px) {
  .event-block-one .inner-box {
    padding-left: 0px;
  }

  .rtl .event-block-one .inner-box {
    padding-right: 0px;
  }

  .event-block-one .inner-box .image-box {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 499px) {
  .event-section .tab-btns li {
    width: 100%;
  }
}