@charset "UTF-8";
/*********************************************************************
************************* Style Global Rouls *************************
*********************************************************************/
@font-face {
    font-family: proximanova;
    src: url("../fonts/proximanova.otf")
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --main-color: #028669;
  --second-color: #6C34A6;
  --black-color: #1E1E1E;
  --gray-color: #c6cac6;
  --border-color: #F2F2F2;
  --main-space: 40px;
  --main-transition: .4s;
}

body {
    font-family: "proximanova", sans-serif;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "proximanova", sans-serif;
    font-weight: 700;
    margin: 0
}

p {
  margin: 0;
}

button {
  background: none;
  border: none;
}

button:focus {
  outline: none;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

hr {
  border: 1px solid #E1E1E1;
}

.container-lg {
  --bs-gutter-x: 32px;
}

#content {
  background-color: #FAFAFA;
  padding-top: var(--main-space);
  padding-bottom: calc(var(--main-space) * 2);
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 40px;
}
@media (max-width: 991px) {
  #content {
    padding-top: 25px;
    padding-bottom: 25px;
    gap: 25px;
  }
}

/*********************************************************************
*************************** Style to GMED ****************************
*********************************************************************/
/*********************** Start style Header ***************************/
#header {
  border-bottom: 1px solid #D8D8D8;
  background-color: white;
  position: relative;
}
#header .navbar {
  padding: 25px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: unset;
  gap: 20px;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  #header .navbar {
    padding: 10px 0;
    gap: 12px;
    max-width: 100%;
    overflow-x: hidden;
  }
}
#header .navbar .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  #header .navbar .content-box {
    gap: 12px;
  }
}
#header .navbar .content-box .navbar-toggler {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0;
}
#header .navbar .content-box .navbar-toggler svg {
  width: 24px;
  height: 24px;
  color: #50504F;
}
#header .navbar .content-box .navbar-brand img {
  width: 185px;
}
@media (max-width: 991px) {
  #header .navbar .content-box .navbar-brand img {
    width: 110px;
  }
}
#header .navbar .content-box .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}
@media (max-width: 1199px) {
  #header .navbar .content-box .navbar-nav {
    gap: 16px;
  }
}
@media (max-width: 991px) {
  #header .navbar .content-box .navbar-nav {
    display: none;
  }
}
#header .navbar .content-box .navbar-nav .nav-item {
  position: relative;
}
#header .navbar .content-box .navbar-nav .nav-link {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  color: #50504F;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  cursor: pointer;
}
#header .navbar .content-box .navbar-nav .nav-link:hover, #header .navbar .content-box .navbar-nav .nav-link.active {
  color: var(--second-color);
}
#header .navbar .content-box .how-use {
  padding: 8px 24px;
  background-color: white;
  border: 3px solid var(--second-color);
  border-radius: 100px;
  color: var(--second-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 991px) {
  #header .navbar .content-box .how-use {
    display: none;
  }
}
#header .navbar .content-box .how-use:hover {
  background-color: var(--second-color);
  color: white;
}
#header .navbar .popups-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media (max-width: 1199px) {
  #header .navbar .popups-box {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  #header .navbar .popups-box {
    gap: 12px;
  }
}
#header .navbar .popups-box section {
  position: relative;
  cursor: pointer;
}
#header .navbar .popups-box section svg {
  width: 25px;
  height: 25px;
  color: #50504F;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 991px) {
  #header .navbar .popups-box section svg {
    width: 20px;
    height: 20px;
  }
}
#header .navbar .popups-box section:hover svg {
  color: var(--second-color);
}
#header .navbar .popups-box .search {
  cursor: default;
}
#header .navbar .popups-box .search svg {
  cursor: pointer;
}
#header .navbar .popups-box .search .search-box {
  width: 768px;
  max-width: calc(100% - 32px);
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 30px;
  background-color: white;
  border-radius: 4px;
  -webkit-filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.25));
  display: none;
}
@media (max-width: 767px) {
  #header .navbar .popups-box .search .search-box {
    padding: 20px;
  }
}
#header .navbar .popups-box .search .search-box.open {
  display: unset;
}
#header .navbar .popups-box .search .search-box.open + .overlay {
  display: block;
}
#header .navbar .popups-box .search .search-box .search-field input {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  caret-color: var(--second-color);
  padding: 14px 16px;
  background-color: #F0F0F0;
  border-radius: 4px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  #header .navbar .popups-box .search .search-box .search-field input {
    margin-bottom: 20px;
  }
}
#header .navbar .popups-box .search .search-box .content {
  margin-bottom: 25px;
}
#header .navbar .popups-box .search .search-box .content h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  color: #000;
  margin-bottom: 10px;
}
#header .navbar .popups-box .search .search-box .content .d-flex {
  gap: 25px;
}
#header .navbar .popups-box .search .search-box .content .d-flex.therapeutical {
  gap: 10px;
}
@media (max-width: 767px) {
  #header .navbar .popups-box .search .search-box .content .d-flex:not(.therapeutical) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  #header .navbar .popups-box .search .search-box .content .d-flex.therapeutical {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#header .navbar .popups-box .search .search-box .content .checkbox-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#header .navbar .popups-box .search .search-box .content .checkbox-field .form-check-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--second-color);
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}
#header .navbar .popups-box .search .search-box .content .checkbox-field .form-check-input:checked {
  background-color: var(--second-color);
}
#header .navbar .popups-box .search .search-box .content .checkbox-field label {
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  color: #54565B;
  text-transform: capitalize;
}
#header .navbar .popups-box .search .search-box .content .filter-field {
  padding: 8px 16px;
  border: 1px solid var(--second-color);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  color: var(--second-color);
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#header .navbar .popups-box .search .search-box .content .filter-field.active {
  background-color: var(--second-color);
  color: white;
}
#header .navbar .popups-box .search .search-box .content .filter-field input {
  display: none;
}
#header .navbar .popups-box .search .search-box .content .filter-field label {
  pointer-events: none;
}
#header .navbar .popups-box .search .search-box hr {
  border: 1px solid #B9B9B9;
  margin: 20px 0;
}
@media (max-width: 767px) {
  #header .navbar .popups-box .search .search-box footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
#header .navbar .popups-box .search .search-box .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  #header .navbar .popups-box .search .search-box .buttons {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
  }
}
#header .navbar .popups-box .search .search-box button[type=reset],
#header .navbar .popups-box .search .search-box #cancel_search_button {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #54565B;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#header .navbar .popups-box .search .search-box button[type=reset]:hover,
#header .navbar .popups-box .search .search-box #cancel_search_button:hover {
  color: var(--second-color);
}
@media (max-width: 767px) {
  #header .navbar .popups-box .search .search-box #cancel_search_button {
    padding: 15px 30px;
    background-color: #F4F4F4;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #1E1E1E;
    -webkit-transition: var(--main-transition);
    transition: var(--main-transition);
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  #header .navbar .popups-box .search .search-box #cancel_search_button:hover {
    background-color: #E8EAE8;
  }
}
#header .navbar .popups-box .search .search-box button[type=submit] {
  padding: 15px 50px;
  background-color: white;
  color: var(--second-color);
  border: 3px solid var(--second-color);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#header .navbar .popups-box .search .search-box button[type=submit]:hover {
  background-color: var(--second-color);
  color: white;
}
@media (max-width: 767px) {
  #header .navbar .popups-box .search .search-box button[type=submit] {
    padding: 15px 40px;
  }
}
#header .navbar .popups-box .notification.active::after {
  content: url("../images/icons/notification-active.svg");
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}
#header .navbar .popups-box .notification #notification_popup {
  width: 540px;
  left: auto;
  right: 0;
  margin: 0;
  cursor: default;
}
@media (max-width: 575px) {
  #header .navbar .popups-box .notification #notification_popup {
    right: -16px;
    width: 100vw;
    background-color: #F2F2F2;
  }
}
#header .navbar .popups-box .notification #notification_popup .notifications-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #000;
  text-transform: capitalize;
  pointer-events: none;
}
@media (max-width: 575px) {
  #header .navbar .popups-box .notification #notification_popup .notifications-heading {
    text-align: center;
  }
}
#header .navbar .popups-box .notification #notification_popup a.nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 15px;
  padding-right: 30px;
  position: relative;
}
@media (max-width: 575px) {
  #header .navbar .popups-box .notification #notification_popup a.nav-link {
    background-color: white;
  }
  #header .navbar .popups-box .notification #notification_popup a.nav-link:hover {
    background-color: #E8EAE8;
  }
}
#header .navbar .popups-box .notification #notification_popup a.nav-link .image img {
  width: 120px;
  height: 100%;
  max-height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 575px) {
  #header .navbar .popups-box .notification #notification_popup a.nav-link .image img {
    width: 60px;
    height: 60px;
  }
}
#header .navbar .popups-box .notification #notification_popup a.nav-link .content p.category {
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  color: var(--main-color);
  text-transform: capitalize;
}
#header .navbar .popups-box .notification #notification_popup a.nav-link .content h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #1E1E1E;
  margin-bottom: 10px;
}
#header .navbar .popups-box .notification #notification_popup a.nav-link .content p.time {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: var(--second-color);
}
#header .navbar .popups-box .notification #notification_popup a.nav-link .notification-badge {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--second-color);
  position: absolute;
  top: 15px;
  right: 15px;
}
#header .navbar .popups-box .notification #notification_popup footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}
#header .navbar .popups-box .notification #notification_popup footer a.mark-read,
#header .navbar .popups-box .notification #notification_popup footer a.clear {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #54565B;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#header .navbar .popups-box .notification #notification_popup footer a.mark-read:hover,
#header .navbar .popups-box .notification #notification_popup footer a.clear:hover {
  color: var(--second-color);
}
@media (max-width: 991px) {
  #header .navbar .popups-box .account {
    display: none;
  }
}
#header .navbar .popups-box .account img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
#header .navbar .popups-box .account ul.submenu {
  left: auto;
  right: 0;
  margin: 0;
  width: 190px;
}
#header .navbar .popups-box .account ul.submenu .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #54565B;
}
#header .navbar .popups-box .account ul.submenu .nav-link svg {
  width: 15px;
  height: 15px;
  color: inherit;
}
#header .navbar .popups-box .account ul.submenu li:last-child .nav-link {
  color: var(--second-color) !important;
}
#header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
}
#header #mobile_menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  background-color: white;
  -webkit-transition: width var(--main-transition);
  transition: width var(--main-transition);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 15px;
}
@media (min-width: 992px) {
  #header #mobile_menu {
    display: none !important;
  }
}
#header #mobile_menu::after {
  content: "";
}
#header #mobile_menu.show {
  padding: 20px;
  width: 60%;
}
@media (max-width: 767px) {
  #header #mobile_menu.show {
    width: 100%;
  }
}
#header #mobile_menu.show + .overlay {
  display: block;
}
#header #mobile_menu ul.submenu {
  width: unset;
  position: unset;
  -webkit-transform: unset;
          transform: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  margin: 0;
}
#header #mobile_menu #close_header_menu {
  font-size: 24px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #374957;
}
#header #mobile_menu #close_header_menu:hover {
  color: #842029;
}
#header #mobile_menu .profile .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
#header #mobile_menu .profile .content .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
#header #mobile_menu .profile .content .box img {
  width: 61px;
  height: 61px;
  -o-object-fit: cover;
     object-fit: cover;
}
#header #mobile_menu .profile .content .box h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
#header #mobile_menu .profile .content svg {
  font-size: 18px;
}
#header #mobile_menu .profile .submenu {
  margin-top: 15px;
  padding-bottom: 0;
}
#header #mobile_menu .profile .submenu li:last-child .nav-link {
  color: var(--main-color) !important;
}
#header #mobile_menu hr {
  border: 1px solid #E8EAE8;
  margin: 0;
}
#header #mobile_menu ul.mobie-menu > li:not(:last-child) {
  margin-bottom: 15px;
}
#header #mobile_menu ul.mobie-menu a.nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  background-color: #F4F4F4;
  border: 2px solid #F4F4F4;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#header #mobile_menu ul.mobie-menu a.nav-link:hover {
  background-color: #E8EAE8;
}
#header #mobile_menu ul.mobie-menu a.nav-link .icon {
  width: 36px;
  height: 36px;
  background-color: white;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header #mobile_menu ul.mobie-menu a.nav-link .icon svg {
  font-size: 20px;
}

