/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
    /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
    .header__language-switcher .hs-language-switcher__menu {
        display: block;
        box-shadow:none!important;
        background: transparent;
    }
    .header__language-switcher .hs-language-switcher__menu a {
        font-size: 20px!important;
    }
    .header__language-switcher .hs-language-switcher__button {
        display: none;
    }
  }

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* @import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap"); */
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
:root {
  --primary-color: #b42e34;
  --secondary-color: #fdc403;
  --brighten-yellow: #fdc403;
  --white-color: #ffffff;
  --black-color: #000000;
  --texture-color: #231f20;
  --theme-blue-color: #0059bf;
  --light-gray-color: #eeeeee;
  --deep-purple-color: #31063d;
  --soft-black-color: #201c1c;
  --font-family-heading: "Crimson Text", serif;
  --font-family-body-font: "Libre Franklin", sans-serif;
  --font-size-primary-heading: 72px;
  --font-size-secondary-heading: 48px;
  --font-size-secondary-paragraph: 16px;
  --font-style: normal;
  --font-thin: 100;
  --font-extra-light: 200;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;
  --font-black: 900;
}
.container__fluid {
  width: 100%;
  padding: 0px 15px;
}
.inner__container {
  max-width: 1220.68px;
  padding: 0px 15px;
  margin: 0 auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading) !important;
  font-style: var(--font-style);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}
