:root {
  --overflow-text-line-count: 3;
}

.dt-phone-number-cls {
  display: inline-block;
  direction: ltr;
}

/************* Event Details *********************/
.dt-details .dt-highlight {
  background-color: var(--first-color);
  display: flex;
  flex-direction: row;
  position: relative;
  padding-top: 30px;
  width: 100%;
}

.dt-details .dt-highlight .row {
  width: 100%;
}

.dt-details .dt-highlight img {
  width: 100%;
}

.dt-details .dt-highlight .dt-img {
  top: 70px;
}

.dt-details .dt-social-media {
  padding: 20px;
  background-color: rgb(231, 229, 229);
  border-radius: 5px;
  max-height: 200px;
  margin-bottom: 20px;
}

.dt-details .dt-social-media .dt-share {
  margin: 1em;
}

.dt-details .dt-content-section {
  margin-top: 100px;
}

.dt-details .dt-social-media h3 {
  font-weight: 700;
}

.dt-details .dt-title {
  margin-top: 140px;
  color: white;
}

.dt-details .dt-title div {
  opacity: 0.9;
}

body > .shadow > section,
.breadcrumb {
  margin-bottom: 0 !important;
}

.dt-details .dt-social-media .dt-social-icon {
  text-align: center;
}

.dt-details .pull-right {
  float: none !important;
}

@media (max-width: 992px) {
  .dt-details .dt-highlight .dt-img {
    top: 10px;
  }

  .dt-details .dt-highlight {
    justify-content: center;
  }

  .dt-details .dt-content-section {
    margin-top: 30px;
  }

  .dt-details .dt-title {
    margin-top: 10px;
  }

  .dt-details .dt-social-media {
    margin-top: 20px;
    text-align: center;
  }
}

@media (max-width: 1199px) {
  .dt-details .dt-title {
    top: 0;
  }
}

/************* End Event Details *********************/

/******************* Blogs List *********************/
.dt-blogs-list .filter-box-site .form-inline {
  column-gap: 1.5rem;
}

.dt-blogs-list .filter-box-site .form-inline .form-group {
  column-gap: 5px;
}

.dt-blogs-list .filter-box-site .form-inline .form-group .form-control {
  line-height: 2;
}

.dt-blogs-list .filter-box-site .form-group label {
  width: 8rem;
}

.dt-blogs-list .filter-box-site .form-group input,
.dt-blogs-list .filter-box-site .form-group select {
  flex-grow: 1;
}

.dt-blogs-list .filter-box-site .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' style='color: gray;'><polyline%20points='6%209%2012%2015%2018%209'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 2rem;
}

.dt-blogs-list-author {
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .dt-blogs-list .filter-box-site .form-inline {
    justify-content: center;
  }
}

/*************** End Blogs List *********************/

/********************** Add Points with Overflow Text  ***************************/

/****************************************************************************
to change the number of line define new class and change variable(--overflow-text-line-count) value
and use the new class with dt-global-overflow-text

change-overflow-text-line-count {
    --overflow-text-line-count: 2;
}

<div class="dt-global-overflow-text change-overflow-text-line-count">$$brief$$</div>
*****************************************************************************/
.dt-global-overflow-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--overflow-text-line-count);
  white-space: pre-wrap;
}

/*************** global class to center element  *********************/
@media (min-width: 768px) {
  .g_flex_center {
    display: flex !important;
    justify-content: center !important;
  }
}

/*************************** Statics Modules *********************************/
.g_statics--container {
  display: grid;
  text-align: center;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  justify-items: center;
}

.g_statics--item-icon {
  margin-bottom: 2rem;
  color: var(--first-color);
}

.g_statics--item-number {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .g_statics--container {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-row-gap: 5rem;
  }
}

/*************************** Ellipsis Class *********************************/
.g_ellipsis_text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/****************** Effects ************************/
[data-magic-effect] {
    position: relative;
}

[data-magic-effect="dark"]::before,
[data-magic-effect="white"]::before,
[data-magic-effect="dark-gradient"]::before {
    content: "";
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
}

[data-magic-effect="dark"]::before {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

[data-magic-effect="white"]::before {
    background-color: rgba(255, 255, 255, 0.6) !important;
}

[data-magic-effect="dark-gradient"]::before {
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(to bottom, transparent 0%, black 100%) !important;
}

/******************************************/
img[data-magic-effect="dark"] {
    filter: brightness(0.4) !important;
}

img[data-magic-effect="white"] {
    filter: contrast(30%) !important;
}