:root {
    --container: 1240px;
    --header-height: 160px;
    --header-height-collapsed: 90px;
    --font: "Inter", sans-serif;
    --font-heading: "Inter", sans-serif;
    --color-body: #666666;

    /*Colors*/
    --brand1: #2f3d5e;
    --brand1-dark: #1d2b30;
    --brand2: #36b864;
    --brand1-alt: #1d2b30;
    --bricks-color-primary: #2f3d5e;
    --grey: #666666;
    /*Fonts*/

    /*Spacing*/

    /* Content Width */
    --mobileNav: 294px;

    /*Effects*/

    /*Element Height*/
}

@media (max-width: 767px) {
    :root {}
}

body {
    overflow-x: hidden;
}

div,
section,
footer {
    position: relative;
}

body * {
    box-sizing: border-box
}


a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto
}

b,
strong,
.bold {
    font-weight: 600;
}

p {
    margin-top: 0
}

.link-inherit,
.link-inherit * {
    color: inherit
}

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

p+ul {
    margin-top: 18px
}

ul li {
    list-style: none;
}

#brx-content ul li {
    list-style: unset;
}

#brx-content ul {
    margin-left: 20px
}

.list-inline ul li {
    display: inline;
}

.list-inline ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 16px
}

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

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

.text-center img {
    margin-left: auto;
    margin-right: auto
}

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

.text-small {
    font-size: 16px;
    line-height: 160%;
}

.text-white,
.text-white * {
    color: #fff;
}

.text-grey {
    color: var(--grey)
}

#main p:last-of-type {
    margin-bottom: 0
}

.border-radius img {
    border-radius: 10px;
}

.color-inherit {
    color: inherit
}

.color-body {
    color: var(--color-body)
}

.txt-large {
    font-size: 22px;
    line-height: 28px;
}

.txt-large {
    font-size: 18px;
    line-height: 24px;
}

.read-small {
    width: 730px;
    max-width: 100%;
}

blockquote {
    font-size: 21px;
    line-height: 26px;
    font-family: var(--font);
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #000000;
}

h1+p,
h2+p,
h3+p,
h4+p,
h5+p,
h6+p {
    margin-top: 0
}

.paragraph h1,
.paragraph h2,
.paragraph h3,
.paragraph h4,
.paragraph h5,
.paragraph h6 {
    margin-bottom: 0.65em
}

ol.col2grid {
    columns: 2;
    column-gap: 20px;
    counter-reset: item;
    margin-left: 0 !important;
    position: relative;
}

ol.col2grid li {
    list-style: none;
    counter-increment: item;
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    break-inside: avoid;
}

ol.col2grid li:last-child {
    margin-bottom: 0
}

ol.col2grid li::before {
    content: counter(item) ". ";
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0
}

ul.col2grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-left: 0 !important;
    position: relative;
}

ol.col3grid {
    display: grid;
    grid-template-columns: 3 1fr;
    gap: 20px;
    counter-reset: item;
    margin-left: 0 !important;
    position: relative;
}

ol.col3grid li {
    list-style: none;
    counter-increment: item;
    position: relative;
    padding-left: 22px
}

ol.col3grid li::before {
    content: counter(item) ". ";
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0
}


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

.bg-grey {
    background-color: #e2e4e8;
}

.bg-brand1 {
    background-color: var(--brand1);
}

.bg-brand1-dark {
    background-color: var(--brand1-dark);
}

.bg-brand1-alt {
    background-color: #1d2b30;
}

.bg-brand2 {
    background-color: var(--brand2);
}

.boxed-24 {
    padding: 24px;
    border-radius: 8px
}

.toTopWrapper {
    position: fixed;
    bottom: 39px;
    right: 39px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    border-radius: 50%;
}

.toTopWrapper a {
    width: 48px;
    height: 48px;
    text-indent: -9999px;
    display: block;
    overflow: hidden;
    transition: all 0.3s;
    transform: translateY(90px);
}

.toTopWrapper a:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    background: url(../../img/toTop.svg) center center no-repeat;
    background-size: 26px auto;
    background-color: var(--brand1);
    border-radius: 50%;
}

.totopActive .toTopWrapper a {
    transform: translateY(0)
}

.toTopWrapper:hover {
    transform: scale(1.1);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.toTopWrapper:hover a:before {}

.totopActive .toTopWrapper {
    z-index: 999;
    opacity: 1;
}

#bricks-panel-element {
    height: 100%;
}

.m-bot {
    margin-bottom: var(--space-reg)
}

.m-bot-s {
    margin-bottom: var(--spacesmall)
}

.m-bot-l {
    margin-bottom: var(--space-large)
}

.m-top {
    margin-top: var(--space-reg)
}

.m-top-s {
    margin-top: var(--space-small)
}

.m-top-l {
    margin-top: var(--space-large)
}

.box-shadow {
    box-shadow: var(--shadow)
}

.height-same {
    align-items: stretch
}

.list-inline ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.w-full {
    width: 100%;
}

@media screen and (max-width:959px) {

    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br {
        display: none
    }

    .swiperNumbers h1 br,
    .swiperNumbers h2 br,
    .swiperNumbers h3 br,
    .swiperNumbers h4 br,
    .swiperNumbers h5 br {
        display: block
    }
}

.boldLink a,
a.boldLink {
    color: var(--teal);
    font-weight: bold;
    text-decoration: underline;
}

.img-radius img {
    border-radius: 30px;
}

.wpcf7 form .wpcf7-response-output {
    font-size: 13px;
    border-width: 1px;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 13px;
    margin-top: 5px;
    margin-left: 16px
}