/*********************** End style Header ***************************/
/*********************** Start style footer ***************************/
#footer {
  background-color: white;
  border-top: 1px solid #D8D8D8;
  color: #50504F;
}
#footer .box {
  padding: var(--main-space) 0;
  padding-bottom: 0;
  display: -ms-grid;
  display: grid;
  grid-template-columns: calc(2 * (100% - 70px) / 3) calc((100% - 70px) / 3);
  gap: 70px;
}
#footer .child-box {
  display: -ms-grid;
  display: grid;
  grid-template-columns: calc((100% - 70px) / 2) calc((100% - 70px) / 2);
  gap: 70px;
}
@media (max-width: 1199px) {
    #footer .box {
        grid-template-columns: calc(2 * (100% - 58px) / 3) calc((100% - 58px) / 3);
        gap: 32px 58px;
    }
     #footer .child-box {
      grid-template-columns: calc((100% - 58px) / 2) calc((100% - 58px) / 2);
      gap: 32px 58px;
    }
}
@media (max-width: 991px) {
  #footer .box {
    grid-template-columns: 100%;
  }
}
@media (max-width: 767px) {
  #footer .box {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 32px;
  }
  #footer .child-box {
    grid-template-columns: 100%;
    gap: 32px;
  }
  #footer .box section {
    display: unset;
  }
}
#footer .box .image {
  margin-bottom: 20px;
}
#footer .box .image img {
  width: 180px;
  max-width: 100%;
}
#footer .box p {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  font-family: "Inter", proximanova-regular, sans-serif;
}
#footer .box ul.nav {
  gap: 16px;
}
#footer .box ul.nav .nav-item {
  width: calc((100% - 16px) / 2);
}
#footer .box ul.nav a.nav-link {
  padding: 0;
  color: #50504F;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
