
:root {
  --white-color:                  #ffffff;
  --primary-color:                #0dcaf0;
  --secondary-color:              #0d6efd;
  --section-bg-color:             #f0f8ff;
  --dark-color:                   #000000;
  --navbar-bg-color:              #273053;
  --p-color:                      #717275;
  --highlight-icon-color:         #ff0100;
  --body-font-family:             'DM Sans', sans-serif;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               16px;
  --copyright-text-font-size:     16px;
  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}
body {
    background: var(--white-color);
    font-family: var(--body-font-family); 
}
/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h5,
h6 {
  color: var(--dark-color);
}
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}
h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}
p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --secondary-color:              #80d0c7;
  --custom-btn-bg-color:          #80d0c7;
  --border-color:                 #7fffd4;
  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

}
/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-bg {
  background-color: var(--section-bg-color);
}
.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}
/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}
/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}
/*---------------------------------------
  TOPICS              
-----------------------------------------*/
.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}
.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}
.custom-block > a {
  width: 100%;
}
.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}
.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}
.custom-block-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
}
.custom-block-overlay > a {
  height: 100%;
}
.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}
.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}
/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}
.custom-block-topics-listing {
  height: inherit;
}
.custom-block-topics-listing .custom-block-image {
  width: 200px;
}
.custom-block-topics-listing .custom-block-image {
  width: auto;
}
/*---------------------------------------
  PAGINATION              
----------------------------------------*/
.pagination {
  margin-top: 40px;
}
.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}
.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.page-item:first-child .page-link {
  margin-right: 10px;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}
.active>.page-link, .page-link.active {
  background-color: var(--secondary-color);
 border-color: var(--secondary-color);
}
/*---------------------------------------
  RESPONSIVE STYLES               
----------------------------------------*/
@media screen and (max-width: 991px) {
  h5 {
    font-size: 20px;
  }
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }
  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }
  .custom-block-topics-listing > .d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }
  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }
  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }
  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  h5 {
    font-size: 20px;
  }
}