body, p {
  font-family: var(--font-family-body-font) !important;
  font-style: var(--font-style);
  font-weight: var(--font-weight-regular);
  line-height: normal;
  font-optical-sizing: auto;
}
a {
  text-decoration: none !important;
  display: inline-block;
  font-family: var(--font-family-body-font) !important;
  font-optical-sizing: auto;
}
button {
  padding: 0px;
}
html {
  scroll-behavior: smooth;
}
/* Header Css Start Here */
.site__header{}
.header__top-bar{
  background-color: var(--primary-color);
  padding: 20px 0px;
  margin-bottom: 2px;
  box-shadow: 0 0 8px 0px #000000c4;
  position: relative;
}
.header__bar-list ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 33px;
}
.header__bar-list ul li{
  display: inline-flex;
}
.header__bar-list ul li a, .header__bar-list ul li button{
  background-color: transparent;
  padding: 0px;
  border: none;
  font-size: 20px;
  color: var(--white-color) !important;
  font-weight: var(--font-semi-bold);
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__bar-list ul li:nth-child(2) a{
  gap: 4px;
}

.header__bar-list ul li a img, .header__bar-list ul li button img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.header__bar-list ul li:nth-child(2) a img, .header__bar-list ul li:nth-child(2) a svg{
  width: 15px;
  height: 15px;
}
.header__bar-list ul li a:hover, .header__bar-list ul li button:hover{
  opacity: 0.8;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main__header-wrapper{
  padding: 16px 0px;
  background-color: var(--white-color);
  position: relative;
}
.header__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header__logo-col{
  width: 123.58px;
}
.brand__logo{
  display: flex;
  width: 100%;
}
.brand__logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__menu-col{
  width: calc(100% - 163.58px);
}
.menu__row{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.secondary__bg-btn {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 13px 25px;
  font-size: 20px;
  color: var(--soft-black-color) !important;
  font-weight: var(--font-semi-bold) !important;
  line-height: 24px;
  letter-spacing: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.secondary__bg-btn:hover{
  background-color: var(--soft-black-color);
  color: var(--white-color) !important;
  border-color: var(--soft-black-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__cta-btns{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.menu__items-links ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.menu__items-links ul li{
  display: inline-flex;
}
.menu__items-links ul li a{
  font-size: 20px;
  line-height: 24px;
  color: var(--black-color);
  font-weight: var(--font-semi-bold) !important;
  display: inline-flex;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu__items-links ul li a:hover{
  color: var(--primary-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu__icon{
  display: none;
}
.menu__icon button{
  width: 40px !important;
  height: 40px !important;
  border: none !important;
  background-color: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  padding: 0px !important;
}
.menu__icon button svg, .menu__icon button img{
  width: 100%;
  height: 100%;
  fill: var(--black-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu__icon button:hover svg{
  fill: var(--primary-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Side Bar */
.side__bar{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.active__sidebar .side__bar{
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.side__bar-layer{
  width: 100%;
  height: 100%;
  background-color: #ffffff00;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  backdrop-filter: blur(7px);
}
.side__bar-wrapper{
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: var(--white-color);
  position: absolute;
  top: 0px;
  left: -100%;
  z-index: 2;
  box-shadow: 0px 0px 10px 0px #00000052;
  padding: 60px 0px 254px 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.active__sidebar .side__bar-wrapper{
  left: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar__inner-wrapper{
  padding: 0px 20px;
  overflow-x: auto;
  height: 100%;
  width: 100%;
}
.close__icon-btn{
  width: 35px !important;
  height: 35px !important;
  border: none !important;
  background-color: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  position: absolute;
  top: 10px !important;
  right: 10px !important;
  z-index: 2 !important;
  padding: 0 !important;
}
.close__icon-btn svg, .close__icon-btn img{
  width: 100%;
  height: 100%;
  fill: var(--black-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar__links ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.sidebar__links ul li{
  display: block;
  margin-bottom: 30px;
}
.sidebar__links ul li:nth-last-child(1){
  margin-bottom: 0px;
}
.sidebar__links ul li a{
  font-size: 20px;
  line-height: 24px;
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
  display: inline-flex;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar__cta-btn{
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sidebar__cta-btn a{
  width: calc(50% - 10px);
  text-align: center;
  padding: 13px 10px;
}
.sidebar__footer{
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 30px 20px;
  background-color: var(--primary-color);
}
.sidebar__footer ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.sidebar__footer ul li{
  display: block;
  margin-bottom: 20px;
}
.sidebar__footer ul li:nth-last-child(1){
  margin-bottom: 0px;
}
.sidebar__footer ul li a, .sidebar__footer ul li button{
  background-color: transparent;
  padding: 0px;
  border: none;
  font-size: 20px;
  color: var(--white-color) !important;
  font-weight: var(--font-semi-bold);
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar__footer ul li a img, .sidebar__footer ul li button img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.sidebar__footer ul li a:hover, .sidebar__footer ul li button:hover{
  opacity: 0.8;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* Side Bar */

/* Header Css End Here */

/* Banner Css Start Here */
.hero__banner {
  padding: 0px 0px 19px;
  height: calc(100vh - 177px);
}
.hero__banner .container__fluid {
  height: 100%;
}
.hero__banner-wrapper {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
}
.hero__banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__banner-block {
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 81px 184px 34px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}
.star__layer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__banner-txt--wrapper {
  max-width: 729px;
  position: relative;
}
.star__layer {
  width: 101.46px;
  height: 116.41px;
  position: absolute;
  top: 0px;
  left: -109px;
}
.hero__banner-txt--wrapper h1 {
  font-size: 72px;
  color: var(--white-color);
  line-height: 74px;
  font-weight: var(--font-bold);
  margin-bottom: 17px;
}
.hero__banner-txt--wrapper p {
  font-size: 20px;
  color: var(--white-color);
  line-height: 30px;
  font-weight: var(--font-medium);
  margin-bottom: 16px;
  max-width: 668px;
}
.hero__links-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
.bg__white-btn {
  background-color: var(--white-color);
  border: 1px solid var(--black-color);
  padding: 13px 25px;
  font-size: 20px;
  color: var(--black-color) !important;
  font-weight: var(--font-semi-bold) !important;
  line-height: 24px;
  letter-spacing: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bg__white-btn:hover {
  background-color: var(--soft-black-color);
  color: var(--white-color) !important;
  border-color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.primary__bg-btn {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 13px 25px;
  font-size: 20px;
  color: var(--white-color) !important;
  font-weight: var(--font-semi-bold) !important;
  line-height: 24px;
  letter-spacing: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.primary__bg-btn:hover {
  background-color: var(--secondary-color);
  color: var(--soft-black-color) !important;
  border-color: var(--soft-black-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* Banner Css Start Here */

/* Protected Css Start Here */
.protected__wrapper {
  padding: 71px 0px;
  background-image: url("//48516061.fs1.hubspotusercontent-na1.net/hubfs/48516061/raw_assets/public/msta-custom-theme/images/fall-red.png");
  /* background-image: url(../imgs/fall-red.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  background-color: var(--primary-color);
}
.protected__row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
.protected__column {
  width: calc(50% - 15.5px);
}
.protected__detail h2, .protected__detail h1 {
  font-size: 48px;
  line-height: 50px;
  color: var(--white-color);
  font-weight: var(--font-bold);
  margin-bottom: 13px;
}
.protected__detail p {
  font-size: 20px;
  line-height: 30px;
  color: var(--white-color);
  font-weight: var(--font-medium);
  margin-bottom: 21px;
  max-width: 550px;
}
.protected__news .protected__detail p{
  max-width: 565px;
}
.protected__detail a {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 12px 24px;
  font-size: 20px;
  color: var(--black-color) !important;
  font-weight: var(--font-semi-bold) !important;
  line-height: 24px;
  letter-spacing: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.protected__detail a:hover {
  background-color: var(--soft-black-color);
  color: var(--white-color) !important;
  border-color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.protected__paper-texture {
  width: 100%;
  min-height: 344px;
  position: relative;
  padding: 65px 26px 45px 72px;
  background: url("//48516061.fs1.hubspotusercontent-na1.net/hubfs/48516061/raw_assets/public/msta-custom-theme/images/paper-texture-new.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: -71px;
  bottom: -2px;
}
.protected__paper-texture p {
  font-size: 20px;
  line-height: 39px;
  color: var(--texture-color);
  font-weight: var(--font-bold);
  margin-bottom: 0px;
  /* overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical; */
}
.protected__paper-texture span {
  font-size: 20px;
  line-height: 39px;
  display: block;
  color: var(--theme-blue-color);
  font-weight: var(--font-medium);
  margin-bottom: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.protected__top-quote {
  width: 108px;
  height: 76px;
  position: absolute;
  top: -11px;
  left: -9px;
}
.protected__top-quote img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.protected__bottom-quote {
  width: 108px;
  height: 76px;
  position: absolute;
  bottom: -20px;
  right: -15px;
}
.protected__bottom-quote img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Protected Css End Here */

/* Our members Css Start Here */
.our__members {
  padding: 67px 0px 92px;
}
.our__members-title {
  margin-bottom: 30px;
  position: relative;
}
.our__members-title__wrapper {
  max-width: 770px;
}
.our__members-title__wrapper h2 {
  font-size: 48px;
  line-height: 50px;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  margin-bottom: 17px;
}
.our__members-title__wrapper p {
  font-size: 20px;
  line-height: 30px;
  color: var(--black-color);
  font-weight: var(--font-medium);
  margin-bottom: 0px;
  max-width: 565px;
}
.our__members-hand--img {
  width: 168.97px;
  height: 142.86px;
  position: absolute;
  top: 15px;
  right: 0px;
}
.our__members-hand--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.our__members-list ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0px -16px;
  row-gap: 29px;
}
.our__members-list ul li {
  display: block;
  width: 33.33%;
  padding: 0px 16px;
}
.our__members-list ul li a {
  background-color: var(--light-gray-color);
  width: 100%;
  height: 100%;
  padding: 13px 95px 13px 21px;
  display: inline-flex;
  align-items: center;
  min-height: 86px;
  position: relative;
  font-size: 24px;
  line-height: 30px;
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.our__members-list ul li a span {
  width: 53px;
  height: 53px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translate(0%, -50%);
  padding: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.our__members-list ul li a:hover {
  background-color: var(--deep-purple-color);
  color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.our__members-list ul li a:hover span {
  background-color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.our__members-list ul li a span svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Our members Css End Here */

/* Resources Css Start Here */
.resources {
}
.resources__wrapper {
  padding: 38px 0px 41px;
  background-image: url("//48516061.fs1.hubspotusercontent-na1.net/hubfs/48516061/raw_assets/public/msta-custom-theme/images/summer-yellow.png");
/*   background-image: url(../imgs/summer-yellow.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--secondary-color);
  border-radius: 10px;
}
.resources__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
.resources__column {
  width: calc(50% - 15.5px);
}
.resources__title {
  max-width: 570px;
  margin-left: auto;
}
.resources__title .hero__links-wrapper a {
  border-color: var(--white-color) !important;
}
.resources__title .hero__links-wrapper a.primary__bg-btn{
  border-color: var(--primary-color) !important;
}
.resources__title .hero__links-wrapper .primary__bg-btn:hover {
  background-color: var(--secondary-color);
  color: var(--soft-black-color);
  border-color: var(--soft-black-color) !important;
}
.resources__title h2 {
  font-size: 48px;
  line-height: 50px;
  color: var(--soft-black-color);
  font-weight: var(--font-bold);
  margin-bottom: 11px;
}
.resources__title p {
  font-size: 20px;
  line-height: 30px;
  color: var(--soft-black-color);
  font-weight: var(--font-bold);
  margin-bottom: 18px;
  max-width: 565px;
}
.resources__block {
  position: relative;
}
.resources__image {
  max-width: 549px;
  width: 100%;
  position: absolute;
  top: 54%;
  left: 0px;
  transform: translate(0%, -50%);
}
.resources__image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Resources Css End Here */

/* Upcoming Events Css Start Here */
.upcoming__events {
  padding: 93px 0px 93px;
/*   padding: 67px 0px 93px; */
}
.upcoming__events-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-bottom: 30px;
}
.upcoming__events-txt--col {
  max-width: 615px;
  width: 100%;
}
.upcoming__events-cta--col {
  max-width: 300px;
  width: 100%;
}
.upcoming__events-detail h2 {
  font-size: 48px;
  line-height: 50px;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  margin-bottom: 17px;
}
.upcoming__events-detail p {
  font-size: 20px;
  line-height: 30px;
  color: var(--black-color);
  font-weight: var(--font-medium);
  margin-bottom: 0px;
}
.upcoming__events-cta {
  text-align: right;
  padding-bottom: 5px;
}
.upcoming__events-cta a {
  background-color: var(--primary-color);
  padding: 12px 24px;
  border: 1px solid var(--primary-color);
  font-size: 20px;
  color: var(--white-color) !important;
  font-weight: var(--font-semi-bold) !important;
  line-height: 24px;
  letter-spacing: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.upcoming__events-cta a:hover {
  background-color: var(--secondary-color);
  color: var(--soft-black-color) !important;
  border-color: var(--soft-black-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.upcoming__events-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  row-gap: 33px;
  margin: 0px -16px;
}
.upcoming__events-column {
  width: 33.33%;
  padding: 0px 16px;
}
.upcoming__events-item {
  width: 100%;
  height: 446px;
  border-radius: 5px;
  background-color: var(--light-gray-color);
  overflow: hidden;
  display: block;
  position: relative;
}
.upcoming__events-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.upcoming__events-item:hover img {
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.upcoming__event-card--txt {
  width: 100%;
  padding: 172px 13px 16px;
  position: absolute;
  bottom: 0px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}
.upcoming__event-card--txt span {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 24px;
  line-height: 28px;
  font-family: var(--font-family-heading);
  font-weight: var(--font-bold);
  color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.upcoming__events-item:hover .upcoming__event-card--txt span {
  gap: 17px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* Upcoming Events Css End Here */
/* MSTA Teacher */
.msta__teacher_main_wrapper {
  /* background-image: url(../imgs/teacher-bg.png); */
  background-image: url("//48516061.fs1.hubspotusercontent-na1.net/hubfs/48516061/raw_assets/public/msta-custom-theme/images/teacher-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #31063d;
  border-radius: 5px;
}
.msta__teacher_wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.msta_left_col {
  width: calc(54.5% - 37px);
  position: relative;
}
.msta_left_title {
  margin: 73px 0px;
  position: relative;
  z-index: 1;
}
.msta_left_title h2 {
  color: var(--white-color);
  font-size: 48px;
  font-family: var(--font-family-heading);
  line-height: 50px;
  margin-bottom: 5px;
  font-weight: var(--font-bold);
}
.msta_left_title p {
  color: var(--white-color);
  font-size: 20px;
  font-family: var(--font-family-body-font);
  line-height: 30px;
  margin-bottom: 14px;
  font-weight: var(--font-regular);
  padding: 0px;
}
.msta_left_title p span {
  font-weight: var(--font-bold);
}
.msta_left_title a {
  display: inline-block;
  padding: 12px 47.5px;
  border: 1px solid var(--brighten-yellow);
  background-color: var(--brighten-yellow);
  color: var(--black-color) !important;
  font-size: 20px;
  font-family: var(--font-family-body-font);
  line-height: 100%;
  text-align: center;
  font-weight: var(--font-semi-bold) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.msta_left_title a:hover{
  background-color: var(--soft-black-color);
  color: var(--white-color) !important;
  border-color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ring__image {
  position: absolute;
  top: -65px;
  left: -120px;
  width: 225.15px;
}
.ring__image img {
  height: 100%;
  width: 100%;
}
.msta_right_col {
  width: calc(45.5% - 37px);
}
.handle_vector_image {
  width: 100%;
  margin-top: -57px;
  display: flex;
}
.handle_vector_image img {
  height: 100%;
  width: 100%;
}
/* MSTA Teacher */
/* News upate  */
.news__update_wrapper {
  padding: 55px 0px 64px;
}
.news_update_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.news_update__left_content {
  width: calc(66% - 197.5px);
}
.news_update__left_content h2 {
  color: var(--primary-color);
  font-size: 48px;
  font-family: var(--font-family-heading);
  line-height: 50px;
  margin-bottom: 5px;
  font-weight: var(--font-bold);
}
.news_update__left_content p {
  color: var(--black-color);
  font-size: 20px;
  font-family: var(--font-family-body-font);
  line-height: 30px;
  margin: 0px;
  font-weight: var(--font-regular);
  padding: 0px;
}
.news_update__right_content {
  width: calc(34% - 197.5px);
  text-align: right;
  padding-bottom: 5px;
}
.news_update__right_content a {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 12px 24px;
  font-size: 20px;
  color: var(--white-color) !important;
  font-weight: var(--font-semi-bold) !important;
  line-height: 24px;
  letter-spacing: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.news_update__right_content a:hover {
  background-color: var(--secondary-color);
  color: var(--soft-black-color) !important;
  border-color: var(--soft-black-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* swiper */
.card_main_wrapper {
  display: block;
  border-radius: 5px;
  position: relative;
  height: 487.66px;
  overflow: hidden;
}
.card_main_wrapper_image {
  width: 100%;
  height: 100%;
}
.card_main_wrapper_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card_main_wrapper:hover .card_main_wrapper_image img{
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card__overlay {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  border-radius: 5px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  padding: 154px 0px 9px;
}
.inner_card_content {
  padding: 0px 13px;
  display: block;
}
.inner_card_content span {
/*   display: flex;
  align-items: center; */
  gap: 13px;
  font-size: 24px;
  line-height: 28px;
  font-family: var(--font-family-heading);
  font-weight: var(--font-bold);
  color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.inner_card_content span svg{
  position: relative;
  top: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card_main_wrapper:hover .inner_card_content span svg{
  margin-left: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.inner_card_content h2 {
  font-size: 24px;
  font-family: var(--font-family-heading);
  font-weight: var(--font-bold);
  line-height: 28px;
  margin: 0px;
}
.card_badges {
  position: absolute;
  z-index: 99;
  top: 11px;
  left: 13px;
  background-color: var(--white-color);
  padding: 5px;
  border-radius: 5px;
  display: inline-flex;
}
.featured__stories .card_badges {
  background-color: var(--white-color);
  padding: 1px 10px;
}
.card_badges span {
  color: var(--black-color);
  font-family: var(--font-family-body-font);
  font-weight: var(--font-semi-bold);
  font-size: 12px;
  text-transform: uppercase;
}
.msta__teahcer_pagination .swiper-button-next, .msta__teahcer_pagination .swiper-button-prev{    
  height: 132px;
  width: 66px;
  background-color: var(--secondary-color);
  right: 0px;
  left: auto;
  top: 50% !important;
  transform: translate(0%, -50%) !important;
  margin: 0px !important;
  border: 1px solid var(--brighten-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.msta__teahcer_pagination .swiper-button-next:hover, .msta__teahcer_pagination .swiper-button-prev:hover{
  background-color: var(--white-color);
}
.msta__teahcer_pagination .swiper-button-prev{
  left: 0px;
  right: auto;
  border-radius: 0px 100px 100px 0px;
  border-left: none;
}
.msta__teahcer_pagination .swiper-button-next{
  border-radius: 100px 0px 0px 100px;
  border-right: none;
}
.msta__teahcer_pagination .swiper-button-next::after, .msta__teahcer_pagination .swiper-button-prev::after{
  content: none;
}
.msta__teahcer_pagination .swiper-button-next img, .msta__teahcer_pagination .swiper-button-next svg, .msta__teahcer_pagination .swiper-button-prev img, .msta__teahcer_pagination .swiper-button-prev svg{ 
  width: 34px;
  fill: var(--black-color);
}
.handle__new-wrapper{
  position: relative;
}
/* News upate end */

.protected__benefits .protected__wrapper {
  padding: 102px 0 101px;
}
.protected__benefits.protected__news .protected__wrapper {
  padding: 102px 0 96px;
}
.protected__benefits .protected__row {
  position: relative;
}
.protected__benefits h2, .protected__benefits h1 {
  font-size: 72px;
  line-height: 74px;
  margin-bottom: 3px;
}
.protected__benefits p {
  margin: 0;
}
.protected__benefits .protected__column-news {
  width: calc(70% - 15.5px);
}
.protected__benefits-wrapper {
  background: transparent;
  padding: 0;
  position: absolute;
  width: 580px;
  bottom: -50px;
  right: 0;
}
.protected__benefits-wrapper .protected__benefits-image {
  width: 100%;
  height: 100%;
}
.protected__benefits-wrapper .protected__benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Footer */
.footer_wrapper{
  padding: 54px 0px 38px;
  background-color: var(--primary-color);
}
.main__footer_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.left_content_col{
  width: calc(24% - 16px);    
}
.left_content_col a{    
  outline: none;
  border: none;
  text-decoration: none;
  height: 100%;
  width: 100%;
  display: flex;
}
.left_content_col a img{
  height: 100%;
  width: 100%;
}
.right_content_col{
  width: calc(76% - 16px);    
}
.right_content_col ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
}
.right_content_col ul li{
  width: calc(33.33% - 6px);
  padding: 0px;
  margin: 0px;   
}
.right_content_col ul li h2{
  font-size: 24px;
  line-height: 33px;
  font-weight: var(--font-bold);
  color: var(--white-color);
  font-family: var(--font-family-heading);
  margin-bottom: 2px;
  position: relative;
}
.right_content_col ul li h2::after{
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: var(--white-color);
  bottom: 2px;
  left:0px;
}
.right_content_col ul li a{
  display: block;  
  margin-bottom: 10px;
}
.right_content_col ul li a:nth-last-child(1){
  margin-bottom: 0px;
}
.right_content_col ul li a span{
  font-size: 16px;
  color: var(--white-color);
  font-family: var(--font-family-body-font);
  font-weight: 500;
  line-height: 30px;
  border-bottom: 1px solid var(--white-color);
}
/* Footer */
.handle__swiper_wrapper{
/*   max-width: 81.2%; */
  margin-left: auto;
  padding-left: 15px;
}
.swiper-button-disabled{
  opacity: 0 !important;
}
.active__sidebar{
    overflow: hidden !important;
}



/* Leadership Page Css Start Here */

.leadership__banner .hero__banner-block {
  padding: 81px 184px 69px;
}
.leaders__meet .protected__detail p{
  font-weight: var(--font-bold);
  font-size: 24px;
  line-height: 40px;
}
.leaders__meet .protected__row{
  position: relative;
}
.leader__meet-img{
  max-width: 565px;
  width: 100%;
  position: absolute;
  top: 54.5%;
  left: 0px;
  transform: translate(0px, -50%);
}
.leader__meet-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.leaders__meet .protected__column {
  width: calc(50% - 5.5px);
}
.minded__colleagues{
  padding: 75px 0px 77px;
}
.minded__colleagues-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10px;
}
.minded__colleagues-text--col{
  width: calc(47.87% - 5px);
}
.minded__colleagues-video--col{
  width: calc(51.93% - 5px);
}
.minded__text-wrapper h2{
  font-size: 48px;
  line-height: 50px;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  margin-bottom: 6px;
}
.minded__text-wrapper p{
  font-size: 20px;
  line-height: 30px;
  color: var(--black-color);
  font-weight: var(--font-medium);
  margin-bottom: 0px;
}
.colleagues__video-wrapper{
  padding: 15px 15px;
  background-color: var(--white-color);
/*   display: flex; */
  height: 349px;
}
.colleagues__video-wrapper div{
  width: 100%;
  height: 100%;
}
.colleagues__video-wrapper img, .colleagues__video-wrapper video, .colleagues__video-wrapper iframe{
  width: 100%;
  height: 100%;
}

.rich__bracken-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  position: relative;
}
.rich__bracken-img--col{
  width: calc(48.8% - 16px);
}
.rich__bracken-txt--col{
  width: calc(51.2% - 16px);
}
.rich__bracken-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rich__bracken-text--wrapper h2{
  font-size: 48px;
  line-height: 50px;
  font-weight: var(--font-bold);
  color: var(--white-color);
  margin-bottom: 11px;
}
.rich__bracken-text--wrapper p{
  font-size: 20px;
  line-height: 30px;
  font-weight: var(--font-medium);
  color: var(--white-color);
  margin-bottom: 0px;
}
.accomodations{
  padding: 67px 0px 64px;
}
.accomodations__txt-wrapper{
  max-width: 565px;
}
.accomodations__txt-wrapper h2{
  font-size: 48px;
  line-height: 50px;
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: 11px;
}
.accomodations__txt-wrapper p{
  font-size: 20px;
  line-height: 30px;
  font-weight: var(--font-medium);
  color: var(--black-color);
  margin-bottom: 22px;
}
.rich__bracken-text--wrapper{
  padding: 38px 0px 53px;
}
.rich__bracken-img {
  width: 565.05px;
  height: 618px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--light-gray-color);
  display: flex
;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translate(0px, -50%);
}

/* Leadership Page Css End Here */


/* Join MSTA Page Css Start Here */
.join__msta-btn{
  margin-top: 18px;
}
.member__benefits{
  padding: 61px 0px 118px;
}
.member__benefits-title{
  max-width: 565px;
  margin-bottom: 30px;
}
.member__benefits-title h2{
  font-size: 48px;
  line-height: 50px;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  margin-bottom: 0px;
}
.member__benefits-row{
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0px -14.5px;
  row-gap: 28px;
}
.member__benefits-column{
  width: 50%;
  padding: 0px 14.5px;
}
.member__benefits-card{
  width: 100%;
  height: 100%;
  background-color: var(--deep-purple-color);
  padding: 27px 18px 23px 62px;
  border-radius: 10px;
  position: relative;
}
.benefits__card-star{
  width: 37.4px;
  height: 42.8px;
  position: absolute;
  top: 21px;
  left: 17px;
}
.benefits__card-star img, .benefits__card-star svg{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.member__benefits-card h3{
  font-size: 30px;
  line-height: 30px;
  font-weight: var(--font-semi-bold);
  color: var(--brighten-yellow);
  margin-bottom: 18px;
}
.member__benefits-card p{
  font-size: 20px;
  line-height: 30px;
  font-weight: var(--font-medium);
  color: var(--white-color);
  margin-bottom: 0px;
  max-height: 150px;
  overflow-y: auto;
}
.member__benefits-column--fill{
  width: 100%;
  padding: 0px 14.5px;
}
.member__benefits-video{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.member__benefits-video img, .member__benefits-video svg, .member__benefits-video video, .member__benefits-video iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video__player-btn{
  width: 147px;
  height: 147px;
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0px;
  right: 0px;
  margin: 0 auto;
  background-color: var(--brighten-yellow);
  border: 1px solid var(--brighten-yellow);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.video__player-btn svg, .video__player-btn img{
  width: 82px;
  height: 82px;
  fill: var(--black-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.video__player-btn:hover{
  background-color: var(--soft-black-color);
  border-color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.video__player-btn:hover svg{
  fill: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.joining__msta .protected__detail{
  padding-top: 19px;
}
.tiers__pricing{
  padding: 100px 0px 56.5px;
}
.tiers__pricing-title{
  max-width: 570px;
  margin-bottom: 30px;
}
.tiers__pricing-title h2{
  font-size: 48px;
  line-height: 50px;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  margin-bottom: 12px;
}
.tiers__pricing-title p{
  font-size: 20px;
  line-height: 30px;
  color: var(--black-color);
  font-weight: var(--font-medium);
  margin-bottom: 0px;
}
.tiers__pricing-row{
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0px -15px;
  row-gap: 33px;
}
.tiers__pricing-col{
  width: 33.33%;
  padding: 0px 15px;
}
.tiers__block-card{
  background-color: var(--brighten-yellow);
  padding: 27px 19px;
  height: 100%;
  border-radius: 10px;
  text-align: center;
  display: block;
  width: 100%;
}
.tiers__block-card h3{
  font-size: 30px;
  line-height: 30px;
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: 21px;
}
.price__txt{
  font-size: 48px;
  line-height: 30px;
  color: var(--black-color);
  font-weight: var(--font-bold);
  margin-bottom: 10px;
}
.time__txt{
  font-size: 20px;
  line-height: 30px;
  color: var(--black-color);
  font-weight: var(--font-bold);
  margin-bottom: 0px;
}
.tiers__block-card span{
  font-size: 14px;
  line-height: 24px;
  color: var(--black-color);
  font-weight: var(--font-regular);
  display: block;
}
.member__application{
  padding: 56.5px 0px 112px;
}

.member__application-row{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.member__application-txt--col{
  width: calc(53.34% - 65px);
}
.member__application-links--col{
  width: calc(44.94% - 65px);
}
.member__application-title--txt h2{
  font-size: 48px;
  line-height: 50px;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  margin-bottom: 6px;
}
.member__application-title--txt p{
  font-size: 20px;
  line-height: 30px;
  font-weight: var(--font-regular);
  color: var(--black-color);
  margin-bottom: 0px;
}
.member__application-list ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.member__application-list ul li{
  display: block;
  margin-bottom: 21px;
}
.member__application-list ul li:nth-last-child(1){
  margin-bottom: 0px;
}
.member__application-list ul li a{
  background-color: var(--light-gray-color);
  width: 100%;
  padding: 13px 95px 13px 21px;
  position: relative;
  font-size: 24px;
  line-height: 30px;
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
  border-radius: 5px;
  min-height: 86px;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.member__application-list ul li a span {
  width: 53px;
  height: 53px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translate(0%, -50%);
  padding: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.member__application-list ul li a span svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.member__application-list ul li a:hover{
  background-color: var(--deep-purple-color);
  color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.member__application-list ul li a:hover span {
  background-color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* Join MSTA Page Css End Here */

/* Blog MSTA Page Css Start Here */

.custom__badge {
  padding: 1px 10px;
  background-color: var(--brighten-yellow);
  border-radius: 5px;
  display: inline-block;
}
.custom__badge span {
  text-transform: uppercase;
  color: var(--black-color);
  font-size: 12px;
  font-family: var(--font-family-body-font);
  font-weight: var(--font-semi-bold);
  display: block;
}
.custom__button-content {
  padding: 12px 24.43px;
  background-color: var(--brighten-yellow);
  color: var(--black-color);
  font-size: 20px;
  line-height: 24px;
  font-family: var(--font-family-body-font) !important;
  font-weight: var(--font-semi-bold) !important;
  border: 1px solid var(--brighten-yellow);
  text-transform: capitalize;
  letter-spacing: 0px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.custom__button-content:hover {
  background-color: var(--black-color);
  color: var(--white-color);
  border-color: var(--white-color);
}

.featured__stories {
  padding: 82px 0 120px;
}
.featured__stories-top--row h2 {
  font-size: 48px;
  line-height: 50px;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  margin-bottom: 25px;
}
.featured__stories .featured__stories-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 31px;
}

/* Featured Stories Image Content  */
.featured__stories-row .featured__stories-image-col {
  width: calc(50% - 15.5px);
  height: 100%;
}
.featured__stories-image--wrapper {
  max-width: 100%;
  width: 100%;
}
.featured__stories-image--wrapper .card_main_wrapper {
  height: 613px;
}

/* Featured Stories Listing  */
.featured__stories-row .featured__stories-listing-col {
  width: calc(50% - 15.5px);
  height: 100%;
}
.featured__stories-card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 29px;
}
.featured__stories-card-wrapper .featured__stories-card {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  column-gap: 31px;
}
.featured__stories-card-image--wrapper {
  min-width: 268px;
  width: 268px;
  height: 185px;
  border-radius: 5px;
  overflow: hidden;
}
.featured__stories-card-image--wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.featured__stories-card:hover img {
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.featured__stories-card--info h3 {
  font-size: 24px;
  line-height: 28px;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  margin: 8px 0 6px;
}
.featured__story-time {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 2px;

}
.featured__story-timeImage-wrapper {
  width: 19px;
  height: 19px;
  display: flex;
}
.featured__story-timeImage-wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured__story-time span {
  font-size: 14px;
  line-height: 28px;
  font-family: var(--font-family-body-font);
  font-weight: var(--font-regular);
  color: var(--soft-black-color);
 word-break: break-word;
}
.featured__more-wrapper span, .featured__more-wrapper a {
  gap: 10px;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--font-family-body-font) !important;
  font-weight: var(--font-bold) !important;
  color: var(--soft-black-color) !important;
  display: inline-flex;
  align-items: center;
  gap: 0px;
}
.featured__more-wrapper span svg, .featured__more-wrapper a svg {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-left: 5px;
  width: 28px;
  height: 12px;
  object-fit: contain;
}
.featured__more-wrapper span:hover svg, .featured__more-wrapper a:hover svg {
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Rebuilding Content */
.building__section_main_wrapper {
  background-image: url(../imgs/fall_plum.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #31063d;
  border-radius: 5px;
}
.building__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  position: relative;
}
.building__content-img--col {
  width: calc(48.8% - 16px);
}
.building__content-txt--col {
  width: calc(51.2% - 16px);
}
.building__content-text--wrapper {
  padding: 57px 0px;
}
.building__content-text--wrapper h2 {
  font-size: 48px;
  line-height: 50px;
  font-weight: var(--font-bold);
  color: var(--white-color);
  margin: 14px 0 10px;
}
.building__content-text--wrapper p {
  font-size: 20px;
  line-height: 30px;
  font-weight: var(--font-medium);
  color: var(--white-color);
  margin-bottom: 14px;
}
.building__content-text--wrapper .custom__button-content {
  background-color: var(--brighten-yellow);
  color: var(--black-color);
  border: 1px solid var(--brighten-yellow);
}
.building__content-text--wrapper .custom__button-content:hover {
  background-color: var(--black-color);
  color: var(--white-color);
  border-color: var(--white-color);
}

/* Building Image  */
.building__content-img {
  width: 565.05px;
  height: 559px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--light-gray-color);
  display: flex;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0px, -50%);
}
.building__content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Events Section  */
.events__section {
  padding: 82px 0 173px;
}
.events__page-section{
  padding: 82px 0 110px;
}
.events__section-wrapper h2 {
  font-size: 48px;
  line-height: 50px;
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: 0;
}
.events__section-buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 22px 0 39px;
  column-gap: 33px;
  row-gap: 24px;
}
.events__section-buttons .event__btn {
  min-width: 168px;
  text-align: center;
  padding: 15px 10px;
  background-color: var(--light-gray-color);
  border-radius: 5px;
  box-sizing: border-box;
  border-color: transparent;
  font-size: 24px;
  line-height: 30px;
  font-family: var(--font-family-body-font);
  font-weight: var(--font-semi-bold);
  color: var(--deep-purple-color);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.events__section-buttons .event__btn.active,
.events__section-buttons .event__btn:hover {
  background-color: var(--deep-purple-color);
  color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.events__page-section .events__section-buttons .event__btn {
  padding: 28px 14px 24px;
}
.events__section-listing {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 28px;
  row-gap: 29px;
}
.events__section-listing .featured__stories-card {
  width: calc(50% - 14px);
}
.events__section-pagination {
  margin-top: 58px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  column-gap: 31px;
  row-gap: 15px;
}
.events__section-pagination .pagination__btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 20px;
  line-height: 24px;
  font-family: var(--font-family-body-font);
  font-weight: var(--font-semi-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 13px 11px;
  box-sizing: border-box;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.events__section-pagination .pagination__btn.active,
.events__section-pagination .pagination__btn:hover {
  background-color: var(--white-color);
  color: var(--soft-black-color);
}

/* Newsletter Section  */
.events__page-newsletter{
  margin-bottom: 42px;
}
.blog__page-newsletter{
  margin-bottom: 58px;
}
.newsletter__section-wrapper {
  padding: 67px 0px 35px;
  background-image: url("//48516061.fs1.hubspotusercontent-na1.net/hubfs/48516061/raw_assets/public/msta-custom-theme/images/fall-red.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  background-color: var(--primary-color);
}
.newsletter__row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
.newsletter__column {
  width: calc(50% - 15.5px);
}
.newsletter__image-content {
  background: transparent;
  padding: 0;
  width: 580px;
  min-height: 359px;
  margin-top: -175px;
}
.newsletter__image-content .newsletter__image-wrapper {
  width: 100%;
  height: 100%;
}
.newsletter__image-content .newsletter__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter__details h2 {
  font-size: 48px;
  line-height: 50px;
  color: var(--white-color);
  font-weight: var(--font-bold);
  margin-bottom: 18px;
}
.newsletter__details p {
  font-size: 20px;
  line-height: 30px;
  color: var(--white-color);
  font-weight: var(--font-medium);
  margin-bottom: 24.53px;
  max-width: 550px;
}

.newsletter__form {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  column-gap: 11px;
}
.newsletter__form .custom__button-content {
  background-color: var(--brighten-yellow);
  color: var(--black-color);
  border: 1px solid var(--brighten-yellow);
}
.newsletter__form .custom__button-content:hover {
  background-color: var(--black-color);
  color: var(--white-color);
  border-color: var(--white-color);
}
.newsletter__input-wrapper {
  height: 100%;
  flex: 1;
}
.newsletter__input-wrapper input {
  width: 100%;
  height: 100%;
  padding: 9.5px 27px;
  border: 1px solid var(--white-color);
  outline: none;
  font-size: 24px;
  line-height: 30px;
  font-family: var(--font-family-body-font);
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
}
.newsletter__input-wrapper input::placeholder {
  font-size: 24px;
  line-height: 30px;
  font-family: var(--font-family-body-font);
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
  vertical-align: center;
}
/* Blog MSTA Page Css End Here */

/* Events MSTA Page Css End Here */
.region__events {
  padding: 100px 0 88px;
}
.region__events h2 {
  font-size: 48px;
  line-height: 50px;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  margin: 0 0 39px 0px;
}
.region__events-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  column-gap: 27px;
  row-gap: 34px;
}
.region__events-column {
  width: calc(calc(100% - 68px) / 3);
}
.region__events-column .card_main_wrapper {
  width: 100%;
  height: 446px;
}

/* Webcasts  */
.webcasts__section-wrapper {
  padding: 67px 0px;
  background-image: url("//48516061.fs1.hubspotusercontent-na1.net/hubfs/48516061/raw_assets/public/msta-custom-theme/images/summer-yellow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  background-color: var(--brighten-yellow);
  position: relative;
}
.webcasts__row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}
.webcasts__column {
  width: calc(50% - 15.5px);
  position: relative;
}

.webcasts__details h2 {
  font-size: 48px;
  line-height: 50px;
  color: var(--soft-black-color);
  font-weight: var(--font-bold);
  margin-bottom: 10px;
}
.webcasts__details p {
  font-size: 20px;
  line-height: 30px;
  color: var(--soft-black-color);
  font-weight: var(--font-medium);
  margin-bottom: 0;
  max-width: 550px;
}
.webcasts__details ul {
  margin: 0;
  padding: 0;
  list-style: disc;
  padding-left: 30px;
  max-width: 520px;
  margin-bottom: 19px;
}
.webcasts__details ul li {
  font-size: 20px;
  line-height: 30px;
  color: var(--soft-black-color);
  font-weight: var(--font-medium);
}
.webcasts__details .custom__button-content {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
}
.webcasts__details .custom__button-content:hover {
  background-color: var(--brighten-yellow);
  border-color: var(--soft-black-color);
  color: var(--soft-black-color);
}
.webcasts__image-content {
  background: transparent;
  padding: 0;
  max-width: 570px;
  max-height:462px;
  width: 100%;
  margin: 0;
  bottom: -112px;
  position: absolute;
}
.webcasts__image-content .webcasts__image-wrapper {
  width: 100%;
  height: 100%;
}
.webcasts__image-content .webcasts__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NewLetter Css Start Here */
.newsletter__details .hs_cos_wrapper_type_form h3{
  display: none;
}
.newsletter__details .hs_cos_wrapper_type_form form{
  background-color: transparent;
  position: relative;
}
.newsletter__details .hs_submit{
  position: absolute;
  top: 0px;
  right: 0px;
}
.newsletter__details .hs_submit .hs-button{
  padding: 12px 24.43px;
  background-color: var(--brighten-yellow);
  color: var(--black-color);
  font-size: 20px;
  line-height: 24px;
  font-family: var(--font-family-body-font);
  font-weight: var(--font-semi-bold);
  border: 1px solid var(--brighten-yellow);
  text-transform: capitalize;
  letter-spacing: 0px;
  cursor: pointer;
  border-radius: 0px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsletter__details .hs_submit .hs-button:hover {
  background-color: var(--black-color);
  color: var(--white-color);
  border-color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.newsletter__details .hs_cos_wrapper_type_form .hs-form-field{
  margin-bottom: 0px;
  max-width: calc(100% - 158px);
}
.newsletter__details .hs_cos_wrapper_type_form .hs-form-field input{
  width: 100%;
  height: 100%;
  padding: 9.5px 27px;
  border: 1px solid var(--white-color);
  outline: none;
  border-radius: 0px !important;
  font-size: 24px;
  line-height: 30px;
  font-family: var(--font-family-body-font);
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
}
.newsletter__details .hs_cos_wrapper_type_form .hs-form-field input::placeholder{
  color: var(--black-color);
}
.newsletter__details .hs_cos_wrapper_type_form .hs_email label{
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.newsletter__details .hs_cos_wrapper_type_form .hs-error-msgs li label{
  opacity: 1;
  position: relative;
  visibility: visible;
}
.newsletter__details .hs_cos_wrapper_type_form .hs-error-msg, .newsletter__details .hs_error_rollup li label{
  margin: 0px !important;
  font-size: 16px;
  font-style: italic;
  color: #FFFFFF;
}
.newsletter__details .hs_cos_wrapper_type_form .hs-error-msgs li{
  margin: 8px 0px;
}
/* .newsletter__details .hs_cos_wrapper_type_form .hs_email ~ .hs_error_rollup{
  display: none !important;
} */
/* .newsletter__details .submitted-message{
  background-color: transparent !important;
  border: none !important;
  color: #4bff00;
  font-size: 20px;
  font-weight: var(--font-medium);
  line-height: 30px;
} */
/* NewLetter Css Start Here */

.dnd-section .dnd-column{
  padding: 0px !important;
}
.blue-bg .protected__wrapper{
  background-image: url("//48516061.fs1.hubspotusercontent-na1.net/hubfs/48516061/raw_assets/public/msta-custom-theme/images/teacher-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #31063d;
}

.custom__badge-row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.leaders__meet .protected__wrapper{
  padding: 99px 0px;
}



/* Tillie Page Css Start Here */
.hero__banner--secondary{
  padding-bottom: 0!important;
}
.tillie__banner .protected__wrapper{
  padding: 17px 0px 11px;
}
.tillie__img-wrapper{
  width: 100%;
  display: flex;
}
.tillie__img-wrapper img{
  width: 100%;
  height: 100%;
}
.tillie__banner .protected__row{
  align-items: center;
}
.tillie__banner .protected__column-txt{
  width: calc(53% - 67px);
}
.tillie__banner .protected__column-img{
  width: calc(47% - 67px);
}

.help__block{
  padding: 69px 0px 27px;
}
.help__ctm-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.help__ctm-column{
  width: calc(50% - 15px);
}
.help__need-img{
  width: 100%;
  height: 365px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--light-gray-color);
}
.help__need-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.help__need-txt h2{
  font-size: 48px;
  line-height: 50px;
  color: var(--primary-color);
  font-family: var(--font-family-heading);
  font-weight: var(--font-bold);
  margin-bottom: 23px;
}
.help__need-txt p{
  font-size: 20px;
  line-height: 30px;
  color: var(--black-color);
  font-family: var(--font-family-body-font);
  font-weight: var(--font-medium);
  margin-bottom: 0px;
}
.help__need-txt .help__need-btn{
  background-color: var(--primary-color);
  padding: 13px 35.38px;
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  color: var(--white-color);
  font-size: 20px;
  line-height: normal;
  font-family: var(--font-family-body-font);
  font-weight: var(--font-semi-bold);
  text-transform: capitalize;
  margin-top: 17px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.help__need-txt .help__need-btn:hover{
  background-color: var(--brighten-yellow);
  border-color: var(--black-color)!important;
  color: var(--black-color);
}
.tillie__chat{
  margin-top: 42px;
  width: 100%;
}
.prompts{
  padding: 27px 0px 85px;
}

.prompts__title{
  margin-bottom: 35px;
}
.prompts__title h2{
  font-size: 48px;
  line-height: 50px;
  color: var(--primary-color);
  font-family: var(--font-family-heading);
  font-weight: var(--font-bold);
  margin-bottom: 0px;
}
.prompts__accordion-item details{
  width: 100%;
  margin-bottom: 27px;
}
.prompts__accordion-item details:nth-last-child(1){
  margin-bottom: 0px;
}
.prompts__accordion-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 28px 100px 24px 21px;
  background-color: var(--light-gray-color);
  border-radius: 5px;
  font-size: 24px;
  line-height: 30px;
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--font-family-body-font);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.prompts__accordion-item summary::-webkit-details-marker {
  display: none;
}
.prompts__accordion-item details > summary {
  list-style-type: none;
}
.accordion__icon{
  width: 53px;
  height: 53px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion__icon svg{
  width: 24px;
  height: 38px;
  fill: var(--black-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.prompts__accordion-item details[open] summary {
  background-color: var(--deep-purple-color);
  color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.prompts__accordion-item details[open] summary .accordion__icon{
  background-color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion__content{
  padding: 24px 31px 10px 22px;
}
.accordion__content p{
  font-size: 20px;
  line-height: 30px;
  color: var(--black-color);
  font-weight: var(--font-medium);
  font-family: var(--font-family-body-font);
  margin-bottom: 21px;
}
.accordion__content p:last-child{
  margin: 0;
}
.accordion__content a,
.accordion__content button{
  background-color: var(--primary-color);
  padding: 13px 25px;
  position: relative;
  font-size: 20px !important;
  line-height: normal !important;
  font-weight: var(--font-semi-bold) !important;
  font-family: var(--font-family-body-font) !important;
  color: var(--white-color) !important;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion__content a:hover,
.accordion__content button:hover{
  background-color: var(--deep-purple-color);
  color: var(--white-color) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* Tillie Page Css End Here */


/* Education MSTA CSS Start Here  */
.leadership__banner .hero__banner-txt--wrapper h1{
  margin-bottom: 3px;
}
.leadership__banner .hero__banner-txt--wrapper p{
  margin: 0;
}

.make__impact{
  padding:85px 0px 44.5px;
}
.make__impact .our__members-title__wrapper{
  max-width: 100%;
}
.make__impact .our__members-title__wrapper p{
  max-width: 100%;
}
.policy__priorities{
  padding: 44.5px 0px 44px;
}

.policy__priorities .help__need-img{
  height: 406px;
}
.adopted__resolutions{
  padding: 44px 0 73px;
}
.adopted__resolutions .help__ctm-row{
  flex-direction: row-reverse;
}
.adopted__resolutions .help__need-img {
  height: 286px;
}

/* Capital Visit  */
.capital__visit{
  padding: 73px 0 40px;
}
.capital_visit_main_wrapper {
  background-image: url("//48516061.fs1.hubspotusercontent-na1.net/hubfs/48516061/raw_assets/public/msta-custom-theme/images/fall-red.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--primary-color);
  border-radius: 5px;
}
.capital_visit_wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
/* Capital Left  */
.capital_left_col {
  width: calc(50% - 15px);
}
.capital_vector_image {
  width: 100%;
  margin-top: -40px;
  display: flex;
}
.capital_vector_image img {
  height: 100%;
  width: 100%;
}
/* Capital Right  */
.capital_right_col {
  width: calc(50% - 15px);
  position: relative;
}
.capital_right_title {
  margin: 41px 0px 46px;
  position: relative;
  z-index: 1;
}
.capital_right_title h2 {
  color: var(--white-color);
  font-size: 48px;
  line-height: 50px;
  margin-bottom: 15px;
  font-family: var(--font-family-heading);
  font-weight: var(--font-bold);
}
.capital_right_title p {
  color: var(--white-color);
  font-size: 20px;
  font-family: var(--font-family-body-font);
  line-height: 30px;
  margin-bottom: 27px;
  font-weight: var(--font-regular);
  padding: 0px;
}
.capital_right_title p span {
  font-weight: var(--font-bold);
}
.capital_right_title a,
.capital_right_title button {
  display: inline-block;
  padding: 12px 24.39px;
  border: 1px solid var(--brighten-yellow);
  background-color: var(--brighten-yellow);
  color: var(--black-color) !important;
  font-size: 20px;
  font-family: var(--font-family-body-font);
  line-height: normal;
  text-align: center;
  font-weight: var(--font-semi-bold) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.capital_right_title a:hover,
.capital_right_title button:hover{
  background-color: var(--soft-black-color);
  color: var(--white-color) !important;
  border-color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/* Education MSTA CSS End Here  */




/* Legal Services MSTA CSS Start Here  */

.help__need{
  padding: 96px 0 62px;
}  

/* Contact Legal Services  */
.legal_services_main_wrapper {
  background-image: url(../imgs/fall_plum.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #31063d;
  border-radius: 5px;
}
.legal_services_wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.legal_services_left_col {
  width: calc(51.5% - 22px);
  position: relative;
}
.legal_services_title {
  margin: 44px 0px 53px;
  position: relative;
  z-index: 1;
}
.legal_services_title h2 {
  color: var(--white-color);
  font-size: 48px;
  font-family: var(--font-family-heading);
  line-height: 50px;
  margin-bottom: 7px;
  font-weight: var(--font-bold);
}
.legal_services_title ul{
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.legal_services_title ul li{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 46px;
}
.legal_services_title ul li:last-child{
  align-items: flex-start;
}
.legal_services_title .legal__icon{
  min-width: 39px;
  width: 39px;
  height: 34px; 
}
.legal_services_title .legal__icon img,
.legal_services_title .legal__icon svg{
  width: 100%;
  height: 100%;
  object-fit: contain; 
}
.legal_services_title p {
  color: var(--white-color);
  font-size: 24px;
  font-family: var(--font-family-body-font);
  line-height: 30px;
  margin-bottom: 0;
  font-weight: var(--font-medium);
}
.legal_services_title p span {
  font-weight: var(--font-bold);
}
.legal_services_title ul li a{
  color: var(--white-color);
}
.legal_services_title ul li:last-child p{
  font-size: 20px;
}
.legal_services_btn {
  display: inline-block;
  padding: 12px 26.4px;
  border: 1px solid var(--brighten-yellow);
  background-color: var(--brighten-yellow);
  color: var(--black-color);
  font-size: 20px;
  font-family: var(--font-family-body-font);
  line-height:normal;
  text-align: center;
  font-weight: var(--font-semi-bold) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 25px;
}
.legal_services_btn:hover{
  background-color: var(--soft-black-color);
  color: var(--white-color);
  border-color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.legal_services_right_col {
  width: calc(48.5% - 22px);
}
.legal_services_vector_image {
  width: 100%;
  margin-top: -49px;
  display: flex;
}
.legal_services_vector_image img {
  height: 100%;
  width: 100%;
}


/* Legal Resources  */

.legal__resources{
  padding: 104px 0 52px;
}

/* Legal Content  */
.legal__content-section{
  padding: 52px 0 97px ;
}
.legal__content-title{
  margin-bottom: 48px;
  position: relative;
}
.legal__content-title h2{
  font-size: 48px;
  line-height: 50px;
  font-weight: var(--font-bold);
  font-family: var(--font-family-heading);
  color: var(--primary-color);
  margin: 0;
}

.legal__content-wrapper h1,
.legal__content-wrapper h2,
.legal__content-wrapper h3,
.legal__content-wrapper h4,
.legal__content-wrapper h5,
.legal__content-wrapper h6 {
  font-family: var(--font-family-heading);
  line-height: 1.2;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  margin-bottom: 20px;
}

.legal__content-wrapper h1 { font-size: 48px; }
.legal__content-wrapper h2 { font-size: 40px; }
.legal__content-wrapper h3 { font-size: 32px; }
.legal__content-wrapper h4 { font-size: 28px; }
.legal__content-wrapper h5 { font-size: 24px; }
.legal__content-wrapper h6 { font-size: 20px; }

.legal__content-wrapper p,
.legal__content-wrapper span,
.legal__content-wrapper a,
.legal__content-wrapper li,
.legal__content-wrapper pre,
.legal__content-wrapper blockquote {
  font-size: 20px;
  line-height: 30px;
  font-weight: var(--font-medium);
  font-family: var(--font-family-body-font);
  color: var(--black-color);
}
.legal__content-wrapper ul,
.legal__content-wrapper ol {
  padding-left: 25px;
  margin-bottom: 20px;
}
.legal__content-wrapper a {
  color: var(--theme-blue-color) !important;
  text-decoration: underline !important;
  transition: all 0.3s ease-in-out;
}
.legal__content-wrapper a:hover {
  color: var(--primary-color) !important;
}
.legal__content-wrapper blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  background-color: var(--light-gray-color);
  font-style: italic;
  margin: 20px 0;
}
.legal__content-wrapper ul li::marker {
  font-weight: var(--font-bold);
}
.legal__content-wrapper ol li::marker {
  font-weight: var(--font-bold);
}
/* Legal Services MSTA CSS End Here  */


/* About MSTA CSS End Here  */
.unified__voice{
    padding: 88px 0 26px;
}
.unified__voice-title{
  margin-bottom: 23px;
}
.unified__voice-title h2{
  font-size: 48px;
  line-height: 50px;
  font-weight: var(--font-bold);
  font-family: var(--font-family-heading);
  color: var(--primary-color);
  margin:0;
}
.unified__voice-row{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.unified__voice-col{
  width: calc(50% - 16px);
}
.unified__voice-col p{
  font-size: 20px;
  line-height: 30px;
  font-family: var(--font-family-body-font);
  color: var(--black-color);
  font-weight: var(--font-medium);
  margin: 0;
}
/* joining msta  */
.about__joining-msta .protected__wrapper{
  background-image: url("//48516061.fs1.hubspotusercontent-na1.net/hubfs/48516061/raw_assets/public/msta-custom-theme/images/fall-red.png");
}
.about__joining-msta  .protected__paper-texture{
  background-image: url("//48516061.fs1.hubspotusercontent-na1.net/hubfs/48516061/raw_assets/public/msta-custom-theme/images/paper-texture.png");
}
.about__joining-msta .protected__detail{
  padding-top: 19px;
}


/* About Msta  */
.about__msta{
  padding: 26px 0 94px;
}
.about__msta .our__members-title__wrapper{
  margin: 0!important;
}
.about__msta .our__members-title__wrapper h2{
  margin: 0!important;
}
.about__govenance{
  padding:52px 0 39px;
}
.about-news__update_wrapper{
  padding:39px 0 81px;
}
.about__govenance .member__benefits-title{
  margin-bottom: 26px;
}
.about__govenance .member__benefits-row{
  margin: 0px -15px;
  row-gap: 30px;
}
.member__benefits-column {
  padding: 0px 15px;
}
.about-news__update_wrapper .handle__swiper_wrapper{
  padding-left: 0;
}
.about-news__update_wrapper .news_update_main{
  margin-bottom: 31px;
}
/* About MSTA CSS End Here  */



/* Professional Learning MSTA CSS Start Here  */
.professional-prompts{
  padding:116px 0 106px; 
}
.behaviors__section .webcasts__section-wrapper{
  padding: 37px 0 38px;
  background-image: url(../imgs/summer-yellow.png);
}
.behaviors__section .custom__button-content{
  margin-top: 15px;
}
.behaviors__section .custom__button-content:hover{
  background-color: var(--soft-black-color);
  color: var(--white-color);
}


.learning__events{
  padding: 75px 0 88px;
}
.learning__events .featured__stories-top--row h2{
  margin-bottom: 15px;
}

/* Graduate Section Content */
.graduate__section{
  margin-bottom: 33px;
}
.graduate__section_main_wrapper {
  background-image: url(../imgs/fall_plum.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #31063d;
  border-radius: 5px;
  padding: 32px 0 43px;
}
.graduate__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  position: relative;
}
.graduate__content-img--col {
  width: calc(50% - 15px);
}
.graduate__content-img {
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: flex;
}
.graduate__content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Text Content  */
.graduate__content-txt--col {
  width: calc(50% - 15px);
}
.graduate__content-text--wrapper h2 {
  font-size: 48px;
  line-height: 50px;
  font-weight: var(--font-bold);
  color: var(--white-color);
  margin-bottom: 13px;
}
.graduate__content-text--wrapper p {
  font-size: 20px;
  line-height: 30px;
  font-weight: var(--font-medium);
  color: var(--white-color);
  margin-bottom: 0;
}
.graduate__content-text--wrapper .custom__button-content {
  background-color: var(--brighten-yellow);
  color: var(--black-color);
  border: 1px solid var(--brighten-yellow);
  margin-top: 20px;
}
.graduate__content-text--wrapper .custom__button-content:hover {
  background-color: var(--black-color);
  color: var(--white-color);
  border-color: var(--white-color);
}


/* Professional Learning MSTA CSS End Here  */

.blog-post.blog-post--full-width{
  max-width: 100% !important;
}


/* Service Coordinators */

.service__coordinators{
  padding: 131px 0px 56px;
}
.service__coordinators-title{
  margin-bottom: 34px;
}
.service__coordinators-title h2{
  font-size: 48px;
  line-height: 50px;
  font-weight: var(--font-bold);
  font-family: var(--font-family-heading);
  color: var(--primary-color);
  margin-bottom: 0px;
}
.service__coordinators-list ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 34px;
  margin: 0px -14.5px;
}
.service__coordinators-list ul li{
  display: block;
  padding: 0px 14.5px;
  width: 33.33%;
}
.coordinators__list-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 19px 19px 20px 20px;
  background-color: var(--light-gray-color);
  border-radius: 5px;
  width: 100%;
}
.coordinators__list-img{
  width: 119px;
  height: 119px;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--white-color);
}
.coordinators__list-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coordinators__list-detail{
  width: calc(100% - 132px);
}
.coordinators__list-detail h3{
  font-size: 30px;
  line-height: 30px;
  font-weight: var(--font-bold);
  font-family: var(--font-family-heading);
  color: var(--black-color);
  margin-bottom: 0px;
}
.coordinators__list-detail p, .coordinators__list-detail a{
  font-size: 20px;
  line-height: 30px;
  font-weight: var(--font-medium);
  font-family: var(--font-family-body-font);
  color: var(--black-color);
  margin-bottom: 0px;
  display: block;
}
.region__officers{
  padding: 44.5px 0px 188.5px;
}
.region__officers-list{
  margin-bottom: 43px;
}
.region__officers-list h2{
  font-size: 48px;
  line-height: 50px;
  font-weight: var(--font-bold);
  font-family: var(--font-family-heading);
  color: var(--primary-color);
  margin-bottom: 15px;
}
.region__officers-list h3{
  font-size: 30px;
  line-height: 50px;
  font-weight: var(--font-bold);
  font-family: var(--font-family-heading);
  color: var(--primary-color);
  margin-bottom: 0px;
}
.region__officers-list ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  row-gap: 27px;
  margin: 0px -18.5px;
}
.region__officers-list ul li{
  display: block;
  padding: 0px 18.5px;
  width: 25%;
}
.region__list-content h4, .region__list-content h5{
  font-size: 24px;
  line-height: 28px;
  font-weight: var(--font-bold);
  font-family: var(--font-family-heading);
  color: var(--soft-black-color);
  margin-bottom: 0px;
}
.region__list-content p{
  font-size: 20px;
  line-height: 28px;
  font-weight: var(--font-regular);
  font-family: var(--font-family-body-font);
  color: var(--soft-black-color);
  margin-bottom: 0px;
}
.region__officers-wrapper .region__officers-list:nth-last-child(1){
  margin-bottom: 0px;
}
/* Service Coordinators */

/* Announcement Bar */
.announcement__bar{
  background-color: var(--secondary-color);
  padding: 10px 0px;
  position: relative;
  z-index: 9;
  text-align: center;
  display: block;
  width: 100%;
}
.announcement__bar p{
  font-size: 16px;
  line-height: 26px;
  color: var(--soft-black-color);
  font-weight: var(--font-medium);
  margin-bottom: 0;
}
/* Announcement Bar */

.region__hero .protected__wrapper{
  padding: 148px 0px 147px;
}
.region__hero .protected__benefits-wrapper {
    bottom: -120px;
}

/* Social Media Icons */
.social__media-list{
  margin-top: 30px;
}
.social__media-list ul{
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.social__media-list ul li{
  display: inline-flex;
}
.social__media-list ul li a{
  display: flex;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.social__media-list ul li a:hover{
  opacity: 0.8;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.social__media-list ul li a svg, .social__media-list ul li a img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: var(--white-color);
}
.social__media-list p{
  font-size: 16px;
  line-height: normal;
  color: var(--white-color);
  font-family: var(--font-family-heading);
  font-weight: var(--font-bold);
  margin-bottom: 20px;
}
/* Social Media Icons */



/* Mega Menu Css Start Here */
.main__header-wrapper{
  padding: 0px 0px;
}
.menu__items-links ul li a{
  padding: 43px 0px;
  align-items: center;
  gap: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu__items-links ul li a svg{
  width: 15px;
  height: 9px;
  fill: var(--black-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu__items-links ul li a:hover svg{
  fill: var(--primary-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mega__menu-wrapper{
  position: absolute;
  top: 100%;
  left: 0px;
  width: 100%;
  background-color: var(--white-color);
  padding: 50px 0px;
  box-shadow: 0px 5px 10px #00000052;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu__items-links ul li:hover a + .mega__menu-wrapper{
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mega__menu-row{
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0px -15px;
}
.mega__menu-col{
  width: 33.33%;
  padding: 0px 15px;
}
.mega__menu-content h2{
  font-size: 24px;
  line-height: 30px;
  color: var(--black-color);
  margin-bottom: 8px;
  font-family: var(--font-family-body-font);
  font-weight: var(--font-bold);
}
.mega__menu-content p{
  font-size: 16px;
  line-height: normal;
  font-weight: var(--font-regular);
  color: var(--black-color);
  margin-bottom: 24px;
}
.main__header-wrapper .mega__menu-content a, .sidebar__mega-menu .mega__menu-content a{
  font-size: 16px !important;
  line-height: normal !important;
  font-family: var(--font-family-body-font) !important;
  font-weight: var(--font-regular) !important;
  color: var(--black-color) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  position: relative;
  padding: 0px !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mega__menu-content a svg{
  width: 20px !important;
  height: 21px !important;
  fill: var(--black-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mega__menu-content a::after{
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: var(--black-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mega__menu-content a:hover{
  color: var(--primary-color) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mega__menu-content a:hover svg{
  fill: var(--primary-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mega__menu-content a:hover::after{
  background-color: var(--primary-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mega__menu-img{
  width: 100%;
  height: 220px;
  background-color: var(--light-gray-color);
  display: flex;
}
.mega__menu-img img, .mega__menu-img svg, .mega__menu-img video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega__menu-links h3, .image__mega-menu-title{
  font-size: 24px;
  line-height: 30px;
  color: var(--black-color);
  margin-bottom: 8px;
  font-family: var(--font-family-body-font);
  font-weight: var(--font-bold);
}
.mega__menu-links ul{
  display: block !important;
}
.mega__menu-links ul li{
  display: flex !important;
  padding-left: 25px;
  position: relative;
  margin-bottom: 5px;
}
.mega__menu-links ul li:nth-last-child(1){
  margin-bottom: 0px;
}
.mega__menu-links ul li::before{
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 4px;
  height: 4px;
  background-color: var(--black-color);
  border-radius: 50%;
}
.mega__menu-links ul li a{
  font-size: 16px;
  font-weight: var(--font-regular) !important;
  line-height: normal;
  color: var(--black-color);
  font-family: var(--font-family-body-font) !important;
  padding: 0px !important;
}

.sidebar__links ul li summary{
  font-size: 20px;
  line-height: 24px;
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar__links ul li summary svg{
  width: 17px;
  height: 10px;
} 
.sidebar__mega-menu{
  background: #efefef;
  padding: 20px;
  margin-top: 5px;
}
.sidebar__links ul li details[open] summary svg{
  transform: scale(-1);
}
/* Mega Menu Css End Here */
details summary {
  list-style: none;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display: none;
}
.member__benefits-card a{
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid var(--brighten-yellow);
  background-color: var(--brighten-yellow);
  color: var(--black-color) !important;
  font-size: 20px;
  font-family: var(--font-family-body-font);
  line-height: 100%;
  text-align: center;
  font-weight: var(--font-semi-bold) !important;
  margin-top: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.member__benefits-card a:hover{
  background-color: var(--soft-black-color);
  color: var(--white-color) !important;
  border-color: var(--white-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Responsive Css Start Here */
@media screen and (max-width: 1500px) and (min-width: 1401px){
  .menu__items-links ul {
    gap: 20px;
  }
  .menu__items-links ul li a {
    gap: 5px;
  }
  .header__cta-btns {
    gap: 10px;
  }
  .menu__row {
    gap: 15px;
  }
  .header__cta-btns .secondary__bg-btn, .header__cta-btns .primary__bg-btn{
    padding: 13px 15px;
    font-size: 20px;
    line-height: 22px;
  }
  .menu__items-links ul li a {
    font-size: 20px;
    line-height: 22px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 1371px){
  .menu__items-links ul {
    gap: 20px;
  }
  .menu__items-links ul li a {
    gap: 5px;
  }
  .header__cta-btns {
    gap: 10px;
  }
  .menu__row {
    gap: 15px;
  }
  .header__cta-btns .secondary__bg-btn, .header__cta-btns .primary__bg-btn{
    padding: 13px 15px;
    font-size: 18px;
    line-height: 20px;
  }
  .menu__items-links ul li a {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 1370px) and (min-width: 1201px){
  .menu__items-links ul {
    gap: 15px;
  }
  .menu__row {
    gap: 15px;
  }
  .menu__items-links ul li a {
    font-size: 18px;
    line-height: 22px;
  }
  .secondary__bg-btn, .primary__bg-btn, .bg__white-btn, .protected__detail a, .upcoming__events-cta a, .msta_left_title a, .news_update__right_content a {
    padding: 10px 20px;
    font-size: 18px;
    line-height: 22px;
  }
  .header__cta-btns {
    gap: 15px;
  }
  .header__bar-list ul li a, .header__bar-list ul li button {
    font-size: 18px;
    line-height: 22px;
    gap: 5px;
  }
  .header__bar-list ul {
    gap: 20px;
  }
  .header__top-bar {
    padding: 15px 0px;
    margin-bottom: 0;
  }
  .main__header-wrapper {
    padding: 15px 0px;
  }
  .hero__banner {
    padding: 0px 0px 15px;
    height: calc(100vh - 160.72px);
  }
  .hero__banner-block {
    padding: 70px 140px 30px;
  }
  .our__members, .upcoming__events{
    overflow: hidden;
  }
  .msta_left_col {
    width: calc(52% - 10px);
  }
  .msta_left_title {
    margin: 40px 0px;
    padding-left: 35px;
  }
  .ring__image {
    top: -47px;
    left: -42px;
    width: 146.15px;
  }
  .news_update__left_content {
    max-width: 615px;
    width: 100%;
  }
  .news_update__right_content {
    max-width: 300px;
    width: 100%;
  }
  .msta__teahcer_pagination .swiper-button-next, .msta__teahcer_pagination .swiper-button-prev {
    height: 110px;
    width: 55px;
  }
  .right_content_col ul li {
    width: calc(33.33% - 10px);
  }
  .msta__teahcer_pagination .swiper-button-next img, .msta__teahcer_pagination .swiper-button-next svg, .msta__teahcer_pagination .swiper-button-prev img, .msta__teahcer_pagination .swiper-button-prev svg {
    width: 28px;
  }
  .leader__meet-img {
    top: 57.3%;
  }
  /* Education MSTA CSS Start Here */
  .capital_vector_image{
    margin-top: -28px;
  }
  /* Legal Services Page  */
  .legal_services_vector_image {
    margin-top: -32px;
  }
  /* Mega Menu */
  .menu__items-links ul {
    gap: 15px;
  }
  .header__cta-btns {
    gap: 10px;
  }
  .menu__items-links ul li a {
    padding: 38px 0px;
    gap: 5px;
  }
  .menu__items-links ul li a svg {
    width: 13px;
    height: 8px;
  }
  .mega__menu-wrapper {
    padding: 40px 0px;
  }
  .header__cta-btns .secondary__bg-btn, .header__cta-btns .primary__bg-btn{
    padding: 8px 15px;
  }
  .menu__items-links ul li a {
    font-size: 16px;
    line-height: 20px;
  }
  .menu__row {
    gap: 10px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 1101px){
  .header__top-bar {
    padding: 15px 0px;
  }
  .header__bar-list ul li a, .header__bar-list ul li button {
    font-size: 16px;
    line-height: 20px;
    gap: 5px;
  }
  .header__bar-list ul {
    gap: 20px;
  }
  .menu__items-links ul li a {
    font-size: 16px;
    line-height: 20px;
  }
  .secondary__bg-btn, .primary__bg-btn {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .menu__items-links ul {
    gap: 20px;
  }
  .header__logo-col {
    width: 113.58px;
  }
  .header__menu-col {
    width: calc(100% - 140px);
  }
  .header__cta-btns {
    gap: 10px;
  }
  .menu__row {
    gap: 20px;
  }
  .hero__banner {
    padding: 0px 0px 15px;
    height: auto;
  }
  .hero__banner-block {
    padding: 40px 100px 20px;
  }
  .star__layer {
    width: 80px;
    height: 86px;
    top: 8px;
    left: -90px;
  }
  .hero__banner-txt--wrapper h1 {
    font-size: 58px;
    line-height: 58px;
    margin-bottom: 10px;
  }
  .hero__banner-txt--wrapper p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    max-width: 100%;
  }
  .hero__banner-txt--wrapper {
    max-width: 590px;
  }
  .bg__white-btn{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .hero__links-wrapper {
    gap: 15px;
  }
  .protected__wrapper {
    padding: 60px 0px;
  }
  .protected__detail h2, .protected__detail h1 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .protected__detail p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    max-width: 100%;
  }
  .protected__detail a{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .protected__paper-texture {
    padding: 65px 25px 50px 35px;
    margin-bottom: -60px;
    min-height: 315px;
  }
  .protected__paper-texture p {
    font-size: 16px;
    line-height: 32px;
  }
  .protected__paper-texture span{
    font-size: 16px;
  }
  .protected__top-quote {
    width: 98px;
    height: 66px;
    top: -11px;
    left: -10px;
  }
  .protected__bottom-quote{
    width: 98px;
    height: 66px;
    bottom: -17px;
    right: -14px;
  }
  .our__members-title__wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .our__members {
    padding: 60px 0px 80px;
  }
  .our__members-title__wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
  .our__members-list ul li a {
    padding: 25px 75px 25px 20px;
    font-size: 20px;
    line-height: 26px;
  }
  .our__members-list ul {
    margin: 0px -7.5px;
    row-gap: 15px;
  }
  .our__members-list ul li {
    padding: 0px 7.5px;
  }
  .our__members-list ul li a span {
    width: 45px;
    height: 45px;
    right: 20px;
    padding: 7px;
  }
  .resources__image {
    max-width: 500px;
  }
  .resources__title h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .resources__title p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    max-width: 100%;
  }
  .resources__title {
    max-width: 445px;
  }
  .upcoming__events-row{
    margin: 0px -7.5px;
    row-gap: 15px;
  }
  .upcoming__events-column{
    padding: 0px 7.5px;
  }
  .upcoming__events-detail h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .upcoming__events-detail p {
    font-size: 18px;
    line-height: 28px;
  }
  .upcoming__events-cta a{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .upcoming__events {
    padding: 70px 0px 70px;
  }
  .upcoming__events-item {
    height: 380px;
  }
  .upcoming__event-card--txt {
    padding: 165px 15px 15px;
  }
  .upcoming__event-card--txt span {
    gap: 12px;
    font-size: 20px;
    line-height: 26px;
  }
  .msta_left_title h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .msta_left_title p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .msta_left_title a{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .msta_left_title {
    margin: 48px 0px;
  }
  .ring__image{
    display: none;
  }
  .news_update__left_content {
    max-width: 615px;
    width: 100%;
  }
  .news_update__right_content {
    max-width: 300px;
    width: 100%;
  }
  .news_update__left_content h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .news_update__left_content p {
    font-size: 18px;
    line-height: 28px;
  }
  .news_update__right_content a{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .msta__teahcer_pagination .swiper-button-next, .msta__teahcer_pagination .swiper-button-prev {
    height: 100px;
    width: 55px;
  }
  .inner_card_content span {
    gap: 10px;
    font-size: 20px;
    line-height: 26px;
  }
  .left_content_col {
    width: calc(20% - 20px);
  }
  .right_content_col {
    width: calc(80% - 20px);
  }
  .news__update_wrapper {
    padding: 60px 0px 60px;
  }
  .footer_wrapper {
    padding: 40px 0px 40px;
  }
  .right_content_col ul li h2 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .right_content_col ul li {
    width: calc(33.33% - 10px);
  }
  .handle__swiper_wrapper {
    padding-left: 0px;
  }


  /* Banners Addition Style  */
  .protected__benefits .protected__wrapper,
  .protected__benefits.protected__news .protected__wrapper {
    padding: 90px 0;
  }
  .protected__benefits h2, .protected__benefits h1 {
    font-size: 58px;
    line-height: 58px;
    margin-bottom: 3px;
  }
  .protected__benefits p {
    margin: 0;
  }
  .protected__benefits-wrapper.protected__paper-texture{
    padding: 20px 25px 7px 35px;
  }
  .msta__teahcer_pagination .swiper-button-next img, .msta__teahcer_pagination .swiper-button-next svg, .msta__teahcer_pagination .swiper-button-prev img, .msta__teahcer_pagination .swiper-button-prev svg {
    width: 26px;
  }
  /* Leadership */
  .leadership__banner .hero__banner-block {
    padding: 40px 100px 20px;
  }
  .leader__meet-img {
    max-width: 476.5px;
    top: 58%;
  }
  .leaders__meet .protected__detail p {
    font-size: 20px;
    line-height: 30px;
  }
  .minded__colleagues {
    padding: 85px 0px 50px;
  }
  .minded__text-wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .leadership__banner .hero__banner-block .hero__banner-txt--wrapper p{
    margin-bottom: 0px;
  }
  .minded__text-wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
  .rich__bracken-text--wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .rich__bracken-text--wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
  .rich__bracken-img--col {
    position: relative;
  }
  .rich__bracken-img {
    width: 100%;
    height: 525px;
  }
  .accomodations__txt-wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .accomodations__txt-wrapper p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .accomodations__txt-wrapper {
    max-width: 455px;
  }
  .accomodations {
    padding: 83px 0px 60px;
  }
  .leaders__meet .protected__detail{
    max-width: 524px;
  }
  /* Leadership */
  /* Join MSTA */
  .protected__benefits .protected__wrapper {
    padding: 60px 0 60px;
  }
  .member__benefits {
    padding: 60px 0px 60px;
  }
  .member__benefits-title h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .member__benefits-title {
    max-width: 445px;
    margin-bottom: 20px;
  }
  .benefits__card-star {
    width: 30px;
    height: 35px;
    top: 24px;
    left: 19px;
  }
  .member__benefits-card h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .member__benefits-card p {
    font-size: 18px;
    line-height: 28px;
    max-height: inherit;
    overflow-y: unset;
  }
  .member__benefits-card a{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .video__player-btn {
    width: 130px;
    height: 130px;
  }
  .video__player-btn svg, .video__player-btn img {
    width: 55px;
    height: 55px;
  }
  .tiers__pricing {
    padding: 60px 0px 30px;
  }
  .tiers__pricing-title h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .tiers__pricing-title p {
    font-size: 18px;
    line-height: 28px;
  }
  .tiers__pricing-title {
    max-width: 520px;
    margin-bottom: 20px;
  }
  .tiers__block-card h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .price__txt {
    font-size: 36px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .time__txt {
    font-size: 18px;
    line-height: 28px;
  }
  .tiers__block-card {
    padding: 25px 20px;
  }
  .member__application {
    padding: 30px 0px 60px;
  }
  .member__application-txt--col, .member__application-links--col {
    width: calc(50% - 30px);
  }
  .member__application-title--txt h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .member__application-title--txt p {
    font-size: 18px;
    line-height: 28px;
  }
  .member__application-list ul li a {
    padding: 13px 95px 13px 21px;
    font-size: 20px;
    line-height: 26px;
    min-height: 83px;
  }
  .colleagues__video-wrapper {
    height: 320px;
  }
  /* Join MSTA */
  .leaders__meet .protected__wrapper {
    padding: 85px 0;
  }
  /* Mega Menu */
  .menu__items-links ul {
    gap: 10px;
  }
  .header__cta-btns {
    gap: 10px;
  }
  .menu__items-links ul li a {
    padding: 38px 0px;
    gap: 5px;
  }
  .menu__items-links ul li a svg {
    width: 13px;
    height: 8px;
  }
  .mega__menu-wrapper {
    padding: 40px 0px;
  }
  .header__cta-btns .secondary__bg-btn, .header__cta-btns .primary__bg-btn{
    padding: 8px 15px;
  }
  .menu__items-links ul li a {
    font-size: 14px;
    line-height: 20px;
  }
  .menu__row {
    gap: 10px;
  }
}
@media screen and (max-width: 1200px) {
  /* Blog MSTA  */

  .custom__button-content {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }

  .featured__stories {
    padding: 60px 0 80px;
  }
  .featured__stories .featured__stories-row {
    row-gap: 15px;
  }
  .featured__stories-row .featured__stories-image-col {
    width: calc(45% - 7.5px);
  }
  .featured__stories-row .featured__stories-listing-col {
    width: calc(55% - 7.5px);
  }
  .featured__stories-top--row h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
  }
  .featured__stories-image--wrapper .card_main_wrapper {
    height: 514px;
  }
  .featured__stories-card-image--wrapper {
    min-width: 220px;
    width: 220px;
    height: 160px;
  }
  .featured__stories-card-wrapper {
    row-gap: 17px;
  }
  .featured__stories-card-wrapper .featured__stories-card {
    column-gap: 20px;
  }
  .featured__stories-card--info h3 {
    font-size: 20px;
    line-height: 26px;
    margin: 6px 0px 4px;
  }
  .featured__more-wrapper span, .featured__more-wrapper a {
    font-size: 16px;
    line-height: 24px;
  }
  .featured__more-wrapper span svg, .featured__more-wrapper a svg {
    width: 24px;
    height: 12px;
  }
  /* Rebuilding Section  */
  .building__content-text--wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .building__content-text--wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
  .building__content-img--col {
    position: relative;
  }
  .building__content-img {
    width: 100%;
    height: 500px;
  }
  /* Publications Section  */
  .events__section {
    padding: 60px 0 117px;
  }
  .events__page-section {
    padding: 60px 0 70px;
  }

  .events__section-wrapper h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .events__section-buttons {
    margin: 18px 0 32px;
    column-gap: 25px;
    row-gap: 20px;
  }
  .events__section-buttons .event__btn {
    min-width: 160px;
    padding: 15px 10px;
    font-size: 20px;
    line-height: 26px;
  }
  .events__page-section .events__section-buttons .event__btn {
    padding: 24px 14px 22px;
  }
  .events__section-pagination {
    margin-top: 40px;
    column-gap: 20px;
  }
  .events__section-pagination .pagination__btn {
    font-size: 18px;
    line-height: 28px;
    min-width: 60px;
    padding: 8.5px 11px;
  }

  /* Newsletter  */
  .newsletter__section{
    margin-bottom: 40px;
  }
  .newsletter__section-wrapper {
    padding: 60px 0px 30px;
  }
  .newsletter__details h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 15px;
  }
  .newsletter__details p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 18px;
    max-width: 100%;
  }
  .newsletter__input-wrapper input {
    padding: 8px 15px;
    font-size: 20px;
    line-height: 26px;
  }
  .newsletter__input-wrapper input::placeholder{
    font-size: 20px;
    line-height: 26px;
  }
  .newsletter__image-content{
    min-height: 315px;
    width: 510px;
    margin-top: -90px;
  }

  /* Region Events  */
  
  .region__events {
      padding: 70px 0 60px;
  }
  .region__events-row {
    column-gap: 15px;
    row-gap: 25px;
  }
  .region__events-column {
    width: calc(calc(100% - 30px) / 3);
  }
  .region__events h2 {
    font-size: 36px;
    line-height: 42px;
    margin: 0 0 30px 0px;
  }

  /* WebCasts  */
  .webcasts__section-wrapper {
    padding: 60px 0px;
  }
  .webcasts__details h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .webcasts__details ul {
    margin-bottom: 15px;
  }
  .webcasts__details p,
  .webcasts__details ul li {
    font-size: 18px;
    line-height: 28px;
  }
  .webcasts__image-content {
    background: transparent;
    padding: 0;
    max-width: 570px;
    width: 100%;
    max-height: 419px;
    margin: 0;
    bottom: -110px;
    position: absolute;
  }
  /* Tillie Page  */

  .tillie__banner .protected__wrapper {
    padding: 60px 0 60px;
  }
  .help__block{
    padding: 60px 0 30px;
  }
  .help__ctm-column {
    width: calc(50% - 10px);
  }
  .help__need-txt h2{
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .help__need-txt p{
    font-size: 18px;
    line-height: 28px;
  }
  .help__need-txt .help__need-btn {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
    margin-top: 15px;
  }

  .prompts {
    padding: 30px 0px 80px;
  }
  .prompts__title {
    margin-bottom: 20px;
  }
  .prompts__title h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .prompts__accordion-item details {
    margin-bottom: 20px;
  }
  .prompts__accordion-item summary {
    padding: 20px 80px 20px 20px;
    font-size: 20px;
    line-height: 26px;
  }
  .accordion__icon {
    width: 40px;
    height: 40px;
    padding: 7px 6px;
  }
  .accordion__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .accordion__content {
    padding: 20px 25px 10px 20px;
  }
  .accordion__content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom:15px;
  } 
  .accordion__content a, .accordion__content button {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }


  /* Education Policy Page  New*/
  .make__impact{
    padding: 60px 0 30px;
  }
  .make__impact .our__members-title{
    margin-bottom: 20px;
  }
  .make__impact .our__members-title__wrapper h2{
    margin-bottom: 10px;
  }
  .policy__priorities{
    padding: 30px 0 ;
  }
  .policy__priorities .help__need-img {
    height: 360px;
  }
  .adopted__resolutions {
    padding: 30px 0;
  }
  .capital__visit{
    padding: 30px 0 80px;
  }
  .capital_left_col,
  .capital_right_col {
    width: calc(50% - 10px);
  }
  .capital_right_title {
      margin: 35px 0;
  }
  .capital_right_title h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .capital_right_title p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .capital_right_title a,
  .capital_right_title button{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }


  /* Legal Services Page  */
  .help__need{
    padding: 60px 0 80px;
  }  
  .legal_services_title {
    margin: 48px 0px;
  }
  .legal_services_title h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .legal_services_title ul {
    row-gap: 10px;
  }
  .legal_services_title .legal__icon {
    min-width: 30px;
    width: 30px;
    height: 26px;
  }
  .legal_services_title p {
    font-size: 20px;
    line-height: 26px;
  }
  .legal_services_title ul li{
    min-height: 32px;
  }
  .legal_services_title ul li:last-child p {
    font-size: 18px;
    line-height: 26px;
  }
  .legal_services_btn {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
    margin-top: 15px;
  }
  .legal_services_vector_image {
    margin-top: -32px;
  }
  .legal__resources {
    padding: 60px 0 30px;
  }
  .legal__content-section{
    padding: 30px 0 80px;
  }
  .legal__content-title {
    margin-bottom: 30px;
  }
  .legal__content-title h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .legal__content-wrapper h1,
  .legal__content-wrapper h2,
  .legal__content-wrapper h3,
  .legal__content-wrapper h4,
  .legal__content-wrapper h5,
  .legal__content-wrapper h6 {
    margin-bottom: 15px;
  }

  .legal__content-wrapper h1 { font-size: 36px; }
  .legal__content-wrapper h2 { font-size: 32px; }
  .legal__content-wrapper h3 { font-size: 28px; }
  .legal__content-wrapper h4 { font-size: 24px; }
  .legal__content-wrapper h5 { font-size: 20px; }
  .legal__content-wrapper h6 { font-size: 18px; }

  .legal__content-wrapper p,
  .legal__content-wrapper span,
  .legal__content-wrapper a,
  .legal__content-wrapper li,
  .legal__content-wrapper pre,
  .legal__content-wrapper blockquote {
    font-size: 18px;
    line-height: 26px;
  }
  .legal__content-wrapper ul,
  .legal__content-wrapper ol {
    padding-left: 20px;
    margin-bottom: 15px;
  }
  .legal__content-wrapper blockquote {
    padding: 15px;
    margin: 15px 0;
  }

  /* About Page  */
  .unified__voice{
    padding: 60px 0 30px;
  }
  .unified__voice-title {
    margin-bottom: 20px;
  }
  .unified__voice-title h2{
    font-size: 36px;
    line-height: 42px;
  }
  .unified__voice-col p {
    font-size: 18px;
    line-height: 26px;
  }
  
  .about__msta{
    padding: 30px 0 80px;
  } 
  .about__govenance{
    padding:60px 0 30px;
  }
  .about-news__update_wrapper{
    padding: 30px 0 80px;
  }

  /* Professional Learning Page  */
  .professional-prompts{
    padding: 60px 0 80px;
  }
  .behaviors__section .webcasts__section-wrapper{
    padding: 60px 0;
  }
  .learning__events{
    padding: 60px 0 80px;
  }
  .learning__events .featured__stories-top--row h2{
    margin-bottom: 10px;
  }
  .graduate__section{
    margin-bottom: 30px;
  }
  .graduate__section_main_wrapper {
    padding: 44px 0;
  }
  .graduate__content-text--wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .graduate__content-text--wrapper p {
    font-size: 18px;
    line-height: 26px;
  }
  .graduate__content-text--wrapper .custom__button-content {
    margin-top: 15px;
  }
  .graduate__content-img {
    height: 280px;
  }
  /* Region */
  .service__coordinators {
    padding: 60px 0px 30px;
  }
  .service__coordinators-list ul li {
    width: 50%;
  }
  .service__coordinators-title h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .service__coordinators-title {
    margin-bottom: 20px;
  }
  .region__officers-list h2{
    font-size: 36px;
    line-height: 42px;
  }
  .coordinators__list-detail h3 {
    font-size: 24px;
    line-height: 28px;
  }
  .coordinators__list-detail p, .coordinators__list-detail a {
    font-size: 18px;
    line-height: 26px;
  }
  .coordinators__list-img {
    width: 100px;
    height: 100px;
  }
  .coordinators__list-detail {
    width: calc(100% - 115px);
  }
  .region__officers-list h3 {
    font-size: 26px;
    line-height: 46px;
  }
  .region__list-content h4, .region__list-content h5 {
    font-size: 22px;
    line-height: 26px;
  }
  .region__list-content p {
    font-size: 18px;
    line-height: 26px;
  }
  .region__officers-list {
    margin-bottom: 20px;
  }
  .region__officers-list ul{
    margin: 0px -15px;
  }
  .region__officers-list ul li {
    padding: 0px 15px;
  }
  /* Region */
  .region__hero .protected__wrapper{
    padding: 125px 0;
  }
  .region__officers {
    padding: 0px 0px 128.5px;
  }
  .social__media-list ul li a{
    width: 25px;
    height: 25px;
  }
}
@media(max-width: 1100px){
  .header__top-bar {
    padding: 15px 0px;
  }
  .header__bar-list ul li a, .header__bar-list ul li button {
    font-size: 16px;
    line-height: 20px;
    gap: 5px;
  }
  .header__bar-list ul {
    gap: 20px;
  }
  .menu__items-links ul li a {
    font-size: 16px;
    line-height: 20px;
  }
  .secondary__bg-btn, .primary__bg-btn {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .menu__items-links ul {
    gap: 20px;
  }
  .header__logo-col {
    width: 113.58px;
  }
  .header__menu-col {
    width: calc(100% - 140px);
  }
  .header__cta-btns {
    gap: 10px;
  }
  .menu__row {
    gap: 20px;
  }
  .menu__links-col{
    display: none;
  }
  .menu__icon{
    display: flex;
  }
  .sidebar__cta-btn{
    display: none;
  }
  .sidebar__footer{
    display: none;
  }
  /*  */
  .hero__banner {
    padding: 0px 0px 15px;
    height: auto;
  }
  .hero__banner-block {
    padding: 40px 100px 20px;
  }
  .star__layer {
    width: 80px;
    height: 86px;
    top: 8px;
    left: -90px;
  }
  .hero__banner-txt--wrapper h1 {
    font-size: 58px;
    line-height: 58px;
    margin-bottom: 10px;
  }
  .hero__banner-txt--wrapper p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    max-width: 100%;
  }
  .hero__banner-txt--wrapper {
    max-width: 590px;
  }
  .bg__white-btn{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .hero__links-wrapper {
    gap: 15px;
  }
  .protected__wrapper {
    padding: 60px 0px;
  }
  .protected__detail h2, .protected__detail h1 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .protected__detail p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    max-width: 100%;
  }
  .protected__detail a{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .protected__paper-texture {
    padding: 65px 25px 50px 35px;
    margin-bottom: -60px;
    min-height: auto;
  }
  .protected__paper-texture p {
    font-size: 16px;
    line-height: 34px;
  }
  .protected__paper-texture span{
    font-size: 16px;
  }
  .protected__top-quote {
    width: 98px;
    height: 66px;
    top: -11px;
    left: -10px;
  }
  .protected__bottom-quote{
    width: 98px;
    height: 66px;
    bottom: -17px;
    right: -14px;
  }
  .our__members-title__wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .our__members {
    padding: 60px 0px 80px;
  }
  .our__members-title__wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
  .our__members-list ul li a {
    padding: 25px 75px 25px 20px;
    font-size: 20px;
    line-height: 26px;
  }
  .our__members-list ul {
    margin: 0px -7.5px;
    row-gap: 15px;
  }
  .our__members-list ul li {
    padding: 0px 7.5px;
  }
  .our__members-list ul li a span {
    width: 45px;
    height: 45px;
    right: 20px;
    padding: 7px;
  }
  .resources__image {
    max-width: 480px;
  }
  .resources__title h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .resources__title p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    max-width: 100%;
  }
  .resources__title {
    max-width: 445px;
  }
  .upcoming__events-row{
    margin: 0px -7.5px;
    row-gap: 15px;
  }
  .upcoming__events-column{
    padding: 0px 7.5px;
  }
  .upcoming__events-detail h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .upcoming__events-detail p {
    font-size: 18px;
    line-height: 28px;
  }
  .upcoming__events-cta a{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .upcoming__events {
    padding: 70px 0px 70px;
  }
  .upcoming__events-item {
    height: 380px;
  }
  .upcoming__event-card--txt {
    padding: 165px 15px 15px;
  }
  .upcoming__event-card--txt span {
    gap: 12px;
    font-size: 20px;
    line-height: 26px;
  }
  .msta_left_title h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .msta_left_title p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .msta_left_title a{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .handle__swiper_wrapper {
    padding-left: 0;
  }
  .msta_left_title {
    margin: 48px 0px;
  }
  .ring__image{
    display: none;
  }
  .news_update__left_content {
    max-width: 615px;
    width: 100%;
  }
  .news_update__right_content {
    max-width: 300px;
    width: 100%;
  }
  .news_update__left_content h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .news_update__left_content p {
    font-size: 18px;
    line-height: 28px;
  }
  .news_update__right_content a{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .msta__teahcer_pagination .swiper-button-next, .msta__teahcer_pagination .swiper-button-prev {
    height: 100px;
    width: 55px;
  }
  .inner_card_content span {
    gap: 10px;
    font-size: 20px;
    line-height: 26px;
  }
  .left_content_col {
    width: calc(20% - 20px);
  }
  .right_content_col {
    width: calc(80% - 20px);
  }
  .news__update_wrapper {
    padding: 60px 0px 60px;
  }
  .footer_wrapper {
    padding: 40px 0px 40px;
  }
  .right_content_col ul li h2 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .right_content_col ul li {
    width: calc(33.33% - 10px);
  }
  /* additional css banner */
  .protected__benefits-wrapper.protected__paper-texture{
    padding: 15px 25px 7px 35px;
    margin-bottom: -70px;
  }
  .protected__benefits .protected__benefits-wrapper.protected__paper-texture{
    margin-bottom: -42px;
    width: 460px;
    padding: 0px;
  }
  .protected__benefits-wrapper{
    width: 580px;
  }
  .card_main_wrapper {
    height: 320px;
  }
  .msta__teahcer_pagination .swiper-button-next img, .msta__teahcer_pagination .swiper-button-next svg, .msta__teahcer_pagination .swiper-button-prev img, .msta__teahcer_pagination .swiper-button-prev svg {
    width: 26px;
  }
  /* Leadership */
  .leadership__banner .hero__banner-block {
    padding: 40px 100px 20px;
  }
  .leader__meet-img {
    max-width: 476.5px;
    top: 57%;
  }
  .leaders__meet .protected__detail p {
    font-size: 20px;
    line-height: 30px;
  }
  .minded__colleagues {
    padding: 85px 0px 50px;
  }
  .minded__text-wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .leadership__banner .hero__banner-block .hero__banner-txt--wrapper p{
    margin-bottom: 0px;
  }
  .minded__text-wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
  .rich__bracken-text--wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .rich__bracken-text--wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
  .rich__bracken-img--col {
    position: relative;
  }
  .rich__bracken-img {
    width: 100%;
    height: 595px;
  }
  .accomodations__txt-wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .accomodations__txt-wrapper p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .accomodations__txt-wrapper {
    max-width: 455px;
  }
  .accomodations {
    padding: 83px 0px 60px;
  }
  /* Leadership */
  /* Join MSTA */
  .protected__benefits .protected__wrapper {
    padding: 60px 0 60px;
  }
  .member__benefits {
    padding: 60px 0px 60px;
  }
  .member__benefits-title h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .member__benefits-title {
    max-width: 445px;
    margin-bottom: 20px;
  }
  .benefits__card-star {
    width: 30px;
    height: 35px;
    top: 24px;
    left: 19px;
  }
  .member__benefits-card h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .member__benefits-card p {
    font-size: 18px;
    line-height: 28px;
    max-height: inherit;
    overflow-y: unset;
  }
  .member__benefits-card a{
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .video__player-btn {
    width: 130px;
    height: 130px;
  }
  .video__player-btn svg, .video__player-btn img {
    width: 55px;
    height: 55px;
  }
  .tiers__pricing {
    padding: 60px 0px 30px;
  }
  .tiers__pricing-title h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .tiers__pricing-title p {
    font-size: 18px;
    line-height: 28px;
  }
  .tiers__pricing-title {
    max-width: 520px;
    margin-bottom: 20px;
  }
  .tiers__block-card h3 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .price__txt {
    font-size: 36px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .time__txt {
    font-size: 18px;
    line-height: 28px;
  }
  .tiers__block-card {
    padding: 25px 20px;
  }
  .member__application {
    padding: 30px 0px 60px;
  }
  .member__application-txt--col, .member__application-links--col {
    width: calc(50% - 30px);
  }
  .member__application-title--txt h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 10px;
  }
  .member__application-title--txt p {
    font-size: 18px;
    line-height: 28px;
  }
  .member__application-list ul li a {
    padding: 13px 95px 13px 21px;
    font-size: 20px;
    line-height: 26px;
    min-height: 83px;
  }
  .colleagues__video-wrapper {
    height: 305px;
  }
  /* Join MSTA */
  .handle_vector_image {
    margin-top: -43px;
  }
  /* Blog MSTA  */
  .newsletter__image-content {
    min-height: 315px;
    max-width: 460px;
    margin-top: -128px;
  }
  .leaders__meet .protected__wrapper {
    padding: 85px 0;
  }
  /* Education Policy Page  */
  .capital_vector_image{
    margin-top: -22px;
  }
  /* Legal Services Page  */
  .legal_services_vector_image {
    margin-top: -32px;
  }
  /* Region */
  .service__coordinators {
    padding: 60px 0px 30px;
  }
  .service__coordinators-list ul li {
    width: 50%;
  }
  .service__coordinators-title h2 {
    font-size: 36px;
    line-height: 42px;
  }
  .service__coordinators-title {
    margin-bottom: 20px;
  }
  .region__officers-list h2{
    font-size: 36px;
    line-height: 42px;
  }
  .coordinators__list-detail h3 {
    font-size: 24px;
    line-height: 28px;
  }
  .coordinators__list-detail p, .coordinators__list-detail a {
    font-size: 18px;
    line-height: 26px;
  }
  .coordinators__list-img {
    width: 100px;
    height: 100px;
  }
  .coordinators__list-detail {
    width: calc(100% - 115px);
  }
  .region__officers-list h3 {
    font-size: 26px;
    line-height: 46px;
  }
  .region__list-content h4, .region__list-content h5 {
    font-size: 22px;
    line-height: 26px;
  }
  .region__list-content p {
    font-size: 18px;
    line-height: 26px;
  }
  .region__officers-list {
    margin-bottom: 20px;
  }
  .region__officers-list ul{
    margin: 0px -15px;
  }
  .region__officers-list ul li {
    padding: 0px 15px;
  }
  /* Region */
  .region__hero .protected__wrapper{
    padding: 125px 0;
  }
  .region__officers {
    padding: 0px 0px 128.5px;
  }
  /* Mega Menu */
  .mega__menu-content h2 {
    font-size: 24px;
    line-height: 25px;
    margin-bottom: 5px;
  }
  .mega__menu-content p {
    margin-bottom: 5px;
  }
  .sidebar__mega-menu .mega__menu-content{
    margin-bottom: 25px;
  }
  .mega__menu-links ul li {
    padding-left: 15px;
    margin-bottom: 10px;
  }
  .mega__menu-links ul li::before {
    left: 0;
  }
  .mega__menu-links h3, .image__mega-menu-title {
    line-height: 25px;
    margin-bottom: 8px;
  }
  .sidebar__mega-menu .mega__menu-links{
    margin-bottom: 25px;
  }
  .mega__menu-img{
    background-color: var(--white-color);
    height: 200px;
  }
  .side__bar-wrapper {
    padding: 60px 0px 30px 0px;
  }
}
@media(max-width: 991px){
  .hero__banner-txt--wrapper h1 {
    font-size: 46px;
    line-height: 52px;
  }
  .hero__banner-txt--wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
  .star__layer{
    display: none;
  }
  .hero__banner-block {
    padding: 40px 20px 20px;
  }
  .hero__banner-txt--wrapper {
    max-width: 100%;
  }
  .header__top-bar{
    margin-bottom: 0px;
  }
  .protected__wrapper {
    padding: 50px 0px;
  }
  .protected__row{
    align-items: center;
  }
  .protected__paper-texture {
    padding: 64px 15px 45px 15px;
    margin-bottom: 0px;
  }
  .protected__column {
    width: calc(50% - 10px);
  }
  .protected__detail h2, .protected__detail h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .protected__detail p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .our__members-title__wrapper h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .our__members-title__wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
  .our__members-hand--img {
    width: 125px;
    height: 110px;
  }
  .our__members-title__wrapper {
    max-width: 590px;
  }
  .our__members {
    padding: 50px 0px 60px;
  }
  .our__members-list ul li a {
    padding: 25px 75px 25px 20px;
    font-size: 18px;
    line-height: 26px;
  }
  .our__members-list ul li {
    width: 50%;
  }
  .our__members {
    padding: 50px 0px 50px;
  }
  .resources__image {
    max-width: 500px;
    position: relative;
    top: 0;
    transform: none;
  }
  .resources__title {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .resources__wrapper {
    padding: 40px 20px 40px;
  }
  .resources__title h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .resources__title p {
    font-size: 16px;
    line-height: 26px;
  }
  .upcoming__events {
    padding: 50px 0px 50px;
  }
  .upcoming__events-txt--col, .upcoming__events-cta--col {
    max-width: 100%;
  }
  .upcoming__events-cta {
    text-align: left;
    padding-bottom: 0;
  }
  .upcoming__events-wrapper {
    row-gap: 15px;
    margin-bottom: 20px;
  }
  .upcoming__events-detail h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .upcoming__events-detail p {
    font-size: 16px;
    line-height: 26px;
  }
  .upcoming__events-column {
    padding: 0px 7.5px;
    width: 50%;
  }
  .upcoming__events-item {
    height: 400px;
  }
  .handle_vector_image {
    max-width: 500px;
    margin: 0 auto;
    margin-top: -68px;
  }
  .msta_left_title h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .msta_left_title p {
    font-size: 16px;
    line-height: 26px;
  }
  .msta__teacher_wrapper{
    flex-direction: column-reverse;
  }
  .msta_left_col {
    width: 100%;
  }
  .msta_right_col {
    width: 100%;
  }
  .msta__teacher_main_wrapper{
    padding: 0px 20px;
  }
  .msta_left_title {
    margin: 20px 0px 40px 0px;
  }
  .news_update__left_content, .news_update__right_content {
    max-width: 100%;
    text-align: left;
    padding: 0px;
  }
  .news_update__left_content{
    margin-bottom: 20px;
  }
  .news__update_wrapper {
    padding: 50px 0px 50px;
  }
  .news_update__left_content h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .news_update__left_content p {
    font-size: 16px;
    line-height: 26px;
  }
  .inner_card_content span {
    font-size: 18px;
    line-height: 25px;
  }
  .inner_card_content {
    padding: 0px 15px;
  }
  .card__overlay {
    padding: 120px 0px 10px;
  }
  .msta__teahcer_pagination .swiper-button-next, .msta__teahcer_pagination .swiper-button-prev {
    height: 90px;
    width: 45px;
  }
  .right_content_col ul li h2 {
    font-size: 18px;
    line-height: 26px;
  }
  .right_content_col ul li a span {
    font-size: 16px;
    line-height: 26px;
  }

  /* Banners Addition Style  */
  .protected__benefits .protected__wrapper,
  .protected__benefits.protected__news .protected__wrapper {
    padding: 60px 0;
  }
  .protected__benefits h2, .protected__benefits h1 {
    font-size: 46px;
    line-height: 52px;
    margin-bottom: 3px;
  }
  .protected__benefits .protected__column-news {
    width: 100%;
  }
  /* additional css */
  .protected__benefits .protected__column{
    width: 100%;
  }
  .protected__benefits .protected__column:nth-last-child(1){
    margin: 0 auto;
  }
  .protected__benefits .protected__benefits-wrapper.protected__paper-texture{
    padding: 0px;
    margin: 0 auto;
    position: relative;
    bottom: 0px;
    background: transparent !important;
  }
  .msta__teahcer_pagination .swiper-button-next img, .msta__teahcer_pagination .swiper-button-next svg, .msta__teahcer_pagination .swiper-button-prev img, .msta__teahcer_pagination .swiper-button-prev svg {
    width: 24px;
    height: 24px;
  }
  .resources__block {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 22px;
  }
  .resources__title {
    margin-bottom: 0;
  }
  .resources {
    margin-top: 51px;
  }
  .resources__image {
    margin-top: -56px;
  }
  .resources__wrapper{
    padding-top: 0px;
  }
  .protected.protected__benefits {
    margin-top: 72px;
  }
  .protected__benefits .protected__wrapper {
    padding-bottom: 40px;
    padding-top: 0;
  }
  .protected__benefits .protected__row {
    row-gap: 20px;
    flex-direction: column-reverse;
  }
  .protected__benefits .protected__benefits-wrapper .protected__benefits-image {
    margin-top: -52px;
  }
  .protected__benefits .protected__detail p {
    margin-bottom: 0;
  }
  .masta__teachers{
    margin-top: 20px;
  }
  .ring__image {
    display: block;
  }
  .ring__image {
    top: -43px;
    left: -59px;
    width: 107.15px;
  }
  .protected.protected__news{
    margin-top: 0px !important;
  }
  .leadership__banner .hero__banner-block {
    padding: 40px 20px 20px;
  }
  .leader__meet-img {
    max-width: 476.5px;
    top: 0;
    position: relative;
    transform: none;
    margin-top: -16px;
  }
  .leaders__meet.blue-bg .leader__meet-img {
    margin: 0 auto;
    margin-top: -16px;
  }
  .leaders__meet .protected__column {
    width: 100%;
  }
  .leaders__meet .protected__wrapper {
    padding: 0px 0px 50px;
  }
  .minded__colleagues {
    padding: 50px 0px 50px;
  }
  .minded__text-wrapper h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .leaders__meet .protected__detail p {
    font-size: 18px;
    line-height: 28px;
  }
  .minded__text-wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
  .minded__colleagues-text--col, .minded__colleagues-video--col {
    width: 100%;
  }
  .rich__bracken-img--col, .rich__bracken-txt--col {
    width: 100%;
  }
  .rich__bracken-img {
    max-width: 470px;
    width: 100%;
    height: 595px;
    position: relative;
    transform: none;
    top: 0px;
    margin: 0 auto;
    margin-top: -40px;
  }
  .rich__bracken-text--wrapper {
    padding: 0px 0px 50px;
  }
  .rich__bracken-text--wrapper h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .rich__bracken-text--wrapper p {
    font-size: 16px;
    line-height: 26px;
  }
  .accomodations {
    padding: 50px 0px 50px;
  }
  .accomodations__txt-wrapper {
    max-width: 100%;
  }
  .accomodations__txt-wrapper h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .accomodations__txt-wrapper p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .member__benefits {
    padding: 50px 0px 50px;
  }
  .member__benefits-title h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .member__benefits-title {
    max-width: 400px;
  }
  .member__benefits-card h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .member__benefits-card p {
    font-size: 16px;
    line-height: 26px;
  }
  .benefits__card-star {
    width: 25px;
    height: 32px;
    left: 15px;
    top: 18px;
  }
  .member__benefits-card {
    padding: 20px 20px 20px 55px;
  }
  .member__benefits-row {
    margin: 0px -7.5px;
    row-gap: 15px;
  }
  .member__benefits-column, .member__benefits-column--fill {
    padding: 0px 7.5px;
  }
  .video__player-btn {
    width: 110px;
    height: 110px;
  }
  .video__player-btn svg, .video__player-btn img {
    width: 40px;
    height: 40px;
  }
  .tiers__pricing {
    padding: 50px 0px 25px;
  }
  .member__application {
    padding: 25px 0px 50px;
  }
  .member__application-txt--col, .member__application-links--col {
    width: calc(50% - 15px);
  }
  .member__application-title--txt h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .tiers__pricing-title h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .tiers__pricing-title p {
    font-size: 16px;
    line-height: 26px;
  }
  .member__application-title--txt p {
    font-size: 16px;
    line-height: 26px;
  }
  .tiers__pricing-col {
    width: 50%;
    padding: 0px 7.5px;
  }
  .tiers__pricing-row {
    margin: 0px -7.5px;
    row-gap: 15px;
  }
  .tiers__block-card h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .price__txt {
    font-size: 28px;
    line-height: 28px;
  }
  .time__txt {
    font-size: 16px;
    line-height: 26px;
  }
  .member__application-list ul li a {
    padding: 13px 95px 13px 21px;
    font-size: 18px;
    line-height: 26px;
    min-height: 75px;
  }
  .member__application-list ul li a span {
    width: 48px;
    height: 48px;
    right: 20px;
  }
  .colleagues__video-wrapper {
    height: 428px;
    border: 1px solid var(--primary-color);
  }
  /* additional css */
  .tiers__block-card h3 br{
    display: none;
  }
  .minded__colleagues-row {
    row-gap: 20px;
  }
  .our__members-title {
    margin-bottom: 20px;
  }
  .news_update_main {
    margin-bottom: 20px;
  }
  /* BLOG MSTA  */
  .custom__badge span {
    font-size: 10px;
  }

  .featured__stories {
    padding: 50px 0;
  }
  .featured__stories-row .featured__stories-image-col {
    width: calc(40% - 7.5px);
  }
  .featured__stories-row .featured__stories-listing-col {
    width: calc(60% - 7.5px);
  }
  .featured__stories-top--row h2 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 15px;
  }
  .featured__stories-card--info h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .featured__story-time span {
    font-size: 12px;
    line-height: 19px;
  }
  .featured__more-wrapper span, .featured__more-wrapper a {
    font-size: 15px;
    line-height: 22px;
  }
  .featured__more-wrapper span svg, .featured__more-wrapper a svg {
    width: 20px;
    height: 10px;
  }
  .featured__stories-image--wrapper .card_main_wrapper {
    height: 430px;
  }
  .featured__stories-card-image--wrapper {
    min-width: 170px;
    width: 170px;
    height: 132px;
  }
  /* Rebuilding Section  */
  .building__row {
    flex-direction: column-reverse;
  }
  .building__content-txt--col,
  .building__content-img--col {
    width: 100%;
  }
  .building__content-img {
    max-width: 470px;
    width: 100%;
    position: relative;
    top: 0px;
    transform: none;
    margin: -20px auto 0;
  }
  .building__content-text--wrapper {
    padding: 0px 0px 50px;
  }
  .building__content-text--wrapper h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .building__content-text--wrapper p {
    font-size: 16px;
    line-height: 26px;
  }

  /* Publications Section  */
  .events__section {
    padding: 50px 0;
  }
  .events__page-section {
    padding: 50px 0 60px;
  }
  .events__section-wrapper h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .events__section-buttons .event__btn {
    min-width: 150px;
    padding: 15px 10px;
  }
   .events__page-section .events__section-buttons .event__btn {
    padding: 22px 14px 20px;
  }
  .events__section-pagination {
    margin-top: 35px;
    column-gap: 15px;
  }
  .events__section-pagination .pagination__btn {
    font-size: 16px;
    line-height: 26px;
    min-width: 55px;
    padding: 7px 10px;
  }

  /* Newsletter  */
  .newsletter__section{
    margin-bottom: 30px;
  }
  .newsletter__section-wrapper {
    padding: 50px 0px;
  }
  .newsletter__row {
    flex-direction: column;
  }
  .newsletter__column {
    width: 100%;
  }
  .newsletter__image-content {
    min-height: auto;
    width: 460px;
    margin-top: -80px;
    margin-left: auto;
    margin-right: auto;
  }
  .newsletter__details
  h2 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 12px;
  }

  .newsletter__details p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  .newsletter__input-wrapper input {
    padding: 9.5px 15px;
    font-size: 20px;
    line-height: 26px;
  }
  .newsletter__input-wrapper input::placeholder{
    font-size: 20px;
    line-height: 26px;
  }
  /* Region Events  */
  .region__events-column {
    width: calc(calc(100% - 15px) / 2);
  }
  .region__events h2 {
    font-size: 32px;
    line-height: 38px;
    margin: 0 0 20px 0px;
  }

  /* Webcasts  */
  .webcasts__section-wrapper {
    padding: 50px 0px;
  }
  .webcasts__row {
    flex-direction: column-reverse;
    row-gap: 20px;
  }
  .webcasts__column {
      width: 100%;
  }
  .webcasts__details h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .webcasts__details ul {
    margin-bottom: 12px;
  }
  .webcasts__details p,
  .webcasts__details ul li {
    font-size: 16px;
    line-height: 26px;
  }
  .webcasts__image-content {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: 0;
    margin-top: -70px;
  }
  .featured__stories-card-wrapper {
    row-gap: 7px;
  }
  .newsletter__details .hs_cos_wrapper_type_form .hs-form-field input {
    font-size: 16px;
    padding: 9.4px 15px;
  }
  .newsletter__details .hs_submit .hs-button {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 40px;
  }
  /* Tillie Page  */

  .tillie__banner .protected__wrapper{
    padding: 40px 0;
  }
  .tillie__banner .protected__column-txt {
    width:100%;
  }
  .tillie__banner .protected__column-img {
    width: 100%;
  }
  .tillie__img-wrapper {
    max-width: 400px;
    margin: auto;
  }
  .help__block{
    padding: 50px 0 25px;
  }
  .help__ctm-column {
    width:100%;
  }
  .help__need-txt h2{
    font-size: 32px;
    line-height: 38px;
  }
  .help__need-txt p{
    font-size: 16px;
    line-height: 26px;
  }
  .help__need-txt .help__need-btn {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
    margin-top: 15px;
  }
  .prompts {
    padding: 25px 0px 50px;
  }
  .prompts__title {
    margin-bottom: 10px;
  }
  .prompts__title h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .prompts__accordion-item details {
    margin-bottom: 14px;
  }
  .prompts__accordion-item summary {
    padding: 16px 80px 16px 14px;
    font-size: 18px;
    line-height: 26px;
  }
  .accordion__icon {
    width: 36px;
    height: 36px;
  } 
  .accordion__content {
    padding:12px 14px 10px 14px;
  }
  .accordion__content p {
    font-size: 16px;
    line-height: 26px;
  }
 
  /* Education Policy Page  */
  .make__impact{
    padding: 50px 0 25px;
  }
  .policy__priorities{
    padding: 25px 0;
  }
  .policy__priorities .help__ctm-row{
    flex-direction: column-reverse;
  }
  .policy__priorities .help__need-img {
    height: 335px;
  }
  .adopted__resolutions {
    padding: 25px 0 50px;
  }
  .adopted__resolutions .help__ctm-row {
    flex-direction: column-reverse;
  }
  .capital__visit {
    padding: 20px 0 50px; 
  }
  .capital_visit_wrapper {
    flex-direction: column;
  }
  .capital_left_col,
  .capital_right_col {
    width: 100%;
  }
  .capital_right_title h2 {
    font-size: 32px;
    line-height: 38px;
  } 
  .capital_right_title p {
    font-size: 16px;
    line-height: 26px;
  }
  .capital_right_title a,
  .capital_right_title button {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .capital_vector_image {
    max-width: 500px;
    margin: 0 auto;
    margin-top: -68px;
  }


  /* Legal Services Page  */
  .help__need{
    padding: 50px 0;
  } 
  
  .help__ctm-row{
    flex-direction: column-reverse;
  }

  .lega__services{
    margin-top: 30px;
  }
  .legal_services_wrapper {
    flex-direction: column-reverse;
  }
  .legal_services_left_col,
  .legal_services_right_col{
    width: 100%;
  }
  .legal_services_vector_image {
    max-width: 500px;
    margin: 0 auto;
    margin-top: -48px;
  }
  .legal_services_title {
    margin: 20px 0px 40px 0px;
  }
  .legal_services_title h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .legal_services_title p {
    font-size: 18px;
    line-height: 26px;
  }
  .legal_services_title ul li{
    min-height: 28px;
  }
  .legal_services_title ul li:last-child p {
    font-size: 16px;
    line-height: 26px;
  }
  .legal__resources {
    padding: 50px 0 25px;
  }
  .legal__content-section{
    padding: 25px 0 50px;
  }
  .legal__content-title h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .legal__content-wrapper h1,
  .legal__content-wrapper h2,
  .legal__content-wrapper h3,
  .legal__content-wrapper h4,
  .legal__content-wrapper h5,
  .legal__content-wrapper h6 {
    margin-bottom: 10px;
  }

  .legal__content-wrapper h1 { font-size: 30px; }
  .legal__content-wrapper h2 { font-size: 28px; }
  .legal__content-wrapper h3 { font-size: 26px; }
  .legal__content-wrapper h4 { font-size: 22px; }
  .legal__content-wrapper h5 { font-size: 18px; }
  .legal__content-wrapper h6 { font-size: 16px; }

  .legal__content-wrapper p,
  .legal__content-wrapper span,
  .legal__content-wrapper a,
  .legal__content-wrapper li,
  .legal__content-wrapper pre,
  .legal__content-wrapper blockquote {
    font-size: 16px;
    line-height: 28px;
  }
  .legal__content-wrapper ul,
  .legal__content-wrapper ol {
    margin-bottom: 10px;
  }
  .legal__content-wrapper blockquote {
    margin: 10px 0;
  }

    /* About Page  */
  .unified__voice{
    padding: 50px 0 25px;
  }
  .unified__voice-title h2{
    font-size: 32px;
    line-height: 38px;
  }
  .unified__voice-col p {
    font-size: 16px;
    line-height: 28px;
  }

  .about__msta{
    padding: 25px 0 50px;
  } 
  .about__joining-msta .protected__detail{
    padding-top: 0;
  }
  .about__govenance{
    padding:50px 0 25px;
  }
  .about-news__update_wrapper{
    padding: 25px 0 50px;
  }
  .about-news__update_wrapper .news_update_main{
    margin-bottom: 20px;
  }
  /* Professional Learning Page  */
  .professional-prompts{
    padding: 50px 0;
  }
  .behaviors__section .webcasts__section-wrapper{
    padding: 50px 0;
  }
  .learning__events{
    padding: 50px 0;
  }
  .graduate__section{
    margin-bottom: 20px;
  }
  .graduate__section_main_wrapper {
    padding: 30px 0;
  }
  .graduate__row {
    flex-direction: column-reverse;
  }
  .graduate__content-img--col,
  .graduate__content-txt--col{
    width: 100%;
  }
  .graduate__content-text--wrapper h2 {
    font-size: 32px;
    line-height: 38px;
  }
  .graduate__content-text--wrapper p {
    font-size: 16px;
    line-height: 28px;
  }
  .graduate__content-img{
    height: 428px;
  }
  /* Region */
  .service__coordinators {
    padding: 50px 0px 25px;
  }
  .region__officers {
    padding: 25px 0px 50px;
  }
  .service__coordinators-title h2 {
    font-size: 32px;
    line-height: 36px;
  }
  .region__officers-list h2{
    font-size: 32px;
    line-height: 36px;
  }
  .region__officers-list ul li {
    width: 33.33%;
  }
  .region__officers-list h3 {
    font-size: 24px;
    line-height: 42px;
  }
  /* Region */
  .accordion__content a, .accordion__content button {
    padding: 10px 15px;
    font-size: 16px !important;
    line-height: 20px !important;
    margin-bottom: 5px;
  }
  .social__media-list ul {
    gap: 20px;
  }
  .social__media-list ul li a{
    width: 22px;
    height: 22px;
  }
}
@media(max-width: 767px){
  .sidebar__cta-btn{
    display: flex;
  }
  .sidebar__footer{
    display: block;
  }
  .header__cta-btns{
    display: none;
  }
  .header__top-bar{
    display: none;
  }
  .container__fluid, .inner__container {
    padding: 0px 20px;
  }
  .main__header-wrapper {
    padding: 15px 0px;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 20px;
  }
  .hero__banner {
    padding: 0px 0px 20px;
    height: 60vh;
  }
  .hero__banner-txt--wrapper h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .hero__banner-txt--wrapper p {
    font-size: 14px;
    line-height: 22px;
  }
  .bg__white-btn {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 18px;
  }
  .secondary__bg-btn, .primary__bg-btn {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 18px;
  }
  .hero__links-wrapper {
    gap: 10px;
    justify-content: flex-start;
  }
  .hero__banner-txt--wrapper{
    text-align: left;
  }
  .hero__banner-wrapper img {
    object-position: right;
  }
  .header__logo-col {
    width: 100px;
  }
  .protected__wrapper {
    padding: 40px 0px;
  }
  .protected__column {
    width: 100%;
  }
  .protected__row{
    flex-direction: column-reverse;
  }
  .protected__paper-texture{
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }
  .protected__paper-texture p {
    font-size: 14px;
    line-height: 24px;
    overflow: visible;
    text-overflow: unset;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical; */
  }
  .protected__paper-texture span {
    font-size: 14px;
    line-height: 31px;
  }
  .protected__paper-texture {
    bottom: 0;
    padding: 55px 20px 40px;
  }
  .protected__top-quote {
    width: 80px;
    height: 55px;
    top: -11px;
    left: -11px;
  }
  .protected__bottom-quote {
    width: 80px;
    height: 55px;
    bottom: -12px;
    right: -12px;
  }
  .protected__detail h2, .protected__detail h1 {
    font-size: 26px;
    line-height: 32px;
  }
  .protected__detail p {
    font-size: 14px;
    line-height: 22px;
  }
  .protected__detail a {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 18px;
  }
  .our__members-title__wrapper h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .our__members-title__wrapper p {
    font-size: 14px;
    line-height: 22px;
  }
  .our__members-title {
    margin-bottom: 20px;
  }
  .our__members-hand--img{
    display: none;
  }
  .our__members-list ul li {
    width: 100%;
  }
  .our__members {
    padding: 40px 0px 40px;
  }
  .our__members-list ul li a {
    padding: 13px 80px 13px 20px;
    font-size: 16px;
    line-height: 22px;
    min-height: 60px;
  }
  .our__members-list ul li a span {
    width: 40px;
    height: 40px;
  }
  .resources {
    margin-top: 51px;
  }
  .resources__wrapper {
    padding: 0px 0px 40px;
  }
  .resources__image {
    margin-top: -56px;
  }
  .resources__title h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .resources__title p {
    font-size: 14px;
    line-height: 22px;
  }
  .resources .hero__links-wrapper {
    gap: 10px;
    justify-content: flex-start;
  }
  .upcoming__events {
    padding: 40px 0px 40px;
  }
  .upcoming__events-detail h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .upcoming__events-detail p {
    font-size: 14px;
    line-height: 22px;
  }
  .upcoming__events-cta a {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 18px;
  }
  .upcoming__events-column {
    width: 100%;
  }
  .upcoming__events-wrapper {
    margin-bottom: 20px;
  }
  .upcoming__event-card--txt span {
    font-size: 18px;
    line-height: 24px;
  }
  .upcoming__event-card--txt {
    padding: 140px 15px 15px;
  }
  .upcoming__events-row {
    row-gap: 20px;
  }
  .msta__teacher_main_wrapper {
    padding: 0px 0px 40px 0px;
  }
  .msta_left_col {
    width: 100%;
  }
  .msta_right_col {
    width: 100%;
  }
  .msta_left_title h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .msta_left_title p {
    font-size: 14px;
    line-height: 22px;
  }
  .msta_left_title a {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 18px;
  }
  .msta_left_title {
    margin: 0px;
  }
  .news__update_wrapper {
    padding: 40px 0px 40px;
  }
  .news_update__left_content h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .news_update__left_content p {
    font-size: 14px;
    line-height: 22px;
  }
  .news_update__right_content a {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 18px;
  }
  .msta__teahcer_pagination .swiper-button-next, .msta__teahcer_pagination .swiper-button-prev {
    height: 80px;
    width: 40px;
  }
  .card_badges span {
    font-size: 10px;
  }
  .card_badges {
    top: 10px;
    left: 15px;
    display: flex;
  }
  .left_content_col {
    width: 100%;
  }
  .right_content_col {
    width: 100%;
  }
  .right_content_col ul li {
    width: 100%;
    margin-bottom: 25px;
  }
  .right_content_col ul li:nth-last-child(1){
    margin-bottom: 0px;
  }
  .right_content_col ul {
    row-gap: 0;
  }
  .right_content_col ul li a span {
    font-size: 14px;
    line-height: 22px;
  }
  .left_content_col a {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .handle__swiper_wrapper {
    padding-left: 5px;
  }


  /* Banners Addition Style  */
  .protected__benefits .protected__wrapper,
  .protected__benefits.protected__news .protected__wrapper {
    padding: 50px 0;
  }
  .protected__benefits h2, .protected__benefits h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .protected__benefits .protected__benefits-wrapper.protected__paper-texture{
    width: 100%;
  }
  .header__one_banner .hero__banner-wrapper img{
    object-position: center;

  }
  .hero__banner.header__one_banner {
    height: 45vh;
  }
  .resources__block {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 22px;
  }
  .resources__title {
    max-width: 100%;
    margin-bottom: 0px;
  }
  .msta__teacher_wrapper{
    display: flex;
    flex-direction: column-reverse;
    row-gap: 19px;
  }
  .handle_vector_image {
    max-width: 518px;
    margin: 0 auto;
    margin-top: -40px;
  }
  .masta__teachers{
    margin-top: 20px;
  }
  .ring__image {
    display: block;
    top: -55px;
    left: -49px;
    width: 100px;
  }
  .msta__teahcer_pagination .swiper-button-next img, .msta__teahcer_pagination .swiper-button-next svg, .msta__teahcer_pagination .swiper-button-prev img, .msta__teahcer_pagination .swiper-button-prev svg {
    width: 20px;
    height: 20px;
  }
  .protected__benefits .protected__row{
    row-gap: 20px;
  }
  .protected__benefits .protected__wrapper {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .protected__benefits .protected__benefits-wrapper .protected__benefits-image {
    margin-top: -52px;
  }
  .protected.protected__benefits{
    margin-top: 72px;
  }
  .protected__benefits .protected__detail p{
    margin-bottom: 0px;
  }
  .protected.protected__news{
    margin-top: 0px !important;
  }
  .leaders__meet .protected__row{
    flex-direction: column;
    row-gap: 20px;
  }
  .leader__meet-img {
    margin-top: -20px;
  }
  .leaders__meet .protected__detail p {
    font-size: 14px;
    line-height: 24px;
  }
  .leaders__meet .protected__wrapper {
    padding: 0px 0px 40px;
  }
  .minded__colleagues {
    padding: 40px 0px 40px;
  }
  .minded__text-wrapper h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .minded__text-wrapper p {
    font-size: 14px;
    line-height: 22px;
  }
  .colleagues__video-wrapper {
    padding: 10px 10px;
    border: 1px solid var(--primary-color);
    height: 225px;
  }
  .rich__bracken-img {
    height: 335px;
    margin-top: -20px;
  }
  .rich__bracken-text--wrapper h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .rich__bracken-text--wrapper p {
    font-size: 14px;
    line-height: 22px;
  }
  .rich__bracken-text--wrapper {
    padding: 0;
  }
  .accomodations {
    padding: 40px 0px 40px;
  }
  .accomodations__txt-wrapper h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .accomodations__txt-wrapper p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .hero__banner.leadership__banner {
    padding: 0px 0px 20px;
    height: 45vh;
  }
  .member__benefits {
    padding: 40px 0px 40px;
  }
  .member__benefits-title h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .member__benefits-column, .member__benefits-column--fill {
    width: 100%;
  }
  .member__benefits-row {
    row-gap: 20px;
  }
  .video__player-btn {
    width: 70px;
    height: 70px;
  }
  .video__player-btn svg, .video__player-btn img {
    width: 25px;
    height: 25px;
  }
  .joining__msta .protected__detail {
    padding-top: 0;
  }
  .tiers__pricing {
    padding: 40px 0px 20px;
  }
  .tiers__pricing-title h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .member__benefits-card p {
    font-size: 14px;
    line-height: 22px;
  }
  .member__benefits-card a{
    padding: 10px 15px;
    font-size: 14px;
    line-height: 18px;
  }
  .tiers__pricing-title p {
    font-size: 14px;
    line-height: 22px;
  }
  .tiers__pricing-title {
    margin-bottom: 20px;
  }
  .tiers__pricing-col {
    width: 100%;
  }
  .tiers__pricing-row {
    row-gap: 20px;
  }
  .tiers__block-card br{
    display: none;
  }
  .tiers__block-card h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .price__txt {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 5px;
  }
  .time__txt {
    font-size: 14px;
    line-height: 22px;
  }
  .tiers__block-card span{
    line-height: 22px;
  }
  .member__application-txt--col{
    width: 100%;
  }
  .member__application-links--col{
    width: 100%;
  }
  .member__application-title--txt h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .member__application-title--txt p {
    font-size: 14px;
    line-height: 22px;
  }
  .member__application {
    padding: 20px 0px 40px;
  }
  .member__application-list ul li a {
    padding: 13px 95px 13px 21px;
    font-size: 16px;
    line-height: 22px;
    min-height: 70px;
  }
  .member__application-list ul li {
    margin-bottom: 20px;
  }
  .member__application-list ul li a span {
    width: 42px;
    height: 42px;
    padding: 9px;
  }
  .minded__colleagues-row {
    row-gap: 20px;
  }
  .news_update_main {
    margin-bottom: 20px;
  }
  /* BLOG MSTA  */
  .custom__button-content {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 18px;
  }
  .featured__stories {
    padding: 40px 0;
  }
  .featured__stories .featured__stories-row {
    flex-direction: column;
    row-gap: 30px;
  }
  .featured__stories-row .featured__stories-image-col,
  .featured__stories-row .featured__stories-listing-col {
    width: 100%;
  }
  .featured__stories-top--row h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .featured__stories-card-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 15px;
  }
  .featured__stories-card-wrapper .featured__stories-card {
    column-gap: 20px;
    row-gap: 10px;
    width: calc(50% - 7.5px);
    flex-direction: column;
  }
  .featured__stories-card-image--wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1.45 / 1;
  }
  .featured__stories-card--info h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .featured__more-wrapper span, .featured__more-wrapper a {
    font-size: 14px;
    line-height: 20px;
  }
  .featured__more-wrapper span svg, .featured__more-wrapper a svg {
    width: 18px;
    height: 10px;
  }
  /* Rebuilding Section  */
  .building__content-text--wrapper.building__content-text--wrapper h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .building__content-text--wrapper p {
    font-size: 14px;
    line-height: 22px;
  }
  .building__content-img {
    height: auto;
    aspect-ratio: 1.011/1;
  }
  /* Publications Section  */
  .events__section {
    padding: 40px 0px;
  }
  .events__page-section {
    padding: 40px 0 50px;
  }
  .events__section-wrapper h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .events__section-buttons {
    column-gap: 14px;
    row-gap: 10px;
  }
  .events__section-buttons .event__btn {
    min-width: 130px;
    padding: 12px 10px;
    font-size: 18px;
    line-height: 24px;
  }
   .events__page-section .events__section-buttons .event__btn {
    padding: 17px 14px 17px;
  }
  .events__section-pagination {
    margin-top: 30px;
    column-gap: 12px;
  }
  .events__section-pagination .pagination__btn {
    font-size: 14px;
    line-height: 22px;
    min-width: 50px;
    padding: 7px 10px;
  }

  /* Newsletter  */
  .newsletter__image-content {
    width: 100%;
    max-width: 100%;
    margin-top: -80px;
  }
  .newsletter__details h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .newsletter__input-wrapper input{
    padding: 9.5px 10px;
    font-size: 18px;
    line-height: 26px;
  }
   .newsletter__input-wrapper input::placeholder{
    font-size: 18px;
    line-height: 26px;
  }
  /* Region Events  */
  .region__events-column {
    width: 100%;
  }
  .region__events h2 {
    font-size: 26px;
    line-height: 32px;
  }

  /* Webcasts  */
  .webcasts__section-wrapper {
    padding: 40px 0px;
  }
  .webcasts__details h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .webcasts__details ul {
    margin-bottom: 10px;
  }
  .webcasts__details p,
  .webcasts__details ul li {
    font-size: 14px;
    line-height: 22px;
  }
  .webcasts__image-content{
    margin-top: -60px;
  }
  .newsletter__details .hs_cos_wrapper_type_form .hs-form-field {
    max-width: 100%;
  }
  .newsletter__details .hs_submit {
    position: relative;
    margin-top: 20px;
  }
  .newsletter__details .hs_cos_wrapper_type_form .hs-form-field input {
    font-size: 16px;
    padding: 9.4px 15px;
  }
  .newsletter__details .hs_submit .hs-button {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 25px;
  }
  /* Tillie Page  */
  .tillie__banner .protected__wrapper{
    padding: 40px 0;
  }
  .help__block{
    padding: 40px 0 20px;
  }
  .help__need-txt h2{
    font-size: 26px;
    line-height: 32px;
  }
  .help__need-txt p{
    font-size: 14px;
    line-height: 22px;
  }
  .help__need-txt .help__need-btn {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 15px;
  }
  .prompts {
    padding: 20px 0px 40px;
  }
  .prompts__title h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .prompts__accordion-item details {
    margin-bottom: 10px;
  }
  .prompts__accordion-item summary {
    font-size: 16px;
    line-height: 22px;
  }
  .accordion__content p {
    font-size: 14px;
    line-height: 22px;
  }
  .accordion__content a, .accordion__content button {
    padding: 10px 15px;
    font-size: 14px !important;
    line-height: 18px !important;
    margin-bottom: 5px;
  }
  /* Education Policy Page  */
  .make__impact{
    padding: 40px 0 20px;
  }
  .policy__priorities{
    padding: 20px 0;
  }
  .adopted__resolutions {
    padding: 20px 0 40px;
  }
  .capital__visit {
    padding: 20px 0 40px; 
  }
  .capital_right_title h2 {
    font-size: 26px;
    line-height: 32px;
  } 
  .capital_right_title p {
    font-size: 14px;
    line-height: 22px;
  }
  .capital_right_title a,
  .capital_right_title button {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 15px;
  }
  .capital_vector_image {
    max-width: 518px;
    margin: 0 auto;
    margin-top: -40px;
  }

  /* Legal Services Page  */
  .help__need{
    padding: 40px 0;
  } 
  .legal_services_title h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .legal_services_title .legal__icon {
    min-width: 24px;
    width: 24px;
    height: 20px;
  }
  .legal_services_title p {
    font-size: 16px;
    line-height: 22px;
  }
   .legal_services_title ul li{
    min-height: 24px;
  }
  .legal_services_title ul li:last-child p{
    font-size: 14px;
    line-height: 22px;
  }
  .legal_services_btn {
    padding: 10px 15px;
    font-size: 14px;
    line-height: 18px;
  }

  .legal__resources {
    padding: 40px 0 20px;
  }
  .legal__content-section{
    padding: 20px 0 40px;
  }
  .legal__content-title {
    margin-bottom: 20px;
  }
  .legal__content-title h2{
    font-size: 26px;
    line-height: 32px;
  }
  .legal__content-wrapper h1 { font-size: 26px; }
  .legal__content-wrapper h2 { font-size: 24px; }
  .legal__content-wrapper h3 { font-size: 22px; }
  .legal__content-wrapper h4 { font-size: 20px; }
  .legal__content-wrapper h5 { font-size: 16px; }
  .legal__content-wrapper h6 { font-size: 14px; }

  .legal__content-wrapper p,
  .legal__content-wrapper span,
  .legal__content-wrapper a,
  .legal__content-wrapper li,
  .legal__content-wrapper pre,
  .legal__content-wrapper blockquote {
    font-size: 14px;
    line-height: 22px;
  }
  /* About Page  */
  .unified__voice{
    padding: 40px 0 20px;
  }
  .unified__voice-title h2{
    font-size: 26px;
    line-height: 32px;
  }
  .unified__voice-row{
    row-gap: 20px;
  }
  .unified__voice-col{
    width: 100%;
  }
  .unified__voice-col p {
    font-size: 14px;
    line-height: 22px;
  }
  .about__msta{
    padding: 20px 0 40px;
  }
 
  .about__govenance{
    padding:40px 0 20px;
  }
  .about-news__update_wrapper{
    padding: 20px 0 40px;
  } 
  .about-news__update_wrapper .news_update_main{
    margin-bottom: 20px;
  }

  /* Professional Learning Page  */
  .professional-prompts{
    padding: 40px 0;
  }
  .behaviors__section .webcasts__section-wrapper{
    padding: 40px 0;
  }
  .learning__events{
    padding: 40px 0;
  }
  .graduate__section{
    margin-bottom: 20px;
  }
  .graduate__section_main_wrapper {
    padding: 25px 0;
  }
  .graduate__content-text--wrapper h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .graduate__content-text--wrapper p {
    font-size: 14px;
    line-height: 22px;
  }
  .graduate__content-img{
    height: 100%;
  }
  .protected.protected__benefits.tillie__banner {
    margin-top: 25px;
  }
  betty-bot .text-center {
    font-size: 14px;
  }
  /* Region */
  .service__coordinators-list ul li {
    width: 100%;
  }
  .service__coordinators-list ul {
    row-gap: 20px;
  }
  .region__officers-list ul li {
    width: 50%;
    padding: 0px 10px;
  }
  .service__coordinators-title h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .region__officers-list h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .service__coordinators {
    padding: 40px 0px 20px;
  }
  .region__officers {
    padding: 20px 0px 70px;
  }
  .region__list-content h4, .region__list-content h5 {
    font-size: 20px;
    line-height: 24px;
  }
  .region__list-content p {
    font-size: 16px;
    line-height: 22px;
  }
  .region__officers-list ul {
    margin: 0px -10px;
  }
  .region__officers-list ul {
    row-gap: 20px;
  }
  .region__officers-list h3 {
    font-size: 22px;
    line-height: 40px;
  }
  .coordinators__list-img {
    width: 80px;
    height: 80px;
  }
  .coordinators__list-row {
    padding: 15px;
  }
  .coordinators__list-detail {
    width: calc(100% - 100px);
  }
  .coordinators__list-detail h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .coordinators__list-detail p, .coordinators__list-detail a {
    font-size: 16px;
    line-height: 22px;
  }
  /* Region */
  .announcement__bar p{
    font-size: 14px;
    line-height: 20px;
  }
  .side__bar-wrapper {
    padding: 60px 0px 254px 0px;
  }
}
@media (max-width: 430px) {
  .featured__stories-card-wrapper .featured__stories-card {
    width: 100%;
  }
  .newsletter__form {
    flex-direction: column;
    row-gap: 10px;
  }
}

/* Responsive Css End Here */