#footer .box ul.nav a.nav-link:hover {
  color: var(--second-color);
}
#footer .box h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  #footer .box h3 {
    margin-bottom: 16px;
  }
}
#footer .box .download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
#footer .box .download img {
  width: 180px;
  max-width: 100%;
  transition: var(--main-transition);
}
#footer .box .download img:hover {
    opacity: .8;
    transform: scale(1.05);
}
#footer .box .sponsor-logo {
    margin-top: 16px;
    text-align: center;
}
@media(max-width: 991px) {
    #footer .box .sponsor-logo {
        margin-top: 24px;
        text-align: unset;
    }
}
#footer .box .sponsor-logo img {
    max-width: 100%;
    height: 100px;
} 
#footer .copyright {
  padding: 30px 0;
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
}
/*********************** End style footer ***************************/
/***************** Start style components section *******************/
/* submenu component */
ul.submenu {
  width: 240px;
  position: absolute;
  bottom: -10px;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  z-index: 10;
  background-color: white;
  padding: 10px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  display: none;
}
ul.submenu.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
ul.submenu .nav-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  color: #54565B;
  background-color: #F4F4F4;
  border: 2px solid #F4F4F4;
  border-radius: 5px;
  padding: 12px 17px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
ul.submenu .nav-link:hover {
  background-color: #E8EAE8;
}

/* main heading component */
h1.main-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: #000000;
  margin-bottom: 40px;
}

/* bookmark button  component */
a.bookmark {
  padding: 15px 30px;
  background-color: white;
  color: var(--second-color);
  border: 3px solid var(--second-color);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
a.bookmark:hover {
  background-color: var(--second-color);
  color: white;
}
a.bookmark svg {
  font-size: 20px;
}
a.bookmark.active {
  color: white;
  background-color: var(--second-color);
}

/* how-use button component */
.how-use {
  padding: 10px 30px;
  background-color: white;
  color: var(--second-color);
  border: 3px solid var(--second-color);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 1199px) {
.how-use {
    padding: 10px 20px;
  }
}

.how-use:hover {
  background-color: var(--second-color);
  color: white;
}

/* featured heading component */
.featured-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .featured-heading {
    margin-bottom: 15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.featured-heading h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #1E1E1E;
}
@media (max-width: 991px) {
  .featured-heading h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
  }
}
.featured-heading a {
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  color: #50504F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
@media (max-width: 991px) {
  .featured-heading a {
    gap: 6px;
    font-size: 14px;
    line-height: 17px;
  }
}
.featured-heading a span {
  width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 991px) {
  .featured-heading a span {
    width: 100%;
    opacity: 1;
  }
}
.featured-heading a:hover {
  gap: 6px;
}
.featured-heading a:hover span {
  width: 100%;
  opacity: 1;
}
.featured-heading a svg {
  font-size: 18px;
  color: var(--second-color);
}
@media (max-width: 991px) {
  .featured-heading a svg {
    font-size: 16px;
  }
}

/* posts container component */
.posts-container {
  position: relative;
}
.posts-container .posts-slider {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  position: relative;
  top: 0;
  left: 0;
}

/* post video & image component */
.post-video,
.post-image {
  width: 380px;
  background-color: white;
  border: 1px solid #DFDEDF;
  border-radius: 4px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.post-video:hover,
.post-image:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.2));
}
@media (max-width: 991px) {
  .post-video,
.post-image {
    width: 270px;
    max-width: 100%;
  }
}
.post-video .featured-video,
.post-image .featured-video {
  position: relative;
  cursor: pointer;
  border-radius: 4px 4px 0px 0px;
}
.post-video .featured-video::before,
.post-image .featured-video::before {
  content: "";
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(5, 102, 141, 0.8);*/
}
.post-video .featured-video::after,
.post-image .featured-video::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 52px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  width: 52px;
}
.post-video .featured-video img,
.post-image .featured-video img {
  border-radius: inherit;
  width: 100%;
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 350px;
}
.post-video .featured-image,
.post-image .featured-image {
  aspect-ratio: 1.5;
  max-height: 350px;
  padding: 30px;
  padding-bottom: 0;
}
.post-video .featured-image img,
.post-image .featured-image img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .post-video .featured-image,
.post-image .featured-image {
    padding: 20px;
    padding-bottom: 0;
  }
}
.post-video .content,
.post-image .content {
  position: relative;
  padding: 30px;
}
@media (max-width: 991px) {
  .post-video .content,
.post-image .content {
    padding: 20px;
  }
}
.post-video .content .feild,
.post-image .content .feild {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .post-video .content .feild,
.post-image .content .feild {
    font-size: 13px;
  }
}
.post-video .content .post-title,
.post-image .content .post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #1E1E1E;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .post-video .content .post-title,
.post-image .content .post-title {
    font-size: 16px;
    line-height: 20px;
  }
}
.post-video .content .meta-data,
.post-image .content .meta-data {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #50504F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .post-video .content .meta-data,
.post-image .content .meta-data {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .post-video .content .meta-data span::after,
.post-image .content .meta-data span::after {
    display: none;
  }
  .post-video .content .meta-data .time,
.post-image .content .meta-data .time {
    display: none;
  }
}
.post-video .content .meta-data span:not(:last-child),
.post-image .content .meta-data span:not(:last-child) {
  position: relative;
}
.post-video .content .meta-data span:not(:last-child)::after,
.post-image .content .meta-data span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -10px;
  color: var(--second-color);
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.post-video .content .meta-data .author,
.post-image .content .meta-data .author {
  color: #50504F;
}
@media (max-width: 991px) {
  .post-video .content .meta-data .author,
.post-image .content .meta-data .author {
    font-weight: bold;
    font-size: 13px;
  }
}
.post-video .content .category,
.post-image .content .category {
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  color: var(--main-color);
  text-align: right;
}
@media (max-width: 991px) {
  .post-video .content .category,
.post-image .content .category {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
}
.post-video .content .new-badge,
.post-image .content .new-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  color: white;
  background-color: var(--main-color);
  border-radius: 100px;
  padding: 5px 10px;
}
@media (max-width: 991px) {
  .post-video .content .new-badge,
.post-image .content .new-badge {
    top: 20px;
    right: 20px;
  }
}

/* Event component */
section.event {
  width: 380px;
  background-color: white;
  border: 1px solid #DFDEDF;
  border-radius: 4px;
}
@media (max-width: 991px) {
  section.event {
    width: 270px;
    padding: 20px;
  }
}
section.event .featured-image {
  aspect-ratio: 1.5;
  max-height: 350px;
  border-radius: 4px 4px 0 0;
}
@media (max-width: 991px) {
  section.event .featured-image {
    border-radius: 4px;
  }
}
section.event .featured-image img {
  border-radius: inherit;
  width: 100%;
  height: 100%;
}
section.event .content {
  position: relative;
  padding: 30px;
}
@media (max-width: 991px) {
  section.event .content {
    padding: 0;
    margin-top: 10px;
  }
}
section.event .content .post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #1E1E1E;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  section.event .content .post-title {
    max-width: 170px;
    font-size: 16px;
    line-height: 20px;
  }
}
section.event .content .author {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--second-color);
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  section.event .content .author {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 20px;
  }
}
section.event .content .meta-data {
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  color: #1E1E1E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  section.event .content .meta-data {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 0;
  }
}
section.event .content .meta-data span:not(:last-child) {
  position: relative;
}
section.event .content .meta-data span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -10px;
  color: #1E1E1E;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
