* {
    box-sizing: border-box;
}

.section {
    padding: 64px 20px
}

.section--center {
    text-align: center
}

.container {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1300px;
    width: 100%
}

.container--lg {
    margin: 0 auto;
    max-width: 1100px;
    width: 100%
}

.container--md {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%
}

.container--sm {
    margin: 0 auto;
    max-width: 750px;
    width: 100%
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px
}

.px--none .row {
    margin: 0
}

.col {
    box-sizing: border-box;
    flex: 1;
    padding: 15px;
    position: relative
}

.col--1 {
    flex: 0 0 8.333%;
    max-width: 8.333%
}

.col--2 {
    flex: 0 0 16.666%;
    max-width: 16.666%
}

.col--3 {
    flex: 0 0 25%;
    max-width: 25%
}

.col--4 {
    flex: 0 0 33.333%;
    max-width: 33.333%
}

.col--5 {
    flex: 0 0 41.666%;
    max-width: 41.666%
}

.col--6 {
    flex: 0 0 50%;
    max-width: 50%
}

.col--7 {
    flex: 0 0 58.333%;
    max-width: 58.333%
}

.col--8 {
    flex: 0 0 66.666%;
    max-width: 66.666%
}

.col--9 {
    flex: 0 0 75%;
    max-width: 75%
}

.col--10 {
    flex: 0 0 83.333%;
    max-width: 83.333%
}

.col--11 {
    flex: 0 0 91.666%;
    max-width: 91.666%
}

.col--12 {
    flex: 0 0 100%;
    max-width: 100%
}

.col__item--center {
    align-items: center;
    display: flex;
    justify-content: center
}

.heading {
    font-weight: 700;
    margin: 0 0 13px
}

.heading--h1 {
    font-family: Libre Caslon Text, serif;
    font-size: 48px;
    font-weight: 700;
}

.heading--h2 {
    font-family: Lexend, sans-serif !important;
    font-size: 40px;
    font-weight: 600
}

.heading--h3 {
    font-size: 28px
}

.heading--h3,
.heading--h4 {
    font-family: Lexend, sans-serif;
    font-weight: 600
}

.heading--h4 {
    font-size: 24px
}

.heading--h5 {
    font-size: 20px;
    font-weight: 500
}

.heading--h5,
.heading--h6 {
    font-family: Lexend, sans-serif
}

.heading--h6 {
    font-size: 16px
}

.heading--xl {
    font-size: 64px;
    font-weight: 600;
}

.heading--lg {
    font-size: 54px;
}


.paragraph--small {
    font-size: 14px
}

.paragraph--large {
    font-size: 20px;
    font-weight: 500;
}

.paragraph--medium {
    font-weight: 500
}

.paragraph--highlight {
    font-size: 20px
}

