/* @import url('https://fonts.googleapis.com/css2?family=Georama:ital,wght@0,100..900;1,100..900&display=swap'); */
*, body { padding: 0; box-sizing: border-box; margin: 0; font-family: "Georama", sans-serif;  }
:root {
  --color-primary: #0084D5;
  --color-secondary: #f5f5f5;
  --color-success: #28a745;
  --color-White: #ffffff;

  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 20px;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.40);
}
.site-footer { position: relative; border-bottom: 4px solid #32BFAF;}
.site-footer::before{ content: ''; position: absolute; right: 0; bottom: -4px; width: 24%; height: 4px; background: #E6007E;  }
.button { border-radius: 80px; background:  var(--color-primary); box-shadow: var(--shadow); border: 0; padding: 16px 32px; font-weight: 600; display: inline-block; text-decoration: none; cursor: pointer; text-transform: uppercase; }
.button:hover{ color: #ffffff; }
.button.outline { background: var(--color-White); color: #0084D5; border: 1px solid #0084D5;  box-shadow: none !important; }
.button.outline i { margin-right: 6px; }
.button.outline.btnBgNone{ border: 0; background: transparent; box-shadow: none; padding-left: 10px; padding-right: 10px; }
h2 { font-size: 48px; color: #707173; }
h3 { font-size: 20px; color: #707173; font-weight: 600; }
h4 { font-size: 16px; color: #707173;}
p { font-size: 16px; font-weight: 500; line-height: 25px; color: #707173; }
.mrsih-hero-top{ position:fixed; left: 0; top: 0px; padding: 0 100px; width: 100%; z-index:5; display:flex; justify-content:space-between; background: transparent; transition: all .5s;  }
.mrsih-hero-top.active { background: #ffffff; transition: all .5s; }
.mrsih-hero-top.active .mrsih-left .mrsih-logo img { filter: none; }
.mrsih-hero-top.active .mrsih-menu, .mrsih-hero-top.active .mrsih-search-icon { border: 1px solid #1898f5; }
.mrsih-hero-top.active .mrsih-login { color: #1898f5;  }
.mrsih-hero-top.active .mrsih-separator { background: #1898f5; }

.mrsih-left{
  display:flex;
  align-items:center;
  gap:35px;
}
.mrsih-left .mrsih-logo { position: relative; top: 20px; }
.mrsih-left .mrsih-logo img { filter: brightness(100); }
.mrsih-left .mrsih-logo .field--type-entity-reference { margin-bottom: 0; }

.mrsih-menu,
.mrsih-search-icon{
  width:56px;
  height:56px;
  border-radius:50%; display: inline-flex; align-items: center; justify-content: center;
  border:none;
  background:#fff;
  color:#1898f5;
  font-size:20px; border: 1px solid #1898f5; 
/* Large */
box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.40);
}

.mrsih-logo img{
  width:230px;
}

.mrsih-actions{
  display:flex;
  align-items:center;
  gap:28px;
}

.mrsih-separator{
  width:1px;
  height:34px;
  background:#ffffff55;
}

.mrsih-register{
  background:#0084D5;
  padding:16px 32px;
  border-radius:40px; 
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.mrsih-login{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}


/* Side menu hidden/off-canvas until opened */
.mrsih-side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 760px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  transform: translateX(-110%);
  transition: transform .35s ease;
  overflow-y: auto;
  padding: 36px 64px 56px;
  box-shadow: 20px 0 70px rgba(0,0,0,.28);
  border-radius: 0 0 24px 0;
}

body.mrsih-menu-open .mrsih-side-menu {
  transform: translateX(0);
}

body.mrsih-menu-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(34,0,55,.72);
  z-index: 99990;
}

body.mrsih-menu-open .mrsih-side-menu {
  z-index: 99999;
}

.mrsih-side-close { width: 56px; height: 56px; border-radius: 50%; border: 1px solid #999; background: #fff; color: #888; font-size: 36px; line-height: 1; box-shadow: 0 8px 28px rgba(0,0,0,.18); }
.mrsih-side-close { position: absolute;  }
.mrsih-side-logo { width: 196px; margin-left: 120px; }
.mrsih-side-logo img { width: 100%; }

.mrsih-side-inner {
  position: relative;
  margin-top: 120px; overflow-x: hidden;
  padding-left: 88px; max-height: 71vh;
}

.mrsih-side-line {
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #27c6c0 0 62%, #ff1493 62% 100%);
}

.mrsih-side-label {
  font-size: 20px;
  color: #777;
  font-weight: 500;
  margin-bottom: 34px;
}

.mrsih-side-nav {
  font-size: 26px;
  color: #707070;
  font-weight: 700;
}

.mrsih-side-item {
  display: flex;
  align-items: center;
  font-size: 22px; font-weight: 500;
  gap: 22px;
  color: #707070;
  text-decoration: none;
  margin: 0 0 32px;
  border: 0;
  padding: 0;
}

.mrsih-side-item span {
  width: 28px;
  color: #888;
  font-size: 22px;
}

.mrsih-side-item.active,
.mrsih-side-item.active span {
  color: #008fe3;
}

.mrsih-side-item b {
  margin-left: auto;
  border: 2px solid #008fe3;
  color: #008fe3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  font-weight: 400;
  background: #fff;
  position: relative;
}

.mrsih-side-item b::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(45deg); width: 15px; height: 15px; border: 0; border-bottom: 1px solid #008fe3; border-right: 1px solid #008fe3; }

.mrsih-side-events { margin: 0 0 34px; width: calc(100% + 26px); }
.mrsih-side-events-head { background: #4d2a86; color: #fff; border-radius: 18px; padding: 18px 28px; display: flex; align-items: center; gap: 22px; font-size: 26px; font-weight: 500; }

.mrsih-side-events-head b { margin-left: auto; background: #fff; color: #4d2a86; width: 54px; height: 54px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; position: relative; font-size: 0; border: 1px solid #23043C; }
.mrsih-side-events-head b::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(225deg); width: 15px; height: 15px; border: 0; border-bottom: 1px solid #23043C; border-right: 1px solid #23043C;  }
.itemsNav.active {   }
.itemsNav.active .mrsih-side-item { color: #ffffff; background: #4D2A86; padding: 10px 20px; border-radius: 15px; }
.itemsNav.active .mrsih-side-item span { filter: brightness(100); }
.itemsNav.active .itemsDrops { display: block; }
.itemsDrops{ display: none; }
.itemsDrops li { list-style-type: none; }
.itemsDrops li a { color: #4D2A86; font-size: 16px; font-weight: 600; text-transform: uppercase; text-decoration: none; padding: 10px 0; display: block; }
.mrsih-side-sub { color: #4d2a86; font-size: 24px; margin: 28px 0 0 72px; font-weight: 500; }

.mrsih-side-events hr { margin: 28px 0 0 72px; border: 0; border-top: 1px solid #cfcfcf; }

.tagsWrap { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; width: 100%; }
.tags { border-radius: 4px; display: inline-block; padding: 8px 10px; background: #F0FAF9; color: #32BFAF; font-size: 14px;
font-weight: 500; text-transform: uppercase;}
.tags.tagsBy { background: #C4E9FF; color: #0084D5; border-radius: 20px; padding: 8px 16px; margin-right: 0; margin-bottom: 0; cursor: pointer; }

.tabsPills { margin: 40px 0; }
.tabsPills .nav-tabs { display: inline-flex; flex-wrap: nowrap; background: #ffffff; padding: 5px; border-radius: 40px; overflow: hidden; }
.tabsPills .nav-tabs .nav-item { }
.tabsPills .nav-tabs .nav-item .nav-link.active,
.tabsPills .nav-tabs .nav-item .nav-link:hover { border: 1px solid transparent; color: #0084D5; background: #C4E9FF; border-radius: 30px; }
.tabsPills .nav-tabs .nav-item .nav-link { color: #707173; font-size: 16px; font-weight: 600; border-radius: 30px; border: 1px solid transparent; transition: all .4s; }
.highlightsWrap { list-style-type: none; padding-left: 0; }
.highlightsWrap i { margin-right: 8px; position: absolute; left: 0; }
.highlightsWrap li { margin-top: 10px; position: relative; padding-left: 30px;}


.mrsih-bg .field--name-field-media-image .image-style-large{ width: 100%; max-width: 100% ; margin-bottom: 0; }
.field--type-entity-reference { margin-bottom: 0 !important; }
.mrsih-hero { position: relative; }
.mrsih-hero-content { position: absolute; left: 100px; top: calc(50% + 80px); transform: translateY(-50%); }
.mrsih-hero-content h1 { color: var(--color-White);  max-width: 600px; font-size: 64px; margin-bottom: 24px; font-weight: 600; min-height: 153px; }
.hp-hero-star-image { position: absolute; right: 7%; top: 20%; }

.mrsih-hero-content .mrsih-search-box { display: flex; gap: 24px; }
.mrsih-hero-content .mrsih-search-box span { display: flex; width: 579px; align-items: center; border-radius: 50px; position: relative; background: #2A7B9B; background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(230, 0, 126, 1) 0%, rgba(50, 191, 175, 1) 100%); overflow: hidden; }
.mrsih-hero-content .mrsih-search-box span::before { content: ''; position: absolute; left: 2px; top: 2px; width: calc(100% - 4px); height: calc(100% - 4px); background: var(--color-White); border-radius: 38px;  }
.mrsih-hero-content .mrsih-search-box span i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); z-index: 2;}
.mrsih-hero-content .mrsih-search-box input { background: #ffffff; padding: 16px 24px; padding-left: 54px; font-size: 16px; color: #23043C; border-radius: 50px; width: calc(100% - 4px); font-weight: 600; margin: 2px; position: relative; z-index: 1; border: 0;  }
.mrsih-hero-content .mrsih-search-box input::placeholder{ color: #23043C; font-weight: 500; }
.mrsih-hero-content .mrsih-search-box .button { width: 120px; }
.mrsih-suggestions { color: #F0F0F0; font-size: 14px; margin-top: 20px; }
.mrsih-suggestions p { font-weight: 400; color: #F0F0F0; }
.suggestionsSlider .suggestionsItems { margin-bottom: 23px; position: relative;  padding-left: 30px; min-height: 26px; }
.suggestionsSlider .suggestionsItems i { content: ''; position: absolute; left: 0; top: 0; width: 24px; height: 24px; }
.suggestionsSlider .suggestionsItems:nth-last-child(1) { opacity: .4; }
.suggestionsSlider .suggestionsItems:nth-last-child(2) { opacity: .6; }
.suggestionsSlider .suggestionsItems.slick-active + .slick-slide { opacity: .4; }
.suggestionsSlider .suggestionsItems.slick-active + .slick-slide + .slick-slide { opacity: .6; }

.mrsi-small-cards { display: flex; flex-wrap: wrap; gap: 24px; }
.mrsi-small-cards .mrsi-card:first-child { width: 100%; }
.mrsi-small-cards .mrsi-card:first-child figure { width: 40%; }
.mrsi-small-cards .mrsi-card:first-child .mrsi-cardContent { width: calc(100% - 45%); }
.mrsi-small-cards .mrsi-card:first-child .mrsi-cardContent h2 { margin: 12px 0; }
.mrsi-small-cards .mrsi-card:first-child .mrsi-cardContent .cardBtn { margin-top: 24px;}
.mrsi-card { border-radius: 20px; box-shadow: var(--shadow); display: inline-flex; flex-wrap: wrap; width: calc(50% - 12px); gap: 24px; background: var(--color-White); padding: 32px;}
.mrsi-card figure { width: 100%; margin-bottom: 0; }
.mrsi-card figure img { width: 100%; border-radius: 10px;
border: 0.5px solid #707173; }
.mrsi-card .mrsi-cardContent h3 { margin-bottom: 0; min-height: 48px; }
.mrsi-cardContent { display: flex; flex-wrap: wrap; gap: 12px; color: #707173; }
.cardBtn { display: flex; align-items: end; justify-content: end; width: 100%; }
.mrsi-cardContent h2 { color: #707173;}
.mrsi-resources { padding: 60px 100px; background: #ffffff; }
.mrsi-res-grid { display: flex; gap: 24px; }
.mrsi-res-left-grid { width: 60%;}
.mrsi-res-left-grid .mrsi-res-left { margin-bottom: 44px; }
.mrsi-res-Wrap { display: flex;  align-items: start; justify-content: space-between; margin-bottom: 44px; gap: 32px; }
.mrsi-res-Wrap .mrsi-res-left { width: 56%; }
.mrsi-res-Wrap .mrsi-res-left .mrsi-res-desc { color: #707173; }
.mrsi-res-Wrap .mrsi-res-categories { width: 700px; }
.mrsi-res-Wrap .mrsi-res-cat-title { margin-bottom: 22px; color: #707173; font-size: 20px; font-weight: 500; }
.mrsi-res-sidebar { width: 666px; box-shadow: var(--shadow); background: var(--color-White); border-radius: 20px; padding: 32px; }
.mrsi-res-sidebar .mrsi-res-categories { margin-bottom: 34px; }
.otherResources {  }
.otherResources h3 + .mrsi-side-item { margin-top: 24px; }
.otherResources .mrsi-side-item { padding-bottom: 44px; margin-bottom: 44px; border-bottom: 0.5px solid #707173; }
.otherResources .mrsi-side-item h3 { position: relative; padding-right: 20%; margin-top: 12px; font-weight: 600; }
.otherResources .mrsi-side-item h3 a { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 80px; border: 1px solid #0084D5; }
.otherResources .mrsi-side-item h3 a::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-45deg); margin-left: -4px; width: 13px; height: 13px; border: 0.5px solid #0084D5; border-left: 0.5px solid transparent; border-top: 0.5px solid transparent; }
.otherResources .mrsi-side-item:last-child { padding-bottom: 0; margin-bottom: 0; border: 0; }
.mrsie-events { color: #F0F0F0; color: #707173; padding: 100px;}
.mrsie-head { display: flex; align-items: start; justify-content: space-between; padding-bottom: 60px; border-bottom: 1px solid rgba(112, 113, 115, 0.4); margin-bottom: 44px; }
.mrsie-head div { width: 60%; }
.mrsie-head h2 { margin-bottom: 32px;}

.mrsie-feature { display: flex; flex-wrap: wrap; gap: 40px; }
.mrsie-feature .mrsie-feature-img { width: 45%; }
.mrsie-feature .mrsie-feature-img img { width: 100% !important; height: auto !important; }
.mrsie-feature .mrsie-feature-info { width: calc(55% - 45px); }
.mrsie-feature .mrsie-feature-info h3 { margin-top: 24px; }
.mrsie-feature-label { margin-bottom: 24px; font-size: 20px; font-weight: 500; }
.metaWrap { display: flex; flex-wrap: wrap;  gap: 44px;}
.metaWrap .metaItems strong { display: block; color: #4D2A86; font-weight: 500; font-size: 20px; }
.metaWrap .metaItems small { font-size: 16px; color: #707173; }
.metaWrap .metaItems:first-child { width: 220px; }
.mrsie-actions { display: flex; align-items: end; justify-content: end; gap: 24px; margin-top: 24px; }
.mrsie-cards { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(112, 113, 115, 0.4); font-weight: 500; }
.mrsie-cards .mrsie-card { width: calc(25% - 23px); }
.mrsie-cards .mrsie-card .mrsie-card-img { position: relative;  display: flex; align-items: start; justify-content: center; margin-bottom: 15px; }
.mrsie-cards .mrsie-card .mrsie-card-img img { border-radius: 10px; border: 0.5px solid #707173; width: 100%; }
.mrsie-cards .mrsie-card .mrsie-card-img .mrsie-card-icon { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: #F0FAF9;  display: inline-flex; align-items: center; justify-content: center;  }
.mrsie-cards .mrsie-card .cardContent { display: flex; flex-wrap: wrap; gap: 24px; }
.mrsie-cards .mrsie-card .cardContent .mrsie-date{ font-size: 16px; font-weight: 500; }
.mrsie-cards .mrsie-card .cardContent h4 { min-height: 58px; width: 100%; font-weight: 600; font-size: 20px; }
.mrsie-cards .mrsie-card .mrsie-card-bottom { padding-top: 24px; margin-top: 24px; border-top: 1px solid #707173; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }

.mrsigm { background: #ffffff; padding: 60px 100px; }
.mrsigm .mrsigm-head { display: flex; align-items: start; justify-content: space-between; }
.mrsigm .mrsigm-head .mrsigm-headTitle { width: 670px; }
.mrsigm-icon img { max-width: 88px; }
.mrsigm-features { display: flex; gap: 60px; margin-top: 60px; }
.mrsigm-features .mrsigm-feature { position: relative;}
.mrsigm-features .mrsigm-feature::before { content: ''; position: absolute; left: -32px; top: 0; width: 1px; height: 100%; background: #707173; opacity: 0.4; }
.mrsigm-features .mrsigm-feature:first-child:before {display: none; }
.mrsigm-features .mrsigm-feature p { font-size: 18px; font-weight: 400; }
.mrsigm-main { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 60px; padding-top: 60px; border-top: 2px solid #32BFAF; position: relative;  }
.mrsigm-main::before { content: ''; position: absolute; right: 0; top: -2px; width: 35%; height: 2px; background: #E6007E; }
.mrsigm-main .mrsigm-left { width: 55%; }
.mrsigm-main .mrsigm-detail { width: calc(45% - 40px); }
.mrsigm-main .mrsigm-tab { border-radius: 20px; background: #F0F0F0; display: block; padding: 40px; margin-bottom: 24px; border: 1px solid #F0F0F0; transition: all .5s; }
.mrsigm-main .mrsigm-tab.active,
.mrsigm-main .mrsigm-tab:hover { border: 1px solid #4D2A86; box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.40); }
.mrsigm-main .mrsigm-tab.active b,
.mrsigm-main .mrsigm-tab:hover b { border: 1px solid #4D2A86; }
.mrsigm-main .mrsigm-tab:hover b path,
.mrsigm-main .mrsigm-tab.active b path { stroke: #4D2A86; }
.mrsigm-main .mrsigm-tab .mrsigm-tab-icon { background: #FFF; border: 1px solid #F0FAF9; box-shadow: (0 0 1px rgba(0, 0, 0, 0.40)) drop-shadow(0 6px 6px rgba(0, 0, 0, 0.16)); width: 50px; height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; vertical-align: middle; }
.middContent { padding: 0 20px; width: calc(100% - 139px); display: inline-block; vertical-align: middle; }
.middContent p { margin-bottom: 0; }
.mrsigm-tab b { width: 42px; height: 42px; background: #ffffff; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer; border: 1px solid #0084D5; }
.mrsigm-detail .mrsigm-detailContent { border-radius: 20px; background: #32BFAF; box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.40); padding: 44px; color: #ffffff; height: calc(100% - 112px); position: relative;  }
.mrsigm-detail .mrsigm-detail-title { vertical-align: middle; margin-bottom: 20px; }
.mrsigm-detail .mrsigm-detail-title h3 { color: #ffffff; font-size: 32px; display: inline-block; vertical-align: middle; }
.mrsigm-detail .mrsigm-detail-title span { background: #FFF; border: 1px solid #F0FAF9; box-shadow: (0 0 1px rgba(0, 0, 0, 0.40)) drop-shadow(0 6px 6px rgba(0, 0, 0, 0.16)); width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;  margin-right: 15px; }
.mrsigm-fee-content { color: #ffffff; }
.mrsigm-fee-content p, .mrsigm-fee-content h4, .mrsigm-fee-content h3, .mrsigm-fee-content h2, .mrsigm-fee-content b, .mrsigm-fee-content li, .mrsigm-fee-content b { color: #ffffff; font-size: 16px; }
.mrsigm-fee-description ul {  list-style-type: none; }
.mrsigm-fee-description li { position: relative; list-style-type: none; padding: 5px 0;}
.mrsigm-fee-description li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; }
.mrsigm-detail .mrsigm-detailContent .outline { position: absolute; left: 40px; bottom: 40px; text-transform: uppercase; }
.mrsigm-benefit-wrap { text-align: center; margin: 60px 0 30px 0; }
.mrsigm-fees { display: flex; margin-top: 30px; padding-top: 30px; border-top: 1px solid #ffffff;}
.mrsigm-fees div { width: 100%; }
.mrsigm-fees div small { font-size: 16px; }
.mrsigm-fees div strong { display: inline-block; width: 100%; font-size: 24px; font-weight: 400; }

.mrsiClints-logos { display: flex; margin-top: 60px;  }
.mrsiClints-logosItems { margin: 0 40px; align-items: center; justify-content: center; }
.mobileNav { display: none; }
footer .mrsif-top .mrsif-join h2 { font-weight: 600; }
footer .mrsif-top .mrsif-join p { color: #ffffff; font-weight:400; }

.mrsif-copy { font-size: 14px;}
.hideDsk { display: none;}
.slick-arrow { width: 39px; height: 39px; background: #ffffff; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer;
    border: 1px solid #0084D5; position: relative; font-size: 0; }
.slick-arrow::before { content: ''; position: absolute; width: 10px; border: 1px solid #0084D5; border-left: 0; border-top: 0; height: 10px;
    transform: rotate(-45deg);  }
.slick-prev.slick-arrow::before { content: ''; transform: rotate(140deg);}
.mrsif-logo { max-width: 260px; }
.mrsif-logo img { margin-bottom: 0; }
.mrsif-copy { font-size: 14px; } 
footer .mrsif-top .mrsif-links a{ text-decoration: none;}
footer .mrsif-top .mrsif-links a.active, footer .mrsif-top .mrsif-links a:hover { color: #B9A2DE ;}
#typewriter {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #000;
  font-size: 24px;
  font-weight: 600;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  50% {
    border-color: transparent;
  }
}

@media (max-width: 1740px) { 
  .button { font-size: 14px; font-weight: 400; padding: 16px 20px; }
}

@media (max-width: 1440px) {
  h2 { font-size: 32px; }
  .button { font-size: 14px; font-weight: 400; padding: 16px 20px; }
  .mrsi-res-sidebar { width: 340px; }
  .mrsi-res-Wrap .mrsi-res-categories { width: 38%; }
  .mrsie-cards .mrsie-card .mrsie-card-img {  }
  .mrsigm, .mrsi-resources, .mrsie-events { padding: 60px 80px; }
  .mrsigm-main .mrsigm-left { width: 49%; }
  .mrsigm-main .mrsigm-detail { width: calc(51% - 40px); }
  .mrsigm-main { gap: 24px;}
  .tabsPills .nav-tabs .nav-item .nav-link { padding: 8px 5px; }
  .mrsigm-detail .mrsigm-detailContent { padding: 30px;  }
  .tabsPills .nav-tabs { width: 100%; justify-content: space-between; }
}

@media (max-width: 767px) {
  .tagsWrap { gap: 20px; }
  .tags.tagsBy { margin-right: 0; margin-bottom: 0; }
  .mrsie-head {  padding-bottom: 0; border: 0; }
  .mrsie-head .button {  }
  .mrsie-feature-label { font-size: 20px; font-weight: 500; }
  .mrsih-side-menu { padding-left: 20px; }
  .mrsih-menu, .mrsih-search-icon, .mrsih-side-close { width: 36px; height: 36px; }
  .mrsih-hero-content .mrsih-search-box input { padding: 15px 24px 15px 52px;}
  .mrsih-hero-content .mrsih-search-box .button { width: 110px;}
  .mrsih-side-close { display: inline-flex; align-items: center; justify-content: center; }
  .mrsih-side-inner { padding-left: 45px; margin-top: 70px;  }
  .mrsih-side-events-head { font-size: 16px; }
  .mrsih-side-sub { margin-left: 32px; margin-top: 24px; font-size: 16px; }
  .mrsih-logo img { width: 170px; margin-bottom: 0; }
  .mrsih-side-item { font-size: 16px; font-weight: 600; margin-bottom: 22px; }
  .mrsih-side-item b { width: 42px; height: 42px; }
  .mrsih-side-item b::before { width: 11px; height: 11px; }
  .hp-hero-star-image { width: 240px; top: 74px; right: 0; }
  .mrsih-hero { height: 84vh; background: #23043d; }
  .mrsih-hero .mrsih-bg { margin-top: 80px; }
  .mrsih-hero-top { padding: 0 20px; width: 100%; }
  .mrsih-left { gap: 24px; }
  .mrsih-left .mrsih-logo { top: 0;}
  .mrsih-hero-content { left: 34px; width: calc(100% - 90px); }
  .mrsih-hero-content h1 { font-size: 32px; max-width: 224px; min-height: 77px; }
  .mrsih-hero-content .mrsih-search-box { flex-wrap: wrap; gap: 14px; justify-content: end;  }
  .mrsih-hero-content .mrsih-search-box span { width: 100%; }
  .mrsigm-features .mrsigm-feature::before { width: 100%; height: 1px; left: 0; top: -32px; }
  .mrsih-actions { display: none; }
  .mobileNav { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 99999; border-radius: 20px 20px 0 0; background: #FFF; box-shadow: 0 32px 32px -8px rgba(0, 0, 0, 0.08), 0 0 32px -8px rgba(0, 0, 0, 0.12), 0 0 1px 0 rgba(0, 0, 0, 0.20); padding: 12px; align-items: center; justify-content: space-evenly;  }
  .mobileNav a { width: 100%; font-size: 12px; color: #707173; text-align: center; text-decoration: none;  }
  .mobileNav a.active { color: #0084D5; }
  .mobileNav a i { display: inline-block; padding: 8px;  }
  .mobileNav a.active i { background: #C4E9FF; border-radius: 4px; }
  .mobileNav a i.searchMobile { box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.16), 0 0 1px 0 rgba(0, 0, 0, 0.40); width: 56px; height: 56px; border-radius: 50%; display: inline-flex; border-radius: 80px; border: 1px solid #0084D5; align-items: center; justify-content: center; }
  .mrsiClints-logos { flex-wrap: wrap;}
  .mobileNav a span { text-transform: uppercase; display: block; margin-top: 5px; }
  footer { padding: 0 20px !important;}
  .cardBtn { align-items: center; justify-content: center; }
  footer .mrsif-bottom { flex-wrap: wrap; gap: 20px; width: 80%; }
  footer .mrsif-top .mrsif-join .mrsif-form { flex-wrap: wrap; gap: 20px; justify-content: end; }
  footer .mrsif-top .mrsif-join .mrsif-form input { width: 100%; padding: 5px 20px; }
  footer .mrsif-logo { width: 170px; }
  footer .mrsif-top .mrsif-links .footNavView { flex-wrap: wrap; gap: 0; }
  footer .mrsif-top .mrsif-links .footNavView div { width: 100%; }
  footer .mrsif-top .mrsif-links a { margin: 10px 0; } 
  footer .mrsif-top .mrsif-join .mrsif-form button { padding: 10px 20px; }
  .mrsif-join { width: 100%; }
  .mrsif-top { flex-direction: column-reverse; }
  .mrsi-res-sidebar { width: 100%;     box-shadow: none; margin-top: 40px;
    background: transparent;
    border-radius: 0;
    padding: 0; }
  .mrsi-res-sidebar .resourcesMB { margin-bottom: 20px; }
  .mrsi-res-sidebar .otherResourcesSlider {     box-shadow: var(--shadow);
    background: var(--color-White);
    border-radius: 20px;
    padding: 32px; }
  .mrsi-res-Wrap { flex-wrap: wrap; }
  h2 { font-size: 32px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px;}
  p { font-size: 16px; }
  .button { font-size: 14px; font-weight: 400; padding: 10px 20px; }
  .button.outline i { display: none; }
  .mrsi-res-Wrap .mrsi-res-categories,
  .mrsi-res-Wrap .mrsi-res-left { width: 100%; }
  .mrsi-card, .mrsi-res-left-grid, .mrsi-small-cards .mrsi-card:first-child figure, .mrsi-small-cards .mrsi-card:first-child .mrsi-cardContent, .mrsie-head div, .mrsie-feature .mrsie-feature-img, .mrsie-feature .mrsie-feature-info, .mrsigm-main .mrsigm-left, .middContent { width: 100%; }
  .mrsi-res-grid, .mrsie-head, .mrsigm .mrsigm-head, .mrsigm-features, footer .mrsif-top { flex-wrap: wrap; }
  .mrsi-resources, .mrsie-events, .mrsigm { padding: 60px 32px; }
  .mrsigm-head .button {   }
  .mrsigm-main .mrsigm-detail { display: none; }
  .middContent { padding: 15px 0; }
  .middContent h3 { padding-left: 50px; margin-bottom: 20px; }
  .metaWrap .metaItems:first-child {     width: 180px; }
  .mrsigm-main .mrsigm-tab { padding: 24px; position: relative; }
  .mrsigm-tab b { margin-left: calc(50% - 20px); transform: rotate(90deg); }
  .mrsigm-main .mrsigm-tab .mrsigm-tab-icon { position: absolute; left: 24px; top: 28px; }
  .otherResources .mrsi-side-item { margin-bottom: 0; padding-bottom: 0; border: 0; }
  .otherResources .mrsi-side-item h3 { padding-right: 0; }
  .otherResources .mrsi-side-item h3 a { right: -10px; display: none; }
  .titleMb { margin-top: 44px;  }
  .otherResourcesSlider { position: relative; }
  .mrsie-cards .mrsie-card .mrsie-card-img .mrsie-card-icon { top: 12px; right: 12px; }
  .mrsie-cards { border-radius: 20px; background: #FFF; box-shadow: 0 32px 32px -8px rgba(0, 0, 0, 0.08), 0 0 32px -8px rgba(0, 0, 0, 0.12), 0 0 1px 0 rgba(0, 0, 0, 0.20); padding: 24px; position: relative; }
  .mrsiClints-logosItems { margin: 0; }
  .mrsie-cards .slick-arrow { position: absolute; right: 0; top: -65px; }
  .mrsie-cards .slick-arrow.slick-prev { right: 50px; }
  .otherResourcesSlider .slick-arrow { position: absolute; right: 0; top: -50px; }
  .otherResourcesSlider .slick-arrow.slick-prev { right: 50px; }
  .mrsigm-icon img { max-width: 88px; }
  .mrsie-cards .mrsie-card { width: 100%; }
  .mrsie-actions { gap: 10px; align-items: center; justify-content: center; }
  .hideDsk { display: block;  }
  .titleMb { position: relative; padding-top: 40px; }
  .titleMb::before { content: ''; position: absolute; top: 0; left: -32px; width: calc(100% + 64px); height: 1px; background: #707173; opacity: .5; }
  .mrsigm-benefit-wrap { margin: 24px 0;}
  footer .mrsif-top .mrsif-join .mrsif-form input { height: 54px; line-height: 54px;}
  footer .mrsif-line { display: none; }
}

 