section.event .content .event-brief {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: #1E1E1E;
  margin-bottom: 32px;
  display: none;
}
section.event .content .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
section.event .content .actions a.more {
  padding: 10px 30px;
  background-color: white;
  color: var(--second-color);
  border: 3px solid var(--second-color);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
section.event .content .actions a.more:hover {
  background-color: var(--second-color);
  color: white;
}
@media (max-width: 991px) {
  section.event .content .actions a.more {
    display: none;
  }
}
section.event .content .actions a.bookmark {
  padding: 10px 15px;
}

@media (max-width: 991px) {
  section.event .content .actions a.bookmark {
    position: absolute;
    top: 0;
    right: 0;
    padding: 18px;
    font-size: 0;
    gap: 0;
    width: 50px;
    height: 50px;
    padding: 10px;
  }
}
section.event .content .actions a.bookmark svg {
  font-size: 20px;
}
@media (min-width: 992px) {
  section.event:first-of-type {
    width: 670px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 280px;
    grid-template-columns: 1fr 280px;
  }
  section.event:first-of-type .featured-image {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    width: 280px;
    height: 100%;
    aspect-ratio: unset;
    max-height: unset;
    border-radius: 0 4px 4px 0;
  }
  section.event:first-of-type .content {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  section.event:first-of-type .content .meta-data {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
  }
  section.event:first-of-type .content .author {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
  }
  section.event:first-of-type .content .event-brief {
    display: block;
  }
  section.event:first-of-type .content .actions {
    margin-top: auto;
  }
}

/* article post component */
.article-post {
  position: relative;
  width: 280px;
  background-color: white;
  border: 1px solid #DFDEDF;
  border-radius: 4px;
  padding: 30px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.article-post:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 991px) {
  .article-post {
    width: 270px;
    padding: 20px;
  }
}
.article-post .feild {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .article-post .feild {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.article-post .category {
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  color: var(--main-color);
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .article-post .category {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: 0;
  }
}
.article-post .post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #50504F;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .article-post .post-title {
    font-size: 16px;
    line-height: 20px;
  }
}
.article-post .author {
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  color: var(--second-color);
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .article-post .author {
    font-size: 13px;
    line-height: 16px;
  }
}
.article-post .meta-data {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #50504F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
}
@media (max-width: 991px) {
  .article-post .meta-data span::after {
    display: none;
  }
  .article-post .meta-data .time {
    display: none;
  }
}
.article-post .meta-data span:not(:last-child) {
  position: relative;
}
.article-post .meta-data span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -10px;
  color: var(--second-color);
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.article-post .new-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  color: white;
  background-color: var(--main-color);
  border-radius: 100px;
  padding: 5px 10px;
}
@media (max-width: 991px) {
  .article-post .new-badge {
    top: 20px;
    right: 20px;
  }
}

/* similar video component */
.similar-video {
  background-color: white;
  border: 1px solid #DFDEDF;
  border-radius: 4px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.similar-video .featured-image {
  cursor: pointer;
  border-radius: 4px 4px 0px 0px;
}
.similar-video .featured-image img {
  border-radius: inherit;
  width: 100%;
  aspect-ratio: 1.5;
  max-height: 350px;
}
.similar-video .similar-content {
  position: relative;
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.similar-video .similar-content .post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #50504F;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .similar-video .similar-content .post-title {
    font-size: 16px;
    line-height: 20px;
  }
}
.similar-video .similar-content .meta-data {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #50504F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  margin-bottom: 20px;
}
.similar-video .similar-content .meta-data span:not(:last-child) {
  position: relative;
}
.similar-video .similar-content .meta-data span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -10px;
  color: #50504F;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.similar-video .similar-content .video-speaker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.similar-video .similar-content .video-speaker img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.similar-video .similar-content .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: auto;
}
.similar-video .similar-content .actions a.more {
  padding: 12px 30px;
  background-color: white;
  color: var(--second-color);
  border: 3px solid var(--second-color);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.similar-video .similar-content .actions a.more:hover {
  background-color: var(--second-color);
  color: white;
}
.similar-video .similar-content .actions a.bookmark {
  padding: 10px;
  width: 50px;
  height: 50px;
}

/* post popup [video - image - article] */
.post-popup {
  cursor: default;
}
.post-popup::-webkit-scrollbar {
  display: none;
}
.post-popup .modal-dialog {
  width: 768px;
  max-width: calc(100% - 32px);
  margin: 25px auto;
}
.post-popup.large-popup .modal-dialog {
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}
.post-popup.large-popup .modal-content {
    height: 100%;
}
.post-popup.popup-vedio .modal-dialog {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.post-popup .modal-content {
  background-color: white;
  border-radius: 4px;
}
.post-popup .modal-content .modal-header {
  padding: 0;
  border: none;
}
.post-popup .modal-content .modal-header .close-popup {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px 60px 15px auto;
  margin-right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  color: #50504F;
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.post-popup .modal-content .modal-header .close-popup:hover, .post-popup .modal-content .modal-header .close-popup:hover svg {
  color: var(--second-color);
}
.post-popup .modal-content .modal-header .close-popup svg {
  font-size: 15px;
  color: #50504F;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .post-popup .modal-content .modal-header .close-popup {
    margin-right: 30px;
  }
}
.post-popup .modal-content header img,
.post-popup .modal-content header video {
  width: 100%;
  aspect-ratio: 21/9;
  max-height: 400px;
}
.post-popup .modal-content .modal-body {
  padding: 40px 60px;
}
@media (max-width: 767px) {
  .post-popup .modal-content .modal-body {
    padding: 20px;
  }
}
.post-popup .modal-content .post-content {
  margin-bottom: 25px;
}
.post-popup .modal-content .post-content .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 25px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .post-popup .modal-content .post-content .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.post-popup .modal-content .post-content .text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: #1E1E1E;
}
.post-popup .modal-content .post-content .text h2 span {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  display: block;
}
@media (max-width: 767px) {
  .post-popup .modal-content .post-content .text h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .post-popup .modal-content .post-content .text h2 span {
    font-size: 20px;
    line-height: 24px;
  }
}
.post-popup .modal-content .post-content .text span.date {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: var(--main-color);
}
.post-popup .modal-content .post-content .text .location {
  margin-top: 20px;
}
.post-popup .modal-content .post-content .text .location h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #54565B;
  margin-bottom: 5px;
}
.post-popup .modal-content .post-content .text .location p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--main-color);
}
@media (max-width: 767px) {
  .post-popup .modal-content .post-content .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    width: 100%;
  }
}
.post-popup .modal-content .post-content .actions .watch {
  padding: 15px 30px;
  background-color: white;
  color: var(--second-color);
  border: 3px solid var(--second-color);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  width: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
.post-popup .modal-content .post-content .actions .watch:hover {
  background-color: var(--second-color);
  color: white;
}
.post-popup .modal-content .post-content .actions .watch svg
{
  font-size: 20px;
}
.post-popup .modal-content .post-content .actions .bookmark {
    width: 230px;
}
@media (max-width: 767px) {
  .post-popup .modal-content .post-content .actions .watch,
  .post-popup .modal-content .post-content .actions .bookmark {
    width: 100%;
    padding: 10px 15px;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .post-popup .modal-content .post-content .actions .watch {
    margin-bottom: 0;
  }
}
.post-popup .modal-content .post-content .post-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: #50504F;
  margin-top: 20px;
}
.post-popup .modal-content .post-content .post-text .read-more {
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  color: var(--second-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  margin-top: 20px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  text-transform: uppercase;
}
.post-popup .modal-content .post-content .post-text .read-more:hover {
  opacity: .7;
}
.post-popup .modal-content .speakers h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #1E1E1E;
  margin-bottom: 15px;
}
.post-popup .modal-content .speakers .box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3);
  grid-template-columns: repeat(3, calc((100% - 20px) / 3));
  gap: 10px;
}
@media (max-width: 767px) {
  .post-popup .modal-content .speakers .box {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 15px;
  }
}
.post-popup .modal-content .speakers .speaker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.post-popup .modal-content .speakers .speaker .image img {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .post-popup .modal-content .speakers .speaker .image img {
    width: 40px;
    height: 40px;
  }
}
.post-popup .modal-content .speakers .speaker .info .name {
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  color: #50504F;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .post-popup .modal-content .speakers .speaker .info .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
  }
}
.post-popup .modal-content .speakers .speaker .info .name:hover {
  color: var(--second-color);
}
.post-popup .modal-content .speakers .speaker .info .name span {
  display: block;
}
.post-popup .modal-content .speakers .speaker .info .specialty {
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  color: #50504F;
}
.post-popup .modal-content hr {
  border: 1px solid var(--second-color);
  margin: 55px 0;
}
@media (max-width: 767px) {
  .post-popup .modal-content hr {
    margin: 20px 0;
  }
}
.post-popup .modal-content .similar-videos h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #1E1E1E;
  margin-bottom: 15px;
}
.post-popup .modal-content .similar-videos .box {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
}