.paragraph--3--line,
.paragraph--3--line p,
.paragraph--3--line span {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.paragraph--4--line,
.paragraph--4--line p,
.paragraph--4--line span {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.border--left {
    border-left: 1px solid #000
}

.button {
    box-sizing: border-box;
    cursor: pointer;
    transition: all .3s
}




.button.button--secondary {
    background-color: #fff;
    border: 1px solid #b5b8ba;
    color: #333
}

.button.button--pink {
    background-color: #991e66;
    border: 1px solid #991e66;
    color: #fff
}

.button.button--pink:hover {
    background-color: #fff;
    border: 1px solid #991e66;
    color: #991e66
}

.button.button--magenta,
.button.button--purple {
    background-color: #991e66;
    border: 1px solid #991e66;
    color: #fff
}

.button.button--magenta:hover,
.button.button--purple:hover {
    background-color: #fff;
    border: 1px solid #991e66;
    color: #991e66
}

.button.button--yellow {
    background-color: #ffd057;
    border: 1px solid #ffd057;
    color: #333
}

.button.button--secondary:hover {
    background-color: #005a9c;
    border: 1px solid #b5b8ba;
    color: #fff
}

.button.button--outline {
    background-color: #fff;
    border: 1px solid #b5b8ba;
    color: #333
}

.button.button--outline:hover {
    background-color: #005a9c;
    border: 1px solid #b5b8ba;
    color: #fff
}

.button.button--rounded {
    border-radius: 50%;
    font-size: 18px;
    height: 48px;
    justify-content: center;
    min-width: 48px;
    padding: 0;
    text-align: center;
    width: 48px
}

.button.button--flex,
.button.button--rounded {
    align-items: center;
    display: flex
}

.button.button--flex {
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between
}

.button.button--flex--vertical {
    flex-direction: column;
    min-height: 200px
}

.button--icon {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: space-between;
    width: max-content
}

.button--icon img {
    width: auto !important
}

.button--icon:hover img {
    filter: brightness(100)
}

.hs-button {
    background-color: #005a9c;
    border: none;
    border-radius: 12px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    transition: all .3s
}

.hs-button:hover {
    background-color: #fff;
    color: #005a9c
}

.button,
.hs-button,
button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all .15s linear;
    white-space: normal
}

.button:disabled,
.hs-button:disabled,
button:disabled {
    background-color: #d0d0d0;
    border-color: #d0d0d0;
    color: #e6e6e6
}

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

.p-btn--1 {
    align-items: center;
    background-color: #fff;
    border: 1px solid #b5b8ba;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    font-size: .8rem;
    justify-content: center;
    max-width: 150px;
    padding: .35rem .7rem;
    text-decoration: none
}

.btn-primary-circle.blue {
    background-color: #005a9c;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: table;
    text-align: center;
    transition: all .3s;
    width: 48px
}

.t-faculty__button1 {
    align-items: center;
    background-color: #fff;
    border: 1px solid #b5b8ba;
    border-radius: 50%;
    height: 48px;
    justify-content: center;
    margin-right: 12px;
    position: relative;
    width: 48px
}

.t-faculty__button1,
.t-faculty__button1 a {
    display: inline-flex
}

.hs-input {
    border: 1px solid #b5b8ba;
    border-radius: 40px
}

a {
    color: #991e66;
    text-decoration: none;
    transition: all .3s
}

a:hover {
    color: #000
}

.icon--box {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle
}

.icon--inner {
    align-items: center;
    display: flex;
    gap: 10px
}

.shadow,
.shadow--md {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1), 0 0 4px 0 rgba(0, 0, 0, .08)
}

.bg__small {
    position: relative
}

.bg__small:before {
    content: "";
    height: 340px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: -1
}

.bg__small--success:before {
    background-color: #f2ecf0
}

.bg__small--secondary:before {
    background-color: #991e66
}

select {
    background: #fff;
    border: 1px solid #767b7f;
    border-radius: 8px;
    font-family: Lexend, sans-serif;
    padding: 8px 26px 8px 7px
}

.bg--white {
    background-color: #fff
}

.bg--primary {
    background-color: #005a9c
}

.bg--primary--dark {
    background-color: #0b3253
}

.bg--secondary {
    background-color: #991e66
}

.bg--success {
    background-color: #f2ecf0
}

.bg--info {
    background-color: #f4f5f5
}

.bg--info--dark {
    background-color: #dfe1e2
}

.bg--light {
    background-color: #ccdeeb
}

.bg--light_2 {
    background-color: #eeeaf7
}

.bg--danger {
    background-color: #fdebd2
}

.bg--warning {
    background-color: #f59c20
}

.bg--dark {
    background-color: #000
}

.bg--muted {
    background-color: #cca646
}

.bg--accent {
    background-color: #6610f2
}

.bg--accent_2 {
    background-color: #aa98d5
}

.bg--danger--light {
    background-color: #fff6dd
}

.bg--yellow {
    background-color: #ffd057
}

.bg--gradient {
    backdrop-filter: blur(25.75px);
    background: linear-gradient(90deg, hsla(0, 0%, 100%, .95), hsla(0, 0%, 100%, 0) 284.76%);
    background-color: #000
}

.fancy__bullet ul li:before {
    content: url()
}

