:root {
  --primary: #315a7d;
  --secondary: #5E5E5e;
}
body {
  font-family: 'FjallaOne-Regular';
  color: #1e1e1e;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'FjallaOne-Regular';
  src: url(../fonts/FjallaOne-Regular.ttf);
}
@font-face {
  font-family: 'Museo_Slab_500';
  src: url(../fonts/Museo_Slab_500.otf);
}
@font-face {
  font-family: 'Museo_Slab_300';
  src: url(../fonts/Museo_Slab_300.otf);
}
p {
  font-family: 'Museo_Slab_300';
}
* {
  box-sizing: border-box;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
.dwgrid {
  max-width: 1500px;
  box-shadow: 0 0 100px #ccc;
  margin: 0 auto;
}
/* Header */
/*header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary);
  padding: 30px 75px;
  color: #fff;
  font-size: 50px;
}
*/
.event_calender {
  padding: 80px 75px 110px;
  display: flex;
  background-color: #f5f5f5;
}
.filter_box {
  flex: 0 0 420px;
  max-width: 420px;
  margin-right: 48px;
}
.filter_box .form_fields {
  background: #ffffff;
  padding: 30px 30px 47px;
  font-family: 'Museo_Slab_500';
}
.filter_title {
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.3);
  margin-top: 0;
  font-family: 'FjallaOne-Regular';
}
.filter_input {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.filter_input .label {
  width: 120px;
  display: inline-block;
  font-size: 18px;
}
.filter_input input,
.filter_input .dropdown_button {
  width: calc(100% - 120px);
  border: 1px solid #5e5e5e;
  border-radius: 5px;
  height: 56px;
  padding: 15px 20px;
  outline: none !important;
  font-size: 18px;
  font-family: 'Museo_Slab_300';
}
input[type='date']::-webkit-inner-spin-button,
input[type='date']::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
.selected_value {
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
input[type='date'] {
  background: #f5f5f5 url(../images/cal-icon.svg) no-repeat;
  background-position: 91%;
}
.dropdown_button {
  background: #f5f5f5 url(../images/arrow-down.svg) no-repeat;
  background-position: 91%;
  cursor: pointer;
  position: relative;
}
.dropdown_menu,
.hidden {
  display: none;
}
.view_less {
  cursor: pointer;
  text-align: center;
  display: block;
  font-size: 20px;
  margin-top: 30px;
}
.view_less img {
  margin-left: 20px;
  vertical-align: middle;
}
.dropdown_menu {
  position: absolute;
  list-style-type: none;
  min-width: 101%;
  left: -1px;
  background: #f5f5f5;
  padding: 15px;
  top: 50px;
  margin: 0;
  border: 1px solid #5e5e5e;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  z-index: 9;
}
.dropdown_menu.open {
  display: block;
}
.dropdown_menu .radio {
  padding: 10px 0;
}
.dropdown_menu .radio:not(:last-child) {
  border-bottom: 1px solid #bcbec0;
}
.dropdown_menu .radio label {
  padding-left: 30px;
  position: relative;
  display: block;
  cursor: pointer;
}
.dropdown_menu .radio label:before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid #bcbec0;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 3px;
}
.dropdown_menu .radio label::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #aba000;
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  left: 5px;
  top: 8px;
}
.dropdown_menu .radio input {
  display: none;
}
.dropdown_menu .radio input:checked + label:before {
  border-color: #aba000;
}
.dropdown_menu .radio input:checked + label:after {
  opacity: 10;
}
/* accordion */
.event_list {
  max-width: calc(100% - 468px);
  flex: 0 0 calc(100% - 468px);
}
.accordion-toggle {
  cursor: pointer;
  display: flex;
}
.accordion-toggle h2 {
  font-size: 36px;
  margin: 10px 0 15px;
}
.open_arrow {
  float: right;
}
.accordion-content {
  display: none;
  padding: 30px 30px 30px 48px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.accordion-content h3 {
  margin-top: 0;
  font-size: 20px;
  line-height: 28px;
}
.accordion-content p a {
  color: var(--primary);
}
.accordion-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.accordion-item.active .accordion-toggle {
  background: var(--primary);
  padding: 30px;
  color: #fff;
  border-radius: 6px 6px 0 0;
}
.accordion-item.active .event_date {
  background: url(../images/calender-hover.png) no-repeat;
  background-size: contain;
  color: var(--primary);
}
.accordion-item.active {
  border-radius: 10px;
  border: 2px solid var(--primary);
  padding-bottom: 0;
}
.accordion-item.active .open_arrow {
  float: right;
  transform: rotate(90deg);
  filter: brightness(50);
}
.active .accordion-content {
  display: block;
}
.event_title {
  cursor: pointer;
  width: 100%;
}
.event_title p {
  margin-bottom: 0;
}
.event_date {
  background: url(../images/calender.png) no-repeat;
  padding: 10px 10px 16px 16px;
  background-size: contain;
  width: 106px;
  height: 82px;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-right: 30px;
}
.cal_date {
  width: 30px;
}
.cal_date:last-child {
  float: right;
}
.event_date:after {
  content: '-';
  position: absolute;
  left: 44px;
  bottom: 20px;
  font-size: 16px;
}
.cal_date span {
  font-size: 10px;
  line-height: 12px;
  display: block;
  font-family: 'Museo_Slab_300';
  margin-bottom: 2px;
}
.inner_event {
  display: flex;
}
.inner_event_date {
  border: 1px solid var(--primary);
  border-radius: 10px;
  width: 77px;
  text-align: center;
  line-height: 53px;
  font-size: 36px;
  color: var(--primary);
  margin-right: 30px;
}
.inner_event_month {
  font-size: 10px;
  display: block;
  font-family: 'Museo_Slab_300';
  margin-bottom: 2px;
  background: var(--primary);
  color: #fff;
  height: 24px;
  line-height: 24px;
  border-radius: 6px 6px 0 0;
}
.inner_event_title {
  max-width: calc(100% - 107px);
  flex: 0 0 calc(100% - 107px);
}
.inner_event_date span {
  color: rgba(48, 59, 138, 0.5);
  font-size: 10px;
  display: block;
  font-family: 'Museo_Slab_500';
  line-height: 12px;
  margin-bottom: 4px;
}
.inner_event_title h4 {
  color: var(--primary);
  font-size: 20px;
  line-height: 28px;
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: 400;
}
.inner_event_title h4 .open_arrow {
  display: none;
}
.inner_event_title .inner_accordion_content {
  padding: 24px 0;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid #dddddd;
  margin: 1em 0;
}
.inner_event_title .inner_accordion_content span {
  display: inline-block;
}
.inner_event_title .inner_accordion_content p {
  margin: 0;
}
.inner_event_title .inner_accordion_content p:not(:first-child) {
  margin-top: 15px;
}
.list_index {
  margin-right: 40px;
}
.inner_main_content {
  max-width: 460px;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.filter {
  background: #315a7d;
  width: 60px;
  height: 60px;
  padding: 18px 14px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: none;
  /* border: 2px solid #fff; */
}
.filterbox_title {
  background: var(--primary);
  color: #fff;
  padding: 15px;
  display: none;
  font-size: 20px;
}
.btn_filter {
  background: var(--primary);
  border: 0;
  border-radius: 5px;
  width: 100%;
  height: 52px;
  color: #fff;
  font-size: 18px;
  outline: none;
  font-family: 'Museo_Slab_300';
  margin-top: 50px;
  cursor: pointer;
}
.event_title p .read_more {
  color: #aba000;
  display: none;
}
.dropdown_name {
  display: none;
}
.load_more {
  background: var(--primary);
  border-radius: 5px;
  width: 175px;
  height: 52px;
  line-height: 52px;
  color: #fff;
  display: none;
  margin: 0 auto;
  text-align: center;
  font-family: 'Museo_Slab_300';
  margin-top: 30px;
}
.location_strips {
  padding: 15px 23px;
  border-radius: 5px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  align-items: center;
  background: #EEEEEE;
  font-family: 'Museo_Slab_300';
  color: #000;
}
.location_strips ul {
  margin: 0;
}
.btn_solid {
  font-size: 14px;
  background: var(--primary);
  border-radius: 60px;
  padding: 8px 22px 6px;
  color: #fff;
  text-decoration: none;
  border: 2px solid var(--primary);
  display: block;
}
.btn_outline {
  font-size: 14px;
  border-radius: 60px;
  padding: 8px 22px 6px;
  color: var(--primary);
  text-decoration: none;
  display: block;
  background: #FFFFFF;
  border: 2px solid var(--primary);
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.list-inline-item {
  display: inline-block;
}
.grey_bar {
  background: var(--secondary);
  border-radius: 5px;
  font-size: 36px;
  padding: 18px 37px;
  color: #fff;
  line-height: 45.25px;
  margin: 50px 0 30px;
}
.special_event_flex.border0 {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
}
.special_event_flex {
  display: flex;
  padding-bottom: 80px;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 35px;
}
.special_event_flex .event_title h2 {
  font-size: 20px;
  color: var(--secondary);
  margin: 0;
}
.special_event_flex .img-fluid {
  max-width: 100%;
  margin: 50px 0 30px;
}
.accordion-item.active .special_event_flex .event_date {
  background: url(../images/gray_cal.png) no-repeat;
  color: #5E5E5E;
  background-size: contain;
}
.event_title p {
  margin: 0 0 5px;
}
.dark_events .inner_event_date {
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.dark_events .inner_event_month {
  background-color: var(--secondary);
}
.dark_events .inner_event_title h4 {
  color: var(--secondary);
  margin-top: 0;
}
.dark_events .inner_event_title .inner_accordion_content {
  border-top: 1px solid #ccc;
  border-bottom: 0;
  margin: 2em 0;
}
.dark_events .inner_event_title .inner_accordion_content span:last-child {
  float: right;
}
/* video_stream */
.video_stream .container {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}
.video_blocks {
  max-width: calc(100% - 410px);
}
.video_box {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 15px 15px 30px;
  width: 100%;
  text-decoration: none;
  margin-bottom: 20px;
}
.video-stream-image {
  display: block;
  position: relative;
}
.video-stream-image img {
  max-width: 100%;
  width: 100%;
}
.video-stream-image img.btn_play {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90px;
}
.video_description {
  margin-top: 30px;
}
.video_description h4 {
  color: #1e1e1e;
  font-size: 20px;
  margin-bottom: 24px;
  display: block;
}
.video_description p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  max-width: 400px;
}
.video_description p.live_badge {
  font-size: 14px;
  color: #FF0000;
  line-height: 24px;
  max-width: none;
  text-transform: uppercase;
  padding-left: 20px;
  float: right;
  margin: 0 40px 0 0;
  position: relative;
}
.live_badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #FF0000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar {
  flex: 0 0 380px;
  max-width: 380px;
  margin-right: 30px;
}
.sidebar_content {
  background: #ffffff;
  padding: 30px 30px 47px;
  font-family: 'Museo_Slab_500';
}
.sidebar_event_list {
  padding: 0 0 0 20px;
  list-style: circle;
  color: #315a7d;
  margin-bottom: 25px;
}
.sidebar_event_list li {
  padding: 5px 0;
}
.sidebar_event_list a {
  color: #315a7d;
  display: block;
}
.sidebar_event_list a:hover {
  color: #000;
}
@media (max-width: 1440px) {
  .event_calender {
    padding: 70px 35px;
  }
  .filter_box {
    flex: 0 0 380px;
    max-width: 380px;
    margin-right: 30px;
  }
  .event_list {
    max-width: calc(100% - 410px);
    flex: 0 0 calc(100% - 410px);
  }
  header {
    padding: 20px 35px;
    font-size: 40px;
  }
  .accordion-toggle h2 {
    font-size: 28px;
  }
  .location_strips .btn_outline,
  .location_strips .btn_solid {
    font-size: 12px;
    padding: 8px 15px 6px;
  }
  .location_strips {
    padding: 15px;
    font-size: 14px;
  }
}
@media (max-width: 1366px) {
  .video-stream-image img.btn_play {
    width: 80px;
  }
}
@media (max-width: 1250px) {
  .accordion-content {
    padding: 20px;
  }
}
@media (max-width: 1199px) {
  .event_calender {
    flex-flow: wrap;
  }
  .filter_box {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .event_list {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .sidebar {
    flex: 0 0 320px;
    max-width: 320px;
    margin-right: 20px;
  }
  .video_blocks {
    max-width: calc(100% - 340px);
  }
  .sidebar_content {
    padding: 20px 20px 10px;
  }
}
@media (max-width: 1024px) {
  .filterbox_title {
    display: block;
  }
  .accordion-content .filterbox_title {
    display: none;
  }
  .filter_input .label,
  .filter_input input,
  .filter_input .dropdown_button {
    font-size: 16px;
  }
  .filter_input input,
  .filter_input .dropdown_button {
    height: 52px;
  }
  .filter_title {
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .filterbox_title img {
    float: right;
    margin-top: 4px;
  }
  .filter_box .form_fields {
    background: #ffffff;
    padding: 30px 15px;
    font-family: 'Museo_Slab_500';
  }
  .filter {
    display: block;
  }
  .filter_box {
    display: none;
  }
  .filter_box.show {
    display: block;
    position: fixed;
    right: 70px;
    bottom: 15px;
  }
  .event_list {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .inner_event_title .price {
    margin-left: 0;
    float: right;
  }
  .accordion-item.active .accordion-toggle {
    padding: 20px;
  }
  .accordion-content {
    padding: 20px 20px 20px 38px;
  }
  .selected_value {
    width: 85%;
  }
  .inner_main_content {
    max-width: 300px;
  }
}
@media (max-width: 991px) {
  .location_strips {
    padding: 15px;
    font-size: 14px;
  }
  .btn_solid,
  .btn_outline {
    font-size: 12px;
    padding: 8px 15px 6px;
  }
  .grey_bar {
    font-size: 30px;
    padding: 15px;
    line-height: 40.25px;
    margin: 30px 0 ;
  }
  .video_description h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .video_blocks {
    max-width: 100%;
  }
  .extra_info {
    margin-left: -105px;
  }
  .location_strips {
    display: block;
    text-align: center;
  }
  .location_strips ul {
    margin: 15px 0 0;
  }
  .dark_events .inner_event_title .inner_accordion_content {
    border-top: 1px solid #ccc;
    border-bottom: 0;
    margin: 2em 0;
    padding: 12px 0 0;
    margin-left: -75px;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .special_event_flex .img-fluid {
    max-width: 100%;
    margin: 20px 0;
  }
  .special_event_flex {
    padding-bottom: 35px;
  }
  .special_event_flex .event_date {
    margin-bottom: 20px;
    width: 90px;
  }
  .special_event_flex .event_title p {
    margin-left: 0;
  }
  .grey_bar {
    font-size: 20px;
    line-height: 24px;
  }
  .video_box {
    width: 100%;
    padding: 15px;
  }
  .video_description {
    margin-top: 0;
  }
  .video_description h4 {
    font-size: 16px;
    margin-bottom: 15px;
    margin: 6px 0 0;
    color: #303B8A;
    text-decoration: underline;
  }
  .video_description p.live_badge {
    font-size: 12px;
    margin: 0;
    padding-left: 15px;
  }
  .live_badge::before {
    width: 7px;
    height: 7px;
  }
  .video_description p {
    font-size: 14px;
    line-height: 22px;
  }
  .accordion-content .filterbox_title {
    display: block;
  }
  header {
    padding: 10px 15px 6px;
    font-size: 24px;
  }
  .accordion-content > p {
    font-size: 14px;
    line-height: 24px;
  }
  .accordion-content h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .mt-40 {
    margin-top: 20px !important;
  }
  .logo {
    width: 85px;
  }
  .event_calender {
    padding: 15px 15px 30px;
    flex-direction: column-reverse;
  }
  .accordion-item {
    border-bottom: 0;
    padding: 15px;
    margin-bottom: 15px;
    background: #ffffff;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
  }
  .event_date {
    padding: 20px 8px 16px 10px;
    min-width: 90px;
    height: 70px;
    font-size: 18px;
    margin-right: 15px;
    text-align: center;
  }
  .accordion-toggle h2 {
    font-size: 20px;
    line-height: 28px;
    min-height: 56px;
  }
  .accordion-toggle h2 .open_arrow {
    display: none;
  }
  .event_title p {
    margin-bottom: 0;
    margin-left: -105px;
    font-size: 14px;
    line-height: 24px;
  }
  .event_title p span {
    display: none;
  }
  .event_title p .read_more {
    display: inline-block;
  }
  .filter_box.show {
    right: 0;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    max-width: 100%;
    overflow: scroll;
    height: 100vh;
    background: #fff;
  }
  .filter_box.dropdown_open:after {
    content: '';
    background: #1e1e1eb8;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border: 0;
    height: 100%;
  }
  .dropdown_menu {
    background: #ffffff;
    box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px 10px 0px 0px;
    position: fixed;
    bottom: 0;
    top: auto;
    border: 0;
    padding-top: 0;
    overflow: scroll;
    height: 252px;
  }
  .dropdown_name {
    display: block;
    margin-bottom: 20px;
    position: fixed;
    left: 0;
    right: 0;
    background: #fff;
    padding: 25px 15px 15px;
    z-index: 9;
  }
  .dropdown_name img {
    float: right;
    width: 16px;
  }
  .dropdown_menu .radio {
    padding: 15px 0;
  }
  .dropdown_menu .radio:last-child {
    padding-bottom: 0;
  }
  .dropdown_menu li:nth-child(2) {
    margin-top: 60px;
  }
  .accordion-content {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #f5f5f5;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    padding: 15px;
    overflow: scroll;
    border-radius: 0;
  }
  .accordion-content .filterbox_title {
    margin: -15px -15px 20px;
  }
  .inner_event {
    background: #ffffff;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
  }
  .inner_event_date {
    width: 60px;
    line-height: 23px;
    font-size: 18px;
    margin-right: 15px;
  }
  .inner_event_month {
    height: 20px;
    line-height: 20px;
  }
  .inner_event_title h4 {
    color: #1e1e1e;
    font-size: 18px;
    line-height: 22px;
    min-height: 40px;
  }
  .inner_event_title h4 .open_arrow {
    display: block;
  }
  .accordion-item.active .inner_event_title h4 .open_arrow {
    display: block;
    filter: none;
    transform: rotate(-90deg);
    opacity: 0.5;
  }
  .inner_event_title {
    max-width: calc(100% - 75px);
    flex: 0 0 calc(100% - 75px);
  }
  .inner_event_title .inner_accordion_content {
    padding: 12px 0 0;
    border-top: 1px solid rgba(48, 59, 138, 0.3);
    border-bottom: 0;
    margin-left: -75px;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .inner_accordion_content {
    display: none;
  }
  .inner_event.show .inner_event_title .inner_accordion_content {
    display: block;
  }
  .accordion-item.active .inner_event.show .inner_event_title h4 .open_arrow {
    opacity: 1;
    transform: none;
  }
  .list_index {
    margin-right: 6px;
  }
  .inner_main_content {
    max-width: 220px;
  }
  .view_less {
    display: none;
  }
  .more_events {
    display: none;
  }
  .load_more {
    display: block;
  }
  .video-stream-image img.btn_play {
    width: 60px;
  }
}
@media only screen and (min-device-width: 480px) and (max-device-width: 820px) and (orientation: landscape) {
  .filter_box.show {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    max-width: 100%;
    top: 0;
    z-index: 99;
    overflow: scroll;
    background: #fff;
  }
  .landscape_view {
    display: flex;
    margin: 0 -15px;
  }
  .landscape_view > div {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 15px;
  }
  .filter_title.mt-30 {
    margin-top: 0 !important;
  }
  .btn_filter {
    margin-top: 10px;
  }
}
/* header */
.navbar {
  background: #131416;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding: 4px 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  margin-left: 40px;
}
.navbar-brand {
  padding: 0;
}
.navbar-brand img {
  width: 174px;
}
.dropdown-toggle::after {
  border: 0;
  background: url(../images/arrow-down.svg) no-repeat;
  width: 10px;
  height: 10px;
  background-position: center;
  background-size: contain;
  filter: brightness(50);
  vertical-align: middle;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  left: 40px;
  min-width: 135px;
  padding: 14px 20px;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 10px 10px;
  border: 0;
  border-top: 2px solid #EE3E47;
  top: 32px;
  opacity: 0;
}
.dropdown-item {
  padding: 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 28px;
  color: #4E5D78;
  background-color: transparent !important;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
  color: #EE3E47;
}
.dropdown-menu.show {
  opacity: 1 !important;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (hover) {
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    animation: fade 0.5s linear forwards;
  }
}
header {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: unset;
  display: unset;
}
/* footer */
footer {
  background: #0A142F;
  padding: 250px 0 30px;
  font-size: 14px;
  color: #FFFFFF;
}
footer h4 {
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 24px;
  min-height: 56px;
}
footer a {
  text-decoration: none;
  display: block;
}
address {
  line-height: 26px;
  margin-bottom: 12px;
}
.web_link {
  font-weight: 500;
  line-height: 20px;
  color: #ABA000;
  margin-bottom: 12px;
  word-break: break-all;
}
.web_link:hover,
.web_link:focus {
  color: #ABA000;
  text-decoration: underline;
}
.call_link {
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.call_link:hover,
.call_link:focus {
  color: #fff;
  text-decoration: underline;
}
.call_link img {
  margin-right: 13px;
}
.helpline {
  font-size: 14px;
  line-height: 32px;
  color: #FFFFFF;
  margin: 0;
}
footer .helpline a {
  color: #fff;
  font-weight: 600;
  display: inline-block;
}
.footer_logo {
  width: 130px;
  display: block;
  margin-left: auto;
}
.mt-60 {
  margin-top: 60px;
}
.copyright {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 40px;
}