.video-meta-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .video-meta-data {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.video-meta-data .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.video-meta-data .actions li {
  position: relative;
}
.video-meta-data .meta-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  color: #50504F;
  padding: 10px 15px;
  background-color: #F4F4F4;
  border-radius: 4px;
  text-transform: capitalize;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.video-meta-data .meta-action:not(.views-counter) {
  cursor: pointer;
}
.video-meta-data .meta-action:not(.views-counter):hover {
  background-color: #E8EAE8;
}
.video-meta-data .meta-action svg {
  color: #50504F;
  font-size: 16px;
}
.video-meta-data .meta-action.views-counter {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.video-meta-data .meta-action.views-counter svg {
  color: #939A92;
  font-size: 18px;
}
.video-meta-data .meta-action.views-counter .count {
  color: var(--second-color);
  font-weight: 700;
}
.video-meta-data .meta-action.active svg {
  color: var(--second-color);
}
.video-meta-data ul.submenu {
  left: auto;
  right: 0;
  width: 160px;
}
.video-meta-data ul.submenu a.nav-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  color: #50504F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.video-meta-data ul.submenu a.nav-link svg {
  padding: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: white;
}
.video-meta-data ul.submenu a.nav-link svg[class*=twitter] {
  background-color: #03A9F4;
}
.video-meta-data ul.submenu a.nav-link svg[class*=facebook] {
  background-color: #3B5998;
}
.video-meta-data ul.submenu a.nav-link svg[class*=linkedin] {
  background-color: #007AB9;
}

.countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.countdown .count {
  width: 100%;
}
.countdown p {
  min-width: 50px;
  padding: 7px;
  text-align: center;
  background-color: #05668D;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: white;
  margin-bottom: 4px;
}
.countdown h4 {
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  color: #54565B;
  text-align: center;
  text-transform: capitalize;
}

.speaker-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .speaker-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.speaker-content .image img {
  width: 230px;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .speaker-content .image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
  }
}
.speaker-content .speaker-info h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: #1E1E1E;
}
@media (max-width: 767px) {
  .speaker-content .speaker-info h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
.speaker-content .speaker-info .field {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: var(--main-color);
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .speaker-content .speaker-info .field {
    font-size: 16px;
    line-height: 20px;
  }
}
.speaker-content .speaker-info p {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: #000;
}

/* checkbox-field component */
.checkbox-field .form-check-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--second-color);
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}
.form-check-input:checked {
  background-color: var(--second-color);
}


.radio-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.radio-field label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  text-transform: capitalize;
}
.radio-field input[type=radio] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--second-color);
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex-shrink: 0;
}
.radio-field input[type=radio]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--second-color);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.radio-field input[type=radio]:checked::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* areas-section component */
.areas-section .areas-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 30px) / 2) 30px calc((100% - 30px) / 2);
  grid-template-columns: repeat(2, calc((100% - 30px) / 2));
  gap: 30px;
}
@media (max-width: 767px) {
  .areas-section .areas-box {
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .areas-section .areas-box {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.areas-section .areas-box a {
  background-color: #FFFFFF;
  border: 1px solid #DFDEDF;
  border-radius: 4px;
  padding: 20px;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .areas-section .areas-box a {
    gap: 20px;
    padding: 15px;
  }
}
.areas-section .areas-box a:hover {
  background-color: #E8EAE8;
}
.areas-section .areas-box a.active {
  border-color: var(--main-color);
}
.areas-section .areas-box a.active .icon svg {
  color: var(--second-color);
}
.areas-section .areas-box a .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .areas-section .areas-box a .box {
    gap: 15px;
  }
}
.areas-section .areas-box a .image img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .areas-section .areas-box a .image img {
    width: 50px;
    height: 50px;
  }
}
.areas-section .areas-box a .text {
  max-width: 225px;
}
.areas-section .areas-box a .text h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #1E1E1E;
}
@media (max-width: 767px) {
  .areas-section .areas-box a .text h3 {
    font-size: 16px;
    line-height: 20px;
  }
}
.areas-section .areas-box a .text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #50504F;
}
@media (max-width: 767px) {
  .areas-section .areas-box a .text p {
    font-size: 12px;
    line-height: 15px;
  }
}
.areas-section .areas-box a .icon svg {
  font-size: 32px;
  color: #DFDEDF;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .areas-section .areas-box a .icon svg {
    font-size: 18px;
  }
}
.areas-section .areas-box a input[type=checkbox] {
  display: none;
}


/* play-vedio component */

.play-vedio {
  position: relative;
  cursor: pointer;
  border-radius: 4px 4px 0px 0px;
  max-width: 767px;
  margin: auto;
}
.play-vedio::before {
  content: "";
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 102, 141, 0.8);
}
.play-vedio::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  font-size: 52px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  width: 52px;
}
.play-vedio img {
  border-radius: inherit;
  width: 100%;
  max-height: 420px;
}

/***************** End style components section *********************/
/*********************************************************************
***************************** Home page ******************************
*********************************************************************/
body.home #content {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 40px;
  grid-template-columns: 100%;
}
@media (max-width: 991px) {
  body.home #content {
    gap: 25px;
  }
}