.fancy__bullet ul {
    padding: 0 !important
}

.fancy__bullet ul li {
    align-items: start;
    display: flex;
    gap: 10px;
    list-style: none;
    margin-bottom: 17px
}

.w--100 {
    width: 100%
}

.w--max {
    margin-left: auto;
    margin-right: auto;
    width: max-content
}

.text--white {
    color: #fff
}

.text--primary {
    color: #005a9c
}

.text--secondary {
    color: #991e66
}

.text--dark {
    color: #141515
}

.text--xs {
    font-size: 10px
}

.text--sm {
    font-size: 12px
}

.text--base {
    font-size: 14px
}

.text--md {
    font-size: 16px
}

.text--lg {
    font-size: 18px
}

.text--xl {
    font-size: 20px
}

.text--2xl {
    font-size: 24px
}

.text--3xl {
    font-size: 28px
}

.text--4xl {
    font-size: 32px
}

.text--5xl {
    font-size: 36px
}

.text--7xl {
    font-size: 40px
}

.text--8xl {
    font-size: 44px
}

.text--9xl {
    font-family: Libre Caslon Text, serif;
    font-size: 48px
}

.m--none {
    margin: 0 !important
}

.mx--auto {
    margin-left: auto;
    margin-right: auto
}

.mt--none {
    margin-top: 0 !important
}

.mt--sm {
    margin-top: 10px !important
}

.mt--md {
    margin-top: 20px !important
}

.mt--lg {
    margin-top: 40px !important
}

.mt--xl {
    margin-top: 70px !important
}

.mb--sm {
    margin-bottom: 10px !important
}

.mb--md {
    margin-bottom: 20px !important
}

.mb--lg {
    margin-bottom: 40px !important
}

.mb--xl {
    margin-bottom: 70px !important
}

.ml--sm {
    margin-left: 10px !important
}

.ml--md {
    margin-left: 20px !important
}

.ml--lg {
    margin-left: 40px !important
}

.mr--sm {
    margin-right: 10px !important
}

.mr--md {
    margin-right: 20px !important
}

.mr--lg {
    margin-right: 40px !important
}

.m__top--n1 {
    margin-top: -4px !important
}

.m__top--n2 {
    margin-top: -8px !important
}

.m__top--n3 {
    margin-top: -12px !important
}

.m__top--n4 {
    margin-top: -16px !important
}

.m__top--n5 {
    margin-top: -20px !important
}

.m__top--n6 {
    margin-top: -24px !important
}

.m__top--n7 {
    margin-top: -32px !important
}

.m__top--n8 {
    margin-top: -40 !important
}

.m__top--n9 {
    margin-top: -48px !important
}

.m__top--n10 {
    margin-top: -56px !important
}

.p--none {
    padding: 0 !important
}

.p--xs {
    padding: 4px !important
}

.p--sm {
    padding: 8px !important
}

.p--md {
    padding: 16px !important
}

.p--lg {
    padding: 24px !important
}

.p--xl {
    padding: 32px !important
}

.p--xxl {
    padding: 48px !important
}

.pt--none {
    padding-top: 0 !important
}

.pt--xs {
    padding-top: 4px !important
}

.pt--sm {
    padding-top: 8px !important
}

.pt--md {
    padding-top: 16px !important
}

.pt--lg {
    padding-top: 24px !important
}

.pt--xl {
    padding-top: 32px !important
}

.pt--xxl {
    padding-top: 48px !important
}

.pr--none {
    padding-right: 0 !important
}

.pr--xs {
    padding-right: 4px !important
}

.pr--sm {
    padding-right: 8px !important
}

.pr--md {
    padding-right: 16px !important
}

.pr--lg {
    padding-right: 24px !important
}

.pr--xl {
    padding-right: 32px !important
}

.pr--xxl {
    padding-right: 48px !important
}

.pb--none {
    padding-bottom: 0 !important
}

.pb--xs {
    padding-bottom: 4px !important
}

.pb--sm {
    padding-bottom: 8px !important
}

.pb--md {
    padding-bottom: 16px !important
}