/********************** Start style header ************************/
body.home .header .box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  background-color: white;
  border-radius: 4px;
}
@media (max-width: 991px) {
  body.home .header .box {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  body.home .header .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
    padding-top: 60px;
    position: relative;
  }
}
body.home .header .content {
  padding: var(--main-space);
}
@media (max-width: 991px) {
  body.home .header .content {
    padding: 0;
  }
}
body.home .header .content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  color: #05668D;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  body.home .header .content h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  body.home .header .content h4 {
    position: absolute;
    top: 20px;
  }
}
body.home .header .content h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #50504F;
}
body.home .header .content h1 span {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  display: block;
}
@media (max-width: 991px) {
  body.home .header .content h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
  }
  body.home .header .content h1 span {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
  }
}
body.home .header .content p {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: var(--main-color);
  margin-bottom: 25px;
}
body.home .header .content h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 5px;
  color: #54565B;
}
@media (max-width: 991px) {
  body.home .header .content h3 {
    display: none;
  }
}
body.home .header .content address {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--main-color);
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  body.home .header .content address {
    display: none;
  }
}
body.home .header .content .d-flex {
  gap: 15px;
}
body.home .header .content a.more {
  padding: 12px 30px;
  background-color: white;
  color: var(--second-color);
  border: 3px solid var(--second-color);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
body.home .header .content a.more:hover {
  background-color: var(--second-color);
  color: white;
}
body.home .header .content a.bookmark {
  padding: 12px 30px;
}
@media (max-width: 767px) {
  body.home .header .content a.more,
  body.home .header .content a.bookmark {
    padding: 8px 15px;
  }
}
body.home .header .image img {
  width: 100%;
  height: 100%;
  border-radius: 0 4px 4px 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 20%;
     object-position: 20%;
}
@media (max-width: 991px) {
  body.home .header .image img {
    border-radius: 4px;
    aspect-ratio: 16/9;
  }
}

/********************** End style header ************************/
/********************** Start style back to top ************************/
section.back-top {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  margin-top: 40px;
}
@media (max-width: 991px) {
  section.back-top {
    margin-top: 15px;
  }
}
section.back-top svg {
  font-size: 15px;
  color: var(--second-color);
}
section.back-top span {
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  color: #50504F;
  display: block;
  text-align: center;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
section.back-top:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
section.back-top:hover span {
  color: var(--second-color);
}

/********************** Start style back to top ************************/
/*********************************************************************
************************** Contact Us page ***************************
*********************************************************************/
@media (min-width: 768px) {
  body.contact-us #content {
    padding-top: calc(var(--main-space) * 2);
    padding-bottom: calc(var(--main-space) * 2);
  }
}

body.contact-us h1.main-heading {
  text-align: center;
}

/*********************** Start style contact *************************/
body.contact-us .contact .accordion {
  max-width: 900px;
  margin: auto;
}
body.contact-us .contact .accordion .options {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3);
  grid-template-columns: repeat(3, calc((100% - 20px) / 3));
  gap: 10px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  body.contact-us .contact .accordion .options {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
body.contact-us .contact .accordion .options h2 {
  padding: 15px 30px;
  text-align: center;
  background-color: #FFFFFF;
  border: 1px solid #DFDEDF;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  color: #1E1E1E;
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
body.contact-us .contact .accordion .options h2:hover {
  background-color: #DFDEDF;
}
body.contact-us .contact .accordion .options h2:not(.collapsed) {
  background-color: var(--second-color);
  color: white;
}
body.contact-us .contact .content form .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
body.contact-us .contact .content form .box.questions {
  gap: 0 60px;
}
@media (max-width: 575px) {
  body.contact-us .contact .content form .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
body.contact-us .contact .content form .question {
  margin-bottom: 30px;
}
body.contact-us .contact .content form .question h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  margin-bottom: 10px;
}
body.contact-us .contact .content form .question .d-flex {
  gap: 30px;
}
body.contact-us .contact .content form .question .radio-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
body.contact-us .contact .content form .question .radio-field label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  text-transform: capitalize;
}
body.contact-us .contact .content form .question .radio-field input[type=radio] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--second-color);
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.contact-us .contact .content form .question .radio-field input[type=radio]::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--second-color);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
body.contact-us .contact .content form .question .radio-field input[type=radio]:checked::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
body.contact-us .contact .content form .field {
  width: 100%;
  margin-bottom: 20px;
}
body.contact-us .contact .content form .field label {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #000;
  margin-bottom: 5px;
  text-transform: capitalize;
}
body.contact-us .contact .content form .field input,
body.contact-us .contact .content form .field textarea,
body.contact-us .contact .content form .field select {
  border: none;
  outline: none;
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  color: #1E1E1E;
  caret-color: var(--second-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
body.contact-us .contact .content form .field input::-webkit-input-placeholder, body.contact-us .contact .content form .field textarea::-webkit-input-placeholder {
  color: rgba(84, 86, 91, 0.4);
}
body.contact-us .contact .content form .field input::-moz-placeholder, body.contact-us .contact .content form .field textarea::-moz-placeholder {
  color: rgba(84, 86, 91, 0.4);
}
body.contact-us .contact .content form .field input:-ms-input-placeholder, body.contact-us .contact .content form .field textarea:-ms-input-placeholder {
  color: rgba(84, 86, 91, 0.4);
}
body.contact-us .contact .content form .field input::-ms-input-placeholder, body.contact-us .contact .content form .field textarea::-ms-input-placeholder {
  color: rgba(84, 86, 91, 0.4);
}
body.contact-us .contact .content form .field input::placeholder,
body.contact-us .contact .content form .field textarea::placeholder {
  color: rgba(84, 86, 91, 0.4);
}
body.contact-us .contact .content form .field textarea {
  height: 200px;
}
body.contact-us .contact .content form .field .phone-flag {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 34px;
}
body.contact-us .contact .content form button[type=submit] {
  padding: 15px 30px;
  background-color: white;
  color: var(--second-color);
  border: 3px solid var(--second-color);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 30px;
}
body.contact-us .contact .content form button[type=submit]:hover {
  background-color: var(--second-color);
  color: white;
}
body.contact-us .contact  .text {
  border: 1px solid var(--second-color);
  border-radius: 4px;
  padding: 20px 40px;
}
@media (max-width: 575px) {
  body.contact-us .contact .text {
    padding: 10px 20px;
  }
}
body.contact-us .contact .text p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #000;
}
body.contact-us .contact .text p:not(:last-child) {
  margin-bottom: 20px;
}
body.contact-us .contact .text p a {
  color: var(--second-color);
  font-weight: 700;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  word-break: break-word;
}
body.contact-us .contact .text p a:hover {
  color: #000;
}

/*********************************************************************
************************** notifications page ************************
*********************************************************************/
@media (min-width: 768px) {
  body.notifications #content {
    padding-top: calc(var(--main-space) * 2);
    padding-bottom: calc(var(--main-space) * 2);
  }
}

body.notifications h1.main-heading {
  text-align: center;
}

/*********************** Start style contact *************************/
body.notifications .contact .accordion {
  max-width: 900px;
  margin: auto;
}
body.notifications .contact .accordion .options {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 15px) / 2) 15px calc((100% - 15px) / 2);
  grid-template-columns: repeat(2, calc((100% - 15px) / 2));
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  body.notifications .contact .accordion .options {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
body.notifications .contact .accordion .options h2 {
  padding: 15px 30px;
  text-align: center;
  background-color: #FFFFFF;
  border: 1px solid #DFDEDF;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  color: #1E1E1E;
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
body.notifications .contact .accordion .options h2:hover {
  background-color: #DFDEDF;
}
body.notifications .contact .accordion .options h2:not(.collapsed) {
  background-color: var(--second-color);
  color: white;
}
body.notifications .contact .content .table {
  background-color: #ffffff;
  text-align: center;
  border-radius: 4px;
}
body.notifications .contact .content .table th {
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  color: #1E1E1E;
  padding: 10px 20px;
}
body.notifications .contact .content .table td {
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  color: #54565B;
  padding: 10px 20px;
}
@media (max-width: 575px) {
  body.notifications .contact .content .table td {
    padding: 10px;
  }
}
body.notifications .contact .content .table .read {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #54565B;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
body.notifications .contact .content .table .read:hover {
  color: var(--second-color);
}
body.notifications .contact .content .table .read svg {
  font-size: 9px;
}
@media (max-width: 575px) {
  body.notifications .contact .content .table .date-td {
    display: none;
  }
}

/*********************** End style contact ***************************/

/*********************** End style contact ***************************/
/*********************************************************************
*************************** profile page *****************************
*********************************************************************/
body.profile #content-box {
  display: -ms-grid;
  display: grid;
  gap: 40px;
}
@media (max-width: 991px) {
  body.profile #content-box {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  body.profile #content-box {
    gap: 16px;
  }
}
body.profile #content-box > section {
  background-color: white;
  padding: 40px 60px;
  border: 1px solid #DFDEDF;
  border-radius: 4px;
}
@media (max-width: 991px) {
  body.profile #content-box > section {
    padding: 30px 40px;
  }
}
@media (max-width: 767px) {
  body.profile #content-box > section {
    padding: 20px;
  }
}
body.profile #content-box > section header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body.profile #content-box > section header h1,
body.profile #content-box > section header h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  color: #1E1E1E;
}
@media (max-width: 767px) {
  body.profile #content-box > section header h1,
body.profile #content-box > section header h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
body.profile #content-box > section header .save-profile {
  padding: 15px 30px;
  background-color: white;
  color: var(--second-color);
  border: 3px solid var(--second-color);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  text-transform: capitalize;
}
body.profile #content-box > section header .save-profile:hover {
  background-color: var(--second-color);
  color: white;
}
body.profile #content-box > section hr {
  margin: 20px 0;
}
@media (max-width: 767px) {
  body.profile #content-box > section hr {
    margin: 15px 0;
  }
}

/*********************** Start style profile information *************************/
body.profile .profile .profile-info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
}
@media (max-width: 767px) {
  body.profile .profile .profile-info {
    width: 100%;
    margin: 0;
  }
}
body.profile .profile .profile-info .photo-info {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  body.profile .profile .profile-info .photo-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
body.profile .profile .profile-info .photo-info h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #1E1E1E;
  margin-bottom: 5px;
  text-transform: capitalize;
}
body.profile .profile .profile-info .photo-info p {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #54565B;
}
body.profile .profile .profile-info .image-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media (max-width: 767px) {
  body.profile .profile .profile-info .image-info {
    gap: 15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
body.profile .profile .profile-info .image-info .image img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  border-radius: 4px;
}
@media (max-width: 767px) {
  body.profile .profile .profile-info .image-info .image img {
    width: 150px;
    height: 150px;
  }
}
body.profile .profile .profile-info .image-info .actions .change,
body.profile .profile .profile-info .image-info .actions a.delete {
  margin-bottom: 8px;
  padding: 15px;
  background-color: #F4F4F4;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #1E1E1E;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  width: 180px;
  text-align: center;
  text-transform: capitalize;
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 767px) {
  body.profile .profile .profile-info .image-info .actions .change,
body.profile .profile .profile-info .image-info .actions a.delete {
    width: 120px;
  }
}
body.profile .profile .profile-info .image-info .actions .change:hover,
body.profile .profile .profile-info .image-info .actions a.delete:hover {
  background-color: #E8EAE8;
}
body.profile .profile .profile-info .image-info .actions a.delete {
  background-color: white;
  color: #BC0505;
  margin-bottom: 0;
}
body.profile .profile form .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  body.profile .profile form .box {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  body.profile .profile form .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
body.profile .profile form .input-field {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  body.profile .profile form .input-field {
    margin-bottom: 15px;
  }
}
body.profile .profile form .input-field label {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #1E1E1E;
  margin-bottom: 5px;
}
body.profile .profile form .input-field input:not([type="checkbox"]), 
body.profile .profile form .input-field select {
  border: none;
  outline: none;
  box-shadow: none;
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  color: #54565B;
  caret-color: var(--second-color);
  background-color: #F4F4F4;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}
body.profile .profile form .input-field input::-webkit-input-placeholder, body.profile .profile form .input-field select::-webkit-input-placeholder {
  color: rgba(84, 86, 91, 0.4);
}
body.profile .profile form .input-field input::-moz-placeholder, body.profile .profile form .input-field select::-moz-placeholder {
  color: rgba(84, 86, 91, 0.4);
}
body.profile .profile form .input-field input:-ms-input-placeholder, body.profile .profile form .input-field select:-ms-input-placeholder {
  color: rgba(84, 86, 91, 0.4);
}
body.profile .profile form .input-field input::-ms-input-placeholder, body.profile .profile form .input-field select::-ms-input-placeholder {
  color: rgba(84, 86, 91, 0.4);
}
body.profile .profile form .input-field input::placeholder, body.profile .profile form .input-field select::placeholder {
  color: rgba(84, 86, 91, 0.4);
}
body.profile .profile form .input-field .number-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
body.profile .profile form .input-field .number-box select {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

body.profile .profile form .form-link {
    font-size: 15px;
    color: #54565B;
    transition: var(--main-transition);
}

body.profile .profile form .form-link:hover {
    color: var(--second-color);
}

body.profile .profile form [type="submit"],
body.profile .profile form .button-next {
    padding: 15px 30px;
    border-radius: 4px;
    background-color: white;
    color: var(--second-color);
    border: 3px solid var(--second-color);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    -webkit-transition: var(--main-transition);
    transition: var(--main-transition);
    display: block;
    width: 100%;
}

body.profile .profile form .button-next {
    width: 230px;
    max-width: 100%;
    margin: 16px auto 0;
}

body.profile .profile form [type="submit"]:hover,
body.profile .profile form .button-next:hover {
    background-color: var(--second-color);
  color: white;
}

body.profile .profile form.sign-form {
    max-width: 350px;
    margin: auto;
}


/*********************** End style profile information ***************************/
/*********************** Start style Interests *************************/
body.profile .interests .interests-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 30px) / 2) 30px calc((100% - 30px) / 2);
  grid-template-columns: repeat(2, calc((100% - 30px) / 2));
  gap: 30px;
}
@media (max-width: 991px) {
  body.profile .interests .interests-box {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 15px;
  }
}
body.profile .interests .interests-box section {
  background-color: #FFFFFF;
  border: 1px solid #DFDEDF;
  border-radius: 4px;
  padding: 20px;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  body.profile .interests .interests-box section {
    gap: 20px;
    padding: 15px;
  }
}
body.profile .interests .interests-box section:hover {
  background-color: #E8EAE8;
}
body.profile .interests .interests-box section.active {
  border-color: var(--second-color);
}
body.profile .interests .interests-box section.active .icon svg {
  color: var(--second-color);
}
body.profile .interests .interests-box section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  body.profile .interests .interests-box section .box {
    gap: 15px;
  }
}
body.profile .interests .interests-box section .image img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 767px) {
  body.profile .interests .interests-box section .image img {
    width: 50px;
    height: 50px;
  }
}
body.profile .interests .interests-box section .text {
  max-width: 225px;
}
body.profile .interests .interests-box section .text h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #1E1E1E;
}
@media (max-width: 767px) {
  body.profile .interests .interests-box section .text h3 {
    font-size: 16px;
    line-height: 20px;
  }
}
body.profile .interests .interests-box section .text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #54565B;
}
@media (max-width: 767px) {
  body.profile .interests .interests-box section .text p {
    font-size: 12px;
    line-height: 15px;
  }
}
body.profile .interests .interests-box section .icon svg {
  font-size: 32px;
  color: #DFDEDF;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  body.profile .interests .interests-box section .icon svg {
    font-size: 18px;
  }
}
body.profile .interests .interests-box section input[type=checkbox] {
  display: none;
}