.pb--lg {
    padding-bottom: 24px !important
}

.pb--xl {
    padding-bottom: 32px !important
}

.pb--xxl {
    padding-bottom: 48px !important
}

.pl--none {
    padding-left: 0 !important
}

.pl--xs {
    padding-left: 4px !important
}

.pl--sm {
    padding-left: 8px !important
}

.pl--md {
    padding-left: 16px !important
}

.pl--lg {
    padding-left: 24px !important
}

.pl--xl {
    padding-left: 32px !important
}

.pl--xxl {
    padding-left: 48px !important
}

.px--none {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.px--xs {
    padding-left: 4px !important;
    padding-right: 4px !important
}

.px--sm {
    padding-left: 8px !important;
    padding-right: 8px !important
}

.px--md {
    padding-left: 16px !important;
    padding-right: 16px !important
}

.px--lg {
    padding-left: 24px !important;
    padding-right: 24px !important
}

.px--xl {
    padding-left: 32px !important;
    padding-right: 32px !important
}

.px--xxl {
    padding-left: 48px !important;
    padding-right: 48px !important
}

.py--none {
    padding-bottom: 0 !important;
    padding-top: 0 !important
}

.py--xs {
    padding-bottom: 4px !important;
    padding-top: 4px !important
}

.py--sm {
    padding-bottom: 8px !important;
    padding-top: 8px !important
}

.py--md {
    padding-bottom: 16px !important;
    padding-top: 16px !important
}

.py--lg {
    padding-bottom: 24px !important;
    padding-top: 24px !important
}

.py--xl {
    padding-bottom: 32px !important;
    padding-top: 32px !important
}

.py--xxl {
    padding-bottom: 48px !important;
    padding-top: 48px !important
}

.image {
    display: block;
    height: auto;
    max-width: 100%
}

.image--full {
    width: 100%
}

.image--rounded {
    border-radius: 16px
}

.image--rounded--top {
    border-radius: 16px 16px 0 0
}

.image--cover {
    object-fit: cover
}

.img--fluid {
    max-width: 100%
}

.text--center {
    text-align: center
}

.text--left {
    text-align: left
}

.text--right {
    text-align: right
}

.display--block {
    display: block
}

.display--inline {
    display: inline
}

.display--inline-block {
    display: inline-block
}

.display--flex {
    display: flex
}

.display--none {
    display: none
}

.border {
    border: 1px solid #ccc
}

.border--rounded {
    border-radius: 16px
}

.border--rounded-Xl {
    border-radius: 24px
}

.border--secondary {
    border-color: #991e66
}

.border--dark {
    border-color: #767b7f
}

.align--items--center {
    align-items: center
}

.justify--space--between {
    justify-content: space-between
}

.justify_elements--vertical {
    align-items: start;
    display: flex;
    flex-direction: column;
    justify-content: space-around
}

.justify--content--center {
    justify-content: center !important
}

.justify--content--end {
    justify-content: end !important
}

.justify--content--top {
    justify-content: start !important
}

.align--item--center {
    justify-content: center !important
}

.justify--content--end {
    justify-content: end !important
}

.justify--content--top {
    justify-content: start !important
}



.alerts,
.justify_elements--horizontal {
    align-items: center;
    display: flex;
    justify-content: space-between
}

.alerts {
    flex-wrap: wrap;
    gap: 15px
}

.alerts .heading {
    margin: 0
}

.icon--list li:before {
    content: url(../images/tick-circle.png)
}

.icon--list li {
    align-items: center;
    display: flex;
    gap: 7px;
    margin: 10px 0
}

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

.z--index--1 {
    position: relative;
    z-index: 1
}

.z--index--2 {
    position: relative;
    z-index: 2
}

.z--index--3 {
    position: relative;
    z-index: 3
}

.z--index--4 {
    position: relative;
    z-index: 4
}

.z--index--5 {
    position: relative;
    z-index: 5
}

.z--index--6 {
    position: relative;
    z-index: 6
}

.z--index--7 {
    position: relative;
    z-index: 7
}

.h--full {
    height: 100%
}

.item {
    box-sizing: border-box;
    position: relative
}

.slick-dotted .slick-track {
    margin-bottom: 0
}

.slick-slide {
    margin: 0 15px
}

.slick-prev:before {
    content: url(https://21164580.fs1.hubspotusercontent-na1.net/hubfs/21164580/slick-arrow-left.png)
}

.slick-next:before {
    content: url(https://21164580.fs1.hubspotusercontent-na1.net/hubfs/21164580/slick-arrow-right.png)
}

.slick-next,
.slick-prev {
    bottom: -15px;
    height: 52px;
    left: 0;
    margin: auto;
    right: 0;
    top: inherit;
    width: 52px;
    z-index: 2
}

.slick-prev {
    transform: translateX(-130px)
}

.slick-next {
    transform: translateX(130px)
}

.slick-dots {
    bottom: 0;
    left: 0;
    margin: auto;
    right: 0;
    width: max-content
}

.slick-dots li button:before {
    color: #000;
    font-size: 8px;
    opacity: 1
}

.slick-dots li.slick-active button:before {
    color: #005a9c;
    font-size: 16px;
    opacity: 1
}

.slideshow--bg--secondary .slick-slide {
    background-color: #991e66
}

.slideshow--rounded .slick-slide {
    border-radius: 16px
}

.slider--quote .item:before {
    content: url(https://21164580.fs1.hubspotusercontent-na1.net/hubfs/21164580/quote.png);
    display: block;
    left: 0;
    margin: -90px auto auto;
    position: absolute;
    right: 0;
    text-align: center
}

.slider--quote .slick-slide {
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: space-between;
    padding: 50px
}

.slider--quote .slick-track {
    display: flex;
    padding-top: 70px
}

.slide__bg--white .slick-slide {
    background-color: #fff
}

.slide__bg--primary .slick-slide {
    background-color: #005a9c
}

.slide__bg--secondary .slick-slide {
    background-color: #991e66
}

.slide--rounded .slick-slide {
    border-radius: 16px
}

.slide--border .slick-slide {
    border: 1px solid #000
}

.slide--border--secondary .slick-slide {
    border-color: #991e66 !important
}

.slide--shadow .slick-slide {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1), 0 0 4px 0 rgba(0, 0, 0, .08)
}

.slide--shadow .slick-track {
    padding-bottom: 30px
}

.slick-dotted .slick-track {
    margin-bottom: 50px
}

.slide__rows .slick-slide .item {
    align-items: start;
    border-radius: 16px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
    min-height: 250px
}

.slide__rows--primary .item {
    background-color: #005a9c
}

.slide__rows--white .item {
    background-color: #fff;
    border: 1px solid #767b7f
}

.slide__rows--small .slick-slide .item {
    min-height: 200px
}

.accordion h4 {
    align-items: center;
    display: flex;
    font-weight: 400;
    margin: 0
}

.accordion h4 span {
    background-color: #ffd057;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    min-width: 50px;
    padding: 4px 8px;
    text-align: center;
    white-space: nowrap;
}

.accordion .accordion--item+.accordion--item {
    border-top: 2px solid #14151575
}

.accordion .accord--header {
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    font-weight: 700;
    justify-content: space-between;
    padding: 15px
}

.accordion .accord--content {
    animation: slideDown .3s ease-out;
    display: none;
    padding: 15px
}

.accordion--icon {
    color: #3b3e409e;
    font-size: 20px;
    transition: transform .2s ease
}

.accordion .accord--header.active .accordion--icon {
    content: "-";
    transform: rotate(180deg)
}

.tabs {
    border-radius: 12px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .1);
    overflow: hidden
}

.tab__item {
    border-bottom: 1px solid #ddd
}

.tab__header {
    background: #f4f5f5;
    border: none !important;
    border-bottom: 4px solid #ddd !important;
    cursor: pointer;
    font-family: Lexend, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 25px 20px;
    text-align: left;
    transition: background .3s;
    width: 100%;
    border-radius: 0 !important;
    margin: 0;
    color: #000 !important;
    outline: none !important;
}

.tab__header.active,
.tab__header:hover {
    border-bottom: 4px solid #005a9c !important;
}

.tab__content {
    animation: fadeIn .4s ease-in-out;
    background-color: #f4f5f5;
    display: none;
    padding: 30px
}

.tab__content.active {
    display: block
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.events__date {
    left: 20px;
    position: absolute;
    top: 20px;
    width: max-content
}

.events__month {
    border-radius: 5px 5px 0 0;
    color: #fff;
    font-size: 14px
}

.events__date span,
.events__month {
    display: block;
    padding: 3px 10px;
    text-transform: uppercase
}

.events__date span {
    border-radius: 0 0 5px 5px;
    box-sizing: border-box;
    color: #000;
    text-align: center;
    width: 100%
}

.info-div {
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    gap: 5px;
    margin-bottom: 17px;
    padding: 7px 8px;
    width: max-content
}

.info-div,
.testimonial__author {
    align-items: center;
    display: flex
}

.testimonial__author {
    gap: 20px
}

.testimonial__author_image {
    border: 2px solid #005a9c;
    border-radius: 50%;
    height: 125px;
    object-fit: cover;
    width: 125px
}

.testimonial__author-info {
    font-size: 20px;
    font-weight: 700
}

.testimonial__author-info span {
    color: #3b3e40;
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-top: 7px
}

.footer {
    background-color: #005a9c;
    padding: 60px 15px 40px
}

.footer .footer__top-row .footer__col:first-child {
    width: calc(35% - 60px)
}

.footer .footer__top-row .footer__col:nth-child(2) {
    width: calc(65% - 60px)
}

.footer .container {
    align-items: start;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin: auto;
    max-width: 1250px;
    padding: 0 15px
}

.footer .footer__icon-text {
    align-items: center;
    display: flex;
    margin: 20px 0
}

.footer .footer__icon-text img {
    max-width: 50px
}

.footer .footer__icon-text a:hover .footer__text {
    color: #fff !important;
    text-decoration: underline
}

.footer .footer__icon-text .footer__text {
    color: #fff;
    font-size: 16px;
    margin: 0;
    padding-left: 15px
}

.footer .footer__icon-text .footer__link {
    text-decoration: none
}

.footer a:hover .footer__text {
    color: #000
}

.footer .footer__links .footer__links-title {
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    margin: 0 0 15px;
    padding-bottom: 5px
}

.footer .footer__links-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer .footer__links .footer__links-group:first-child .footer__links-list {
    column-count: 2;
    gap: 145px
}

.footer .footer__links-list .footer__links-item {
    font-size: 14px;
    margin: 0 0 15px;
    width: max-content
}

.footer .footer__links-list .footer__links-item .footer__links-link {
    color: #fff;
    font-weight: 400;
    text-decoration: none
}

.footer .footer__links-list .footer__links-item .footer__links-link:hover {
    text-decoration: underline
}

.footer .footer__links {
    display: flex;
    gap: 35px;
    justify-content: space-between;
    width: 100%
}

.footer .footer__links .footer__links-group:first-child {
    width: 70%
}

.footer .footer__links .footer__links-group:last-child {
    width: 30%
}

.footer .footer__bottom-row {
    align-items: center;
    border-top: 2px solid #ffd057;
    margin-top: 20px;
    padding-top: 25px
}

.footer .footer__bottom-row .footer__copyright {
    color: #fff;
    font-size: 16px;
    margin: 0
}

.footer .footer__social {
    display: flex;
    justify-content: end
}

.footer .footer__social .footer__social-link {
    margin-left: 20px;
    scale: 1;
    transition: all .3s
}

.footer .footer__social .footer__social-link:hover {
    opacity: .7;
    scale: .95
}

@media (max-width: 1210px) {
    .footer .footer__links .footer__links-group:first-child {
        width: 60%
    }

    .footer .footer__links .footer__links-group:last-child {
        width: 40%
    }
}

@media (max-width: 1100px) {

    .footer .footer__top-row .footer__col:first-child,
    .footer .footer__top-row .footer__col:nth-child(2) {
        width: calc(100% - 20px)
    }
}

@media (max-width: 1000px) {
    .footer .footer__links .footer__links-group:first-child .footer__links-list {
        column-count: 1
    }
}



@media (max-width: 767px) {

    .footer .footer__links .footer__links-group:first-child,
    .footer .footer__links .footer__links-group:last-child {
        width: 100%
    }

    .footer .footer__social .footer__social-link {
        margin-left: 0 15px 0 15px
    }

    .footer .footer__social {
        justify-content: center
    }

    .footer .footer__bottom-row {
        text-align: center
    }

    .footer .links div {
        margin-bottom: 25px
    }
}

@media (min-width: 769px) {
    .tab__headers {
        border-bottom: 0 solid #ddd;
        display: flex
    }

    .tab__header.mobile__only {
        display: none
    }

    .tab__header.desktop__only {
        flex: 1;
        text-align: center
    }

    .tab__item {
        border: none
    }
}

@media (max-width: 768px) {
    .tab__headers {
        display: none
    }

    .tab__header.mobile__only {
        display: block;
        text-align: center
    }

    .tab__header.desktop__only {
        display: none
    }
}

@media (max-width: 1300px) {
    .heading--h1 {
        font-size: 54px;
    }
}

@media (max-width: 1000px) {
    .col--12--md {
        flex: 0 0 100% !important;
        max-width: 100% !important
    }

    .row__item--reverse--md {
        flex-direction: column-reverse
    }
}

@media only screen and (max-width: 1000px) and (min-width:768px) {
    .col--6--md {
        flex: 0 0 50% !important;
        max-width: 50% !important
    }
}

@media (max-width: 768px) {
    .row__item--reverse {
        flex-direction: column-reverse
    }

    .col--3,
    .col--4,
    .col--5,
    .col--6,
    .col--7,
    .col--8,
    .col--9 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .m__top--n10 {
        margin-top: inherit !important
    }

    .col--12-sm {
        flex: 0 0 50%;
        max-width: 50%
    }

    .p--md--xl {
        padding: 20px !important
    }
}

@media (max-width: 767px) {
    .heading--xl {
        font-size: 35px;
        font-weight: 600;
    }

    .section {
        padding: 30px 20px
    }

    .slide__rows--small .slick-slide .item {
        min-height: 200px
    }

    .pr--md--0 {
        padding-right: 10px !important
    }

    .heading--lg {
        font-size: 40px;
    }

    .button--flex--vertical {
        min-height: 100px
    }

    .col--6--sm {
        flex: 0 0 50%;
        max-width: 50%
    }

    .icon--box {
        display: block;
        margin: 10px 0 0
    }

    .text--md--center {
        text-align: center
    }

    .button {
        font-size: 13px;
        padding: 9px 15px
    }

    .text--9xl {
        font-size: 40px !important
    }

    .col {
        padding: 10px
    }

    .col--2--sm {
        flex: 0 0 50% !important;
        max-width: 50% !important
    }

    .heading--h1 {
        font-size: 40px;
    }

    .heading--h2 {
        font-size: 28px;
    }

    .heading--h3 {
        font-size: 23px;
        font-weight: 600
    }

    .slider--quote .slick-slide {
        padding: 30px
    }

    .slider--quote .item:before {
        margin: -80px auto auto;
        scale: .7
    }

    .testimonial__author_image {
        height: 85px;
        width: 85px
    }

    .px--none--mob {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .slick-slide {
        margin: 0 10px
    }

    .heading--h4 {
        font-size: 20px;
        font-weight: 600
    }

    .shadow--mob {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1), 0 0 4px 0 rgba(0, 0, 0, .08)
    }

    .border-rounded--mob {
        border-radius: 16px
    }

    .p--md--mob {
        padding: 10px
    }

    .footer .footer__links{
        flex-direction: column;
    }