/*********************** End style Interests ***************************/
/*********************** Start style Interests *************************/
body.profile .account-managment .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  body.profile .account-managment .actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body.profile .account-managment .actions a.change-pass,
body.profile .account-managment .actions a.deactivate {
  padding: 15px 30px;
  background-color: #F4F4F4;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #1E1E1E;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
}
body.profile .account-managment .actions a.change-pass:hover,
body.profile .account-managment .actions a.deactivate:hover {
  background-color: #E8EAE8;
}
@media (max-width: 767px) {
  body.profile .account-managment .actions a.change-pass,
body.profile .account-managment .actions a.deactivate {
    width: 100%;
    text-align: center;
  }
}
body.profile .account-managment .actions a.deactivate {
  color: #BC0505;
}

/*********************** End style Interests ***************************/
/*********************************************************************
*************************** article page *****************************
*********************************************************************/
body.article #content {
  background-color: white;
  display: block;
  padding: 40px 0;
}
@media (max-width: 991px) {
  body.article #content {
    padding: 25px 0;
  }
}
body.article #content section.back-top {
  margin-top: 40px;
}

.back-button {
  margin-bottom: 20px;
}
.back-button a {
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  color: #54565B;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
}
.back-button a:hover {
  color: var(--second-color);
}
.back-button svg {
  font-size: 12px;
}

.layout-article {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc(100% - 280px - 50px) 50px 280px;
  grid-template-columns: calc(100% - 280px - 50px) 280px;
  gap: 50px;
}
@media (max-width: 991px) {
  .layout-article {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.layout-article .article-content header {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .layout-article .article-content header {
    margin-bottom: 25px;
  }
}
.layout-article .article-content header .featured-image {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .layout-article .article-content header .featured-image {
    margin-bottom: 25px;
  }
}
.layout-article .article-content header .featured-image img {
  border-radius: 4px;
  width: 100%;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout-article .article-content header .featured-images-slider {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .layout-article .article-content header .featured-images-slider {
    margin-bottom: 25px;
  }
}
.layout-article .article-content header .featured-images-slider .main-image {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .layout-article .article-content header .featured-images-slider .main-image {
    margin-bottom: 10px;
  }
}
.layout-article .article-content header .featured-images-slider .main-image img {
  width: 100%;
}
.layout-article .article-content header .featured-images-slider .images-slider {
  gap: 20px;
}
@media (max-width: 991px) {
  .layout-article .article-content header .featured-images-slider .images-slider {
    gap: 10px;
  }
}
.layout-article .article-content header .featured-images-slider .images-slider img {
  width: 140px;
  border-radius: 4px;
  aspect-ratio: 1.6;
  max-height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout-article .article-content header h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: #1E1E1E;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .layout-article .article-content header h1 {
    font-size: 24px;
    line-height: 29px;
  }
}
.layout-article .article-content header p.date {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: var(--main-color);
}
.layout-article .article-content .text-content img {
  width: 100%;
  margin: 40px 0;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .layout-article .article-content .text-content img {
    margin: 25px 0;
  }
}
.layout-article .article-content .text-content p {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #54565B;
}
.layout-article .article-content .text-content p:not(:last-of-type) {
  margin-bottom: 10px;
}
.layout-article .article-content .text-content p.main-alert {
  margin: 40px 0;
  background-color: #DDF2EE;
  padding: 20px;
  border-left: 6px solid var(--main-color);
  color: var(--main-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}
@media (max-width: 991px) {
  .layout-article .article-content .text-content p.main-alert {
    margin: 25px 0;
  }
}
.layout-article .article-sidebar .bookmark {
    width: 100%;
}
.layout-article .article-sidebar hr {
  border: 1px solid #B9B9B9;
  margin: 30px 0;
}
@media (min-width: 991px) {
  .layout-article .article-sidebar .related-articles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .layout-article .article-sidebar .related-articles > .article-post:hover {
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
    background-color: #E8EAE8;
  }
}

/*********************************************************************
************************* event-details page *************************
*********************************************************************/

.event-details header img,
.event-details header video {
  width: 100%;
  aspect-ratio: 21/9;
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.event-details .body-contnet {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .event-details .body-contnet {
    padding: 20px 0;
  }
}
.event-details .body-contnet .post-content {
  margin-bottom: 25px;
}
.event-details .body-contnet .post-content .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 25px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .event-details .body-contnet .post-content .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.event-details .body-contnet .post-content .text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: #1E1E1E;
}
.event-details .body-contnet .post-content .text h2 span {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  display: block;
}
@media (max-width: 767px) {
  .event-details .body-contnet .post-content .text h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .event-details .body-contnet .post-content .text h2 span {
    font-size: 20px;
    line-height: 24px;
  }
}
.event-details .body-contnet .post-content .text span.date {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: var(--main-color);
}
.event-details .body-contnet .post-content .text .location {
  margin-top: 20px;
}
.event-details .body-contnet .post-content .text .location h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #54565B;
  margin-bottom: 5px;
}
.event-details .body-contnet .post-content .text .location p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--main-color);
}
@media (max-width: 767px) {
  .event-details .body-contnet .post-content .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    width: 100%;
  }
}
.event-details .body-contnet .post-content .actions a.bookmark {
    width: 100%;
}
.event-details .body-contnet .post-content .post-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: #54565B;
  margin-top: 20px;
}
.event-details .body-contnet .post-content .post-text .read-more {
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  margin-top: 20px;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  text-transform: uppercase;
}
.event-details .body-contnet .post-content .post-text .read-more:hover {
  color: #881222;
}
.event-details .body-contnet .speakers h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #1E1E1E;
  margin-bottom: 15px;
}
.event-details .body-contnet .speakers .box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3) 10px calc((100% - 20px) / 3);
  grid-template-columns: repeat(3, calc((100% - 20px) / 3));
  gap: 10px;
}
@media (max-width: 767px) {
  .event-details .body-contnet .speakers .box {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 15px;
  }
}
.event-details .body-contnet .speakers .speaker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.event-details .body-contnet .speakers .speaker .image img {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .event-details .body-contnet .speakers .speaker .image img {
    width: 40px;
    height: 40px;
  }
}
.event-details .body-contnet .speakers .speaker .info .name {
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  color: #1E1E1E;
  -webkit-transition: var(--main-transition);
  transition: var(--main-transition);
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .event-details .body-contnet .speakers .speaker .info .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
  }
}
.event-details .body-contnet .speakers .speaker .info .name:hover {
  color: var(--second-color);
}
.event-details .body-contnet .speakers .speaker .info .name span {
  display: block;
}
.event-details .body-contnet .speakers .speaker .info .specialty {
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
  color: #54565B;
}
.event-details .body-contnet hr {
  border: 1px solid var(--second-color);
  margin: 55px 0;
}
@media (max-width: 767px) {
  .event-details .body-contnet hr {
    margin: 20px 0;
  }
}
.event-details .body-contnet .similar-videos h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #1E1E1E;
  margin-bottom: 15px;
}
.event-details .body-contnet .similar-videos .box {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
}
@media only screen and (max-width: 498px) {
    .video-meta-data .meta-action {
    padding: 10px 4px;
    }
}