@charset "UTF-8";

.cms-flip {
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH"
}

@-webkit-keyframes moveUp {
    100% {
        -webkit-transform: translateY(0);
        opacity: 1
    }
}

@keyframes moveUp {
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes upDown {
    0% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-5px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes spin-rotate-left {
    to {
        transform: rotate(30deg)
    }

    from {
        transform: rotate(175deg)
    }
}

@-webkit-keyframes spin-rotate-left {
    to {
        transform: rotate(30deg)
    }

    from {
        transform: rotate(175deg)
    }
}

@keyframes spin-rotate-right {
    from {
        transform: rotate(-175deg)
    }

    to {
        transform: rotate(-30deg)
    }
}

@-webkit-keyframes spin-rotate-right {
    from {
        transform: rotate(-175deg)
    }

    to {
        transform: rotate(-30deg)
    }
}

@keyframes spin-rotate-all {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(-360deg)
    }
}

@-webkit-keyframes spin-rotate-all {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(-360deg)
    }
}

@keyframes spin-fade-in-first {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes spin-fade-in-first {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes spin-fade-in-second {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes spin-fade-in-second {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes markerWave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8
    }

    20% {
        opacity: 0.8
    }

    100% {
        -webkit-transform: scale(5.5);
        transform: scale(5.5);
        opacity: 0
    }
}

@keyframes markerWave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8
    }

    20% {
        opacity: 0.8
    }

    100% {
        -webkit-transform: scale(5.5);
        transform: scale(5.5);
        opacity: 0
    }
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0)
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes headerSlideDown {
    0% {
        transform: translateY(-200px)
    }

    100% {
        transform: translateY(0)
    }
}

@-ms-keyframes headerSlideDown {
    0% {
        transform: translateY(-200px)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes headerSlideDown {
    0% {
        transform: translateY(-200px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes headerSlideDown {
    0% {
        transform: translateY(-200px)
    }

    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes squares {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    20% {
        -webkit-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0
    }
}

@-moz-keyframes squares {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    20% {
        -moz-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1
    }

    100% {
        -moz-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0
    }
}

@-o-keyframes squares {
    0% {
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    20% {
        -o-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1
    }

    100% {
        -o-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0
    }
}

@keyframes squares {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }

    20% {
        -webkit-transform: scale(1.24);
        -moz-transform: scale(1.24);
        -o-transform: scale(1.24);
        transform: scale(1.24);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(2.1);
        -moz-transform: scale(2.1);
        -o-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 0
    }
}

@keyframes loading-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes loading-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes flyTopToBottom {
    49% {
        -webkit-transform: translateY(100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%)
    }

    51% {
        opacity: 1
    }
}

@-moz-keyframes flyTopToBottom {
    49% {
        -moz-transform: translateY(100%)
    }

    50% {
        opacity: 0;
        -moz-transform: translateY(-100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes flyTopToBottom {
    49% {
        transform: translateY(100%)
    }

    50% {
        opacity: 0;
        transform: translateY(-100%)
    }

    51% {
        opacity: 1
    }
}

.heading-bold {
    font-family: "Quicksand", sans-serif;
    font-weight: bold
}

.heading-600 {
    font-family: "Quicksand", sans-serif;
    font-weight: 600
}

.heading-500 {
    font-family: "Quicksand", sans-serif;
    font-weight: 500
}

:root {
    --site-branding-height-header-desktop: 100px;
    --site-branding-height-header-mobile: 60px
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar
}

a {
    transition: all 300ms linear 0ms;
    color: inherit
}

a.text-link {
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px;
    color: var(--color-primary)
}

a.text-link:hover {
    border-color: transparent
}

a,
a:hover,
a:focus,
a:before,
a:after {
    outline: none;
    text-decoration: none
}

*,
*:before,
*:after {
    box-sizing: inherit
}

p {
    margin-top: 0;
    margin-bottom: 25px
}

p:last-child {
    margin-bottom: 0
}

body {
    padding: 0;
    margin: 0;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.6875;
    color: #848e9f;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    font-weight: normal;
    letter-spacing: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    fill: currentColor
}

body.body-default-font {
    font-family: "Roboto", sans-serif
}

svg {
    fill: currentColor
}

.site {
    position: relative
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--color-secondary);
    clear: both;
    line-height: 1.4;
    margin: 0 0 15px;
    font-weight: bold;
    -webkit-font-smoothing: auto;
    font-smoothing: auto;
    -moz-osx-font-smoothing: auto
}

.single h1,
.single h2,
.single h3,
.single h4,
.single h5,
.single h6,
.single .h1,
.single .h2,
.single .h3,
.single .h4,
.single .h5,
.single .h6 {
    color: #26365e
}

.heading-default-font h1,
.heading-default-font h2,
.heading-default-font h3,
.heading-default-font h4,
.heading-default-font h5,
.heading-default-font h6,
.heading-default-font .h1,
.heading-default-font .h2,
.heading-default-font .h3,
.heading-default-font .h4,
.heading-default-font .h5,
.heading-default-font .h6 {
    font-family: "Quicksand", sans-serif
}

h1,
.h1 {
    font-size: 60px
}

h2,
.h2 {
    font-size: 43px
}

h3,
.h3 {
    font-size: 34px
}

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

h5,
.h5 {
    font-size: 20px
}

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

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

    .content-area h2:not(.no-responsive),
    .content-area .h2:not(.no-responsive) {
        font-size: 35px !important
    }
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    vertical-align: top;
    transition: all 300ms linear 0ms
}

label {
    margin-bottom: 0
}

table {
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #ededed;
    border-collapse: collapse;
    border-spacing: 0;
    line-height: 2;
    margin: 0 0 32px;
    width: 100%;
    border-radius: 0
}

table th {
    color: #054c8b
}

caption,
td {
    font-weight: normal;
    text-align: left
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 13px 8px
}

th {
    font-weight: 600;
    border-top: 1px solid #ededed;
    padding: 10px;
    border-right: 1px solid #ededed
}

td {
    border-top: 1px solid #ededed;
    padding: 10px;
    border-right: 1px solid #ededed
}

dl {
    margin: 0 0 0 25px
}

dl dt {
    font-weight: normal;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000
}

dl dd {
    line-height: normal;
    margin-bottom: 20px
}

dl dd a {
    color: #000
}

dl dd a:hover {
    color: var(--color-primary)
}

code,
kbd {
    background-color: transparent;
    border-radius: 4px;
    color: inherit;
    font-size: 100%;
    padding: 2px 4px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none
}

ins {
    color: #fff;
    border: none;
    padding: 2px;
    text-decoration: none;
    background-color: var(--color-primary)
}

pre {
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    margin: 20px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre-wrap;
    word-wrap: break-word
}

ol {
    list-style: outside none decimal;
    padding-left: 15px
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px
}

ul li {
    list-style-position: inside
}

.entry-content li>ul,
.comment-content li>ul {
    margin-left: 17px
}

dl+h2+ul {
    padding-left: 2px;
    list-style: outside;
    margin-bottom: 20px
}

dl+h2+ul ul {
    padding-left: 20px
}

dl+h2+ul ul li {
    list-style: outside
}

dl+h2+ul ul ul {
    padding-left: 0
}

ul+h2+ol {
    padding-left: 25px;
    margin-bottom: 18px
}

.comment-content ul+h2+ol {
    padding-left: 0
}

.comment-content ul+h2+ol ol {
    padding-left: 20px
}

img.size-thumbnail {
    max-width: 160px
}

.entry-content .wp-block-cover {
    margin-bottom: 1.5em
}

.entry-content .wp-block-cover .wp-block-cover-text {
    color: #fff
}

.entry-content .wp-block-cover .wp-block-cover-text a {
    text-decoration: underline
}

.entry-content .wp-block-cover .wp-block-cover-text a:hover {
    text-decoration: none
}

.entry-content .wp-block-cover .wp-block-cover-image {
    margin-bottom: 1.5em
}

.post-password-form label {
    display: block;
    max-width: 60%
}

.post-password-form input {
    margin: 10px 0
}

@media screen and (max-width:767px) {
    .post-password-form label {
        max-width: 60%
    }
}

.wp-block-button {
    margin-bottom: 30px
}

#tslOverlay {
    background-color: transparent !important
}

#elementor-panel-get-pro-elements {
    display: none !important
}

.elementor-icons-manager__tab__item {
    height: 80px !important
}

.link-white {
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700
}

.link-white a {
    color: var(--color-primary)
}

.link-white a:hover {
    color: #fff
}

.text-block {
    font-size: 15px;
    line-height: 23px
}

.z-index1 {
    z-index: 1
}

.z-index2 {
    z-index: 2
}

.z-index3 {
    z-index: 3
}

.d-table {
    display: table
}

.d-table-cell {
    display: table-cell;
    vertical-align: middle
}

.br-1px {
    border-radius: 1px
}

.br-2px {
    border-radius: 2px
}

.br-3px {
    border-radius: 3px
}

.br-4px {
    border-radius: 3px
}

.br-5px {
    border-radius: 5px
}

.br-6px {
    border-radius: 6px
}

.br-7px {
    border-radius: 7px
}

.br-8px {
    border-radius: 8px
}

.br-9px {
    border-radius: 9px
}

.br-10px {
    border-radius: 10px
}

.avatar-border img {
    padding: 2px;
    background-color: #fff;
    border: 2px solid red !important;
    border-radius: 50% !important
}

.z-index0 {
    z-index: 0;
    position: relative
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.screen-reader-text {
    display: none
}

#content[tabindex="-1"]:focus {
    outline: 0
}

.alignleft,
.alignright,
.aligncenter {
    margin-top: 6px;
    margin-bottom: 45px
}

.alignleft {
    display: inline;
    float: left;
    margin-right: 35px;
    clear: left
}

.alignright {
    display: inline;
    float: right;
    margin-left: 35px;
    clear: right
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto
}

@media screen and (min-width:768px) {
    .align-left-min768 {
        text-align: left !important
    }

    .align-right-min768 {
        text-align: right !important
    }

    .align-center-min768 {
        text-align: center !important
    }
}

@media screen and (min-width:992px) {
    .align-left-min992 {
        text-align: left !important
    }

    .align-left-min992 {
        text-align: right !important
    }

    .align-center-min992 {
        text-align: center !important
    }
}

@media screen and (max-width:767px) {
    .align-left-max767 {
        text-align: left !important
    }

    .align-right-max767 {
        text-align: right !important
    }

    .align-center-max767 {
        text-align: center !important
    }
}

@media screen and (max-width:991px) {
    .align-left-max991 {
        text-align: left !important
    }

    .align-right-max991 {
        text-align: right !important
    }

    .align-center-max991 {
        text-align: center !important
    }
}

@media screen and (max-width:1199px) {
    .align-left-max1199 {
        text-align: left !important
    }

    .align-right-max1199 {
        text-align: right !important
    }

    .align-center-max1199 {
        text-align: center !important
    }
}

.cms-toggle-close,
.cursor-pointer {
    cursor: pointer
}

.bg-overlay {
    position: relative
}

.bg-overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    display: block
}

.el-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.box-white {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 29px
}

.box-white .menu li {
    font-size: 18px;
    line-height: 29px;
    font-weight: 600
}

.br-radius {
    border-radius: 3px
}

.cms-box {
    padding: 30px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12)
}

.site-overlay {
    position: fixed;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
    cursor: url(../images/pointer.png), auto
}

.site-overlay.open {
    z-index: 9990;
    opacity: 1;
    visibility: visible
}

.cms-bgimage {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.row-visible {
    overflow: visible !important
}

.cms-icon-plus {
    height: 10px;
    width: 10px;
    position: relative;
    display: inline-block
}

.cms-icon-plus:before,
.cms-icon-plus:after {
    content: "";
    position: absolute;
    transition: all 300ms linear 0ms
}

.cms-icon-plus:before {
    width: 100%;
    height: 2px;
    top: 4px;
    left: 0
}

.cms-icon-plus:after {
    width: 2px;
    height: 100%;
    left: 4px;
    top: 0
}

.head-text {
    font-weight: bold;
    color: var(--color-secondary);
    display: inline-block;
    min-width: 100px;
    margin-right: 23px
}

.a-dark {
    color: #054c8b
}

.a-dark:hover,
.a-dark:focus {
    color: #054c8b
}

.inline-block {
    display: inline-block;
    vertical-align: middle
}

.cms-flex {
    display: flex
}

.cms-flex-center {
    display: flex;
    align-items: center
}

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

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

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

.align-justified {
    width: 100%
}

.h-main {
    font-weight: 700
}

.border-shadow {
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.16);
    border: 2px solid var(--color-secondary)
}

.small-spacing {
    letter-spacing: -0.02em !important
}

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

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

.landing-shadow {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1)
}

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

.line-gap {
    background-color: #ebebea;
    height: 1px;
    margin-left: 15px;
    width: calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -o-calc(100% - 30px)
}

.z-index-1 {
    z-index: 1
}

.cms-menu {
    margin: 0;
    list-style: none
}

.cms-menu>li {
    display: inline-block
}

.cms-menu>li>a {
    color: var(--color-secondary);
    font-size: 14px;
    margin: 0 16px;
    position: relative
}

.cms-menu>li>a:before {
    content: "";
    width: 1px;
    height: 13px;
    background-color: #e7e7e7;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: -16px
}

.cms-menu>li:hover>a,
.cms-menu>li.current_page_item>a,
.cms-menu>li.current-menu-item>a,
.cms-menu>li.current_page_ancestor>a,
.cms-menu>li.current-menu-ancestor>a {
    color: var(--color-primary)
}

.cms-menu>li:last-child>a {
    margin-right: 0
}

.cms-menu>li:last-child>a:before {
    display: none
}

.cms-menu .sub-menu {
    display: none
}

.cms-menu.footer-menu>li>a {
    margin: 0 12px;
    color: #8e8e8e
}

.cms-menu.footer-menu>li:hover>a,
.cms-menu.footer-menu>li.current_page_item>a,
.cms-menu.footer-menu>li.current-menu-item>a,
.cms-menu.footer-menu>li.current_page_ancestor>a,
.cms-menu.footer-menu>li.current-menu-ancestor>a {
    color: var(--color-primary)
}

.cms-menu.footer-menu>li:last-child>a {
    margin-right: 0
}

.scale-hover {
    overflow: hidden
}

.scale-hover img {
    transition: all 1s
}

.scale-hover:hover img {
    opacity: 0.9;
    -webkit-transform: scale3d(1.07, 1.07, 1);
    transform: scale3d(1.07, 1.07, 1)
}

.hover-primary {
    transition: all 300ms ease 0s !important
}

.hover-primary:hover {
    color: var(--color-primary) !important
}

.hover-underline-in {
    position: relative
}

.hover-underline-in:after {
    position: absolute;
    content: "";
    border-bottom: 1px solid transparent;
    display: inline-block;
    height: 1px;
    width: 100%;
    top: 1.3em;
    left: 0;
    transition: all 300ms linear 0s
}

.hover-underline-in:hover:after {
    border-color: inherit
}

.hover-underline-out {
    position: relative
}

.hover-underline-out:after {
    position: absolute;
    content: "";
    border-bottom: 2px solid;
    display: inline-block;
    height: 1px;
    width: 100%;
    top: 1.3em;
    left: 0;
    transition: all 300ms linear 0s
}

.hover-underline-out:hover:after {
    border-color: transparent
}

.hover-underline-out.underline-primary:after {
    border: 1px solid var(--color-primary)
}

.hover-underline-out.underline-primary:hover:after {
    border-color: transparent
}

.hover-underline-out i {
    font-size: 12px;
    margin-left: 5px
}

.column-border-left>.elementor-column-wrap {
    position: relative
}

.column-border-left>.elementor-column-wrap:before {
    content: "";
    display: block;
    width: 4px;
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 0;
    background-color: var(--color-secondary)
}

@media screen and (max-width:1500px) {
    .space-responsive-1500 .elementor-column {
        width: 100% !important
    }
}

.pointer-disable .elementor-button {
    pointer-events: none
}

.map-direct-hide .gm-style-cc+div {
    display: none !important
}

.hover-box {
    transition: all 300ms ease 0s !important
}

.hover-box:hover {
    transform: translateY(-7px)
}

.box-border-40,
.box-border-50,
.box-border-60 {
    position: relative
}

.box-border-40:before,
.box-border-50:before,
.box-border-60:before {
    content: "";
    display: block;
    width: 3px;
    position: absolute;
    left: 0;
    z-index: 1
}

.box-border-40.primary:before,
.box-border-50.primary:before,
.box-border-60.primary:before {
    background-color: var(--color-primary)
}

.box-border-40.secondary:before,
.box-border-50.secondary:before,
.box-border-60.secondary:before {
    background-color: var(--color-secondary)
}

.box-border-40:before {
    top: 40px;
    bottom: 40px
}

.box-border-50:before {
    top: 50px;
    bottom: 50px
}

.box-border-60:before {
    top: 60px;
    bottom: 60px
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: inherit;
    opacity: 1;
    text-overflow: ellipsis
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
    text-overflow: ellipsis
}

input::-o-placeholder,
textarea::-o-placeholder {
    color: inherit;
    opacity: 1;
    text-overflow: ellipsis
}

input::-ms-placeholder,
textarea::-ms-placeholder {
    color: inherit;
    opacity: 1;
    text-overflow: ellipsis
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select,
.nice-select,
.cms-date-time .cms-placeholder {
    background-color: transparent;
    border-radius: var(--form-field-radius, 30px);
    border: var(--form-field-border-width, 2px) solid var(--form-field-border-color, #e6e8eb);
    color: #26365e;
    padding: var(--form-field-padding-block-start, 0) var(--form-field-padding-inline-end, 30px) var(--form-field-padding-block-end, 0) var(--form-field-padding-inline-start, 30px);
    line-height: normal;
    height: var(--form-field-height, 60px);
    font-size: 14px;
    transition: all 300ms linear 0ms;
    box-shadow: var(--form-field-shadow, none);
    width: 100%;
    outline: none
}

input[type="text"]:hover,
input[type="text"]:focus,
input[type="text"]:active,
input[type="email"]:hover,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:hover,
input[type="url"]:focus,
input[type="url"]:active,
input[type="password"]:hover,
input[type="password"]:focus,
input[type="password"]:active,
input[type="search"]:hover,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:hover,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="number"]:hover,
input[type="number"]:focus,
input[type="number"]:active,
input[type="range"]:hover,
input[type="range"]:focus,
input[type="range"]:active,
input[type="date"]:hover,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:hover,
input[type="month"]:focus,
input[type="month"]:active,
input[type="week"]:hover,
input[type="week"]:focus,
input[type="week"]:active,
input[type="time"]:hover,
input[type="time"]:focus,
input[type="time"]:active,
input[type="datetime"]:hover,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:hover,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="color"]:hover,
input[type="color"]:focus,
input[type="color"]:active,
textarea:hover,
textarea:focus,
textarea:active,
select:hover,
select:focus,
select:active,
.nice-select:hover,
.nice-select:focus,
.nice-select:active,
.cms-date-time .cms-placeholder:hover,
.cms-date-time .cms-placeholder:focus,
.cms-date-time .cms-placeholder:active {
    border-color: var(--form-field-border-color-hover, var(--color-primary));
    box-shadow: var(--form-field-hover-shadow, none)
}

.form-style-2 input[type="text"],
.form-style-2 input[type="email"],
.form-style-2 input[type="url"],
.form-style-2 input[type="password"],
.form-style-2 input[type="search"],
.form-style-2 input[type="tel"],
.form-style-2 input[type="number"],
.form-style-2 input[type="range"],
.form-style-2 input[type="date"],
.form-style-2 input[type="month"],
.form-style-2 input[type="week"],
.form-style-2 input[type="time"],
.form-style-2 input[type="datetime"],
.form-style-2 input[type="datetime-local"],
.form-style-2 input[type="color"],
.form-style-2 textarea,
.form-style-2 select,
.form-style-2 .nice-select,
.form-style-2 .cms-date-time .cms-placeholder {
    border-radius: 6px;
    padding-inline-start: 55px;
    height: 60px
}

.form-style-2 input[type="text"]:hover,
.form-style-2 input[type="email"]:hover,
.form-style-2 input[type="url"]:hover,
.form-style-2 input[type="password"]:hover,
.form-style-2 input[type="search"]:hover,
.form-style-2 input[type="tel"]:hover,
.form-style-2 input[type="number"]:hover,
.form-style-2 input[type="range"]:hover,
.form-style-2 input[type="date"]:hover,
.form-style-2 input[type="month"]:hover,
.form-style-2 input[type="week"]:hover,
.form-style-2 input[type="time"]:hover,
.form-style-2 input[type="datetime"]:hover,
.form-style-2 input[type="datetime-local"]:hover,
.form-style-2 input[type="color"]:hover,
.form-style-2 textarea:hover,
.form-style-2 select:hover,
.form-style-2 .nice-select:hover,
.form-style-2 .cms-date-time .cms-placeholder:hover {
    border-color: transparent;
    box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.2)
}

.form-style-2 .nice-select:after {
    display: none
}

.form-style-2 .nice-select span.current {
    line-height: 60px
}

body .login_dialog input[type=text],
[type=password],
[type=email] {
    border-color: transparent
}

body .login_dialog h2 {
    font-weight: bold
}

select {
    height: 50px
}

textarea {
    line-height: normal;
    padding-top: 22px;
    padding-bottom: 14px;
    height: 120px;
    border-radius: 22px
}

.cms-select form {
    position: relative;
    background-color: #fff;
    border-radius: 22px
}

.cms-select select {
    height: 39px;
    line-height: 37px;
    font-size: 15px;
    background-color: transparent;
    position: relative;
    z-index: 99;
    -webkit-appearance: none;
    -khtml-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none
}

.cms-select i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translate(0px, -50%)
}

.wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
    margin-bottom: var(--form-control-margin, 30px);
    display: block;
    position: relative
}

.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    display: none
}

.wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid {
    border-color: #f13c3c !important
}

.wpcf7 .wpcf7-form .wpcf7-form-control-wrap:hover,
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap:active {
    z-index: 10
}

.wpcf7 .wpcf7-form .wpcf7-response-output {
    border: medium none;
    font-style: italic;
    padding: 0;
    margin: 20px 0 0
}

.wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    color: #398f14
}

.wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
    color: #f13c3c
}

.wpcf7 .wpcf7-form .ajax-loader {
    display: none !important
}

.wpcf7 .wpcf7-form .wpcf7-menu {
    display: block
}

.wpcf7 .wpcf7-form .wpcf7-menu select {
    background-color: transparent;
    -webkit-appearance: none;
    -khtml-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    z-index: 99
}

.wpcf7 .wpcf7-form .wpcf7-menu select option {
    padding: 5px
}

.wpcf7 .wpcf7-form .wpcf7-checkbox.theme-checkbox {
    display: inline-flex;
    margin-top: 30px
}

.wpcf7 .wpcf7-form .wpcf7-checkbox.theme-checkbox>span {
    font-size: 14px;
    line-height: 29px;
    padding-left: 32px;
    margin-left: 30px;
    position: relative
}

@media screen and (max-width:1024px) {
    .wpcf7 .wpcf7-form .wpcf7-checkbox.theme-checkbox>span {
        margin-left: 0
    }
}

.wpcf7 .wpcf7-form .wpcf7-checkbox.theme-checkbox>span input,
.wpcf7 .wpcf7-form .wpcf7-checkbox.theme-checkbox>span .wpcf7-list-item-label:before,
.wpcf7 .wpcf7-form .wpcf7-checkbox.theme-checkbox>span .wpcf7-list-item-label:after {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: 5px
}

.wpcf7 .wpcf7-form .wpcf7-checkbox.theme-checkbox>span .wpcf7-list-item-label:before {
    content: "";
    display: inline-flex;
    width: 20px;
    height: 20px;
    border: 2px solid #eaeaea;
    background-color: transparent;
    border-radius: 50%;
    z-index: 1
}

.wpcf7 .wpcf7-form .wpcf7-checkbox.theme-checkbox>span .wpcf7-list-item-label:after {
    content: "";
    font-family: "font awesome 5 pro";
    font-weight: 600;
    z-index: 2;
    font-size: 8px;
    color: var(--color-primary);
    opacity: 0;
    line-height: 20px;
    text-align: center
}

.wpcf7 .wpcf7-form .wpcf7-checkbox.theme-checkbox>span input {
    z-index: 99;
    opacity: 0
}

.wpcf7 .wpcf7-form .wpcf7-checkbox.theme-checkbox>span input:checked+.wpcf7-list-item-label:before {
    border-color: #eaeaea;
    background-color: #fff
}

.wpcf7 .wpcf7-form .wpcf7-checkbox.theme-checkbox>span input:checked+.wpcf7-list-item-label:after {
    opacity: 1
}

.wpcf7 .wpcf7-form input[type="date"],
.wpcf7 .wpcf7-form input[type="time"] {
    position: relative
}

.wpcf7 .wpcf7-form input[type="date"]::-webkit-calendar-picker-indicator,
.wpcf7 .wpcf7-form input[type="time"]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: none;
    z-index: 1
}

.wpcf7 .wpcf7-form .cms-input {
    position: relative
}

.wpcf7 .wpcf7-form .cms-input input,
.wpcf7 .wpcf7-form .cms-input .nice-select {
    padding-left: 47px
}

.wpcf7 .wpcf7-form .cms-input.phone-wrap:after,
.wpcf7 .wpcf7-form .cms-input.email-wrap:after,
.wpcf7 .wpcf7-form .cms-input.name-wrap:after,
.wpcf7 .wpcf7-form .cms-input.doctor-wrap:after,
.wpcf7 .wpcf7-form .cms-input.cat-wrap:after {
    font-family: "Font Awesome 5 Pro";
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    font-weight: bold;
    color: var(--color-primary);
    font-size: 15px;
    z-index: 1
}

.wpcf7 .wpcf7-form .cms-input.phone-wrap:after {
    content: "";
    transform: rotate(90deg);
    transform-origin: top;
    margin-left: 0.75em
}

.wpcf7 .wpcf7-form .cms-input.email-wrap:after {
    content: ""
}

.wpcf7 .wpcf7-form .cms-input.name-wrap:after {
    content: ""
}

.wpcf7 .wpcf7-form .cms-input.doctor-wrap:after {
    content: ""
}

.wpcf7 .wpcf7-form .cms-input.cat-wrap:after {
    content: ""
}

.wpcf7 .wpcf7-form .cms-input.date-wrap input {
    padding-left: 30px;
    padding-right: 20px
}

.wpcf7 .wpcf7-form .cms-input.date-wrap:after {
    font-family: "Font Awesome 5 Pro";
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    font-weight: bold;
    color: var(--color-primary);
    font-size: 15px
}

.wpcf7 .wpcf7-form .cms-input.time-wrap input {
    padding-left: 30px;
    padding-right: 20px
}

.wpcf7 .wpcf7-form .cms-input.time-wrap:after {
    font-family: "Font Awesome 5 Pro";
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    font-weight: bold;
    color: var(--color-primary);
    font-size: 15px
}

.wpcf7 .wpcf7-form .cms-input input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    z-index: 1
}

#ui-datepicker-div {
    background-color: #fff;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -9999px;
    min-width: 300px;
    z-index: 10001 !important
}

#ui-datepicker-div .ui-datepicker-header {
    position: relative
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all {
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    padding: 0
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all:before {
    content: "";
    color: #040e24;
    font-family: FontAwesome;
    font-size: 16px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all:hover:before {
    color: var(--color-primary)
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all span {
    display: none
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-prev {
    left: 0
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-next {
    right: 0
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-next:before {
    content: ""
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 10px;
    min-height: 40px;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    color: #054c8b;
    font-family: "Quicksand", sans-serif
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1
}

#ui-datepicker-div .ui-datepicker-calendar {
    margin: 0;
    width: 100%
}

#ui-datepicker-div .ui-datepicker-calendar th {
    text-align: center
}

#ui-datepicker-div .ui-datepicker-calendar td {
    text-align: center;
    padding: 6px;
    color: rgba(0, 0, 0, 0.6)
}

#ui-datepicker-div .ui-datepicker-calendar td.ui-state-disabled {
    color: rgba(0, 0, 0, 0.2)
}

#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-today a {
    color: var(--color-primary)
}

#ui-datepicker-div .ui-datepicker-calendar td a {
    color: #999
}

#ui-datepicker-div .ui-datepicker-calendar td a:hover {
    color: var(--color-primary)
}

form .select2-container--default {
    width: 100% !important
}

form .select2-container--default .select2-selection {
    border: 1px solid #e7e8e9;
    height: 60px
}

form .select2-container--default .select2-selection .select2-selection__rendered {
    line-height: 58px;
    padding-left: 15px
}

form .select2-container--default .select2-selection .select2-selection__arrow {
    right: 10px;
    top: 50%;
    transform: translateY(-40%)
}

form .select2-container--default .select2-selection .select2-selection__clear {
    height: 20px;
    line-height: 20px;
    position: absolute;
    right: 30px;
    text-align: center;
    top: 50%;
    transform: translate(0px, -50%);
    width: 20px;
    color: #8f8f8f
}

form .select2-container--default .select2-selection .select2-selection__placeholder {
    color: rgba(55, 55, 55, 0.87)
}

.select2-container.select2-container--open .select2-dropdown {
    border-color: #e7e8e9
}

.select2-container.select2-container--open .select2-dropdown .select2-search__field {
    border: 1px solid #e7e8e9;
    padding-left: 15px;
    padding-right: 15px
}

.select2-container.select2-container--open .select2-results li.select2-results__option--highlighted {
    background-color: var(--color-primary)
}

.cms-field-checkbox {
    position: relative;
    padding-left: 27px
}

.cms-field-checkbox .icon-check {
    border: 1px solid #e1e3e3;
    border-radius: 1px;
    display: block;
    height: 17px;
    width: 17px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    z-index: 1
}

.cms-field-checkbox .icon-check:before {
    content: "";
    font-size: 13px;
    color: var(--color-primary);
    position: absolute;
    top: -4px;
    left: 1px;
    font-family: FontAwesome;
    opacity: 0
}

.cms-field-checkbox input {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 3
}

.cms-field-checkbox input:checked+.icon-check:before {
    opacity: 1
}

.nice-select {
    position: relative;
    padding-right: 40px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    border-color: #eaeaea;
    background: #fff
}

.nice-select:after {
    content: "";
    font-family: "medcity";
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #283b6a;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translate(0px, -50%);
    line-height: 23px
}

.nice-select span.current {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 56px
}

.nice-select .option {
    text-overflow: ellipsis;
    overflow: hidden
}

.nice-select.open .list {
    padding: 5px;
    min-width: 185px;
    overflow: auto;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none
}

.nice-select.disabled:after {
    border-color: #cccccc
}

.nice-select.wide {
    width: 100%
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important
}

.nice-select.right {
    float: right
}

.nice-select.right .list {
    left: auto;
    right: 0
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px
}

.nice-select.small:after {
    height: 4px;
    width: 4px
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px
}

.nice-select .list {
    max-height: 250px;
    overflow: auto;
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    color: #666
}

.nice-select .list .selected {
    color: #666
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important
}

.nice-select .option {
    cursor: pointer;
    line-height: normal;
    list-style: none;
    outline: none;
    padding: 8px 24px;
    text-align: left;
    transition: all 0.2s;
    border-radius: 3px
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f3f3f4
}

.nice-select .option.selected {
    font-weight: bold
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default
}

.no-csspointerevents .nice-select .list {
    display: none
}

.no-csspointerevents .nice-select.open .list {
    display: block
}

.btn,
button,
.button,
input[type="submit"] {
    background-color: var(--color-primary);
    font-size: 15px;
    color: #fff;
    text-transform: capitalize;
    padding: 0 25px;
    line-height: 46px;
    transition: all 300ms linear 0ms;
    border-radius: 25px;
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    border: 2px solid var(--color-primary)
}

.btn:hover,
.btn:focus,
button:hover,
button:focus,
.button:hover,
.button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
    box-shadow: none;
    outline: medium none;
    text-decoration: none;
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

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

    .btn,
    button,
    .button,
    input[type="submit"] {
        font-size: 14px
    }
}

.btn i {
    margin-left: 6px;
    font-size: 15px;
    position: relative;
    top: 1px
}

.btn i.space-right {
    margin-left: 0;
    margin-right: 6px
}

.btn.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary)
}

.btn.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff
}

.btn.btn-secondary {
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

.btn.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-primary)
}

.btn.btn-white i {
    color: var(--color-primary);
    transition: all 300ms ease 0s
}

.btn.btn-white:hover {
    background-color: transparent;
    color: #fff
}

.btn.btn-white:hover i {
    color: #fff
}

.btn.btn-white-secondary {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-primary)
}

.btn.btn-white-secondary i {
    color: var(--color-primary);
    transition: all 300ms ease 0s
}

.btn.btn-white-secondary:hover {
    background-color: transparent;
    color: #fff
}

.btn.btn-white-secondary:hover i {
    color: #fff
}

.btn.btn-outline-white {
    background-color: transparent;
    border-color: #fff;
    padding: 0 40px
}

.btn.btn-outline-white:hover {
    background-color: #fff;
    color: var(--color-primary)
}

.btn.btn-outline-secondary {
    background-color: transparent;
    border-color: var(--color-primary);
    padding: 0 30px;
    color: var(--color-primary)
}

.btn.btn-outline-secondary:hover {
    background-color: var(--e-global-color-accent);
    color: #fff
}

.btn.white-hover:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-primary)
}

.btn.btn-fullwidth {
    width: 100%
}

.btn-text {
    font-size: 14px;
    color: var(--color-primary);
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 2px solid var(--color-primary);
    font-weight: 700;
    line-height: 1;
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 5px !important;
    background-color: transparent;
    border-radius: 0px;
    display: inline-block
}

.btn-text:hover {
    color: var(--color-primary);
    border-color: var(--color-primary)
}

.btn-text-primary {
    font-size: 15px;
    font-weight: 700
}

.btn-text-primary i {
    margin-left: 9px
}

.btn-text-primary i.space-left {
    margin-left: 0;
    margin-right: 9px
}

.btn-more {
    background-color: var(--color-primary);
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0;
    padding: 8px 21px;
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    color: #fff
}

.btn-more:hover {
    background-color: var(--color-primary);
    color: #fff
}

.btn-more i {
    margin-left: 10px;
    margin-right: 0;
    font-size: 14px;
    position: relative;
    text-align: left
}

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

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

.btn-group .btn+.btn {
    margin-left: 30px
}

.btn-block {
    display: block
}

.elementor-widget-wrap>.btn-inline.elementor-widget {
    display: inline-block;
    width: auto
}

.elementor-widget-wrap>.btn-inline.elementor-widget .cms-button-wrapper {
    margin-right: 40px;
    margin-bottom: 30px
}

.elementor-widget-wrap>.btn-inline.elementor-widget+.elementor-widget-image {
    float: left;
    width: auto;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.elementor-button-icon i.zmdi {
    font-size: 22px
}

.space-between .btn {
    justify-content: space-between !important
}

.site-header-lang.custom .wpml-ls-item-toggle {
    line-height: 48px
}

.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown,
.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click {
    width: inherit
}

.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown .wpml-ls-slot-shortcode_actions a,
.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click .wpml-ls-slot-shortcode_actions a {
    color: inherit;
    font-size: 13px;
    font-weight: normal;
    background-color: transparent
}

.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown .wpml-ls-slot-shortcode_actions a.js-wpml-ls-item-toggle,
.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click .wpml-ls-slot-shortcode_actions a.js-wpml-ls-item-toggle {
    padding: 0 15px 0 0;
    border: none
}

.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown .wpml-ls-slot-shortcode_actions a.js-wpml-ls-item-toggle:after,
.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click .wpml-ls-slot-shortcode_actions a.js-wpml-ls-item-toggle:after {
    content: "";
    font-family: "FontAwesome";
    font-size: 14px;
    margin-left: 7px;
    padding: 0;
    border: none;
    font-weight: normal;
    top: 50%;
    transform: translate(0, -50%);
    right: 0
}

.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown .wpml-ls-slot-shortcode_actions span.wpml-ls-native,
.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click .wpml-ls-slot-shortcode_actions span.wpml-ls-native {
    margin-left: 9px
}

.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown .wpml-ls-slot-shortcode_actions .wpml-ls-sub-menu,
.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click .wpml-ls-slot-shortcode_actions .wpml-ls-sub-menu {
    opacity: 0;
    transition: all 300ms linear 0ms;
    margin-top: 25px;
    background-color: #fff;
    border: none;
    padding: 15px 30px;
    left: -30px;
    border-radius: 2px;
    box-shadow: 0 3px 63px rgba(14, 32, 77, 0.12);
    min-width: 170px
}

.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown .wpml-ls-slot-shortcode_actions .wpml-ls-sub-menu li a,
.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click .wpml-ls-slot-shortcode_actions .wpml-ls-sub-menu li a {
    border: none;
    padding: 10px 0
}

.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown .wpml-ls-slot-shortcode_actions .wpml-ls-sub-menu li a:hover,
.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click .wpml-ls-slot-shortcode_actions .wpml-ls-sub-menu li a:hover {
    color: var(--color-primary)
}

.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown .wpml-ls-slot-shortcode_actions.wpml-ls-current-language:hover .wpml-ls-sub-menu,
.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click .wpml-ls-slot-shortcode_actions.wpml-ls-current-language:hover .wpml-ls-sub-menu {
    opacity: 1;
    margin-top: 0px
}

.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown .wpml-ls-flag,
.site-header-lang .wpml-ls-statics-shortcode_actions.wpml-ls-legacy-dropdown-click .wpml-ls-flag {
    width: 35px;
    height: 23px
}

#site-header-wrap {
    position: relative;
    z-index: 999
}

#site-header-wrap .row {
    align-items: center
}

#site-header-wrap .site-branding {
    margin: 15px;
    position: relative
}

#site-header-wrap .site-branding img {
    max-height: 50px;
    max-width: inherit
}

#site-header-wrap .site-branding .logo-light,
#site-header-wrap .site-branding .logo-mobile {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    opacity: 0
}

#site-header-wrap .site-header-search span {
    font-size: 18px;
    color: var(--color-primary);
    transition: all 300ms linear 0ms;
    cursor: pointer
}

#site-header-wrap .site-header-search span:hover {
    color: var(--color-primary)
}

#site-header-wrap .search-form .searchform-wrap {
    display: flex;
    flex-wrap: nowrap
}

#site-header-wrap .search-form .searchform-wrap .search-field {
    height: 40px;
    font-size: 13px;
    background-color: transparent;
    border: none;
    padding: 0;
    color: #9ab0e6;
    font-style: italic
}

#site-header-wrap .search-form .searchform-wrap .search-submit {
    padding: 0 15px;
    margin-right: -13px;
    background-color: transparent;
    border: none;
    border-radius: 0
}

#site-header-wrap .search-form .searchform-wrap .search-submit i {
    display: block;
    font-size: 18px
}

#site-header-wrap #site-header.h-fixed {
    box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.12);
    background-color: #fff
}

#site-header-wrap #site-header.h-fixed .site-branding .logo-light {
    opacity: 0
}

#site-header-wrap #site-header.h-fixed .site-branding .logo-dark {
    opacity: 1
}

@media screen and (min-width:1200px) {
    #site-header-wrap .site-navigation {
        display: flex;
        align-items: center
    }

    #site-header-wrap #site-header.h-fixed .primary-menu>li>a,
    #site-header-wrap #site-header.h-fixed .site-menu-right {
        line-height: 90px
    }

    #site-header-wrap #site-header.h-fixed .site-header-right {
        height: 90px
    }

    #site-header-wrap #site-header.h-fixed .site-header-right .site-header-search:before {
        height: 90px
    }

    #site-header-wrap.header-layout1 .site-header-main>.container,
    #site-header-wrap.header-layout1 .site-header-top>.container,
    #site-header-wrap.header-layout4 .site-header-main>.container,
    #site-header-wrap.header-layout4 .site-header-top>.container {
        max-width: 100%;
        padding-left: 100px;
        padding-right: 100px
    }

    #site-header-wrap.header-layout2 .site-header-main>.container,
    #site-header-wrap.header-layout2 .site-header-top>.container,
    #site-header-wrap.header-layout3 .site-header-main>.container,
    #site-header-wrap.header-layout3 .site-header-top>.container,
    #site-header-wrap.header-layout5 .site-header-main>.container,
    #site-header-wrap.header-layout5 .site-header-top>.container {
        max-width: 100%;
        padding-left: 50px;
        padding-right: 50px
    }

    #site-header-wrap.header-trans {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%
    }

    .logged-in #site-header-wrap.header-trans {
        top: 32px
    }

    #site-header-wrap.header-layout1 {
        box-shadow: 0 5px 83px 0 rgba(14, 32, 77, 0.13)
    }

    #site-header-wrap.header-layout1 .site-header-top {
        background-color: #283b6a
    }

    #site-header-wrap.header-layout1 .site-header-top .row {
        justify-content: space-between
    }

    #site-header-wrap.header-layout1 .site-header-top .emergency-wrap {
        position: relative;
        align-self: flex-end;
        text-align: center
    }

    #site-header-wrap.header-layout1 .site-header-top .emergency-wrap .h-emergency {
        display: inline-flex;
        height: 50px;
        padding: 10px 20px 0;
        background-color: #fff;
        color: var(--color-secondary);
        border-radius: 8px 8px 0 0;
        font-size: 13px;
        cursor: pointer;
        position: relative
    }

    #site-header-wrap.header-layout1 .site-header-top .emergency-wrap .h-emergency:after {
        content: "";
        font-family: "Font Awesome 5 Pro";
        font-size: 11px;
        position: absolute;
        bottom: 7px;
        left: 50%;
        transform: translateX(-50%);
        font-weight: bold;
        line-height: 1
    }

    #site-header-wrap.header-layout1 .site-header-top .emergency-wrap .emergency-content {
        min-width: 260px;
        padding: 30px 30px 22px;
        background-color: #fff;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 83px 0 rgba(14, 32, 77, 0.15);
        position: absolute;
        top: 100%;
        transform: translateY(20px);
        left: 0;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transition: all 300ms ease 0s
    }

    #site-header-wrap.header-layout1 .site-header-top .emergency-wrap .emergency-content a:hover {
        color: var(--color-primary) !important
    }

    #site-header-wrap.header-layout1 .site-header-top .emergency-wrap .emergency-content p {
        margin-bottom: 22px
    }

    #site-header-wrap.header-layout1 .site-header-top .emergency-wrap .emergency-content.active {
        opacity: 2;
        visibility: visible;
        transform: translateY(0)
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-item {
        display: flex;
        align-items: center;
        line-height: 60px;
        margin-left: 30px
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-item:first-child {
        margin-left: 0
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-item i {
        color: var(--e-global-color-accent);
        margin-right: 10px
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-item i.fac-phone {
        transform: rotate(90deg)
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-item .header-top-item-inner {
        font-size: 13px;
        color: #f4f4f4
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-left {
        font-size: 14px;
        margin: 0 15px;
        display: flex;
        align-items: center
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-left i {
        color: #788fc8
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-right {
        margin: 0 15px;
        display: flex;
        align-items: center
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-right .site-header-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background-color: var(--color-primary);
        color: var(--color-secondary);
        margin-right: 5px
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-right .site-header-social a:hover {
        transform: translateY(-2px)
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-right .site-header-search {
        padding-left: 30px;
        margin-left: 25px;
        position: relative
    }

    #site-header-wrap.header-layout1 .site-header-top .header-top-right .site-header-search:before {
        content: "";
        display: block;
        width: 2px;
        height: 27px;
        background-color: rgba(255, 255, 255, 0.15);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%)
    }

    #site-header-wrap.header-layout1 .site-header-main .site-branding {
        margin: 0 15px
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap {
        position: relative;
        padding-left: 36px;
        margin-left: 45px;
        line-height: 120px;
        display: flex;
        align-items: center
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap:before {
        content: "";
        display: block;
        width: 2px;
        height: 27px;
        background-color: #e6e8eb;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%)
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-icon-wrap {
        display: inline-flex;
        width: 27px;
        height: 27px;
        align-items: center;
        justify-content: center;
        cursor: pointer
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-icon {
        position: relative;
        width: 21px;
        height: 2px;
        background-color: var(--color-secondary)
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-icon:before {
        width: 15px;
        height: 2px;
        content: "";
        position: absolute;
        right: 0;
        top: -6px
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-icon:after {
        width: 11px;
        height: 2px;
        content: "";
        position: absolute;
        right: 0;
        top: 6px
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-icon:before,
    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-icon:after {
        display: inline-block;
        background-color: var(--color-secondary);
        transition: transform 0.5s cubic-bezier(0.01, 0.87, 0.36, 0.99);
        transform-origin: right
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-icon,
    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-icon:before,
    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-icon:after {
        display: inline-block;
        background-color: var(--color-secondary);
        transition: transform 0.5s cubic-bezier(0.01, 0.87, 0.36, 0.99);
        transform-origin: left
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-name {
        padding: 0 7px
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-name:before,
    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap .menu-name:after {
        content: none
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap #menu-departments {
        opacity: 0;
        visibility: hidden;
        margin: 15px 0 0;
        clip: rect(1px, 1px, 1px, 1px)
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap.highlight-active .menu-icon {
        background-color: transparent !important
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap.highlight-active .menu-icon:before {
        background-color: var(--color-primary);
        width: 17px;
        height: 3px;
        transform: rotate(45deg)
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap.highlight-active .menu-icon:after {
        background-color: var(--color-primary);
        width: 17px;
        height: 3px;
        transform: rotate(-45deg)
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap.highlight-active #menu-departments {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
        clip: inherit
    }

    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap.current-menu-ancestor .menu-icon,
    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap.current-menu-ancestor .menu-icon:before,
    #site-header-wrap.header-layout1 .site-header-main .highlight-menu-wrap.current-menu-ancestor .menu-icon:after {
        background-color: var(--color-primary)
    }

    #site-header-wrap.header-layout1 .site-header-main .site-navigation {
        margin: 0 15px;
        flex-grow: 1;
        justify-content: flex-end
    }

    #site-header-wrap.header-layout1 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child {
        position: relative;
        margin-left: 82px;
        cursor: pointer
    }

    #site-header-wrap.header-layout1 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child:before {
        content: "";
        display: block;
        width: 2px;
        height: 27px;
        background-color: var(--color-primary);
        position: absolute;
        left: -57px;
        top: 50%;
        transform: translateY(-50%)
    }

    #site-header-wrap.header-layout1 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child>a {
        pointer-events: none
    }

    #site-header-wrap.header-layout1 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child>a:after {
        content: none
    }

    #site-header-wrap.header-layout1 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child .sub-menu {
        visibility: hidden;
        opacity: 0;
        margin: 20px 0 0;
        clip: inherit
    }

    #site-header-wrap.header-layout1 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child.highlight-active>a {
        color: var(--color-primary)
    }

    #site-header-wrap.header-layout1 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child.highlight-active>.menu-icon {
        background-color: transparent
    }

    #site-header-wrap.header-layout1 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child.highlight-active>.menu-icon:before {
        background-color: var(--color-primary);
        width: 17px;
        height: 3px;
        transform: rotate(45deg)
    }

    #site-header-wrap.header-layout1 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child.highlight-active>.menu-icon:after {
        background-color: var(--color-primary);
        width: 17px;
        height: 3px;
        transform: rotate(-45deg)
    }

    #site-header-wrap.header-layout1 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child.highlight-active .sub-menu {
        visibility: visible;
        opacity: 1;
        margin: 0
    }

    #site-header-wrap.header-layout1 .site-header-main .site-main {
        display: flex;
        align-items: center;
        margin-right: -20px
    }

    #site-header-wrap.header-layout1 .site-header-main .site-tool {
        margin: 0 0 0 8px;
        display: flex;
        align-items: center
    }

    #site-header-wrap.header-layout1 .site-header-main .site-tool .site-header-button {
        margin-left: 10px
    }

    #site-header-wrap.header-layout1.header-trans .site-header-main:not(.h-fixed) {
        border-bottom: 1px solid rgba(var(--rgb-color-secondary), 0.1)
    }

    #site-header-wrap.header-layout2 {
        box-shadow: 0 5px 83px 0 rgba(14, 32, 77, 0.13)
    }

    #site-header-wrap.header-layout2 .site-header-top {
        background-color: #283b6a
    }

    #site-header-wrap.header-layout2 .site-header-top .row {
        justify-content: space-between
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-item {
        display: flex;
        align-items: center;
        line-height: 60px;
        margin-left: 30px
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-item:first-child {
        margin-left: 0
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-item i {
        color: var(--e-global-color-accent);
        margin-right: 10px
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-item i.fac-phone {
        transform: rotate(90deg)
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-item .header-top-item-inner {
        font-size: 13px;
        color: #f4f4f4
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-left {
        font-size: 14px;
        margin: 0 15px;
        display: flex;
        align-items: center
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-right {
        margin: 0 15px;
        display: flex;
        align-items: center
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-right .site-header-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background-color: var(--color-primary);
        color: var(--color-secondary);
        margin-right: 5px
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-right .site-header-social a:hover {
        transform: translateY(-2px)
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-right .header-short-link {
        font-size: 13px;
        color: #fff;
        display: flex;
        align-items: center;
        margin-left: 10px
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-right .header-short-link .link-item {
        margin-left: 20px
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-right .site-header-lang {
        margin-left: 30px
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-right .site-header-lang .wpml-ls-current-language {
        background-color: #283b6a
    }

    #site-header-wrap.header-layout2 .site-header-top .header-top-right .site-header-lang .wpml-ls-current-language>a {
        color: #fff
    }

    #site-header-wrap.header-layout2 .site-header-main .site-branding {
        padding-right: 50px;
        margin: 0 35px 0 15px;
        position: relative
    }

    #site-header-wrap.header-layout2 .site-header-main .site-branding:after {
        content: "";
        display: block;
        width: 2px;
        height: 27px;
        background-color: #e6e8eb;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%)
    }

    #site-header-wrap.header-layout2 .site-header-main .site-navigation {
        justify-content: space-between;
        flex-grow: 1;
        margin-right: 15px
    }

    #site-header-wrap.header-layout2 .site-header-main .site-navigation .primary-menu>li>a {
        line-height: 100px
    }

    #site-header-wrap.header-layout2 .site-header-main .site-navigation .primary-menu>li:last-child a {
        padding-right: 0
    }

    #site-header-wrap.header-layout2 .site-header-main .site-navigation .primary-menu>li:last-child a:before {
        right: 0
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool {
        display: flex;
        align-items: center
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-phone {
        font-size: 24px;
        font-family: "Quicksand", sans-serif;
        font-weight: 500;
        position: relative;
        color: var(--color-secondary)
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-phone i {
        transform: rotate(90deg);
        font-size: 18px;
        margin-right: 5px
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-phone:not(.custom) {
        padding-right: 50px;
        margin-right: 50px
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-phone:not(.custom) i {
        color: #788fc8
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-phone:not(.custom):after {
        content: "";
        display: block;
        width: 2px;
        height: 27px;
        background-color: #e6e8eb;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%)
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-phone.header-7 i {
        color: var(--color-accent)
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-button {
        margin-left: 30px
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-button .btn:hover {
        background-color: var(--e-global-color-accent);
        border-color: var(--e-global-color-accent)
    }

    #site-header-wrap.header-layout2 .site-header-main.h-fixed .site-branding,
    #site-header-wrap.header-layout2 .site-header-main.h-fixed .site-tool .h-btn-search {
        line-height: 90px
    }

    #site-header-wrap.header-layout2.header-layout6 .header-top-item i {
        color: var(--color-primary);
        margin-right: 10px
    }

    #site-header-wrap.header-layout2.header-layout6 .header-top-item i.fac-phone {
        transform: rotate(90deg)
    }

    #site-header-wrap.header-layout2.header-layout6 .site-header-main .site-branding:after {
        display: none
    }

    #site-header-wrap.header-layout2.header-layout6 .site-header-main .site-navigation {
        justify-content: flex-end
    }

    #site-header-wrap.header-layout2.header-layout6 .site-header-main .site-navigation .primary-menu>li>a {
        line-height: 107px
    }

    #site-header-wrap.header-layout2.header-layout6 .site-header-main .container .site-navigation .primary-menu>li>a:before {
        top: auto;
        bottom: 0;
        right: 0;
        height: 3px
    }

    #site-header-wrap.header-layout2.header-layout6 .site-header-button .btn {
        border-radius: 6px;
        padding: 0 20px
    }

    #site-header-wrap.header-layout2.header-layout6 .site-header-button .btn:hover {
        background-color: var(--color-secondary) !important;
        border-color: var(--color-secondary) !important
    }

    #site-header-wrap.header-layout2.header-layout6 .site-header-search {
        margin-inline-start: 30px
    }

    #site-header-wrap.header-layout3 {
        box-shadow: 0 5px 83px 0 rgba(14, 32, 77, 0.13)
    }

    #site-header-wrap.header-layout3:not(.h-fixed) {
        height: auto !important
    }

    #site-header-wrap.header-layout3 .site-header-top {
        position: relative;
        width: 100%;
        background-color: #283b6a
    }

    #site-header-wrap.header-layout3 .site-header-top .row {
        justify-content: center
    }

    #site-header-wrap.header-layout3 .site-header-top .header-top-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        font-size: 13px;
        color: #788fc8;
        padding: 18px 0
    }

    #site-header-wrap.header-layout3 .site-header-top .header-top-inner a {
        color: #fff
    }

    #site-header-wrap.header-layout3 .site-header-top .header-top-inner a:hover {
        color: var(--color-primary)
    }

    #site-header-wrap.header-layout3 .site-header-top .header-top-inner i {
        vertical-align: middle
    }

    #site-header-wrap.header-layout3 .site-header-top .cms-toggle-close {
        display: inline-flex;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 20px;
        color: #fff;
        position: absolute;
        right: 42px;
        top: 50%;
        transform: translateY(-50%)
    }

    #site-header-wrap.header-layout3 .site-header-top .cms-toggle-close:hover {
        color: var(--color-primary)
    }

    #site-header-wrap.header-layout3 .site-header-main .site-branding {
        line-height: var(--site-branding-height-header-desktop);
        border-right: 1px solid #e6e8eb;
        padding-right: 50px;
        margin: 0 35px 0 15px
    }

    #site-header-wrap.header-layout3 .site-header-main .site-navigation {
        justify-content: space-between;
        flex-grow: 1;
        margin-right: 15px
    }

    #site-header-wrap.header-layout3 .site-header-main .site-navigation .primary-menu>li>a {
        line-height: 100px
    }

    #site-header-wrap.header-layout3 .site-header-main .site-navigation .primary-menu>li:last-child a {
        padding-right: 0
    }

    #site-header-wrap.header-layout3 .site-header-main .site-navigation .primary-menu>li:last-child a:before {
        right: 0
    }

    #site-header-wrap.header-layout3 .site-header-main .site-tool {
        display: flex;
        align-items: center
    }

    #site-header-wrap.header-layout3 .site-header-main .site-tool .h-btn-search {
        line-height: 100px;
        padding: 0 50px;
        border-right: 1px solid #e6e8eb;
        display: inline-block
    }

    #site-header-wrap.header-layout3 .site-header-main .site-tool .site-header-button {
        margin-left: 50px
    }

    #site-header-wrap.header-layout3 .site-header-main .site-tool .site-header-button .btn:hover {
        background-color: var(--e-global-color-accent);
        border-color: var(--e-global-color-accent)
    }

    #site-header-wrap.header-layout3 .site-header-main.h-fixed .site-branding,
    #site-header-wrap.header-layout3 .site-header-main.h-fixed .site-tool .h-btn-search {
        line-height: 90px
    }

    #site-header-wrap.header-layout4 {
        box-shadow: 0 5px 83px 0 rgba(14, 32, 77, 0.13)
    }

    #site-header-wrap.header-layout4 .site-header-top {
        background-color: #283b6a
    }

    #site-header-wrap.header-layout4 .site-header-top .row {
        justify-content: space-between
    }

    #site-header-wrap.header-layout4 .site-header-top .header-top-item {
        display: flex;
        align-items: center;
        line-height: 60px;
        margin-left: 30px
    }

    #site-header-wrap.header-layout4 .site-header-top .header-top-item:first-child {
        margin-left: 0
    }

    #site-header-wrap.header-layout4 .site-header-top .header-top-item i {
        color: var(--e-global-color-accent);
        margin-right: 10px
    }

    #site-header-wrap.header-layout4 .site-header-top .header-top-item i.fac-phone {
        transform: rotate(90deg)
    }

    #site-header-wrap.header-layout4 .site-header-top .header-top-item .header-top-item-inner {
        font-size: 13px;
        color: #f4f4f4
    }

    #site-header-wrap.header-layout4 .site-header-top .header-top-left .header-note-text {
        display: flex;
        align-items: center;
        font-size: 13px;
        color: var(--color-primary)
    }

    #site-header-wrap.header-layout4 .site-header-top .header-top-left .header-note-text a {
        color: #fff
    }

    #site-header-wrap.header-layout4 .site-header-top .header-top-left .header-note-text i {
        vertical-align: middle
    }

    #site-header-wrap.header-layout4 .site-header-top .header-top-right {
        font-size: 14px;
        margin: 0 15px;
        display: flex;
        align-items: center
    }

    #site-header-wrap.header-layout4 .site-header-main .site-branding {
        margin: 0 15px
    }

    #site-header-wrap.header-layout4 .site-header-main .site-navigation {
        margin: 0 15px;
        flex-grow: 1;
        justify-content: flex-end
    }

    #site-header-wrap.header-layout4 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child {
        position: relative;
        margin-left: 82px;
        cursor: pointer
    }

    #site-header-wrap.header-layout4 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child:before {
        content: "";
        display: block;
        width: 2px;
        height: 27px;
        background-color: var(--color-primary);
        position: absolute;
        left: -57px;
        top: 50%;
        transform: translateY(-50%)
    }

    #site-header-wrap.header-layout4 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child>a {
        pointer-events: none
    }

    #site-header-wrap.header-layout4 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child>a:after {
        content: none
    }

    #site-header-wrap.header-layout4 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child .sub-menu {
        visibility: hidden;
        opacity: 0;
        margin: 20px 0 0;
        clip: inherit
    }

    #site-header-wrap.header-layout4 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child.highlight-active>a {
        color: var(--color-primary)
    }

    #site-header-wrap.header-layout4 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child.highlight-active>.menu-icon {
        background-color: transparent
    }

    #site-header-wrap.header-layout4 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child.highlight-active>.menu-icon:before {
        background-color: var(--color-primary);
        width: 17px;
        height: 3px;
        transform: rotate(45deg)
    }

    #site-header-wrap.header-layout4 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child.highlight-active>.menu-icon:after {
        background-color: var(--color-primary);
        width: 17px;
        height: 3px;
        transform: rotate(-45deg)
    }

    #site-header-wrap.header-layout4 .site-header-main .site-navigation .primary-menu.item-highlight>li:last-child.highlight-active .sub-menu {
        visibility: visible;
        opacity: 1;
        margin: 0
    }

    #site-header-wrap.header-layout4 .site-header-main .site-main {
        display: flex;
        align-items: center;
        margin-right: -20px
    }

    #site-header-wrap.header-layout4 .site-header-main .site-tool {
        margin: 0 0 0 8px;
        display: flex;
        align-items: center
    }

    #site-header-wrap.header-layout4 .site-header-main .site-tool .site-header-button {
        margin-left: 10px
    }

    #site-header-wrap.header-layout4 .site-header-main .site-tool .site-header-search {
        margin-left: 30px
    }

    #site-header-wrap.header-layout5 .site-header-main .container .site-branding {
        flex-grow: inherit
    }

    #site-header-wrap.header-layout5 .site-header-main .container .site-branding a {
        display: block;
        padding-right: 55px
    }

    #site-header-wrap.header-layout5 .site-header-main .container .site-navigation {
        flex-grow: 1;
        justify-content: space-between;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0 50px 0 33px
    }

    #site-header-wrap.header-layout5 .site-header-main .container .site-navigation .primary-menu>li>a {
        line-height: 106px
    }

    #site-header-wrap.header-layout5 .site-header-main .container .site-navigation .primary-menu>li>a:before {
        top: auto;
        bottom: 0;
        background-color: #fff
    }

    #site-header-wrap.header-layout5 .site-header-main .container .site-header-right {
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        flex: none;
        padding: 0 45px;
        line-height: 106px
    }

    #site-header-wrap.header-layout5 .site-header-main .container .site-header-right .btn {
        border-radius: 2px
    }

    #site-header-wrap.header-layout5 .site-header-main:not(.h-fixed) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15)
    }

    #site-header-wrap.header-layout5 .site-header-main:not(.h-fixed) .site-branding .logo-dark {
        opacity: 0
    }

    #site-header-wrap.header-layout5 .site-header-main:not(.h-fixed) .site-branding .logo-light {
        opacity: 1
    }

    #site-header-wrap.header-layout5 .site-header-main:not(.h-fixed) .primary-menu>li>a {
        color: #fff;
        line-height: 90px
    }

    #site-header-wrap.header-layout5 .site-header-main:not(.h-fixed) .site-header-search .h-btn-search {
        color: #fff
    }

    #site-header-wrap.header-layout5 .site-header-main.h-fixed {
        border: none
    }

    #site-header-wrap.header-layout5 .site-header-main.h-fixed .container .site-navigation,
    #site-header-wrap.header-layout5 .site-header-main.h-fixed .container .site-header-right {
        border-left-color: #eaeaea
    }

    #site-header-wrap.header-layout5 .site-header-main.h-fixed .container .site-header-right {
        line-height: 90px
    }
}

@media (min-width:1200px) and (max-width:1500px) {

    #site-header-wrap.header-layout1 .site-header-main>.container,
    #site-header-wrap.header-layout1 .site-header-top>.container,
    #site-header-wrap.header-layout2 .site-header-main>.container,
    #site-header-wrap.header-layout2 .site-header-top>.container,
    #site-header-wrap.header-layout3 .site-header-main>.container,
    #site-header-wrap.header-layout3 .site-header-top>.container,
    #site-header-wrap.header-layout4 .site-header-main>.container,
    #site-header-wrap.header-layout4 .site-header-top>.container {
        padding-left: 40px;
        padding-right: 40px
    }

    #site-header-wrap.header-layout1 .site-header-button a,
    #site-header-wrap.header-layout2 .site-header-button a,
    #site-header-wrap.header-layout3 .site-header-button a,
    #site-header-wrap.header-layout4 .site-header-button a {
        font-size: 0
    }

    #site-header-wrap.header-layout1 .site-header-button a i,
    #site-header-wrap.header-layout2 .site-header-button a i,
    #site-header-wrap.header-layout3 .site-header-button a i,
    #site-header-wrap.header-layout4 .site-header-button a i {
        margin: 0;
        line-height: 48px;
        padding-top: 2px
    }

    #site-header-wrap.header-layout1 .site-tool,
    #site-header-wrap.header-layout2 .site-tool,
    #site-header-wrap.header-layout3 .site-tool,
    #site-header-wrap.header-layout4 .site-tool {
        margin-left: 0 !important
    }

    #site-header-wrap.header-layout1 .site-header-top .site-header-social {
        display: none !important
    }

    #site-header-wrap.header-layout2 {}

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-button {
        margin-left: 0
    }

    #site-header-wrap.header-layout2 .site-header-search {
        display: none !important
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-phone {
        font-size: 19px;
        padding-right: 0;
        margin-right: 30px
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-phone:after {
        content: none
    }

    #site-header-wrap.header-layout2 .site-header-main .site-tool .site-header-phone i {
        font-size: 15px
    }

    #site-header-wrap.header-layout2 .site-header-main .site-branding {
        padding-right: 35px;
        margin: 0 10px 0 20px
    }

    #site-header-wrap.header-layout2.header-layout6 .site-header-main .site-tool .site-header-button {
        margin-inline-start: 30px
    }

    #site-header-wrap.header-layout2.header-layout6 .site-header-search {
        display: block !important
    }

    #site-header-wrap.header-layout3 .site-header-search {
        margin-right: 15px
    }

    #site-header-wrap.header-layout3 .site-header-search .h-btn-search {
        padding: 0 40px !important
    }

    #site-header-wrap.header-layout3 .site-branding {
        padding-right: 25px !important;
        margin: 0 10px 0 15px !important
    }

    #site-header-wrap.header-layout3 .site-header-button {
        margin-left: 25px !important
    }

    #site-header-wrap.header-layout3 .site-header-button a {
        font-size: 0
    }

    #site-header-wrap.header-layout3 .site-header-button a i {
        margin: 0;
        line-height: 48px;
        padding-top: 2px
    }

    #site-header-wrap .site-branding img {
        max-height: 40px
    }
}

@media screen and (max-width:1199px) {
    #site-header-wrap {
        position: relative;
        box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
        background-color: #fff
    }

    #site-header-wrap.fixed-height {
        height: inherit !important
    }

    #site-header-wrap .site-header-top,
    #site-header-wrap .site-header-right,
    #site-header-wrap .site-navigation-top,
    #site-header-wrap .site-header-search,
    #site-header-wrap .cart-icon-wrap,
    #site-header-wrap .cms-hidden-mobile-menu {
        display: none
    }

    #site-header-wrap .site-header-phone {
        font-size: 20px;
        color: var(--color-secondary);
        margin-top: 15px
    }

    #site-header-wrap .site-header-button,
    #site-header-wrap .site-header-link {
        margin: 20px 0
    }

    #site-header-wrap .site-header-link a {
        font-size: 15px;
        font-weight: bold;
        color: var(--color-secondary)
    }

    #site-header-wrap .site-header-link a:hover {
        color: var(--color-primary)
    }

    #site-header-wrap .site-branding {
        min-height: var(--site-branding-height-header-mobile);
        margin: 10px 15px
    }

    #site-header-wrap .site-branding.mobile-branding {
        min-height: 90px;
        margin: 0 15px
    }

    #site-header-wrap .site-branding img {
        padding: 3px 0
    }

    #site-header-wrap .site-branding a {
        opacity: 0;
        display: inline-block;
        line-height: 60px !important
    }

    #site-header-wrap .site-branding a.logo-mobile {
        opacity: 1 !important
    }

    #site-header-wrap .site-branding a.logo-dark {
        display: none
    }

    #site-header-wrap #main-menu-mobile {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translate(0, -50%)
    }

    #site-header-wrap #headroom {
        position: static !important
    }
}

#site-header {
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s
}

#site-header.h-fixed {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    animation: 1.15s ease 0s normal forwards 1 running headerSlideDown
}

.admin-bar #site-header-wrap #site-header.h-fixed {
    top: 32px
}

@media screen and (max-width:782px) {
    .admin-bar #site-header-wrap #site-header.h-fixed {
        top: 46px
    }
}

@media screen and (max-width:600px) {
    .admin-bar #site-header-wrap #site-header.h-fixed {
        top: 0
    }
}

@media screen and (min-width:1200px) {
    .secondary-is-sticky .h-fixed {
        display: none !important
    }

    .admin-bar .cms-navigation-menu.is-sticky {
        top: 32px !important
    }
}

@media screen and (min-width:1200px) and (max-width:782px) {
    .admin-bar .cms-navigation-menu.is-sticky {
        top: 46px !important
    }
}

@media screen and (min-width:1200px) and (max-width:600px) {
    .admin-bar .cms-navigation-menu.is-sticky {
        top: 0 !important
    }
}

ul.menu {
    list-style: none;
    margin: 0
}

ul.menu ul {
    list-style: none;
    margin: 0
}

@media screen and (min-width:1200px) {
    .primary-menu-not-set {
        opacity: 0;
        visibility: hidden;
        list-style: none;
        margin: 0
    }

    .primary-menu-not-set>li {
        margin-right: 20px
    }

    .primary-menu-not-set>li a {
        font-size: 15px;
        color: var(--color-primary);
        font-weight: 700;
        line-height: var(--cms-primary-menu-height, 120px);
        position: relative;
        padding: 0 12px
    }

    .primary-menu-not-set>li a:hover {
        color: var(--color-primary)
    }

    .menu-toggle {
        display: none
    }

    .main-navigation ul {
        display: block
    }

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

    .primary-menu li {
        position: relative;
        list-style: none
    }

    .primary-menu li a {
        display: block;
        transition: all 300ms linear 0ms !important
    }

    .primary-menu>li {
        display: inline-block;
        vertical-align: middle;
        float: left
    }

    .primary-menu>li>a {
        font-size: 15px;
        letter-spacing: 0.02em;
        color: var(--color-primary);
        font-weight: 700;
        line-height: 120px;
        position: relative;
        padding: 0 16px
    }
    .primary-menu>li>a:hover{
        color: var(--e-global-color-accent) !important;
    }
    .primary-menu>li>a:before {
        content: "";
        position: absolute;
        left: 15px;
        right: 15px;
        top: 0;
        margin: auto;
        background-color: var(--e-global-color-accent);
        height: 2px;
        transform-origin: right center;
        -webkit-transform-origin: right center;
        transform: scale(0, 1);
        transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85)
    }

    .cms-primary-menu-divider-bottom .primary-menu>li>a:before {
        top: auto;
        bottom: -1px
    }

    .cms-primary-menu-divider-3 .primary-menu>li>a:before {
        height: 3px
    }

    .cms-primary-menu-divider-menu-color .primary-menu>li>a:before {
        background-color: currentColor
    }

    .primary-menu>li:hover>a,
    .primary-menu>li.current_page_item>a,
    .primary-menu>li.current-menu-item>a,
    .primary-menu>li.current_page_ancestor>a,
    .primary-menu>li.current-menu-ancestor>a {
        color: var(--color-primary)
    }

    .primary-menu>li:hover>a:before,
    .primary-menu>li.current_page_item>a:before,
    .primary-menu>li.current-menu-item>a:before,
    .primary-menu>li.current_page_ancestor>a:before,
    .primary-menu>li.current-menu-ancestor>a:before {
        transform-origin: left center;
        -webkit-transform-origin: left center;
        transform: scale(1, 1)
    }

    .primary-menu>li.menu-item-has-children {
        margin-right: 5px
    }

    .primary-menu>li.menu-item-has-children>a:after {
        font-family: Material-Design-Iconic-Font;
        content: "";
        position: absolute;
        top: 0;
        padding-left: 7px;
        color: inherit;
        font-weight: bold;
        font-size: 16px
    }

    .primary-menu>li>ul.back {
        right: 0 !important;
        left: auto !important
    }

    .primary-menu>li>ul.back li>ul.back {
        right: 100% !important;
        left: auto !important
    }

    .primary-menu>li>.sub-menu li>ul.back {
        right: 100% !important;
        left: auto !important
    }

    .primary-menu .sub-menu {
        list-style: none;
        margin: 15px 0 0;
        position: absolute;
        background: #fff;
        padding: 25px 40px;
        top: 100%;
        left: -10px;
        min-width: 240px;
        z-index: 99;
        visibility: hidden;
        opacity: 0;
        box-shadow: 0 3px 63px 0 rgba(40, 40, 40, 0.11);
        transition: all 300ms linear 0ms;
        border-radius: 0 0 10px 10px;
        clip: rect(1px, 1px, 1px, 1px)
    }

    .primary-menu .sub-menu li {
        overflow: visible
    }

    .primary-menu .sub-menu li a {
        color: var(--color-primary);
        font-size: 14px;
        line-height: normal;
        padding: 12px 0;
        position: relative;
        white-space: nowrap
    }

    .primary-menu .sub-menu li a:before {
        position: absolute;
        content: "";
        display: inline-block;
        font-family: "Material-Design-Iconic-Font";
        font-size: 15px;
        font-weight: bold;
        color: var(--color-primary);
        left: -20px;
        opacity: 0;
        transition: all 300ms ease 0s
    }

    .primary-menu .sub-menu li:last-child>a {
        margin-bottom: 0
    }

    .primary-menu .sub-menu li>a:hover,
    .primary-menu .sub-menu li.current_page_item>a,
    .primary-menu .sub-menu li.current-menu-item>a,
    .primary-menu .sub-menu li.current_page_ancestor>a,
    .primary-menu .sub-menu li.current-menu-ancestor>a {
        color: var(--color-primary)
    }

    .primary-menu .sub-menu li>a:hover:before,
    .primary-menu .sub-menu li.current_page_item>a:before,
    .primary-menu .sub-menu li.current-menu-item>a:before,
    .primary-menu .sub-menu li.current_page_ancestor>a:before,
    .primary-menu .sub-menu li.current-menu-ancestor>a:before {
        opacity: 1
    }

    .primary-menu .sub-menu .sub-menu {
        top: 0;
        left: 100%
    }

    .primary-menu li:hover,
    .primary-menu li.focus {
        overflow: visible
    }

    .primary-menu li:hover>.sub-menu,
    .primary-menu li.focus>.sub-menu {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
        clip: inherit
    }

    .primary-menu li.megamenu {
        position: relative
    }

    .primary-menu li.megamenu .elementor-row {
        flex-wrap: nowrap
    }

    .primary-menu li.megamenu .sub-menu {
        display: inline-flex;
        left: 15px
    }

    .primary-menu li.megamenu .sub-menu p {
        margin-bottom: 0
    }

    .primary-menu li.megamenu .sub-menu li>.container {
        padding: 0
    }

    .primary-menu li.megamenu .sub-menu li li {
        padding: 0
    }

    .primary-menu li.megamenu .sub-menu .wpb_content_element {
        margin-bottom: 0
    }

    .primary-menu li.megamenu .sub-menu ul.menu {
        min-width: 175px
    }
}

.admin-bar .primary-menu-not-set {
    opacity: 1;
    visibility: visible
}

@media screen and (max-width:1199px) {
    .site-navigation {
        background-color: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        position: absolute;
        z-index: 1001;
        padding: 15px 20px;
        top: calc(100% + 30px);
        top: -webkit-calc(100% + 30px);
        top: -ms-calc(100% + 30px);
        top: -o-calc(100% + 30px);
        bottom: auto;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        transition: all 300ms linear 0ms;
        z-index: -1
    }

    .site-navigation.navigation-open {
        opacity: 1;
        visibility: visible;
        top: 100%;
        z-index: 999;
        overflow-y: scroll !important;
        max-height: 80vh !important
    }

    .primary-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%
    }

    .primary-menu li {
        position: relative;
        list-style: none
    }

    .primary-menu li a {
        display: block;
        padding: 10px 0;
        font-size: 15px;
        color: var(--color-secondary);
        font-weight: 700
    }

    .primary-menu li.current_page_item>a,
    .primary-menu li.current-menu-item>a,
    .primary-menu li.current_page_ancestor>a,
    .primary-menu li.current-menu-ancestor>a {
        color: var(--color-primary)
    }

    .primary-menu li .link-icon {
        margin-right: 6px;
        font-size: 90%
    }

    .primary-menu .sub-menu {
        position: relative;
        padding-left: 20px;
        display: none
    }

    .primary-menu .sub-menu .container {
        padding: 0
    }

    .primary-menu .sub-menu.submenu-open+.main-menu-toggle:before {
        content: ""
    }

    .primary-menu li.focus>.sub-menu {
        visibility: visible;
        opacity: 1;
        max-height: none;
        overflow: visible
    }

    .primary-menu-not-set {
        margin: 0;
        list-style: none
    }

    .primary-menu-not-set a {
        display: block;
        padding: 10px 0;
        color: #000;
        font-weight: 600;
        font-size: 15px
    }

    .primary-menu-not-set a:hover {
        color: var(--color-primary)
    }

    #main-menu-mobile .btn-nav-mobile {
        color: #282828;
        display: inline-block;
        font-size: 16px;
        height: 32px;
        line-height: 32px;
        text-align: center;
        vertical-align: middle;
        width: 30px;
        cursor: pointer;
        position: relative;
        transition: all 300ms linear 0ms
    }

    #main-menu-mobile .btn-nav-mobile:before,
    #main-menu-mobile .btn-nav-mobile:after,
    #main-menu-mobile .btn-nav-mobile span {
        transition: all 300ms linear 0ms;
        content: "";
        background-color: #282828;
        display: block;
        height: 2px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        width: 22px;
        top: 21px
    }

    #main-menu-mobile .btn-nav-mobile:before {
        top: 9px
    }

    #main-menu-mobile .btn-nav-mobile span {
        top: 15px
    }

    #main-menu-mobile .btn-nav-mobile.opened:before {
        top: 15px;
        transform: rotate(45deg)
    }

    #main-menu-mobile .btn-nav-mobile.opened:after {
        transform: rotate(-45deg);
        top: 15px
    }

    #main-menu-mobile .btn-nav-mobile.opened span {
        display: none
    }

    .main-menu-toggle {
        transition: all 300ms linear 0ms;
        cursor: pointer;
        display: inline-block;
        height: 25px;
        line-height: 25px;
        position: absolute;
        right: 0;
        text-align: center;
        top: 10px;
        width: 25px;
        background-color: var(--color-primary);
        border-radius: 2px;
        color: #fff
    }

    .main-menu-toggle:hover {
        background-color: var(--color-secondary)
    }

    .main-menu-toggle:before {
        content: "";
        font-family: "Material-Design-Iconic-Font"
    }

    #site-header-wrap .mega-auto-width {
        display: block
    }

    #site-header-wrap .mega-auto-width>.wpb_column {
        width: 100%
    }

    #site-header-wrap .mega-auto-width>.wpb_column .vc_column-inner {
        padding: 0 !important;
        border: none
    }

    #site-header-wrap .vc_wp_custommenu {
        padding: 0;
        background-color: transparent
    }

    .mega-auto-width>.elementor-container>.elementor-row>.elementor-element .elementor-column-wrap {
        padding: 0 !important;
        border: none !important;
        margin: 16px 0 !important
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%
}

ul.back {
    right: 100%;
    left: auto !important
}

.mega-auto-width>.elementor-container>.elementor-row>.elementor-element {
    width: 285px
}

.mega-auto-width>.elementor-container>.elementor-row>.elementor-element .elementor-column-wrap {
    padding: 0 40px;
    border-right: 2px solid #eaeaea;
    margin: 40px 0
}

.mega-auto-width>.elementor-container>.elementor-row>.elementor-element:last-child .elementor-column-wrap {
    border-right: none
}

.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0px;
    margin-top: -8px
}

.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li {
    border: none
}

.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li a {
    background-color: transparent;
    font-size: 14px;
    color: #848e9f;
    font-weight: normal;
    padding: 8px 0 8px 22px
}

.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li:hover>a,
.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li.current_page_item>a,
.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li.current-menu-item>a,
.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li.current_page_ancestor>a,
.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li.current-menu-ancestor>a {
    color: var(--color-primary)
}

.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li:first-child a {
    font-weight: 500;
    font-size: 22px;
    font-family: "Quicksand", sans-serif;
    color: var(--color-secondary);
    display: block;
    padding-left: 0
}

.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li:first-child a:before {
    display: none
}

.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li:first-child:hover>a,
.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li:first-child.current_page_item>a,
.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li:first-child.current-menu-item>a,
.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li:first-child.current_page_ancestor>a,
.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li:first-child.current-menu-ancestor>a {
    color: var(--color-primary)
}

.mega-auto-width>.elementor-container>.elementor-row .elementor-widget-wp-widget-nav_menu ul.menu li:last-child a {
    padding-bottom: 0
}

.mega-auto-width .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: inherit
}

.redux-page.single #pagetitle {
    background-image: none;
    padding: 37px 0
}

.redux-page.single #pagetitle .page-title {
    display: none
}

#pagetitle {
    padding: 85px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-color: #f2f2f2
}

#pagetitle .page-title-inner {
    position: relative;
    z-index: 1
}

#pagetitle .page-title-inner.ptt-align-right {
    text-align: right
}

#pagetitle .page-title-inner.ptt-align-center {
    text-align: center
}

#pagetitle .page-title-inner.ptt-align-center .page-title {
    margin: 0 auto
}

@media screen and (min-width:992px) {
    #pagetitle .page-title-inner.ptt-align-center .page-title {
        max-width: 50%
    }
}

#pagetitle .page-title {
    margin-bottom: 0;
    font-size: 40px;
    line-height: 55px;
    padding-bottom: 7px
}

.cms-breadcrumb {
    margin: 0;
    list-style: none;
    color: var(--color-secondary)
}

.cms-breadcrumb li {
    display: inline-block;
    font-size: 14px;
    color: inherit
}

.cms-breadcrumb li a,
.cms-breadcrumb li span {
    color: inherit
}

.cms-breadcrumb li a:after,
.cms-breadcrumb li span:after {
    content: "";
    font-family: FontAwesome;
    margin: 0 11px;
    color: inherit
}

.cms-breadcrumb li a:hover {
    color: var(--color-primary)
}

.cms-breadcrumb li a:hover:after {
    color: inherit
}

.cms-breadcrumb li:last-child a,
.cms-breadcrumb li:last-child span {
    color: var(--color-tertiary)
}

.cms-breadcrumb li:last-child a:after,
.cms-breadcrumb li:last-child span:after {
    display: none
}

.sticky {
    display: block
}

.updated:not(.published) {
    display: none
}

.format-gallery .entry-featured {
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden
}

.format-gallery .entry-featured img {
    border-radius: 20px 20px 0 0
}

.format-gallery .entry-featured .owl-next,
.format-gallery .entry-featured .owl-prev {
    background: #fff;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    position: absolute;
    color: #000;
    font-size: 18px;
    transition: all 300ms linear 0ms;
    opacity: 0
}

.format-gallery .entry-featured .owl-next:hover,
.format-gallery .entry-featured .owl-prev:hover {
    background: var(--color-primary);
    color: #fff
}

.format-gallery .entry-featured .owl-next {
    right: 0;
    top: 50%;
    transform: translate(0, -50%)
}

.format-gallery .entry-featured .owl-prev {
    left: 0;
    top: 50%;
    transform: translate(0, -50%)
}

.format-gallery .entry-featured:hover .owl-next,
.format-gallery .entry-featured:hover .owl-prev {
    opacity: 1
}

.format-gallery .entry-featured:hover .owl-next.disabled,
.format-gallery .entry-featured:hover .owl-prev.disabled {
    opacity: 0.76
}

.posts-pagination .posts-page-links {
    display: flex;
    align-items: center;
    justify-content: center
}

.posts-pagination .page-numbers {
    text-align: center;
    height: 50px;
    width: 50px;
    padding: 0;
    line-height: 50px;
    border: 1px solid #e6e8eb;
    border-radius: 25px;
    background-color: transparent;
    font-size: 20px;
    font-weight: 700;
    margin: 0 10px 0 0;
    color: var(--color-secondary)
}

.posts-pagination .page-numbers.current,
.posts-pagination .page-numbers:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

.posts-pagination .page-numbers.next {
    margin-left: 10px;
    font-size: 16px
}

.posts-pagination .page-numbers.prev {
    margin-right: 20px;
    font-size: 16px
}

.entry-title a {
    color: inherit
}

.entry-title a:hover {
    color: var(--color-primary)
}

.entry-featured {
    position: relative;
    margin-bottom: 24px
}

.entry-featured .post-image a {
    width: 100%
}

.entry-featured .post-image a,
.entry-featured .post-image span {
    display: inline-block
}

.entry-featured .post-image img {
    border-radius: 22px
}

.entry-featured .post-category {
    position: absolute;
    z-index: 1;
    bottom: 30px;
    left: 40px;
    padding: 10px 12px 10px;
    border-radius: 0 10px 10px 10px;
    text-align: center;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 13px;
    line-height: 1
}

.entry-featured .post-category a:hover {
    color: #fff;
    text-decoration: underline
}

.redux-page .entry-featured .post-image img {
    width: 100%
}

.item-category {
    font-size: 13px;
    font-weight: 400
}

.entry-meta {
    margin: 0;
    list-style: none;
    font-size: 13px
}

.entry-meta li {
    display: inline-block;
    margin-right: 11px;
    color: var(--color-tertiary);
    position: relative
}

@media screen and (max-width:767px) {
    .entry-meta li {
        margin-bottom: 10px
    }
}

.entry-meta li a {
    color: inherit
}

.entry-meta li a:hover {
    color: var(--color-primary)
}

.entry-meta li.item-category {
    position: relative
}

.entry-meta li.item-author {
    text-transform: capitalize
}

.entry-meta li+li {
    padding-left: 13px;
    border-left: 2px solid #dedfe3
}

.single-hentry .entry-title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
    margin-top: -15px;
    color: #26365e
}

.single-hentry .entry-meta {
    margin-top: 6px;
    margin-bottom: 30px
}

.single-hentry.has-post-thumbnail .entry-meta {
    padding: 30px 0 0 40px;
    background-color: #fff;
    margin-top: -70px;
    margin-left: -40px;
    position: relative;
    border-radius: 0 22px 0 0
}

.single-hentry .entry-content p {
    margin-bottom: 25px
}

.single-hentry .entry-readmore {
    padding-top: 17px
}

.single-hentry.archive {
    margin-bottom: 60px
}

.single-hentry.archive .entry-title {
    margin-bottom: 20px
}

.single-hentry.archive .entry-meta {
    margin-bottom: 17px;
    margin-top: 35px;
    padding-top: 0
}

.single-hentry.archive .entry-featured.post-image-wrap+.entry-body {
    padding-left: 40px;
    padding-right: 40px
}

@media screen and (max-width:991px) {
    .single-hentry.archive .entry-featured.post-image-wrap+.entry-body {
        padding-left: 30px;
        padding-right: 30px
    }
}

@media screen and (max-width:767px) {
    .single-hentry.archive .entry-featured.post-image-wrap+.entry-body {
        padding-left: 0;
        padding-right: 0
    }
}

.single-hentry.archive .post-image {
    overflow: hidden;
    border-radius: 2px
}

@media screen and (min-width:1200px) {
    .redux-page.single-post .entry-content-top {
        padding: 0 40px
    }
}

.single-post .entry-content {
    padding-bottom: 6px
}

.single-post .entry-content-bottom {
    padding: 19px 0;
    border-top: 1px solid #e6e8eb;
    border-bottom: 1px solid #e6e8eb;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 22px;
    position: relative
}

.single-post .entry-content-bottom .entry-tags,
.single-post .entry-content-bottom .entry-social-wrap {
    margin: 10px 0
}

.single-post .entry-content-bottom .entry-tags a {
    margin-right: 10px
}

.single-post .entry-navigation {
    padding-top: 10px;
    margin-bottom: 30px
}

.single-post .entry-navigation .nav-post-img {
    width: 67px;
    min-width: 67px;
    margin-right: 20px;
    position: relative;
    overflow: hidden
}

.single-post .entry-navigation .nav-post-img a {
    display: flex
}

.single-post .entry-navigation .nav-post-img a:before,
.single-post .entry-navigation .nav-post-img a:after {
    opacity: 0;
    transition: all 300ms ease 0s
}

.single-post .entry-navigation .nav-post-img a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--rgb-color-primary), 0.9);
    border-radius: 6px
}

.single-post .entry-navigation .nav-post-img a:after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    transition: none
}

.single-post .entry-navigation .nav-post-img span {
    display: inline-block;
    width: 67px;
    height: 67px;
    border-radius: 6px
}

.single-post .entry-navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -15px
}

@media screen and (max-width:767px) {
    .single-post .entry-navigation .nav-links {
        flex-direction: column;
        align-items: flex-start
    }
}

.single-post .entry-navigation .nav-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 50%;
    margin: 10px 15px;
    padding: 16px 30px;
    border: 2px solid #e6e8eb;
    border-radius: 10px;
    transition: all 300ms linear 0s
}

.single-post .entry-navigation .nav-item.nav-post-prev .nav-post-img a:after {
    content: ""
}

.single-post .entry-navigation .nav-item.nav-post-next .nav-post-img a:after {
    content: ""
}

.single-post .entry-navigation .nav-item:hover {
    border-color: var(--color-primary)
}

.single-post .entry-navigation .nav-item:hover .nav-post-img a:before,
.single-post .entry-navigation .nav-item:hover .nav-post-img a:after {
    opacity: 1
}

@media screen and (min-width:768px) {
    .single-post .entry-navigation .nav-item.nav-post-next {
        flex-direction: row-reverse;
        text-align: right
    }

    .single-post .entry-navigation .nav-item.nav-post-next .nav-post-img {
        margin-right: 0;
        margin-left: 30px
    }
}

@media screen and (max-width:575px) {
    .single-post .entry-navigation .nav-item {
        width: 90%
    }
}

.single-post .entry-navigation .nav-post-meta label {
    font-size: 13px;
    display: block
}

.single-post .entry-navigation .nav-post-meta a {
    font-size: 16px;
    line-height: 22px;
    font-family: "Quicksand", sans-serif;
    color: #26365e;
    font-weight: bold
}

.single-post .entry-navigation .nav-post-meta a:hover {
    color: var(--color-primary)
}

.single-post .entry-author-info {
    margin-bottom: 63px;
    background-color: #def8f6;
    padding: 40px 30px 32px 40px;
    border-radius: 10px;
    position: relative
}

.single-post .entry-author-info:before {
    content: "";
    display: block;
    width: 3px;
    background-color: var(--color-primary);
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0
}

.single-post .entry-author-info .author-name {
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    color: #26365e;
    font-size: 18px;
    margin-bottom: 14px
}

.single-post .entry-author-info .author-name a {
    color: inherit
}

.single-post .entry-author-info .author-post {
    display: flex;
    flex-wrap: nowrap
}

@media screen and (max-width:575px) {
    .single-post .entry-author-info .author-post {
        flex-direction: column
    }

    .single-post .entry-author-info .author-post .author-avatar {
        margin-bottom: 25px
    }
}

.single-post .entry-author-info .author-avatar {
    width: 70px;
    min-width: 70px;
    margin-right: 30px
}

.single-post .entry-author-info .author-avatar img {
    border-radius: 35px
}

.single-post .entry-author-info .author-description {
    font-size: 15px;
    line-height: 23px;
    margin-top: -4px
}

.single-post .entry-author-info .author-description p {
    margin-bottom: 15px
}

.single-post .entry-author-info .user-social {
    list-style: none;
    margin: 0
}

.single-post .entry-author-info .user-social li {
    display: inline-block;
    margin-right: 16px
}

.single-post .entry-author-info .user-social li a {
    font-size: 16px;
    color: #26365e
}

.single-post .entry-author-info .user-social li a i {
    font-size: inherit
}

.single-post .entry-author-info .user-social li a:hover {
    color: var(--color-primary)
}

.single-post .entry-content .page-links {
    margin-bottom: 30px
}

.cms-related-post {
    margin-bottom: 3px
}

.cms-related-post h4 {
    margin-bottom: 45px
}

.cms-related-post .item-featured {
    overflow: hidden;
    border-radius: 3px
}

.cms-related-post .item-featured img {
    border-radius: 3px
}

.cms-related-post .item-featured img:hover {
    transform: scale(1.05)
}

.cms-related-post .item-title {
    font-size: 21px;
    font-weight: bold;
    margin: 24px 0 10px
}

.cms-related-post .item-title a {
    color: inherit
}

.cms-related-post .item-title a:hover {
    color: var(--color-primary)
}

.single .entry-social-wrap {
    display: flex;
    align-items: center
}

.single .entry-social-wrap ul {
    margin: 0
}

.single .entry-social-wrap ul li {
    display: inline-block
}

.single .entry-social-wrap ul li a {
    margin-right: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--color-secondary);
    color: #fff
}

.single .entry-social-wrap ul li a:hover {
    transform: translateY(-3px)
}

.single .entry-social-wrap ul li a i {
    font-size: 17px;
    color: inherit
}

.single .entry-social-wrap ul li a.fb-social {
    background-color: #3b5999
}

.single .entry-social-wrap ul li a.tw-social {
    background-color: #55acee
}

.single .entry-social-wrap ul li a.pin-social {
    background-color: #BD081C
}

.single .entry-social-wrap ul li:last-child a {
    margin-right: 0
}

.single .entry-social-wrap label {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-right: 20px
}

.no-results .search-form {
    position: relative
}

.no-results .search-form .search-submit {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    color: #282828;
    background-color: transparent;
    padding: 0 20px;
    line-height: 60px
}

img.image-space {
    margin-top: 9px;
    margin-bottom: 6px
}

.single-post #primary.content-full-width,
.page-template-blog-classic #primary.content-full-width {
    max-width: 800px;
    margin: auto
}

body.search-results .single-hentry .entry-featured {
    margin-bottom: 0
}

body.search-results .single-hentry .entry-body {
    padding: 32px 40px 40px;
    background-color: #fff;
    box-shadow: 0 5px 83px rgba(40, 40, 40, 0.08)
}

@media screen and (max-width:1199px) {
    body.search-results .single-hentry .entry-body {
        padding-left: 30px;
        padding-right: 30px
    }
}

@media screen and (max-width:991px) {
    body.search-results .single-hentry .entry-body {
        padding: 30px 20px
    }
}

#secondary .widget,
.elementor-widget .e-sidebar-widget {
    padding: 33px 40px 40px;
    margin-bottom: 40px;
    background-color: #def8f6;
    position: relative;
    border-radius: 10px
}

#secondary .widget span.count,
.elementor-widget .e-sidebar-widget span.count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #fff;
    color: var(--color-primary);
    border: 1px solid #e6e8eb;
    border-radius: 50%;
    font-size: 14px
}

#secondary .widget span.count.right,
.elementor-widget .e-sidebar-widget span.count.right {
    float: left;
    margin-right: 19px
}

#secondary .widget select,
.elementor-widget .e-sidebar-widget select {
    max-width: 100%;
    border-color: #eaeaea;
    background: #fff
}

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

    #secondary .widget,
    .elementor-widget .e-sidebar-widget {
        padding-left: 30px;
        padding-right: 30px
    }
}

#secondary .widget:before,
.elementor-widget .e-sidebar-widget:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    height: 3px;
    left: 40px;
    right: 40px;
    bottom: 0;
    background-color: var(--color-primary)
}

#secondary .widget.widget_tag_cloud .widget-content,
.elementor-widget .e-sidebar-widget.widget_tag_cloud .widget-content {
    margin-bottom: -10px
}

#secondary .widget.widget_categories,
.elementor-widget .e-sidebar-widget.widget_categories {
    padding-bottom: 20px
}

.widget-border-left {
    position: relative
}

.widget-border-left:before {
    content: "";
    display: block;
    width: 3px;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 60px;
    bottom: 60px;
    background-color: var(--color-primary)
}

.widget-border-left.secondary:before {
    background-color: var(--color-secondary)
}

.widget-title,
.comments-title,
.comment-reply-title,
.e-sidebar-widget .widget-title {
    font-size: 19px;
    position: relative;
    margin-bottom: 23px;
    font-weight: bold;
    color: #26365e
}

ul.menu {
    list-style: none;
    margin: 0
}

.search-form {
    position: relative
}

.widget_nav_menu.column3 ul.menu {
    margin: 0 -15px;
    overflow: hidden
}

.widget_nav_menu.column3 ul.menu li {
    width: 33.33%;
    padding: 0 15px;
    float: left
}

@media screen and (max-width:767px) {
    .widget_nav_menu.column3 ul.menu li {
        width: 50%
    }
}

@media screen and (max-width:575px) {
    .widget_nav_menu.column3 ul.menu li {
        width: 100%
    }
}

.widget_nav_menu.column2 ul.menu {
    margin: 0 -15px;
    overflow: hidden
}

.widget_nav_menu.column2 ul.menu li {
    width: 50%;
    padding: 0 15px;
    float: left
}

@media screen and (max-width:575px) {
    .widget_nav_menu.column2 ul.menu li {
        width: 100%
    }
}

.widget_categories ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_archive ul,
.widget_meta ul {
    list-style: none;
    margin-bottom: 0
}

#content .widget_categories ul ul ul ul ul,
#content .widget_pages ul ul ul ul ul,
#content .widget_nav_menu ul ul ul ul ul,
#content .widget_meta ul ul ul ul ul {
    padding-left: 0
}

#content .widget_categories ul li,
#content .widget_nav_menu ul li,
#content .cms-navigation-menu.e-sidebar-widget ul li,
#content .widget_pages ul li,
#content .widget_archive ul li,
#content .widget_meta ul li {
    font-size: 0;
    line-height: 0
}

#content .widget_categories ul li a,
#content .widget_nav_menu ul li a,
#content .cms-navigation-menu.e-sidebar-widget ul li a,
#content .widget_pages ul li a,
#content .widget_archive ul li a,
#content .widget_meta ul li a {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    display: block;
    position: relative;
    margin-bottom: 13px
}

#content .widget_categories ul li a:hover,
#content .widget_nav_menu ul li a:hover,
#content .cms-navigation-menu.e-sidebar-widget ul li a:hover,
#content .widget_pages ul li a:hover,
#content .widget_archive ul li a:hover,
#content .widget_meta ul li a:hover {
    color: var(--color-primary)
}

#content .widget_categories .current-cat>a,
#content .widget_categories .current-cat-parent>a,
#content .widget_categories .current-cat-ancestor>a,
#content .widget_nav_menu .current-cat>a,
#content .widget_nav_menu .current-cat-parent>a,
#content .widget_nav_menu .current-cat-ancestor>a,
#content .cms-navigation-menu.e-sidebar-widget .current-cat>a,
#content .cms-navigation-menu.e-sidebar-widget .current-cat-parent>a,
#content .cms-navigation-menu.e-sidebar-widget .current-cat-ancestor>a,
#content .widget_pages .current-cat>a,
#content .widget_pages .current-cat-parent>a,
#content .widget_pages .current-cat-ancestor>a,
#content .widget_archive .current-cat>a,
#content .widget_archive .current-cat-parent>a,
#content .widget_archive .current-cat-ancestor>a,
#content .widget_meta .current-cat>a,
#content .widget_meta .current-cat-parent>a,
#content .widget_meta .current-cat-ancestor>a {
    color: var(--color-primary)
}

#content .widget_categories .nice-select ul li,
#content .widget_nav_menu .nice-select ul li,
#content .cms-navigation-menu.e-sidebar-widget .nice-select ul li,
#content .widget_pages .nice-select ul li,
#content .widget_archive .nice-select ul li,
#content .widget_meta .nice-select ul li {
    font-size: 14px;
    line-height: normal
}

.widget_recent_entries a,
.widget_recent_comments a {
    color: #054c8b
}

.widget_recent_entries a:hover,
.widget_recent_comments a:hover {
    color: var(--color-primary)
}

.widget_recent_entries li,
.widget_recent_comments li {
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 11px;
    margin-bottom: 11px
}

.widget_recent_comments .recentcomments>a {
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
    color: var(--color-secondary);
    display: block
}

.widget_recent_comments .recentcomments>a:hover {
    color: var(--color-primary)
}

.widget_recent_comments .recentcomments>a:before {
    content: "\a";
    white-space: pre
}

.widget_rss {
    font-size: 15px
}

.widget_rss .widget-title .rsswidget {
    color: var(--color-secondary);
    margin-bottom: 0
}

.widget_rss ul {
    list-style: none;
    padding: 0
}

.widget_rss li {
    margin-bottom: 16px
}

.widget_rss li:last-child {
    margin-bottom: 0
}

.widget_rss .rsswidget {
    color: var(--color-secondary);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5px
}

.widget_rss .rsswidget:hover {
    color: var(--color-primary)
}

.widget_rss .rss-date {
    font-size: 0.875em;
    font-style: italic;
    display: block
}

.widget_rss .rssSummary {
    margin: 5px 0
}

.widget_rss cite {
    font-weight: 700;
    font-size: 0.875em
}

.widget_calendar .calendar_wrap table {
    border-color: rgba(var(--rgb-color-primary), 0.8);
    margin-bottom: 0;
    color: var(--color-secondary)
}

.widget_calendar .calendar_wrap table td {
    padding: 8px;
    font-size: 14px;
    color: var(--color-secondary)
}

.widget_calendar .calendar_wrap table td#today {
    color: var(--color-primary)
}

.widget_calendar th,
.widget_calendar td {
    text-align: center;
    border-color: rgba(var(--rgb-color-primary), 0.8)
}

.widget_calendar table>caption {
    padding-bottom: 0;
    text-align: center;
    color: inherit
}

.widget_calendar .wp-calendar-nav-prev {
    color: var(--color-secondary)
}

.widget_ef_recent_posts li {
    padding-bottom: 14px
}

.widget_ef_recent_posts li:last-child {
    padding-bottom: 0
}

.widget_ef_recent_posts .entry-posted-in a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.66)
}

.widget_ef_recent_posts .entry-posted-in a:hover {
    color: var(--color-primary)
}

.widget_ef_recent_posts .entry-title {
    font-size: 18px;
    line-height: 24px;
    margin-top: 4px
}

.widget_ef_recent_posts .entry-title a {
    color: #000
}

.widget_ef_recent_posts .entry-title a:hover {
    color: var(--color-primary)
}

.widget_ef_recent_posts .entry-title+.entry-meta {
    margin-top: 15px
}

.cms-social {
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap
}

.cms-social li {
    display: inline-block;
    margin: 4px 10px 0 0
}

.cms-social a {
    font-size: 17px;
    color: #fff;
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #272727;
    border-radius: 34px
}

.cms-social a i {
    color: #fff
}

.cms-social a:hover {
    background-color: var(--color-primary)
}

.widget_cms_check_availability {
    background-color: #fff;
    border: 1px solid #e5e5e5 !important;
    border-radius: 6px;
    margin-bottom: 55px !important;
    padding: 30px !important
}

.widget_cms_check_availability .select2-selection__arrow {
    display: none !important
}

.cms-contact-box:before {
    content: none !important
}

.cms-contact-box .widget-icon {
    margin-top: 26px;
    margin-bottom: 23px
}

.cms-contact-box .widget-icon img {
    max-height: 48px;
    transition: all 300ms ease 0s
}

.cms-contact-box .box-title {
    font-size: 19px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 18px
}

.cms-contact-box .cms-contact-text {
    font-size: 14px;
    line-height: 24px;
    color: #f4f4f4
}

.cms-contact-box .cms-contact-text p {
    margin-bottom: 22px
}

.cms-contact-box .cms-contact-button {
    margin-bottom: 20px
}

.cms-contact-box .cms-contact-button a {
    font-family: "Quicksand", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff
}

.cms-contact-box .cms-contact-button a i {
    font-size: 18px;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(249, 249, 249, 0.15);
    border-radius: 50%;
    margin-right: 10px
}

.cms-contact-box:hover .widget-icon img {
    animation: upDown 500ms ease-in-out 50ms
}

.widget_newsletterwidget {
    padding: 14px 0
}

.widget_newsletterwidget .description {
    padding-bottom: 23px;
    color: #fff;
    font-weight: 700
}

.widget_newsletterwidget .tnp-widget {
    position: relative
}

.widget_newsletterwidget .tnp-widget .tnp-field-email {
    margin-bottom: 0
}

.widget_newsletterwidget .tnp-widget .tnp-field-email .tnp-email {
    height: 54px;
    border-radius: 3px;
    background-color: #fff;
    font-size: 13px;
    color: #848e9f;
    font-style: normal;
    padding: 0 28px
}

.widget_newsletterwidget .tnp-widget .tnp-field-email .tnp-email:focus {
    border-color: var(--color-primary)
}

.widget_newsletterwidget .tnp-widget .tnp-field-button {
    margin: 0;
    width: 54px;
    height: 54px;
    position: absolute;
    top: 0;
    right: 0
}

.widget_newsletterwidget .tnp-widget .tnp-field-button:before {
    content: "";
    font-size: 12px;
    color: #fff;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 30px;
    background-color: var(--color-primary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome 5 Pro";
    text-align: center
}

.widget_newsletterwidget .tnp-widget .tnp-field-button .tnp-submit {
    top: 0;
    right: 0;
    opacity: 0;
    padding: 0;
    height: 54px;
    width: 54px;
    position: absolute
}

.widget_cms_recent_posts {
    padding-bottom: 18px
}

.widget_cms_recent_posts .widget-content .posts-list .entry-media {
    width: 80px;
    margin-right: 20px;
    flex: none
}

.widget_cms_recent_posts .widget-content .posts-list .entry-media a {
    display: block;
    width: 100%;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    padding-bottom: 14px;
    border-bottom: 1px solid #afede8
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief:last-child {
    margin-bottom: 0;
    border-bottom: none
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content {
    margin-top: -7px;
    padding: 0
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta {
    display: flex;
    font-size: 13px
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta .cats-meta {
    display: inline-block;
    margin-right: 20px
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta .cats-meta a {
    color: var(--color-tertiary)
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta .cats-meta a:after {
    content: ","
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta .cats-meta a:last-child:after {
    content: ""
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-meta>span {
    display: inline-block;
    color: var(--color-tertiary)
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-title {
    font-size: 16px;
    line-height: 23px;
    font-weight: bold;
    margin-top: 3px;
    margin-bottom: 0;
    color: #26365e
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-title a {
    color: inherit
}

.widget_cms_recent_posts .widget-content .posts-list .entry-brief .entry-content .entry-title a:hover {
    color: var(--color-primary)
}

.tagcloud a,
.entry-tags a {
    color: var(--color-primary);
    display: inline-block;
    font-size: 12px !important;
    font-weight: 500;
    line-height: 28px;
    padding: 0 12px;
    margin: 5px 6px 5px 0;
    border: 1px solid #e6e8eb;
    background-color: #fff;
    border-radius: 6px
}

.tagcloud a:hover,
.entry-tags a:hover {
    color: #fff;
    background-color: var(--color-primary)
}

.tagcloud a:last-child,
.entry-tags a:last-child {
    margin-right: 0 !important
}

.widget_search {
    position: relative
}

.widget_search .search-field {
    border-color: #eaeaea;
    background-color: #fff;
    padding: 0 20px;
    font-size: 13px;
    border-radius: 30px
}

.widget_search .search-submit {
    border: none;
    background-color: transparent;
    padding: 0;
    height: 60px;
    line-height: 60px;
    width: 60px;
    font-size: 16px;
    color: var(--color-primary);
    position: absolute;
    top: 0;
    right: 0
}

.elementor-widget-container .search-form {
    position: relative
}

.elementor-widget-container .search-form .search-field {
    background-color: #f1f5fe;
    padding: 0 20px;
    font-size: 14px;
    border-color: transparent;
    border-radius: 3px
}

.elementor-widget-container .search-form .search-submit {
    border: none;
    background-color: transparent;
    padding: 0;
    height: 60px;
    line-height: 60px;
    width: 60px;
    font-size: 16px;
    color: var(--color-secondary);
    position: absolute;
    top: 0;
    right: 0
}

.elementor-widget-container .search-form .search-submit i {
    font-size: 16px
}

#sb_instagram .sbi_item img {
    border-radius: 1px !important
}

#sb_instagram .sbi_item .sbi_photo {
    position: relative;
    opacity: 1 !important
}

#sb_instagram .sbi_item .sbi_photo:before {
    content: "";
    color: #fff;
    font-size: 14px;
    font-family: FontAwesome;
    z-index: 2;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transition: all 300ms linear 0ms
}

#sb_instagram .sbi_item .sbi_photo:after {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    background-color: var(--color-primary);
    opacity: 0.95;
    z-index: 1;
    border-radius: 1px;
    opacity: 0;
    transition: all 300ms linear 0ms
}

#sb_instagram .sbi_item .sbi_photo:hover:before,
#sb_instagram .sbi_item .sbi_photo:hover:after {
    opacity: 1
}

#sb_instagram #sbi_load {
    padding-top: 0 !important
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0
}

embed,
iframe,
object {
    max-width: 100%
}

.custom-logo-link {
    display: inline-block
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption .wp-caption-text {
    padding: 0.8075em 0;
    font-size: 0.875em;
    font-style: italic
}

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

.gallery {
    margin-bottom: 1.5em
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%
}

.gallery-caption {
    display: block
}

.wp-block-gallery.aligncenter,
.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
    display: flex
}

.wp-block-gallery.alignfull .blocks-gallery-caption {
    margin-bottom: 20px
}

#primary:not(.content-has-sidebar) .wp-block-gallery.alignfull {
    width: 100vw
}

#primary:not(.content-has-sidebar) .wp-block-gallery.alignfull .blocks-gallery-grid {
    position: relative;
    left: calc(-12.5% - 128px);
    width: calc(125% + 150px);
    max-width: calc(125% + 150px)
}

.gallery-columns-1 .gallery-item {
    width: 100%
}

@media (min-width:480px) {
    .gallery-columns-3 .gallery-item {
        width: 33.333333%
    }
}

@media (min-width:480px) {
    .gallery-columns-4 .gallery-item {
        width: 25%
    }
}

.gallery-columns-5 .gallery-caption {
    display: none
}

@media (min-width:480px) {
    .gallery-columns-5 .gallery-item {
        width: 25%
    }
}

@media (min-width:768px) {
    .gallery-columns-5 .gallery-item {
        width: 20%
    }
}

.gallery-columns-6 .gallery-caption {
    display: none
}

@media (min-width:480px) {
    .gallery-columns-6 .gallery-item {
        width: 25%
    }
}

@media (min-width:768px) {
    .gallery-columns-6 .gallery-item {
        width: 16.66%
    }
}

.gallery-columns-7 .gallery-caption {
    display: none
}

@media (min-width:480px) {
    .gallery-columns-7 .gallery-item {
        width: 25%
    }
}

@media (min-width:768px) {
    .gallery-columns-7 .gallery-item {
        width: 14.28%
    }
}

.gallery-columns-8 .gallery-caption {
    display: none
}

@media (min-width:480px) {
    .gallery-columns-8 .gallery-item {
        width: 25%
    }
}

@media (min-width:768px) {
    .gallery-columns-8 .gallery-item {
        width: 12.5%
    }
}

.gallery-columns-9 .gallery-caption {
    display: none
}

@media (min-width:480px) {
    .gallery-columns-9 .gallery-item {
        width: 25%
    }
}

@media (min-width:768px) {
    .gallery-columns-9 .gallery-item {
        width: 11.11%
    }
}

.wp-block-gallery.aligncenter,
.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
    display: flex
}

.comments-area {
    margin-top: 35px
}

.comments-area .comment-list {
    list-style: none;
    margin: 34px 0 0
}

.comments-area .comment-list>.comment .comment-body {
    border-top: 2px solid #e7ebef;
    margin-top: 24px;
    padding-top: 30px
}

.comments-area .comment-list>.comment:first-child>.comment-body {
    border-top: none;
    padding-top: 0;
    margin-top: 0
}

.comments-area .comment-list>.comment>.children {
    list-style: none;
    margin: 0;
    padding-left: 90px
}

@media screen and (max-width:767px) {
    .comments-area .comment-list>.comment>.children {
        padding-left: 0
    }
}

.comments-area .comment-list>.trackback,
.comments-area .comment-list>.pingback {
    border-top: 2px solid #e7ebef;
    margin-top: 24px;
    padding-top: 30px
}

.comments-area .comment-list>.trackback:nth-child(1),
.comments-area .comment-list>.pingback:nth-child(1) {
    border-top: none;
    margin-top: 0
}

.comments-area .comment-list .children {
    list-style: none
}

.comments-area .comment-list .comment-body+.comment-respond {
    margin-top: 30px
}

.comments-area .comment-inner {
    display: flex;
    flex-wrap: nowrap
}

.comments-area .comment-inner img.avatar {
    max-width: 60px;
    min-width: 60px;
    max-height: 60px;
    margin-right: 29px;
    border-radius: 30px
}

.comments-area .comment-inner .comment-content {
    margin-top: -3px
}

.comments-area .comment-inner .comment-content .comment-title {
    font-size: 15px;
    line-height: 1;
    margin-bottom: 7px
}

.comments-area .comment-inner .comment-content .comment-title a {
    color: inherit
}

.comments-area .comment-inner .comment-content .comment-title a:hover {
    color: var(--color-primary)
}

.comments-area .comment-inner .comment-content .comment-meta {
    font-size: 12px;
    margin-bottom: 9px;
    color: var(--color-tertiary)
}

.comments-area .comment-inner .comment-content .comment-text {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 23px
}

.comments-area .comment-inner .comment-content .comment-text img {
    margin: 15px 0
}

.comments-area .comment-inner .comment-content .comment-text p:last-child {
    margin-bottom: 0
}

.comments-area .comment-inner .comment-content .comment-reply {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary)
}

.comments-area .comment-list-wrap {
    margin-bottom: 53px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 35px
}

.comments-area #commentform {
    display: flex;
    flex-direction: column
}

.comments-area #commentform input,
.comments-area #commentform textarea {
    margin-bottom: 22px
}

.comments-area #commentform .submit {
    margin-bottom: 0;
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

.comments-area #commentform .submit:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff
}

.comments-area #commentform .form-submit .cms-submit-wrap {
    margin-bottom: 0;
    position: relative;
    display: inline-block
}

.comments-area #commentform .form-submit .cms-submit-wrap:after {
    content: "";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    font-size: 15px;
    color: #fff;
    font-weight: 600
}

.comments-area #commentform .form-submit .cms-submit-wrap input[type="submit"] {
    padding: 0 80px 0 60px;
    line-height: 66px;
    border-radius: 35px
}

.comments-area .comment-content a {
    word-wrap: break-word
}

.comments-area .bypostauthor {
    display: block
}

.comments-area .logged-in-as {
    color: inherit
}

.comments-area .logged-in-as a {
    color: inherit
}

.comments-area .logged-in-as a:hover {
    color: var(--color-primary)
}

.comment-form-cookies-consent {
    font-size: 14px;
    line-height: 29px;
    padding-left: 32px;
    position: relative;
    margin-bottom: 20px;
    margin-top: -7px
}

.comment-form-cookies-consent input,
.comment-form-cookies-consent label:before,
.comment-form-cookies-consent label:after {
    position: absolute;
    width: 17px;
    height: 17px;
    border-radius: 2px;
    left: 0;
    top: 5px
}

.comment-form-cookies-consent label:before {
    content: "";
    display: inline-flex;
    border: 2px solid #eaeaea;
    background-color: transparent;
    z-index: 1
}

.comment-form-cookies-consent label:after {
    content: "";
    font-family: "font awesome 5 pro";
    font-weight: 600;
    z-index: 2;
    font-size: 7px;
    color: var(--color-primary);
    opacity: 0;
    line-height: 18px;
    text-align: center
}

.comment-form-cookies-consent input {
    z-index: 99;
    opacity: 0
}

.comment-form-cookies-consent input:checked+label:before {
    border-color: #eaeaea;
    background-color: #fff
}

.comment-form-cookies-consent input:checked+label:after {
    opacity: 1
}

.comment-form>.row {
    margin: 0 -10px 10px;
    order: -1
}

.comment-form>.row .col-lg-4 {
    padding: 0 10px
}

.comment-respond .comment-reply-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.comment-respond .comment-reply-title small a {
    border-radius: 2px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 13px;
    line-height: 25px;
    display: inline-block;
    padding: 0 10px;
    font-family: "Roboto", sans-serif;
    margin-left: 8px
}

.comment-respond .comment-reply-title small a:hover {
    background-color: var(--color-secondary)
}

@media screen and (max-width:767px) {
    .comment-form-comment {
        display: flex;
        flex-wrap: wrap;
        width: 100%
    }
}

.footer-logo img {
    max-height: 47px
}

.site-footer-default {
    background-color: var(--color-secondary)
}

.site-footer-default .default-copyright {
    padding: 28px 0;
    font-size: 15px;
    color: #f9f9f9
}

.site-footer-default .default-copyright a {
    color: var(--color-primary)
}

.site-footer-custom p:last-child {
    margin-bottom: 0
}

body .scroll-top {
    position: fixed;
    z-index: 99;
    bottom: 24px;
    right: 30px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 3px 6px 0 rgba(14, 32, 77, 0.05)
}

body .scroll-top:hover,
body .scroll-top:focus,
body .scroll-top:active {
    color: #fff;
    background-color: var(--color-tertiary)
}

body .scroll-top.on {
    bottom: 44px;
    opacity: 1;
    visibility: visible
}

.site-footer-custom .footer-custom-inner,
body.single-footer .site-content {
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.site-footer-custom .footer-custom-inner .cms-navigation-menu.default a,
body.single-footer .site-content .cms-navigation-menu.default a {
    font-size: 14px;
    line-height: 33px;
    position: relative
}

.site-footer-custom .footer-custom-inner .cms-navigation-menu.inline,
body.single-footer .site-content .cms-navigation-menu.inline {
    display: inline-flex;
    margin-left: -14px;
    margin-right: -14px
}

.site-footer-custom .footer-custom-inner .cms-navigation-menu.inline li,
body.single-footer .site-content .cms-navigation-menu.inline li {
    line-height: 1
}

.site-footer-custom .footer-custom-inner .cms-navigation-menu.inline li a,
body.single-footer .site-content .cms-navigation-menu.inline li a {
    font-size: 14px;
    margin: 0;
    padding: 0 14px;
    line-height: 24px;
    font-weight: normal
}

.site-footer-custom .footer-custom-inner .cms-navigation-menu.inline li a:after,
body.single-footer .site-content .cms-navigation-menu.inline li a:after {
    content: none !important
}

.site-footer-custom .footer-custom-inner .cms-navigation-menu.inline li+li:before,
body.single-footer .site-content .cms-navigation-menu.inline li+li:before {
    content: "-"
}

.site-footer-custom .footer-custom-inner .cms-newsletter-form.default .tnp-subscription input[type=text],
.site-footer-custom .footer-custom-inner .cms-newsletter-form.default .tnp-subscription input[type=email],
body.single-footer .site-content .cms-newsletter-form.default .tnp-subscription input[type=text],
body.single-footer .site-content .cms-newsletter-form.default .tnp-subscription input[type=email] {
    background-color: #063464
}

.site-footer-custom .footer-custom-inner .cms-button-layout1 .btn,
body.single-footer .site-content .cms-button-layout1 .btn {
    min-width: 166px
}

.site-footer-custom .footer-custom-inner .footer-contact-box .elementor-column-wrap,
body.single-footer .site-content .footer-contact-box .elementor-column-wrap {
    position: relative
}

.site-footer-custom .footer-custom-inner .footer-contact-box .elementor-column-wrap:before,
body.single-footer .site-content .footer-contact-box .elementor-column-wrap:before {
    content: "";
    display: block;
    width: 3px;
    background-color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px
}

.item-featured img {
    width: 100%;
    transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0s
}

.cms-grid .grid-sizer {
    visibility: hidden
}

.cms-grid .cms-grid-inner,
.cms-grid .grid-item-inner {
    position: relative
}

.cms-grid .grid-item.cms-animated .grid-item-inner {
    animation: 0.65s ease 0s normal forwards 1 running moveUp;
    -webkit-animation: 0.65s ease 0s normal forwards 1 running moveUp;
    transform: translateY(200px)
}

.cms-grid .cms-load-more {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    cursor: pointer
}

.cms-grid .cms-load-more .btn-loadmore {
    padding: 0 50px
}

.cms-grid .cms-load-more i.fa-refresh {
    margin-left: 8px;
    font-size: 13px;
    font-weight: normal
}

.cms-grid .cms-grid-pagination {
    margin-top: 17px
}

.cms-grid .item-featured a {
    display: block
}

.cms-grid .btn-loadmore i {
    margin-left: 0;
    margin-right: 0
}

.cms-grid .btn-loadmore i.fa-refresh {
    margin-right: 8px
}

.grid-filter-wrap {
    margin-bottom: 24px
}

.grid-filter-wrap span {
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    margin: 10px 13px;
    transition: all 300ms ease 0ms;
    text-transform: capitalize;
    position: relative;
    border-bottom: 2px solid transparent;
    line-height: 1.3
}

.grid-filter-wrap span.active,
.grid-filter-wrap span:hover {
    color: var(--color-primary);
    border-color: var(--color-primary)
}

.select-filter-wrap.nice-select,
.select-order-wrap.nice-select {
    min-width: 160px;
    height: 40px;
    line-height: 40px;
    padding: 0 40px 0 21px;
    display: inline-block;
    width: inherit;
    border: none;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
    font-size: 15px
}

.select-filter-wrap.nice-select:after,
.select-order-wrap.nice-select:after {
    content: "";
    right: 15px;
    font-size: 15px
}

.select-order-wrap {
    margin-left: 15px
}

.item-order {
    position: absolute;
    opacity: 0;
    visibility: hidden
}

.owl-dots {
    text-align: center;
    margin-top: 44px;
    line-height: 1;
    height: 12px
}

.owl-dots .owl-dot {
    border-radius: 12px;
    border: 4px solid var(--color-secondary);
    display: inline-block;
    height: 12px;
    margin: 0 5px;
    width: 12px;
    vertical-align: top;
    transition: all 300ms linear 0ms;
    position: relative
}

.owl-dots .owl-dot.active {
    border-color: var(--color-primary)
}

.cms-nav-carousel {
    width: 74px;
    height: 32px;
    display: flex;
    flex-wrap: wrap
}

.cms-nav-carousel .nav-prev,
.cms-nav-carousel .nav-next {
    width: 32px;
    height: 32px;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    cursor: pointer;
    transition: all 300ms linear 0ms;
    border-radius: 2px;
    position: relative;
    font-size: 13px
}

.cms-nav-carousel .nav-prev i,
.cms-nav-carousel .nav-next i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.cms-nav-carousel .nav-prev:hover,
.cms-nav-carousel .nav-next:hover {
    color: #fff;
    background-color: var(--color-secondary)
}

.cms-nav-carousel .nav-next {
    margin-left: 10px
}

.cms-slick-carousel .slick-arrow,
.cms-slick-nav .slick-arrow {
    width: 50px;
    height: 50px;
    color: var(--color-secondary);
    cursor: pointer;
    transition: all 300ms linear 0ms;
    border-radius: 54px;
    position: absolute;
    padding: 0;
    background-color: #fff;
    border: 3px solid rgba(var(--rgb-color-secondary), 0.1);
    font-size: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 1
}

.cms-slick-carousel .slick-arrow:before,
.cms-slick-nav .slick-arrow:before {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px
}

.cms-slick-carousel .slick-arrow:hover,
.cms-slick-nav .slick-arrow:hover {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

.cms-slick-carousel .slick-prev,
.cms-slick-nav .slick-prev {
    left: -15px
}

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

    .cms-slick-carousel .slick-prev,
    .cms-slick-nav .slick-prev {
        left: 30px
    }
}

.cms-slick-carousel .slick-prev:before,
.cms-slick-nav .slick-prev:before {
    content: ""
}

.cms-slick-carousel .slick-next,
.cms-slick-nav .slick-next {
    right: -15px
}

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

    .cms-slick-carousel .slick-next,
    .cms-slick-nav .slick-next {
        right: 30px
    }
}

.cms-slick-carousel .slick-next:before,
.cms-slick-nav .slick-next:before {
    content: ""
}

.cms-slick-carousel[data-arrows="true"],
.cms-slick-nav[data-arrows="true"] {
    padding-bottom: 0px
}

.slick-slider .slick-slide {
    outline: none
}

.slick-slider.slick-dotted {
    padding-top: 20px !important
}

.slick-dots {
    margin: 19px 0 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center
}

.slick-dots li {
    display: flex;
    margin: 0 10px
}

.slick-dots li button {
    height: 10px;
    width: 10px;
    text-indent: -9999px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: none;
    position: relative
}

.slick-dots li button:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(var(--rgb-color-primary), 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 300ms ease 0s
}

.slick-dots li.slick-active button {
    background-color: var(--color-primary)
}

.slick-dots li.slick-active button:before {
    opacity: 1
}

.cms-swiper-slick-dots {
    display: flex;
    justify-content: center;
    align-items: center
}

.cms-swiper-slick-dots>.swiper-pagination-bullet {
    border-radius: 50%;
    cursor: pointer;
    position: relative
}

.cms-swiper-slick-dots>.swiper-pagination-bullet:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--swiper-pagination-bullet-shadow, rgba(var(--rgb-color-primary), 0.3));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 300ms ease 0s
}

.cms-swiper-slick-dots>.swiper-pagination-bullet.swiper-pagination-bullet-active:before,
.cms-swiper-slick-dots>.swiper-pagination-bullet:hover:before {
    opacity: 1
}

.nav-style-image .cms-slick-carousel .slick-arrow {
    width: 14px;
    height: 46px;
    border: none;
    filter: grayscale(1);
    opacity: 0.7;
    background-color: transparent;
    top: 50%;
    transform: translate(0, -50%)
}

.nav-style-image .cms-slick-carousel .slick-arrow:before {
    display: none
}

.nav-style-image .cms-slick-carousel .slick-arrow.slick-prev {
    background-image: url(../images/arrow-left.png);
    left: 40px
}

@media screen and (min-width:1250px) {
    .nav-style-image .cms-slick-carousel .slick-arrow.slick-prev {
        left: -40px
    }
}

.nav-style-image .cms-slick-carousel .slick-arrow.slick-next {
    background-image: url(../images/arrow-right.png);
    left: auto;
    right: 40px
}

@media screen and (min-width:1250px) {
    .nav-style-image .cms-slick-carousel .slick-arrow.slick-next {
        right: -40px
    }
}

.nav-style-image .cms-slick-carousel .slick-arrow:hover {
    filter: grayscale(0);
    opacity: 1
}

.nav-style-image .cms-slick-carousel[data-arrows="true"] {
    padding-bottom: 0px
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

#cms-loadding {
    background: #fff;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999999;
    top: 0;
    left: 0;
    transition: all 300ms ease-in 0s
}

#cms-loadding .loading-center-absolute {
    position: absolute;
    display: flex;
    justify-content: center;
    left: 50%;
    top: 45%;
    transform: translateX(-50%)
}

#cms-loadding .loading-center-absolute .lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px
}

#cms-loadding .loading-center-absolute .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid var(--color-primary);
    border-color: var(--color-primary) transparent var(--color-primary) transparent;
    animation: lds-dual-ring 1.2s linear infinite
}

.nav-tabs.cms-tabs {
    border: none;
    margin-bottom: 10px
}

.nav-tabs.cms-tabs .nav-item {
    margin: 0 0 10px 26px
}

.nav-tabs.cms-tabs .nav-item:first-child {
    margin-left: 0
}

.nav-tabs.cms-tabs .nav-item a {
    margin: 0;
    border: none;
    padding: 0;
    font-size: 13px;
    color: rgba(5, 76, 139, 0.33)
}

.nav-tabs.cms-tabs .nav-item a.active {
    color: #054c8b
}

.entry-footer .entry-edit-link {
    display: none
}

.cms-modal {
    transition: all 360ms linear 0ms;
    background-color: rgba(34, 34, 34, 0.95);
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden
}

.cms-modal .cms-modal-content {
    padding: 40px 0;
    max-width: 470px;
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    right: 0
}

.cms-modal.open {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}

.cms-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 24px;
    cursor: pointer
}

.cms-modal-search {
    background-color: #fff
}

.cms-modal-search .cms-modal-close {
    top: 0;
    right: 0;
    background-color: var(--color-primary);
    width: 50px;
    height: 50px;
    text-align: center
}

.cms-modal-search .cms-modal-close:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9
}

.cms-modal-search .cms-modal-close i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.cms-modal-search .cms-modal-content {
    max-width: 770px
}

.cms-modal-search .search-form-popup {
    position: relative
}

.cms-modal-search .search-field {
    border: none;
    font-size: 35px;
    color: #848e9f;
    background-color: #fff;
    padding: 17px 30px 17px 46px;
    border-radius: 0;
    border-bottom: 2px solid #eaeaea;
    height: 76px;
    font-family: "Quicksand", sans-serif;
    font-weight: 500
}

.cms-modal-search .search-submit {
    font-size: 26px;
    color: var(--color-secondary);
    background-color: transparent;
    border: none;
    padding: 0;
    line-height: 82px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0
}

.cms-modal-search .search-submit i {
    font-weight: 500
}

.admin-bar .cms-modal-search .cms-modal-close {
    top: 32px
}

.cms-hidden-sidebar {
    width: 370px;
    padding: 95px 50px 50px 50px;
    background-color: #222222;
    color: #fff;
    position: fixed;
    top: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 360ms linear 0ms
}

.cms-hidden-sidebar.open {
    z-index: 999;
    opacity: 1;
    visibility: visible
}

.cms-hidden-sidebar .cms-hidden-close {
    position: absolute;
    top: 35px;
    right: 35px;
    font-size: 14px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 360ms linear 0ms
}

.cms-hidden-sidebar .cms-hidden-close:hover {
    color: var(--color-primary)
}

.cms-hidden-sidebar .widget {
    margin-bottom: 42px
}

.cms-hidden-sidebar .widget:last-child {
    margin-bottom: 0
}

.cms-hidden-sidebar .widget-title {
    color: #fff
}

.cms-hidden-sidebar .widget-title:after {
    background-color: #fff
}

.cms-hidden-sidebar .widget_cms_recent_posts .post-item {
    border-color: #535353
}

.cms-hidden-sidebar .widget_cms_recent_posts .post-item .entry-title {
    color: #fff
}

.cms-hidden-sidebar .tagcloud a,
.cms-hidden-sidebar .entry-tags a {
    background-color: transparent;
    border-color: #373737
}

.cms-hidden-sidebar .tagcloud a:hover,
.cms-hidden-sidebar .entry-tags a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

.admin-bar .cms-hidden-sidebar {
    top: 52px
}

body.error404 .site-content {
    padding: 0 !important
}

body.error404 .error-404 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 110px 0px;
    text-align: center;
    height: 100vh
}

@media screen and (max-width:767px) {
    body.error404 .error-404 {
        height: auto
    }
}

body.error404 .error-404:before {
    background-image: linear-gradient(180deg, #010711 0%, rgba(27, 26, 26, 0.8) 82%);
    opacity: 0.65
}

body.error404 .error-404 header h1 {
    font-size: 165px;
    font-weight: 500;
    line-height: 1;
    color: #fff
}

@media screen and (max-width:767px) {
    body.error404 .error-404 header h1 {
        font-size: 120px
    }
}

body.error404 .error-404 .page-heading {
    font-size: 37px;
    color: #fff;
    margin-bottom: 12px
}

body.error404 .error-404 .page-content {
    font-size: 16px;
    line-height: 27px;
    color: #fff;
    margin-bottom: 34px
}

@media screen and (min-width:992px) {
    body.error404 .error-404 .page-content {
        max-width: 70%;
        margin: 0 auto 34px
    }
}

body.error404 .error-404 .btn i {
    margin-left: 8px
}

body.error404 .error-404 .btn:hover,
body.error404 .error-404 .btn:focus {
    background-color: #fff;
    color: var(--color-secondary);
    border-color: #fff
}

body.error404 .error-404-inner {
    position: relative;
    z-index: 99;
    max-width: 760px;
    margin: auto;
    padding: 0 15px
}

.hide-nav .cms-slick-carousel .slick-arrow {
    opacity: 0;
    visibility: hidden
}

body img.mfp-img {
    padding: 0 !important
}

body .mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.9
}

body .mfp-image-holder .mfp-close,
body .mfp-iframe-holder .mfp-close {
    line-height: 40px;
    padding: 0;
    right: 0;
    text-align: center;
    top: -44px;
    width: 40px;
    border-radius: 2px 2px 0 0
}

body .mfp-bottom-bar {
    margin-top: 0
}

.cms-google-map {
    border-radius: inherit;
    overflow: hidden
}

.cms-google-map button {
    height: auto
}

.cms-google-map button:hover {
    color: inherit
}

.elementor-widget-google_maps iframe {
    border-width: 0px !important
}

.mfp-wrap .mfp-container .mfp-arrow {
    background-color: var(--color-primary);
    width: 60px;
    height: 120px;
    opacity: 1
}

.mfp-wrap .mfp-container .mfp-arrow:before,
.mfp-wrap .mfp-container .mfp-arrow:after {
    border: none
}

.mfp-wrap .mfp-container .mfp-arrow:before {
    font-family: "Material-Design-Iconic-Font";
    font-size: 20px;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: normal;
    position: absolute;
    top: 50%;
    display: block;
    transform: translate(-50%, -50%);
    opacity: 1;
    left: 50%;
    width: auto;
    height: auto
}

.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left:before {
    content: ""
}

.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right:before {
    content: ""
}

@media screen and (min-width:1200px) {
    .mfp-wrap .mfp-container {
        padding: 0 120px
    }
}

.rev-btn i {
    font-size: 13px !important;
    margin-left: 5px !important;
    position: relative;
    bottom: 1px
}

.rev_slider .btn-more,
.revslider-initialised .btn-more {
    color: var(--color-primary);
    display: inline-block;
    transition: all 300ms linear 0ms
}

.rev_slider .btn-more:hover,
.revslider-initialised .btn-more:hover {
    color: var(--color-secondary)
}

.rev_slider .icon-space-left,
.revslider-initialised .icon-space-left {
    margin-left: 8px;
    font-size: 12px
}

.rev_slider i.space-left,
.revslider-initialised i.space-left {
    margin-left: 37px;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    position: relative;
    top: 1px
}

.rev_slider .cms-video-button,
.revslider-initialised .cms-video-button {
    height: 60px !important;
    width: 60px !important;
    background-color: #fff !important;
    z-index: 1;
    font-size: 13px !important;
    color: var(--color-secondary) !important;
    border: none !important;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.rev_slider .cms-video-button .video-text,
.revslider-initialised .cms-video-button .video-text {
    position: absolute;
    top: 50%;
    left: 100%;
    padding-left: 30px;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: bold;
    color: var(--color-primary)
}

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

    .rev_slider .cms-video-button .video-text,
    .revslider-initialised .cms-video-button .video-text {
        display: none
    }
}

.rev_slider .cms-video-button:before,
.revslider-initialised .cms-video-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--rgb-color-secondary), 0.1);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite
}

.rev_slider .cms-video-button:after,
.revslider-initialised .cms-video-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    transition: all 200ms
}

.rev_slider .cms-video-button i,
.revslider-initialised .cms-video-button i {
    position: relative;
    z-index: 9;
    color: var(--color-primary);
    font-size: 25px;
    margin-left: 5px
}

.rev_slider .slider-icon,
.revslider-initialised .slider-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
    transition: all 300ms ease 0ms;
    border-radius: 50%;
    background-color: #fff
}

.rev_slider .slider-icon img,
.revslider-initialised .slider-icon img {
    max-height: 46px;
    width: auto !important
}

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

    .rev_slider .slider-icon img,
    .revslider-initialised .slider-icon img {
        max-height: 50%
    }
}

.rev_slider .slider-icon:before,
.revslider-initialised .slider-icon:before {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -10px;
    left: -10px;
    border: 10px solid rgba(53, 79, 142, 0.1);
    border-radius: 50%;
    transition: all 300ms ease 0ms;
    opacity: 0;
    visibility: hidden
}

.rev_slider .slider-icon:hover,
.revslider-initialised .slider-icon:hover {
    transform: translateY(-10px) !important
}

.rev_slider .slider-icon:hover:before,
.revslider-initialised .slider-icon:hover:before {
    opacity: 1;
    visibility: visible
}

.tparrows {
    transition: all 300ms linear 0ms
}

.tparrows.theme-custom,
.tparrows.theme-custom-white {
    transition: all 300ms linear 0ms
}

.tparrows.theme-custom:before,
.tparrows.theme-custom-white:before {
    display: none
}

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

    .tparrows.theme-custom.tp-leftarrow,
    .tparrows.theme-custom-white.tp-leftarrow {
        background-size: contain;
        width: 18px !important;
        height: 26px !important
    }
}

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

    .tparrows.theme-custom.tp-rightarrow,
    .tparrows.theme-custom-white.tp-rightarrow {
        background-size: contain;
        width: 18px !important;
        height: 26px !important
    }
}

.tparrows.theme-custom.tp-leftarrow {
    background-image: url(../images/arrow-left.png)
}

.tparrows.theme-custom.tp-rightarrow {
    background-image: url(../images/arrow-right.png)
}

.tparrows.theme-custom-white.tp-leftarrow {
    background-image: url(../images/arrow-left-light.png)
}

.tparrows.theme-custom-white.tp-rightarrow {
    background-image: url(../images/arrow-right-light.png)
}

blockquote {
    border-left: 6px solid var(--color-secondary);
    font-size: 20px;
    font-style: italic;
    line-height: 1.4;
    font-family: "Quicksand", sans-serif;
    padding-left: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
    margin: 0 0 32px
}

blockquote cite {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--color-secondary);
    display: block;
    margin-top: 10px
}

.cms-blockquotes-wrapper blockquote {
    margin: 0
}

.blockquotes-content {
    display: block
}

.cms-navigation-menu.default li:hover>a,
.cms-navigation-menu.default li.current_page_item>a,
.cms-navigation-menu.default li.current-menu-item>a,
.cms-navigation-menu.default li.current_page_ancestor>a,
.cms-navigation-menu.default li.current-menu-ancestor>a {
    color: var(--color-primary)
}

.cms-navigation-menu.inline ul.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.cms-navigation-menu.inline ul.menu>li>a {
    font-size: 15px;
    font-weight: bold;
    margin: 0 15px;
    position: relative;
    display: inline-flex;
    line-height: 60px
}

@media screen and (max-width:991px) {
    .cms-navigation-menu.inline ul.menu>li>a {
        line-height: 40px
    }
}

.cms-navigation-menu.inline ul.menu>li>a:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -1px;
    background-color: var(--color-primary);
    transform: scale(0, 1);
    transform-origin: right center;
    -webkit-transform-origin: right center;
    transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85)
}

.cms-navigation-menu.inline ul.menu>li:hover>a,
.cms-navigation-menu.inline ul.menu>li.current_page_item>a,
.cms-navigation-menu.inline ul.menu>li.current-menu-item>a,
.cms-navigation-menu.inline ul.menu>li.current_page_ancestor>a,
.cms-navigation-menu.inline ul.menu>li.current-menu-ancestor>a {
    color: var(--color-primary)
}

.cms-navigation-menu.inline ul.menu>li:hover>a:after,
.cms-navigation-menu.inline ul.menu>li.current_page_item>a:after,
.cms-navigation-menu.inline ul.menu>li.current-menu-item>a:after,
.cms-navigation-menu.inline ul.menu>li.current_page_ancestor>a:after,
.cms-navigation-menu.inline ul.menu>li.current-menu-ancestor>a:after {
    transform-origin: left center;
    -webkit-transform-origin: left center;
    transform: scale(1, 1)
}

.cms-navigation-menu.e-sidebar-widget ul.menu li a {
    font-size: 15px;
    color: #1b1a1a;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 19px 30px 19px;
    position: relative;
    border-radius: 32px;
    background-color: #fff;
    margin-bottom: 0 !important;
    box-shadow: 0 5px 83px 0 rgba(14, 32, 77, 0.05)
}

.cms-navigation-menu.e-sidebar-widget ul.menu li a:after {
    content: "";
    font-size: 17px;
    font-family: "Material-Design-Iconic-Font";
    font-style: normal;
    font-weight: 500;
    right: 30px;
    position: absolute;
    color: inherit;
    top: 50%;
    transform: translate(0, -50%)
}

.cms-navigation-menu.e-sidebar-widget ul.menu li a:hover {
    color: #fff
}

.cms-navigation-menu.e-sidebar-widget ul.menu li:hover>a,
.cms-navigation-menu.e-sidebar-widget ul.menu li.current_page_item>a,
.cms-navigation-menu.e-sidebar-widget ul.menu li.current-menu-item>a,
.cms-navigation-menu.e-sidebar-widget ul.menu li.current_page_ancestor>a,
.cms-navigation-menu.e-sidebar-widget ul.menu li.current-menu-ancestor>a {
    color: #fff !important;
    background-color: var(--color-primary)
}

.cms-navigation-menu.e-sidebar-widget ul.menu li+li {
    margin-top: 5px
}

.cms-button-anchor a {
    display: inline-block
}

.cms-button-anchor a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 80px;
    border-radius: 30px;
    background-color: #fff;
    color: var(--color-primary);
    font-size: 27px;
    box-shadow: 0 5px 60px 0 rgba(14, 32, 77, 0.13)
}

.cms-button-anchor a:hover {
    color: #fff
}

.cms-button-anchor a:hover i {
    -o-animation: flyTopToBottom 0.4s forwards;
    -ms-animation: flyTopToBottom 0.4s forwards;
    -webkit-animation: flyTopToBottom 0.4s forwards;
    animation: flyTopToBottom 0.4s forwards
}

.cms-anchor-up {
    width: 50px;
    height: 50px
}

.cms-button-readmore .btn-read-more {
    font-size: 15px;
    font-weight: bold
}

.cms-button-readmore .btn-read-more i {
    font-size: 14px;
    display: inline-flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: var(--color-primary);
    border-radius: 50%;
    margin-left: 10px;
    position: relative;
    transition: all 300ms ease 0s
}

.cms-button-readmore .btn-read-more:hover i {
    transform: translateX(-3px)
}

.cms-button-readmore .btn-read-more.more-invert i {
    margin-left: 0;
    margin-right: 7px
}

.cms-button-readmore .btn-read-more.more-invert:hover i {
    transform: translateX(3px)
}

.cms-button-readmore .btn-read-more.hover-scale i {
    width: 40px;
    height: 40px;
    border: 5px solid #fff
}

.cms-button-readmore .btn-read-more.hover-scale:hover i {
    background-color: var(--color-primary) !important;
    transform: scale(1.2)
}

.cms-button-wrapper .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.cms-button-wrapper .btn i {
    margin: 0
}

.cms-button-wrapper .btn .cms-align-icon-left {
    margin-right: 10px
}

.cms-button-wrapper .btn .cms-align-icon-right {
    order: 1;
    margin-left: 10px
}

@media screen and (max-width:767px) {
    .cms-heading-wrapper br {
        display: none
    }
}

.cms-heading-wrapper .custom-heading {
    font-size: 37px;
    line-height: 1.46
}

.cms-heading-wrapper .custom-heading a {
    font-size: inherit !important;
    padding: 0 !important
}

.cms-heading-wrapper .custom-heading a:hover {
    color: var(--color-primary)
}

.cms-heading-wrapper .custom-subheading {
    font-size: 16px;
    color: var(--color-tertiary);
    font-weight: 700;
    margin-bottom: 7px;
    position: relative;
    display: inline-block
}

.cms-heading-wrapper .custom-subheading.line-before:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    top: 0.75em;
    left: -50px
}

@media screen and (max-width:1300px) {
    .cms-heading-wrapper .custom-subheading.line-before:before {
        position: relative;
        left: 0;
        top: -0.3em;
        margin-right: 20px
    }
}

.cms-newsletter-form.default .form-description {
    margin-bottom: 27px
}

.cms-newsletter-form.default .tnp-subscription {
    margin: 0;
    max-width: 570px
}

.cms-newsletter-form.default .tnp-subscription form {
    position: relative
}

.cms-newsletter-form.default .tnp-subscription .tnp-field-button {
    position: absolute;
    right: 18px;
    top: 18px;
    margin: 0;
    cursor: pointer
}

.cms-newsletter-form.default .tnp-subscription .tnp-field-button input.tnp-submit {
    font-size: 0;
    position: relative;
    background-color: transparent;
    display: block;
    line-height: 1;
    width: 24px;
    height: 24px;
    z-index: 2
}

.cms-newsletter-form.default .tnp-subscription .tnp-field-button:after {
    content: "";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    background-color: var(--color-primary);
    color: #fff;
    line-height: 1;
    transition: all 300ms linear 0s
}

.cms-newsletter-form.default .tnp-subscription .tnp-field-button:hover:after {
    background-color: var(--color-tertiary)
}

.cms-newsletter-form.default .tnp-subscription input[type=text],
.cms-newsletter-form.default .tnp-subscription input[type=email] {
    background-color: rgba(var(--rgb-color-primary), 0.11);
    border: 2px solid transparent;
    font-size: 14px;
    color: #848e9f;
    height: 60px;
    padding: 10px 20px
}

.cms-newsletter-form.default .tnp-subscription input[type=text]:focus,
.cms-newsletter-form.default .tnp-subscription input[type=email]:focus {
    border-color: var(--color-primary)
}

.cms-newsletter-form.default .tnp-subscription .tnp-privacy-field {
    margin-top: 5px
}

.cms-newsletter-form.default .tnp-subscription .tnp-privacy-field label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 23px;
    color: #f9f9f9;
    font-weight: 500
}

.cms-newsletter-form.default .tnp-subscription .tnp-privacy-field input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    cursor: pointer
}

.cms-newsletter-form.default .tnp-subscription .tnp-privacy-field input[type="checkbox"]+span {
    display: block;
    position: absolute;
    left: 0;
    top: 4px;
    cursor: pointer;
    width: 17px;
    height: 17px;
    border: 2px solid #053362;
    border-radius: 4px
}

.cms-newsletter-form.default .tnp-subscription .tnp-privacy-field input[type="checkbox"]+span::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 7px;
    left: 3px;
    top: 3px;
    background-color: transparent
}

.cms-newsletter-form.default .tnp-subscription .tnp-privacy-field input[type="checkbox"]:checked+span::after {
    background-color: var(--color-primary)
}

body.elementor-editor-active .cms-newsletter-form .tnp-field label {
    display: none !important
}

.cms-contact-form input[type="text"]:focus,
.cms-contact-form input[type="email"]:focus,
.cms-contact-form input[type="url"]:focus,
.cms-contact-form input[type="password"]:focus,
.cms-contact-form input[type="number"]:focus,
.cms-contact-form input[type="tel"]:focus,
.cms-contact-form input[type="date"]:focus,
.cms-contact-form input[type="month"]:focus,
.cms-contact-form input[type="week"]:focus,
.cms-contact-form textarea:focus {
    outline: 0;
    border-color: var(--color-primary)
}

.cms-contact-form label {
    font-size: 14px;
    color: var(--color-secondary);
    font-weight: bold;
    margin-bottom: 5px
}

.cms-contact-form label+.cms-input span.wpcf7-form-control-wrap {
    margin-bottom: 21px
}

.cms-contact-form p {
    margin-bottom: 2px
}

.cms-contact-form p i {
    margin-right: 10px
}

.cms-contact-form .top-space {
    margin-top: 15px
}

.cms-contact-form .wpcf7-list-item {
    margin: 3px 30px 6px 0;
    display: inline-flex;
    align-items: baseline;
    position: relative
}

@media screen and (max-width:767px) {
    .cms-contact-form .wpcf7-list-item {
        margin-bottom: 15px
    }
}

.cms-contact-form .wpcf7-list-item input[type="radio"] {
    opacity: 0;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    cursor: pointer
}

.cms-contact-form .wpcf7-list-item input[type="radio"]+span {
    position: relative;
    padding-left: 27px;
    font-size: 13px
}

.cms-contact-form .wpcf7-list-item input[type="radio"]+span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    cursor: pointer;
    display: block;
    width: 17px;
    height: 17px;
    border: 2px solid #eaeaea
}

.cms-contact-form .wpcf7-list-item input[type="radio"]+span::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 1px;
    left: 5px;
    top: 6px;
    background-color: transparent
}

.cms-contact-form .wpcf7-list-item input[type="radio"]:checked+span::after {
    background-color: var(--color-primary)
}

.cms-contact-form .contact-form-desc {
    margin-bottom: 37px
}

.cms-contact-form .ct-description {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 33px
}

.cms-contact-form .ct-description-small {
    font-size: 12px;
    margin-top: -2px;
    margin-bottom: 17px
}

.cms-contact-form .contact-form-box {
    margin-top: 6px
}

.cms-contact-form .contact-form-box .box-heading {
    font-size: 14px;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    color: #222;
    margin-bottom: 15px
}

.cms-contact-form .contact-form-box .box-heading.heading-underline {
    position: relative;
    margin-bottom: 45px;
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    font-weight: 500
}

.cms-contact-form .contact-form-box .box-heading.heading-underline:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    background: #eaeaea;
    left: 0;
    right: 0;
    bottom: -15px
}

.cms-contact-form .contact-form-box .box-heading.heading-underline span {
    position: relative;
    display: inline-block
}

.cms-contact-form .contact-form-box .box-heading.heading-underline span:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: -15px;
    z-index: 2
}

.cms-contact-form .contact-form-box.radio-above {
    margin-top: 15px
}

.cms-contact-form .contact-form-box .half-left {
    width: 50%;
    padding-right: 10px;
    float: left
}

.cms-contact-form .contact-form-box .half-right {
    width: 50%;
    padding-left: 10px;
    float: left
}

.cms-contact-form.has-title {
    box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.08);
    background: #fff
}

.cms-contact-form.has-title .title {
    display: flex;
    background: var(--color-primary);
    align-items: center;
    padding: 22px 50px
}

.cms-contact-form.has-title .title img {
    max-width: 32px;
    margin-right: 15px;
    flex: none
}

.cms-contact-form.has-title .title h3 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 0
}

.cms-contact-form.has-title form {
    padding: 34px 50px 50px
}

.cms-contact-form.has-title form .wpcf7-form-control-wrap {
    margin-bottom: 13px
}

.cms-contact-form.has-title form .wpcf7-response-output {
    text-align: left;
    margin-bottom: 15px;
    padding: 0;
    background: transparent;
    border: none
}

.cms-contact-form.has-title form .btn {
    padding: 0 48px
}

.cms-contact-form.has-title.small-title .title h3 {
    font-size: 16px;
    font-weight: bold;
    font-family: "Roboto", sans-serif
}

@media screen and (min-width:1200px) and (max-width:1350px) {
    .cms-contact-form.in-slider {
        display: none
    }
}

.cms-tabs--layout1 {
    border-radius: inherit
}

.cms-tabs--layout1 .cms-tabs-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap
}

@media screen and (max-width:767px) {
    .cms-tabs--layout1 .cms-tabs-title {
        flex-direction: column
    }
}

.cms-tabs--layout1 .cms-tab-title {
    font-size: 20px;
    text-transform: capitalize;
    background-color: var(--color-secondary);
    color: #fff;
    font-weight: bold;
    padding: 23px 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 300ms linear 0ms;
    border-radius: 4px 4px 0 0;
    margin: 10px
}

@media screen and (max-width:767px) {
    .cms-tabs--layout1 .cms-tab-title {
        font-size: 17px
    }
}

.cms-tabs--layout1 .cms-tab-title i {
    font-size: inherit;
    color: inherit;
    margin-right: 10px
}

.cms-tabs--layout1 .cms-tab-title svg {
    height: 56px;
    width: auto;
    fill: #fff;
    margin-right: 12px;
    transition: all 300ms linear 0s
}

.cms-tabs--layout1 .cms-tab-title.active {
    background-color: var(--color-primary)
}

.cms-tabs--layout1 .cms-tabs-content {
    padding: 30px 0;
    position: relative
}

.cms-tabs--layout1 .cms-tabs-content .cms-tab-content {
    display: none
}

.tab-title-inner .cms-tabs .cms-tabs-title {
    padding: 50px 50px 0
}

.tab-title-inner .cms-tabs .cms-tabs-title .cms-tab-title {
    padding: 8px 20px
}

.cms-work-process {
    display: flex;
    flex-wrap: wrap
}

.cms-work-process .widget-title-wrap {
    margin-bottom: 70px
}

@media screen and (min-width:1025px) {
    .cms-work-process .widget-title-wrap {
        margin-left: -20px
    }
}

.cms-work-process .widget-title-wrap .wg-subtitle {
    font-size: 15px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 8px
}

.cms-work-process .widget-title-wrap .wg-title {
    font-size: 37px;
    line-height: 1.46em;
    color: #fff
}

@media screen and (min-width:1025px) {
    .cms-work-process .action-item-wrap {
        padding-right: 30%
    }
}

.cms-work-process .process-action {
    width: 40%
}

@media screen and (max-width:1024px) {
    .cms-work-process .process-action {
        width: 100%;
        margin-top: 60px
    }
}

.cms-work-process .process-action .action-item {
    position: relative;
    padding-left: 80px
}

.cms-work-process .process-action .action-item:before {
    content: "";
    font-family: "font awesome 5 pro";
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    border-radius: 50%;
    background-color: #054c8b;
    border: 2px solid #054c8b;
    transition: all 300ms ease 0s;
    position: absolute;
    left: 0;
    top: 0
}

.cms-work-process .process-action .action-item:after {
    content: "";
    display: block;
    width: 2px;
    position: absolute;
    top: 42px;
    bottom: 0.5em;
    left: 15px;
    background-color: #054c8b;
    transition: all 300ms ease 0s
}

.cms-work-process .process-action .action-item .item-title {
    font-size: 19px;
    line-height: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff
}

.cms-work-process .process-action .action-item .item-description {
    font-size: 14px;
    line-height: 24px;
    color: #848e9f
}

.cms-work-process .process-action .action-item+.action-item {
    margin-top: 36px
}

.cms-work-process .process-action .action-item:hover:before {
    background-color: #054c8b;
    border-color: #054c8b
}

.cms-work-process .process-action .action-item:hover:after {
    background-color: #054c8b
}

.cms-work-process .process-action .action-item.active~.action-item:before {
    background-color: transparent;
    border-color: #848e9f
}

.cms-work-process .process-action .action-item.active~.action-item:after {
    background-color: #848e9f
}

.cms-work-process .process-content {
    width: 60%
}

@media screen and (min-width:1025px) {
    .cms-work-process .process-content {
        padding-right: 100px
    }
}

@media screen and (max-width:1024px) {
    .cms-work-process .process-content {
        width: 100%
    }
}

.cms-work-process .process-content .content-item {
    display: none
}

.cms-progress-wrapper .elementor-title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 4px
}

.cms-progress-wrapper .elementor-progress-wrapper {
    height: 7px;
    background-color: #edeef0
}

.cms-progress-wrapper .elementor-progress-bar {
    background-color: var(--color-primary);
    border-radius: 3px;
    height: 7px;
    position: relative
}

.cms-progress-wrapper .elementor-progress-percentage {
    position: absolute;
    top: -29px;
    padding: 0;
    right: 0;
    font-size: 15px;
    color: #848e9f;
    font-weight: 700
}

.cms-progress-wrapper+.cms-progress-wrapper {
    margin-top: 25px
}

.cms-post-grid-layout1 .entry-body,
.cms-post-carousel-layout1 .entry-body {
    padding: 31px 30px 40px 30px;
    background-color: #fff;
    position: relative;
    border-radius: 10px
}

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

    .cms-post-grid-layout1 .entry-body,
    .cms-post-carousel-layout1 .entry-body {
        padding-left: 0
    }
}

.cms-post-grid-layout1 .entry-featured,
.cms-post-carousel-layout1 .entry-featured {
    overflow: visible;
    border-radius: 10px;
    margin-bottom: 0;
    position: relative
}

.cms-post-grid-layout1 .entry-featured .post-image,
.cms-post-carousel-layout1 .entry-featured .post-image {
    overflow: hidden;
    border-radius: 10px
}

.cms-post-grid-layout1 .entry-featured img,
.cms-post-carousel-layout1 .entry-featured img {
    border-radius: 10px;
    transition: all 300ms linear 0ms
}

.cms-post-grid-layout1 .entry-featured .post-category,
.cms-post-carousel-layout1 .entry-featured .post-category {
    left: 30px;
    bottom: -17px
}

.cms-post-grid-layout1 .entry-meta,
.cms-post-carousel-layout1 .entry-meta {
    margin-bottom: 17px
}

.cms-post-grid-layout1 .entry-title,
.cms-post-carousel-layout1 .entry-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 25px;
    color: #26365e
}

.cms-post-grid-layout1 .entry-content,
.cms-post-carousel-layout1 .entry-content {
    margin-bottom: 21px;
    font-size: 14px;
    line-height: 24px
}

.cms-post-grid-layout1 .entry-readmore,
.cms-post-carousel-layout1 .entry-readmore {
    display: inline-block
}

.cms-post-grid-layout1 .entry-readmore .btn-more,
.cms-post-carousel-layout1 .entry-readmore .btn-more {
    transform: translateX(-15px);
    background-color: transparent;
    color: var(--color-primary)
}

.cms-post-grid-layout1 .cms-grid-pagination,
.cms-post-carousel-layout1 .cms-grid-pagination {
    margin-top: 0
}

.cms-post-grid-layout1 .grid-item-inner,
.cms-post-carousel-layout1 .grid-item-inner {
    margin-bottom: 32px;
    border-radius: 10px;
    transition: all 300ms linear 0ms
}

.cms-post-grid-layout1 .grid-item-inner:hover,
.cms-post-carousel-layout1 .grid-item-inner:hover {
    box-shadow: 0 5px 60px 0 rgba(14, 32, 77, 0.13)
}

.cms-post-grid-layout1 .grid-item-inner:hover .entry-featured img,
.cms-post-carousel-layout1 .grid-item-inner:hover .entry-featured img {
    transform: scale(1.1)
}

.cms-post-grid-layout1 .grid-item-inner:hover .entry-readmore .btn-more,
.cms-post-carousel-layout1 .grid-item-inner:hover .entry-readmore .btn-more {
    transform: translateX(0);
    background-color: var(--e-global-color-accent);
    color: #fff;
    transition: all 300ms ease 0s
}

.cms-post-carousel-layout1 .cms-slick-carousel .slick-arrow {
    width: auto;
    height: 32px;
    top: -50px !important;
    background-color: #222;
    color: #fff
}

.cms-post-carousel-layout1 .cms-slick-carousel .slick-arrow.slick-next {
    width: 32px;
    right: 16px !important
}

.cms-post-carousel-layout1 .cms-slick-carousel .slick-arrow.slick-prev {
    width: 82px;
    background-color: var(--color-primary);
    right: 58px !important;
    left: auto !important
}

.cms-post-carousel-layout1 .cms-slick-carousel .slick-arrow.slick-prev:before {
    left: 20px
}

.cms-post-carousel-layout1 .cms-slick-carousel .slick-arrow.slick-prev:after {
    content: "Prev";
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%)
}

.cms-post-carousel-layout1 .grid-item-inner:hover {
    box-shadow: 0 5px 15px 0 rgba(14, 32, 77, 0.1)
}

.cms-doctor-grid.layout1 .entry-featured {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 10px;
    position: relative
}

.cms-doctor-grid.layout1 .entry-featured img {
    transition: all 300ms linear 0s
}

.cms-doctor-grid.layout1 .entry-featured .content-social {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 300ms linear 0.05s
}

.cms-doctor-grid.layout1 .entry-featured .content-social .doctor-social {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 0
}

.cms-doctor-grid.layout1 .entry-featured .content-social .doctor-social li {
    display: inline-flex;
    margin-right: 10px
}

.cms-doctor-grid.layout1 .entry-featured .content-social .doctor-social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%
}

.cms-doctor-grid.layout1 .entry-featured .content-social .doctor-social li a i {
    font-size: 20px;
    color: #fff;
    transition: all 200ms ease-in-out 0s
}

.cms-doctor-grid.layout1 .entry-featured .content-social .doctor-social li a:hover {
    transform: translateY(-3px)
}

.cms-doctor-grid.layout1 .entry-featured .content-social .doctor-social li a.doctor-f {
    background-color: #3b5999
}

.cms-doctor-grid.layout1 .entry-featured .content-social .doctor-social li a.doctor-t {
    background-color: #55acee
}

.cms-doctor-grid.layout1 .entry-featured .content-social .doctor-social li a.doctor-i {
    background-color: #3f729b
}

.cms-doctor-grid.layout1 .entry-featured .content-social .doctor-social li a.doctor-e {
    background-color: var(--color-secondary)
}

.cms-doctor-grid.layout1 .entry-featured .content-social .doctor-social li a.doctor-p {
    background-color: var(--color-secondary)
}

.cms-doctor-grid.layout1 .item-category {
    font-size: 14px;
    margin-bottom: 4px;
    position: relative;
    padding-bottom: 11px;
    font-weight: 400;
    color: var(--color-primary)
}

.cms-doctor-grid.layout1 .entry-content {
    font-size: 15px;
    line-height: 25px
}

.cms-doctor-grid.layout1 .entry-title {
    margin-bottom: 6px;
    font-size: 21px;
    line-height: 32px;
    font-weight: bold;
    color: #26365e
}

.cms-doctor-grid.layout1 .cms-load-more {
    margin-top: 0
}

.cms-doctor-grid.layout1 .entry-body {
    background-color: #fff;
    padding: 32px 40px 32px;
    position: relative;
    z-index: 2;
    transition: all 300ms linear 0s;
    border-radius: 0 0 10px 10px
}

@media screen and (max-width:767px) {
    .cms-doctor-grid.layout1 .entry-body {
        padding: 31px 20px 30px
    }
}

.cms-doctor-grid.layout1 .entry-body:after {
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    background-color: var(--color-primary);
    bottom: 0;
    left: 40px;
    right: 40px;
    opacity: 0;
    transition: all 300ms linear 0s
}

.cms-doctor-grid.layout1.cms-grid .cms-grid-pagination {
    margin-top: 0
}

.cms-doctor-grid.layout1 .grid-item-inner {
    margin-bottom: 40px;
    position: relative;
    border-radius: 10px
}

.cms-doctor-grid.layout1 .grid-item-inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 30px 0 rgba(14, 32, 77, 0.08);
    transition: all 300ms linear 0s;
    border-radius: 10px
}

.cms-doctor-grid.layout1 .grid-item-inner:hover:after {
    box-shadow: 0 5px 30px 0 rgba(14, 32, 77, 0.15)
}

.cms-doctor-grid.layout1 .grid-item-inner:hover .entry-featured img {
    transform: scale(1.1)
}

.cms-doctor-grid.layout1 .grid-item-inner:hover .content-social {
    opacity: 1;
    visibility: visible
}

.cms-doctor-grid.layout1 .grid-item-inner:hover .entry-body:after {
    opacity: 1
}

.cms-doctor-grid.layout2 .entry-featured {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 10px;
    position: relative
}

.cms-doctor-grid.layout2 .entry-featured img {
    border-radius: 10px;
    transition: all 300ms linear 0ms
}

.cms-doctor-grid.layout2 .item-category {
    font-size: 14px;
    position: relative;
    font-weight: 400;
    color: var(--color-primary)
}

.cms-doctor-grid.layout2 .entry-content {
    font-size: 15px;
    line-height: 25px
}

.cms-doctor-grid.layout2 .entry-title {
    margin-bottom: 6px;
    font-size: 21px;
    line-height: 32px;
    font-weight: bold;
    color: #26365e
}

.cms-doctor-grid.layout2 .cms-load-more {
    margin-top: 0
}

.cms-doctor-grid.layout2 .entry-body {
    background-color: #fff;
    padding: 31px 40px 30px;
    transition: all 300ms linear 0s;
    position: relative;
    border-radius: 10px
}

@media screen and (max-width:767px) {
    .cms-doctor-grid.layout2 .entry-body {
        padding: 31px 20px 30px
    }

    .cms-doctor-grid.layout2 .entry-body .bottom-content {
        flex-direction: column-reverse;
        align-items: flex-start
    }

    .cms-doctor-grid.layout2 .entry-body .bottom-content .content-social {
        margin: 15px 0;
        opacity: 1;
        visibility: visible
    }
}

.cms-doctor-grid.layout2 .entry-body:after {
    content: "";
    display: block;
    height: 3px;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 300ms linear 0s
}

.cms-doctor-grid.layout2 .entry-content {
    margin-top: 18px
}

@media screen and (max-width:767px) {
    .cms-doctor-grid.layout2 .entry-content {
        max-height: 70px;
        overflow: hidden
    }
}

.cms-doctor-grid.layout2 .bottom-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
    transition: all 300ms linear 0s
}

.cms-doctor-grid.layout2 .entry-readmore {
    margin: 11px 0
}

.cms-doctor-grid.layout2 .entry-readmore a {
    color: var(--color-primary);
    line-height: 40px;
    background-color: transparent;
    border: none;
    padding: 0;
    margin-right: 10px
}

.cms-doctor-grid.layout2 .entry-readmore a:hover {
    background-color: var(--color-primary) !important;
    color: #fff !important
}

.cms-doctor-grid.layout2 .content-social {
    opacity: 0;
    visibility: hidden;
    transition: all 300ms linear 0s
}

.cms-doctor-grid.layout2 .content-social .doctor-social {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 0
}

.cms-doctor-grid.layout2 .content-social .doctor-social li {
    display: inline-flex;
    margin-right: 10px
}

.cms-doctor-grid.layout2 .content-social .doctor-social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%
}

.cms-doctor-grid.layout2 .content-social .doctor-social li a i {
    font-size: 20px;
    color: #fff;
    transition: all 200ms ease-in-out 0s
}

.cms-doctor-grid.layout2 .content-social .doctor-social li a:hover {
    transform: translateY(-3px)
}

.cms-doctor-grid.layout2 .content-social .doctor-social li a.doctor-f {
    background-color: #3b5999
}

.cms-doctor-grid.layout2 .content-social .doctor-social li a.doctor-t {
    background-color: #55acee
}

.cms-doctor-grid.layout2 .content-social .doctor-social li a.doctor-i {
    background-color: #3f729b
}

.cms-doctor-grid.layout2 .content-social .doctor-social li a.doctor-e {
    background-color: var(--color-secondary)
}

.cms-doctor-grid.layout2 .content-social .doctor-social li a.doctor-p {
    background-color: var(--color-primary)
}

.cms-doctor-grid.layout2 .content-social .doctor-social li:last-child {
    margin-right: 0
}

.cms-doctor-grid.layout2 .grid-item-inner {
    position: relative;
    margin-bottom: 40px;
    border-radius: 10px;
    transition: all 300ms linear 0s
}

.cms-doctor-grid.layout2 .grid-item-inner:hover {
    box-shadow: 0 5px 80px 0 rgba(14, 32, 77, 0.15)
}

.cms-doctor-grid.layout2 .grid-item-inner:hover .entry-featured img {
    transform: scale(1.1)
}

.cms-doctor-grid.layout2 .grid-item-inner:hover .entry-body:after {
    transform: scaleX(1)
}

.cms-doctor-grid.layout2 .grid-item-inner:hover .cms-doctor-info {
    opacity: 1;
    visibility: visible
}

.cms-doctor-grid.layout2 .grid-item-inner:hover .entry-readmore a {
    padding: 0 20px;
    background-color: var(--color-primary);
    color: #fff
}

.cms-doctor-grid.layout2 .grid-item-inner:hover .bottom-content .content-social {
    opacity: 1;
    visibility: visible
}

.cms-doctor-grid.layout3 .entry-featured {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 10px;
    position: relative
}

.cms-doctor-grid.layout3 .entry-featured img {
    border-radius: 10px;
    transition: all 300ms linear 0ms
}

.cms-doctor-grid.layout3 .item-category {
    font-size: 14px;
    position: relative;
    font-weight: 400;
    color: var(--color-primary)
}

.cms-doctor-grid.layout3 .entry-content {
    font-size: 15px;
    line-height: 25px
}

.cms-doctor-grid.layout3 .entry-title {
    margin-bottom: 6px;
    font-size: 21px;
    line-height: 32px;
    font-weight: bold;
    color: #26365e
}

.cms-doctor-grid.layout3 .cms-load-more {
    margin-top: 0
}

.cms-doctor-grid.layout3 .entry-body {
    background-color: #fff;
    padding: 31px 40px 32px;
    transition: all 300ms linear 0s;
    position: relative;
    border-radius: 10px
}

@media screen and (max-width:767px) {
    .cms-doctor-grid.layout3 .entry-body {
        padding: 31px 20px 30px
    }
}

.cms-doctor-grid.layout3 .entry-content {
    margin-top: 18px
}

@media screen and (max-width:767px) {
    .cms-doctor-grid.layout3 .entry-content {
        max-height: 70px;
        overflow: hidden
    }
}

.cms-doctor-grid.layout3 .entry-readmore {
    margin-top: 22px
}

.cms-doctor-grid.layout3 .entry-readmore a {
    color: var(--color-secondary);
    line-height: 40px;
    background-color: transparent;
    border: none;
    padding: 0
}

.cms-doctor-grid.layout3 .entry-readmore a:hover {
    background-color: var(--color-primary) !important;
    color: #fff !important
}

.cms-doctor-grid.layout3 .grid-item-inner {
    position: relative;
    margin-bottom: 40px;
    border-radius: 10px;
    transition: all 300ms linear 0s
}

.cms-doctor-grid.layout3 .grid-item-inner:hover {
    box-shadow: 0 5px 80px 0 rgba(14, 32, 77, 0.15)
}

.cms-doctor-grid.layout3 .grid-item-inner:hover .entry-featured img {
    transform: scale(1.1)
}

.cms-doctor-grid.layout3 .grid-item-inner:hover .entry-body:after {
    width: 100%
}

.cms-doctor-grid.layout3 .grid-item-inner:hover .cms-doctor-info {
    opacity: 1;
    visibility: visible
}

.cms-doctor-grid.layout3 .grid-item-inner:hover .entry-readmore a {
    padding: 0 20px;
    background-color: var(--color-secondary);
    color: #fff
}

.cms-doctor-carousel.layout1 .grid-item-inner {
    position: relative;
    margin-bottom: 32px
}

.cms-doctor-carousel.layout1 .entry-featured {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 10px
}

.cms-doctor-carousel.layout1 .entry-featured img {
    transition: all 300ms linear 0s
}

.cms-doctor-carousel.layout1 .entry-featured img:hover {
    transform: scale(1.1)
}

.cms-doctor-carousel.layout1 .entry-title {
    margin-bottom: 6px;
    font-size: 21px;
    line-height: 32px;
    font-weight: 600;
    color: #26365e
}

.cms-doctor-carousel.layout1 .item-category {
    font-size: 14px;
    position: relative;
    font-weight: 400;
    color: var(--color-primary)
}

.cms-doctor-carousel.layout1 .entry-body {
    background-color: #fff;
    padding: 20px 30px 0;
    transition: all 300ms linear 0s
}

@media screen and (max-width:1199px) {
    .cms-doctor-carousel.layout2 {
        margin-top: 80px
    }
}

.cms-doctor-carousel.layout2 .entry-featured {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 3px
}

.cms-doctor-carousel.layout2 .entry-featured img {
    transition: all 300ms linear 0s
}

.cms-doctor-carousel.layout2 .item-category {
    font-size: 14px;
    margin-bottom: 4px;
    position: relative;
    padding-bottom: 11px;
    font-weight: 400
}

.cms-doctor-carousel.layout2 .entry-content {
    font-size: 15px;
    line-height: 25px
}

.cms-doctor-carousel.layout2 .entry-title {
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    color: #26365e
}

.cms-doctor-carousel.layout2 .cms-load-more {
    margin-top: 0
}

.cms-doctor-carousel.layout2 .entry-body {
    background-color: #fff;
    padding: 31px 40px 30px;
    border-bottom: 2px solid #e5e8ed;
    position: relative;
    z-index: 2;
    transition: all 300ms linear 0s
}

@media screen and (max-width:767px) {
    .cms-doctor-carousel.layout2 .entry-body {
        padding: 31px 20px 30px
    }
}

.cms-doctor-carousel.layout2 .content-social {
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms linear 0.05s
}

.cms-doctor-carousel.layout2 .content-social .doctor-social {
    display: flex;
    margin: 0;
    border-radius: 0 0 4px 4px;
    overflow: hidden
}

.cms-doctor-carousel.layout2 .content-social .doctor-social li {
    flex-grow: 1;
    display: inline-flex
}

.cms-doctor-carousel.layout2 .content-social .doctor-social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px
}

.cms-doctor-carousel.layout2 .content-social .doctor-social li a i {
    font-size: 20px;
    color: #fff;
    transition: all 200ms ease-in-out 0s
}

.cms-doctor-carousel.layout2 .content-social .doctor-social li a:hover i {
    transform: translateY(-3px)
}

.cms-doctor-carousel.layout2 .content-social .doctor-social li a.doctor-f {
    background-color: #3b5999
}

.cms-doctor-carousel.layout2 .content-social .doctor-social li a.doctor-t {
    background-color: #55acee
}

.cms-doctor-carousel.layout2 .content-social .doctor-social li a.doctor-i {
    background-color: #3f729b
}

.cms-doctor-carousel.layout2 .content-social .doctor-social li a.doctor-e {
    background-color: #21cdc0
}

.cms-doctor-carousel.layout2 .content-social .doctor-social li a.doctor-p {
    background-color: var(--e-global-color-accent)
}

.cms-doctor-carousel.layout2 .grid-item-inner {
    position: relative
}

.cms-doctor-carousel.layout2 .grid-item-inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 15px 0 rgba(14, 32, 77, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 300ms linear 0s
}

.cms-doctor-carousel.layout2 .grid-item-inner:hover:after {
    opacity: 1;
    visibility: visible
}

.cms-doctor-carousel.layout2 .grid-item-inner:hover .entry-featured img {
    transform: scale(1.1)
}

.cms-doctor-carousel.layout2 .grid-item-inner:hover .entry-body {
    margin-top: -40px
}

.cms-doctor-carousel.layout2 .grid-item-inner:hover .content-social {
    opacity: 1;
    visibility: visible
}

.cms-doctor-carousel.layout2 .cms-doctor-carousel-inner .slick-arrow {
    top: -85px
}

.cms-doctor-carousel.layout2 .cms-doctor-carousel-inner .slick-arrow.slick-next {
    right: 0
}

.cms-doctor-carousel.layout2 .cms-doctor-carousel-inner .slick-arrow.slick-prev {
    left: auto;
    right: 65px
}

.cms-service-grid.layout1 {
    padding-top: 35px
}

.cms-service-grid.layout1 .item-icon img,
.cms-service-grid.layout1 .item-icon svg {
    height: 80px;
    width: auto;
    transition: all 300ms linear 0ms
}

.cms-service-grid.layout1 .item-icon svg {
    fill: var(--color-secondary)
}

.cms-service-grid.layout1 .icon-overlay {
    opacity: 0.05;
    position: absolute;
    top: 80px;
    right: 0;
    transform: translateX(50%)
}

.cms-service-grid.layout1 .icon-overlay img {
    height: 150px;
    width: auto
}

.cms-service-grid.layout1 .entry-title {
    font-size: 23px;
    line-height: 32px;
    margin-top: 33px;
    margin-bottom: 17px;
    font-weight: bold;
    color: #26365e
}

.cms-service-grid.layout1 .entry-content {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 26px
}

.cms-service-grid.layout1 .item-feature li {
    font-size: 15px;
    font-weight: bold
}

.cms-service-grid.layout1 .item-feature li i {
    font-size: 13px;
    color: var(--color-primary);
    margin-right: 12px
}

.cms-service-grid.layout1 .item-feature li+li {
    margin-top: 15px
}

.cms-service-grid.layout1 .entry-body {
    position: relative
}

.cms-service-grid.layout1 .grid-item-inner {
    transition: all 300ms linear 0ms;
    padding: 40px;
    box-shadow: 0px 5px 83px 0 rgba(14, 32, 77, 0.12);
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: #fff;
    position: relative;
    overflow: hidden
}

.cms-service-grid.layout1 .grid-item-inner:after {
    content: "";
    display: block;
    height: 3px;
    background-color: var(--color-tertiary);
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    transition: all 300ms ease 0ms
}

.cms-service-grid.layout1 .grid-item-inner:hover .item-icon img,
.cms-service-grid.layout1 .grid-item-inner:hover .item-icon svg {
    transform: rotateY(360deg)
}

.cms-service-grid.layout1 .grid-item-inner:hover:after {
    background-color: var(--color-primary)
}

.cms-service-grid.layout1 .service-readmore {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    transition: all 300ms ease 0s;
    margin-top: 17px
}

.cms-service-grid.layout1 .service-readmore i {
    font-size: 14px;
    position: static;
    margin-left: 5px
}

.cms-service-grid.layout1 .service-readmore:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

.cms-service-carousel.layout1 .item-icon img,
.cms-service-carousel.layout1 .item-icon svg {
    height: 80px;
    width: auto;
    transition: all 300ms linear 0ms
}

.cms-service-carousel.layout1 .item-icon svg {
    fill: var(--color-secondary)
}

.cms-service-carousel.layout1 .icon-overlay {
    opacity: 0.05;
    position: absolute;
    top: 80px;
    right: 0;
    transform: translateX(50%)
}

.cms-service-carousel.layout1 .icon-overlay img {
    height: 150px;
    width: auto
}

.cms-service-carousel.layout1 .entry-title {
    font-size: 23px;
    line-height: 32px;
    margin-top: 33px;
    margin-bottom: 17px;
    font-weight: bold;
    color: #26365e
}

.cms-service-carousel.layout1 .entry-content {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 26px
}

.cms-service-carousel.layout1 .item-feature li {
    font-size: 15px;
    font-weight: bold
}

.cms-service-carousel.layout1 .item-feature li i {
    font-size: 13px;
    color: var(--color-primary);
    margin-right: 12px
}

.cms-service-carousel.layout1 .item-feature li+li {
    margin-top: 15px
}

.cms-service-carousel.layout1 .entry-body {
    position: relative
}

.cms-service-carousel.layout1 .grid-item-inner {
    transition: all 300ms linear 0ms;
    padding: 40px;
    box-shadow: 0px 5px 15px 0 rgba(14, 32, 77, 0.15);
    border-radius: 10px;
    margin: 30px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden
}

.cms-service-carousel.layout1 .grid-item-inner:after {
    content: "";
    display: block;
    height: 3px;
    background-color: var(--color-tertiary);
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    transition: all 300ms ease 0ms
}

.cms-service-carousel.layout1 .grid-item-inner:hover .item-icon img,
.cms-service-carousel.layout1 .grid-item-inner:hover .item-icon svg {
    transform: rotateY(360deg)
}

.cms-service-carousel.layout1 .grid-item-inner:hover:after {
    background-color: var(--color-primary)
}

.cms-service-carousel.layout1 .service-readmore {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    transition: all 300ms ease 0s;
    margin-top: 17px
}

.cms-service-carousel.layout1 .service-readmore i {
    font-size: 14px;
    position: static;
    margin-left: 5px
}

.cms-service-carousel.layout1 .service-readmore:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

.cms-service-carousel.layout1 .slick-slider .slick-list .slick-slide {
    padding: 15px
}

.cms-service-carousel.layout1 .slick-slider .slick-dots {
    margin-top: 7px;
    justify-content: center
}

.cms-service-carousel.layout2 .entry-featured {
    border-radius: 4px;
    margin-bottom: 0;
    position: relative
}

.cms-service-carousel.layout2 .entry-featured a img {
    border-radius: 4px 4px 0 0;
    transition: all 300ms linear 0ms
}

.cms-service-carousel.layout2 .entry-featured .item-icon {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    border: 7px solid #fff;
    border-radius: 50%;
    background-color: var(--color-secondary);
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    transition: all 300ms linear 0ms
}

.cms-service-carousel.layout2 .entry-featured .item-icon img,
.cms-service-carousel.layout2 .entry-featured .item-icon svg {
    height: 50px;
    width: auto;
    transition: all 300ms linear 0ms;
    filter: brightness(0) invert(1)
}

.cms-service-carousel.layout2 .entry-featured .item-icon svg {
    fill: #fff
}

.cms-service-carousel.layout2 .entry-featured:after {
    content: "";
    display: block;
    position: absolute;
    height: 10px;
    left: 0;
    bottom: 0;
    width: 100%;
    background-image: url(../images/bottom-curve.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.cms-service-carousel.layout2 .entry-title {
    font-size: 23px;
    line-height: 32px;
    margin-top: 73px;
    margin-bottom: 17px;
    font-weight: 600
}

.cms-service-carousel.layout2 .entry-content {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 21px
}

.cms-service-carousel.layout2 .entry-body {
    position: relative;
    text-align: center
}

.cms-service-carousel.layout2 .grid-item-inner {
    transition: all 300ms linear 0ms;
    padding: 0 30px 10px 30px;
    margin-top: 30px;
    box-shadow: 0px 5px 15px 0 rgba(14, 32, 77, 0.12);
    border-radius: 4px;
    margin-bottom: 30px;
    background-color: #fff
}

.cms-service-carousel.layout2 .grid-item-inner .inner-wrap {
    transform: translateY(-30px)
}

.cms-service-carousel.layout2 .grid-item-inner:hover .entry-featured .item-icon {
    background-color: var(--color-primary)
}

.cms-service-carousel.layout2 .service-readmore {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    border-radius: 4px;
    line-height: 38px;
    padding: 0 11px;
    transition: all 300ms ease 0s
}

.cms-service-carousel.layout2 .service-readmore i {
    font-size: 15px;
    position: static;
    margin-right: 5px
}

.cms-service-carousel.layout2 .service-readmore:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

.cms-service-carousel.layout2 .slick-dots {
    margin-top: 10px
}

.cms-service-carousel.layout3 .entry-featured {
    border-radius: 4px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden
}

.cms-service-carousel.layout3 .entry-featured a img {
    border-radius: 4px 4px 4px 4px;
    transition: all 300ms linear 0ms
}

.cms-service-carousel.layout3 .entry-title {
    font-size: 23px;
    line-height: 32px;
    margin-bottom: 13px;
    font-weight: 600
}

.cms-service-carousel.layout3 .entry-content {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 32px
}

.cms-service-carousel.layout3 .entry-body {
    position: relative;
    padding: 32px 40px 40px
}

.cms-service-carousel.layout3 .service-readmore {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid rgba(var(--rgb-color-secondary), 0.5);
    border-radius: 4px;
    line-height: 48px;
    padding: 0 30px;
    transition: all 300ms ease 0s
}

.cms-service-carousel.layout3 .service-readmore i {
    font-size: 13px;
    position: static;
    margin-left: 10px
}

.cms-service-carousel.layout3 .grid-item-inner {
    transition: all 300ms linear 0ms;
    box-shadow: 0px 5px 15px 0 rgba(14, 32, 77, 0.12);
    border-radius: 4px;
    margin-bottom: 30px;
    background-color: #fff;
    position: relative
}

.cms-service-carousel.layout3 .grid-item-inner:after {
    content: "";
    display: block;
    height: 3px;
    background-color: transparent;
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    transform: scale(0);
    transition: all 300ms ease 0ms
}

.cms-service-carousel.layout3 .grid-item-inner:hover .entry-featured img {
    opacity: 0.9;
    -webkit-transform: scale3d(1.07, 1.07, 1);
    transform: scale3d(1.07, 1.07, 1)
}

.cms-service-carousel.layout3 .grid-item-inner:hover .service-readmore {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

.cms-service-carousel.layout3 .grid-item-inner:hover:after {
    background-color: var(--color-primary);
    transform: scale(1)
}

.cms-service-carousel.layout3 .slick-dots {
    margin-top: 10px
}

.cms-slick-slider {}

.cms-slick-slider.has-shadow .slick-list {
    overflow: visible
}

.cms-slick-slider.has-shadow .slick-list .slick-slide:not(.slick-active) {
    visibility: hidden;
    opacity: 0
}

.cms-department-grid.layout1 .entry-featured {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative
}

.cms-department-grid.layout1 .entry-featured .item-feauted img {
    width: 100%;
    border-radius: 10px;
    transition: all 300ms linear 0ms
}

.cms-department-grid.layout1 .entry-title {
    font-size: 23px;
    line-height: 32px;
    margin-bottom: 17px;
    color: #26365e
}

.cms-department-grid.layout1 .entry-content {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 19px
}

.cms-department-grid.layout1 .entry-body {
    position: relative;
    padding: 33px 40px 40px
}

.cms-department-grid.layout1 .entry-body:after {
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    background-color: var(--color-secondary);
    transition: all 300ms ease 0s;
    transform: scaleX(0)
}

.cms-department-grid.layout1 .grid-item-inner {
    background-color: #fff;
    transition: all 300ms linear 0ms;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 83px 0 rgba(13, 134, 125, 0.13)
}

.cms-department-grid.layout1 .grid-item-inner:hover .entry-featured .item-feauted img {
    transform: scale(1.05)
}

.cms-department-grid.layout1 .grid-item-inner:hover .entry-body:after {
    transform: scaleX(1)
}

.cms-department-grid.layout1 .grid-item-inner .entry-readmore {
    padding-top: 3px
}

.cms-department-grid.layout1.style2 .entry-body:after {
    background-color: var(--color-primary)
}

.cms-department-grid.layout1.style2 .grid-item-inner {
    background-color: transparent;
    box-shadow: 0 5px 83px 0 rgba(13, 134, 125, 0)
}

.cms-department-grid.layout1.style2 .grid-item-inner:hover {
    background-color: #fff;
    box-shadow: 0 5px 83px 0 rgba(13, 134, 125, 0.15)
}

.cms-department-grid.layout1.style2 .entry-readmore a {
    transition: all 300ms ease 0s
}

.cms-department-grid.layout1.style2 .entry-readmore a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

.cms-department-carousel.layout1 .entry-featured {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative
}

.cms-department-carousel.layout1 .entry-featured .item-feauted img {
    width: 100%;
    border-radius: 10px;
    transition: all 300ms linear 0ms
}

.cms-department-carousel.layout1 .entry-title {
    font-size: 23px;
    line-height: 32px;
    margin-bottom: 17px;
    color: #26365e
}

.cms-department-carousel.layout1 .entry-content {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 19px
}

.cms-department-carousel.layout1 .entry-body {
    position: relative;
    padding: 33px 40px 40px
}

.cms-department-carousel.layout1 .entry-body:after {
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    background-color: var(--color-secondary);
    transition: all 300ms ease 0s;
    transform: scaleX(0)
}

.cms-department-carousel.layout1 a.department-readmore {
    font-size: 15px;
    font-weight: bold;
    color: var(--color-primary);
    padding: 11px 14px;
    background-color: transparent;
    border-radius: 3px;
    overflow: hidden;
    text-transform: capitalize;
    position: relative;
    transition: all 250ms ease 0s
}

.cms-department-carousel.layout1 a.department-readmore i {
    font-size: 14px;
    margin-left: 7px
}

.cms-department-carousel.layout1 a.department-readmore:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background-color: #e5f4ff;
    border-radius: 3px;
    transition: all 300ms ease 0s;
    z-index: -1
}

.cms-department-carousel.layout1 a.department-readmore:hover {
    color: #fff
}

.cms-department-carousel.layout1 a.department-readmore:hover:after {
    width: 100%;
    background-color: var(--color-primary)
}

.cms-department-carousel.layout1 .grid-item-inner {
    background-color: #fff;
    transition: all 300ms linear 0ms;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px 0 rgba(9, 29, 62, 0.08)
}

.cms-department-carousel.layout1 .grid-item-inner:hover .entry-featured .item-feauted img {
    transform: scale(1.05)
}

.cms-department-carousel.layout1 .grid-item-inner:hover .entry-body:after {
    transform: scaleX(1)
}

.cms-department-carousel.layout1 .grid-item-inner .entry-readmore {
    padding-top: 3px
}

.cms-department-carousel .slick-dots {
    margin-top: 12px;
    justify-content: flex-start
}

.cms-department-carousel .slick-dots li button {
    background-color: #fff
}

.cms-department-carousel .slick-dots li button:before {
    background-color: rgba(255, 255, 255, 0.3)
}

@media screen and (min-width:1025px) {
    .cms-department-carousel .slick-arrow {
        width: 21px;
        height: 45px;
        background-color: transparent !important;
        color: transparent !important;
        border: none;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        z-index: 3
    }

    .cms-department-carousel .slick-arrow.slick-prev {
        background-image: url(../images/arrow-left-light.png);
        left: 70%;
        top: -60px
    }

    .cms-department-carousel .slick-arrow.slick-next {
        background-image: url(../images/arrow-right-light.png);
        right: 25%;
        top: -60px
    }

    .cms-department-carousel .slick-arrow:hover {
        opacity: 0.7 !important
    }
}

.cms-testimonial-carousel {}

.cms-testimonial-carousel.layout1 .client-image {
    flex: none;
    width: 65px;
    height: 65px;
    padding: 5px;
    margin-right: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 200ms ease 0ms
}

.cms-testimonial-carousel.layout1 .client-image img {
    border-radius: 50px;
    transition: all 300ms linear 0ms
}

.cms-testimonial-carousel.layout1 .client-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0
}

.cms-testimonial-carousel.layout1 .client-job {
    font-size: 13px;
    line-height: 1;
    display: block;
    margin-top: 5px
}

.cms-testimonial-carousel.layout1 .client-content .said {
    font-size: 23px;
    line-height: 1.8;
    color: #1f314f;
    font-weight: bold;
    margin-bottom: 0
}

@media screen and (max-width:767px) {
    .cms-testimonial-carousel.layout1 .client-content .said {
        font-size: 18px
    }
}

.cms-testimonial-carousel.layout1 .testimonial-holder {
    display: flex;
    align-items: center;
    position: relative
}

.cms-testimonial-carousel.layout1 .testimonial-holder .svg-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    position: absolute;
    top: -15px;
    left: -2px
}

.cms-testimonial-carousel.layout1 .testimonial-holder .svg-icon svg {
    width: 17px;
    height: auto;
    fill: var(--color-primary)
}

.cms-testimonial-carousel.layout1 .testimonial-image:before {
    content: "";
    height: 54px;
    width: 54px;
    background-color: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 54px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 300ms linear 0ms;
    opacity: 0
}

@media screen and (max-width:767px) {
    .cms-testimonial-carousel.layout1 .testimonial-image:before {
        width: 38px;
        height: 38px
    }
}

.cms-testimonial-carousel.layout1 .swiper-pagination-html:hover .testimonial-image:before,
.cms-testimonial-carousel.layout1 .swiper-pagination-html:hover .svg-icon,
.cms-testimonial-carousel.layout1 .swiper-pagination-html-active .testimonial-image:before,
.cms-testimonial-carousel.layout1 .swiper-pagination-html-active .svg-icon {
    opacity: 1;
    visibility: visible
}

.cms-testimonial-carousel.layout1 .swiper-pagination-html:hover .client-image,
.cms-testimonial-carousel.layout1 .swiper-pagination-html-active .client-image {
    border-color: var(--color-primary)
}

.cms-testimonial-carousel.layout2 .client-image {
    flex: none;
    width: 54px;
    height: 54px;
    padding: 3px;
    border: 2px solid transparent;
    margin-right: 20px;
    border-radius: 50%;
    transition: all 300ms linear 0s
}

.cms-testimonial-carousel.layout2 .client-image img {
    border-radius: 50px;
    transition: all 300ms linear 0ms
}

.cms-testimonial-carousel.layout2 .client-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 13px;
    color: #26365e
}

.cms-testimonial-carousel.layout2 .client-job {
    font-size: 13px;
    line-height: 1;
    display: block;
    margin-top: 5px
}

.cms-testimonial-carousel.layout2 .client-content {
    font-size: 23px;
    line-height: 1.82;
    color: #26365e;
    font-family: "Quicksand", sans-serif;
    font-weight: bold
}

@media screen and (max-width:767px) {
    .cms-testimonial-carousel.layout2 .client-content {
        font-size: 18px
    }
}

.cms-testimonial-carousel.layout2 .cms-slick-primary {
    position: relative;
    z-index: 1
}

.cms-testimonial-carousel.layout2 .testimonial-holder {
    position: relative;
    transition: all 300ms ease 0s
}

.cms-testimonial-carousel.layout2 .slick-slide.slick-current .client-image {
    border-color: var(--color-primary)
}

.cms-testimonial-carousel.layout2 .cms-slick-nav-wrap {
    position: relative;
    z-index: 99;
    margin-top: 35px;
    margin-bottom: 30px
}

.cms-testimonial-carousel.layout2 .cms-slick-nav-wrap .cms-slick-nav {
    display: inline-block
}

.cms-testimonial-carousel.layout2 .cms-slick-nav-wrap .slick-track {
    display: inline-block;
    width: auto !important;
    transform: none !important
}

.cms-testimonial-carousel.layout2 .cms-slick-nav {
    margin: -20px
}

.cms-testimonial-carousel.layout2 .cms-slick-nav .slick-list {
    padding: 20px
}

.cms-testimonial-carousel.layout2 .cms-slick-nav .slick-arrow {
    display: none !important
}

.cms-testimonial-carousel.layout2 .cms-slick-nav .slick-slide {
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    width: auto !important;
    margin: 10px 40px 10px 0;
    opacity: 0.5
}

.cms-testimonial-carousel.layout2 .cms-slick-nav .slick-slide .testimonial-image:before {
    content: "";
    height: 54px;
    width: 54px;
    background-color: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 54px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 300ms linear 0ms;
    opacity: 0
}

@media screen and (max-width:767px) {
    .cms-testimonial-carousel.layout2 .cms-slick-nav .slick-slide .testimonial-image:before {
        width: 38px;
        height: 38px
    }
}

.cms-testimonial-carousel.layout2 .cms-slick-nav .slick-current .testimonial-image:before {
    opacity: 1
}

.cms-testimonial-carousel.layout2 .slick-slide.slick-current {
    opacity: 1
}

.cms-testimonial-carousel.layout2 .slick-slide.slick-current .client-image {
    border-color: var(--color-primary)
}

.cms-testimonial-carousel.layout2 .slick-slide.slick-current .testimonial-holder .svg-icon {
    visibility: visible
}

.cms-testimonial-carousel.layout2 .slick-dots {
    justify-content: flex-start;
    margin-left: -5px
}

.cms-testimonial-carousel.layout2 .testimonial-carousel-inner {
    display: flex;
    justify-content: space-between
}

@media screen and (max-width:1400px) {
    .cms-testimonial-carousel.layout2 .testimonial-carousel-inner {
        flex-direction: column-reverse
    }
}

.cms-testimonial-carousel.layout2 .testimonial-carousel-inner .cms-slick-nav-wrap {
    width: 36%;
    flex: none
}

@media screen and (max-width:1400px) {
    .cms-testimonial-carousel.layout2 .testimonial-carousel-inner .cms-slick-nav-wrap {
        width: 100%;
        margin-top: 40px
    }
}

.cms-testimonial-carousel.layout2 .testimonial-carousel-inner .cms-slick-primary {
    width: 54%
}

@media screen and (max-width:1400px) {
    .cms-testimonial-carousel.layout2 .testimonial-carousel-inner .cms-slick-primary {
        width: 100%
    }
}

.cms-testimonial-carousel.layout2 .slick-dots {
    justify-content: flex-end;
    margin-top: 60px
}

@media screen and (max-width:1024px) {
    .cms-testimonial-carousel.layout2 .slick-dots {
        display: none !important
    }
}

.cms-testimonial-carousel.layout3 .slick-dots {
    margin-top: 0
}

.cms-testimonial-carousel.layout3 .slick-slider .slick-list {
    padding-bottom: 25px;
    overflow: inherit
}

.cms-testimonial-carousel.layout3 .slick-dots {
    justify-content: center
}

.cms-testimonial-carousel.layout3 .slick-dots li.slick-active button {
    background-color: #fff
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper {
    position: relative;
    display: flex;
    background-image: url(../images/testi-quote-icon.png);
    background-repeat: no-repeat;
    background-position: bottom 50px right 50px;
    padding: 42px 50px 50px;
    background-color: #fff;
    border-radius: 3px
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 83px 0 rgba(0, 0, 0, 0.05);
    transition: all 300ms linear 0s;
    z-index: -1
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper:hover:after {
    box-shadow: 0 5px 83px 0 rgba(0, 0, 0, 0.15)
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper:hover .bottom-content:before {
    width: 100% !important
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .client-heading-star {
    display: flex;
    align-items: center;
    margin-bottom: 16px
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .client-heading-star .client-title {
    font-size: 17px;
    letter-spacing: 0.03em;
    margin-bottom: 0
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .client-heading-star .client-rating {
    color: var(--color-primary);
    display: inline-block
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .client-heading-star .client-rating.star1 i:nth-child(n+2):before {
    content: ""
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .client-heading-star .client-rating.star2 i:nth-child(n+3):before {
    content: ""
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .client-heading-star .client-rating.star3 i:nth-child(n+4):before {
    content: ""
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .client-heading-star .client-rating.star4 i:nth-child(n+5):before {
    content: ""
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .client-content {
    position: relative;
    z-index: 2
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .client-content .said {
    font-size: 19px;
    line-height: 30px;
    font-weight: 600;
    font-style: italic;
    color: #1f314f
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .bottom-content {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 48px;
    margin-top: 40px
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .bottom-content:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -50px;
    width: 0;
    height: 2px;
    background-color: #e6e8eb;
    transition: all 300ms linear 0s
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .bottom-content .client-image {
    flex: none;
    margin-right: 20px
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .bottom-content .client-image img {
    padding: 3px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    transition: all 300ms ease 0s;
    max-height: 50px
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .bottom-content .client-name .name-text {
    font-family: "Quicksand", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-secondary)
}

.cms-testimonial-carousel.layout3 .cms-client-wrapper .bottom-content .client-job p {
    font-size: 13px;
    color: #848e9f;
    margin-bottom: 0
}

@media screen and (max-width:767px) {
    .cms-testimonial-carousel.layout3 .cms-client-wrapper {
        flex-direction: column;
        padding: 55px 20px
    }

    .cms-testimonial-carousel.layout3 .cms-client-wrapper .client-image {
        margin-bottom: 20px
    }

    .cms-testimonial-carousel.layout3 .cms-client-wrapper .client-image img {
        margin-top: 0
    }

    .cms-testimonial-carousel.layout3 .cms-client-wrapper .client-content p.said {
        font-size: 16px
    }
}

.cms-testimonial-carousel.layout4 .content-inner {
    position: relative;
    padding: 43px 50px 32px;
    background-color: var(--color-primary);
    color: #fff;
    margin: 26px 0 26px;
    border-radius: 0 4px 0 0
}

.cms-testimonial-carousel.layout4 .content-inner:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 20px solid var(--color-primary);
    border-right: 25px solid transparent;
    position: absolute;
    left: 0;
    bottom: -19px;
    z-index: 5
}

.cms-testimonial-carousel.layout4 .content-inner svg {
    height: 34px;
    fill: #fff
}

.cms-testimonial-carousel.layout4 .content-inner .icon {
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 50px;
    z-index: 1
}

.cms-testimonial-carousel.layout4 .content-inner .said {
    font-size: 19px;
    line-height: 28px;
    font-weight: 600;
    color: inherit;
    font-style: italic
}

.cms-testimonial-carousel.layout4 .content-inner .client-name {
    margin-top: 16px
}

.cms-testimonial-carousel.layout4 .content-inner .name-text {
    font-size: 14px;
    font-weight: bold
}

.cms-testimonial-carousel.layout4 .content-inner .name-text:before {
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    color: #fff;
    margin-right: 7px
}

.cms-testimonial-carousel.layout5 .slick-dots {
    justify-content: flex-end;
    margin-top: -25px
}

.cms-testimonial-carousel.layout5 .slick-dots li.slick-active button {
    border-color: #fff;
    background-color: #fff
}

.cms-testimonial-carousel.layout5 .cms-client-wrapper {
    position: relative
}

.cms-testimonial-carousel.layout5 .cms-client-wrapper .client-content {
    position: relative;
    z-index: 2
}

.cms-testimonial-carousel.layout5 .cms-client-wrapper .client-content .said {
    font-size: 28px;
    line-height: 44px;
    font-weight: 600;
    color: #1f314f
}

.cms-testimonial-carousel.layout5 .cms-client-wrapper .bottom-content {
    display: flex;
    align-items: center;
    margin-top: 30px
}

.cms-testimonial-carousel.layout5 .cms-client-wrapper .bottom-content .client-image {
    flex: none;
    margin-right: 20px
}

.cms-testimonial-carousel.layout5 .cms-client-wrapper .bottom-content .client-image img {
    padding: 3px;
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 300ms ease 0s;
    max-height: 50px
}

.cms-testimonial-carousel.layout5 .cms-client-wrapper .bottom-content .client-name .name-text {
    font-family: "Quicksand", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-secondary)
}

.cms-testimonial-carousel.layout5 .cms-client-wrapper .bottom-content .client-job p {
    font-size: 13px;
    color: #848e9f;
    margin-bottom: 0
}

@media screen and (max-width:767px) {
    .cms-testimonial-carousel.layout5 .cms-client-wrapper .client-content p.said {
        font-size: 18px
    }
}

.cms-testimonial-carousel.layout6 .testimonial--holder {
    padding: 0 6px
}

.cms-testimonial-carousel.layout6 .ttmn-avatar {
    max-width: 64px;
    border: 2px solid transparent;
    padding: 7px;
    cursor: pointer
}

.cms-testimonial-carousel.layout6 .ttmn-avatar:hover,
.cms-testimonial-carousel.layout6 .swiper-pagination-html-active .ttmn-avatar {
    border-color: currentColor
}

.cms-image-pointers .inner-content {
    position: relative
}

.cms-image-pointers .img-bg {
    text-align: center
}

.cms-image-pointers .img-bg img {
    width: 100%
}

.cms-image-pointers .item-pointer {
    position: absolute;
    margin-bottom: 35px;
    padding-bottom: 60px;
    padding-left: 21px
}

.cms-image-pointers .item-pointer .item-inner {
    width: 28px;
    height: 28px;
    position: relative
}

.cms-image-pointers .item-pointer .plus-icon {
    position: relative;
    bottom: 0;
    left: 0;
    transition: all 300ms linear 0ms;
    width: 28px;
    height: 28px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px
}

.cms-image-pointers .item-pointer .item-holder {
    position: absolute;
    bottom: 45px;
    left: -15px;
    transition: all 300ms linear 0ms;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    margin-bottom: -10px
}

.cms-image-pointers .item-pointer .item-holder .inner-holder {
    background-color: #fff;
    box-shadow: 0 5px 83px rgba(14, 32, 77, 0.15);
    padding: 13px 20px;
    min-width: 170px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 24px;
    position: relative
}

.cms-image-pointers .item-pointer .item-holder .inner-holder:after {
    content: "";
    bottom: -10px;
    left: 30px;
    position: absolute;
    display: block;
    border-top: 0px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid #fff
}

.cms-image-pointers .item-pointer:nth-child(1) {
    top: 32%;
    left: 12%
}

.cms-image-pointers .item-pointer:nth-child(2) {
    top: 46%;
    left: 35%
}

.cms-image-pointers .item-pointer:nth-child(3) {
    top: 15%;
    left: 74%
}

.cms-image-pointers .item-pointer.holder-left .item-holder {
    right: 50%;
    left: auto
}

.cms-image-pointers .item-pointer.holder-left .item-holder .inner-holder:after {
    border-top: 0px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 12px solid #fff;
    border-left: 0;
    left: auto;
    right: 0
}

.cms-image-pointers .item-pointer:hover .item-holder {
    visibility: visible;
    opacity: 1;
    margin-bottom: 0;
    clip: inherit
}

.cms-image-pointers.style2 .img-bg img {
    filter: brightness(0) invert(1)
}

.cms-image-pointers.style2 .item-pointer .plus-icon {
    background-color: var(--color-secondary)
}

.cms-accordion .cms-ac-content {
    display: none
}

.cms-accordion.style1 .cms-ac-title {
    font-size: 19px;
    line-height: 28px;
    color: var(--color-secondary);
    transition: all 300ms ease 0ms;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    position: relative;
    cursor: pointer;
    padding: 23px 0 23px 40px;
    border-bottom: 2px solid #e6e8eb
}

.cms-accordion.style1 .cms-ac-title:before {
    background-color: transparent;
    color: #283b6a;
    font-size: 22px;
    content: "";
    font-family: "medcity";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0
}

.cms-accordion.style1 .cms-ac-title.active {
    border-color: transparent
}

.cms-accordion.style1 .cms-ac-title.active:before {
    content: "";
    color: var(--color-primary)
}

.cms-accordion.style1 .cms-ac-content {
    font-size: 15px;
    line-height: 24px;
    margin-top: -8px;
    max-width: 100%;
    padding-bottom: 23px
}

.cms-accordion.style1 .cms-accordion-item.active .cms-ac-content {
    border-bottom: 2px solid #e6e8eb
}

.cms-accordion-2 .cms-accordion-item.active .cms-acc-icon {
    transform: rotate(90deg);
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0, M12=0, M21=0, M22=0, sizingMethod="auto expand");
    zoom: 1
}

.cms-counter-layout1 {
    display: flex;
    align-items: center
}

@media screen and (max-width:767px) {
    .cms-counter-layout1 {
        flex-direction: column;
        align-items: flex-start
    }

    .cms-counter-layout1 .cms-counter-icon {
        margin-bottom: 15px
    }
}

.cms-counter-layout1 .cms-counter-icon {
    flex: none;
    width: 48px;
    display: inline-block;
    margin-right: 30px
}

.cms-counter-layout1 .cms-counter-icon i {
    font-size: 48px
}

.cms-counter-layout1 .cms-counter-number-wrapper {
    color: var(--color-secondary);
    font-size: 45px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    line-height: 1;
    margin-bottom: 6px;
    display: block
}

.cms-counter-layout1 .cms-counter-title {
    font-size: 15px;
    line-height: 24px;
    font-weight: 700
}

.cms-counter-layout1.prefix-0 .elementor-counter-number {
    margin-left: -10px
}

@media screen and (max-width:767px) {
    .cms-counter-layout1 br {
        display: none
    }
}

.btn-video {
    text-align: center;
    height: 76px;
    width: 76px;
    background-color: var(--color-primary);
    background-image: none;
    z-index: 1;
    font-size: 17px;
    color: #fff;
    border: none;
    border-radius: 100%;
    display: inline-block;
    position: relative
}

.btn-video i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 2px;
    color: var(--color-secondary)
}

.btn-video .line-video-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 100%;
    animation: squares 3.9s linear 0s infinite;
    -webkit-animation: squares 3.9s linear 0s infinite;
    -ms-animation: squares 3.9s linear 0s infinite;
    -o-animation: squares 3.9s linear 0s infinite;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
    opacity: 0
}

.btn-video .line-video-animation.line-video-2 {
    -webkit-animation-delay: 1.3s;
    -moz-animation-delay: 1.3s;
    -o-animation-delay: 1.3s;
    animation-delay: 1.3s
}

.btn-video .line-video-animation.line-video-3 {
    -webkit-animation-delay: 2.6s;
    -moz-animation-delay: 2.6s;
    -o-animation-delay: 2.6s;
    animation-delay: 2.6s
}

.btn-video:hover {
    color: #fff
}

.btn-video:hover .line-video-animation {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.8);
        opacity: 0
    }
}

.cms-video-player.layout1 {
    position: relative;
    text-align: center;
    display: inline-flex;
    align-items: center
}

.cms-video-player.layout1 img {
    border-radius: 3px;
    width: 100%
}

.cms-video-player.layout1 img+.btn-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.cms-video-player.layout1 img+.btn-video+span {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #1B1A1A 0%, rgba(0, 0, 0, 0) 82%);
    opacity: 0.55;
    border-radius: 3px
}

.cms-video-player.layout1 .cms-video-button {
    height: 60px !important;
    width: 60px !important;
    background-color: #fff !important;
    z-index: 1;
    font-size: 13px !important;
    color: var(--color-secondary) !important;
    border: none !important;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.cms-video-player.layout1 .cms-video-button .video-text {
    position: absolute;
    top: 50%;
    left: 100%;
    padding-left: 30px;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: bold;
    color: var(--color-secondary)
}

@media screen and (max-width:777px) {
    .cms-video-player.layout1 .cms-video-button .video-text {
        display: none
    }
}

.cms-video-player.layout1 .cms-video-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(14, 32, 77, 0.1);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite
}

.cms-video-player.layout1 .cms-video-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    transition: all 200ms
}

.cms-video-player.layout1 .cms-video-button i {
    position: relative;
    z-index: 9;
    color: var(--color-primary);
    font-size: 15px;
    margin-left: 5px
}

.cms-video-player.layout1.style-background img {
    display: none
}

.cms-video-player.layout1.style-background .btn-video {
    color: var(--color-primary)
}

.cms-video-player.layout2 .content-inner {
    display: inline-block;
    border: 20px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%
}

.cms-video-player.layout2 .content-inner .inner {
    width: 232px;
    height: 232px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px;
    position: relative;
    background-color: var(--e-global-color-accent);
    color: #fff
}

.cms-video-player.layout2 .content-inner .description {
    margin-bottom: 0;
    font-size: 19px;
    line-height: 28px;
    color: inherit;
    font-weight: 600;
    font-style: italic
}

.cms-video-player.layout2 .video-play-button {
    position: absolute;
    display: inline-flex;
    top: 10px;
    right: -10px;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center
}

.cms-video-player.layout2 .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite
}

.cms-video-player.layout2 .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    transition: all 200ms
}

.cms-video-player.layout2 .video-play-button i {
    position: relative;
    z-index: 9;
    color: #222;
    font-size: 30px;
    margin-left: 5px
}

.cms-fancy-box.layout1 {
    display: flex;
    padding: 38px 40px 22px;
    border-radius: 10px;
    box-shadow: 0 5px 83px 0 rgba(14, 32, 77, 0.1);
    transition: all 300ms linear 0s
}

@media screen and (max-width:767px) {
    .cms-fancy-box.layout1 {
        flex-direction: column;
        padding-bottom: 33px
    }
}

.cms-fancy-box.layout1 .item-icon {
    flex: none;
    display: inline-flex;
    margin-bottom: 15px;
    margin-right: 20px;
    margin-top: 5px
}

.cms-fancy-box.layout1 .item-icon i {
    font-size: 46px;
    color: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout1 .item-icon svg {
    height: 46px;
    width: auto;
    fill: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout1 .item-content .item-title {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 2px
}

.cms-fancy-box.layout1 .item-content .item-description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px
}

.cms-fancy-box.layout1:hover {
    background-color: var(--color-primary) !important
}

.cms-fancy-box.layout1:hover .item-icon i {
    color: #fff
}

.cms-fancy-box.layout1:hover .item-icon svg {
    fill: #fff
}

.cms-fancy-box.layout1:hover .item-content .item-title {
    color: #fff
}

.cms-fancy-box.layout1:hover .item-content .item-description {
    color: #fff
}

.cms-fancy-box.layout2 {
    display: flex;
    padding: 35px 20px 18px 40px;
    border-radius: 10px;
    border: 2px solid #e6e8eb;
    transition: all 300ms linear 0s
}

@media screen and (max-width:767px) {
    .cms-fancy-box.layout2 {
        flex-direction: column;
        padding-bottom: 33px
    }
}

.cms-fancy-box.layout2 .item-icon {
    flex: none;
    display: inline-flex;
    margin-bottom: 15px;
    margin-right: 20px;
    margin-top: 5px
}

.cms-fancy-box.layout2 .item-icon i {
    font-size: 48px;
    color: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout2 .item-icon svg {
    height: 46px;
    width: auto;
    fill: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout2 .item-content .item-title {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 2px
}

.cms-fancy-box.layout2 .item-content .item-description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px
}

.cms-fancy-box.layout2:hover {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important
}

.cms-fancy-box.layout2:hover .item-icon i {
    color: #fff
}

.cms-fancy-box.layout2:hover .item-icon svg {
    fill: #fff
}

.cms-fancy-box.layout2:hover .item-content .item-title {
    color: #fff
}

.cms-fancy-box.layout2:hover .item-content .item-description {
    color: #fff
}

.cms-fancy-box.layout3 {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 83px 0 rgba(14, 32, 77, 0.08);
    position: relative
}

.cms-fancy-box.layout3 .content-inner {
    padding: 38px 40px 16px
}

.cms-fancy-box.layout3 .content-inner.overlay-icon {
    position: relative;
    overflow: hidden
}

.cms-fancy-box.layout3 .content-inner.overlay-icon .item-icon {
    opacity: 1 !important
}

.cms-fancy-box.layout3 .item-icon {
    flex: none;
    display: inline-flex;
    margin-bottom: 22px
}

.cms-fancy-box.layout3 .item-icon i {
    font-size: 48px;
    color: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout3 .item-icon svg {
    height: 48px;
    width: auto;
    fill: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout3 .item-icon-overlay {
    flex: none;
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(35px, -50%);
    transition: all 300ms ease 0s;
    opacity: 0
}

.cms-fancy-box.layout3 .item-icon-overlay i {
    font-size: 86px;
    color: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout3 .item-icon-overlay svg {
    height: 86px;
    width: auto;
    fill: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout3 .item-image {
    position: absolute;
    top: -90px;
    height: 180px;
    left: 0;
    right: 0;
    border-radius: 10px 10px 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out 0s
}

.cms-fancy-box.layout3 .item-content .item-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #26365e
}

.cms-fancy-box.layout3 .item-content .item-description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 17px
}

.cms-fancy-box.layout3 .item-button {
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    left: 39px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 400ms ease 50ms
}

.cms-fancy-box.layout3 .item-button a .f-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--e-global-color-accent);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout3 .item-button a .f-btn-icon i {
    font-size: 13px
}

.cms-fancy-box.layout3:hover .item-button {
    opacity: 1;
    visibility: visible
}

.cms-fancy-box.layout3:hover .item-icon {
    opacity: 0
}

.cms-fancy-box.layout3:hover .item-icon-overlay {
    opacity: 0.2
}

.cms-fancy-box.layout3:hover .item-image {
    opacity: 1;
    visibility: visible;
    top: -95px
}

.cms-fancy-box.layout4 {
    display: flex;
    padding: 33px 40px 32px;
    border-radius: 4px;
    background-color: #fff;
    transition: all 300ms ease 0s;
    box-shadow: 0 5px 80px 0 rgba(14, 32, 77, 0.15);
    position: relative
}

.cms-fancy-box.layout4:before {
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    background-color: var(--color-primary)
}

@media screen and (max-width:767px) {
    .cms-fancy-box.layout4 {
        flex-direction: column;
        padding-bottom: 33px
    }
}

.cms-fancy-box.layout4 .item-icon {
    flex: none;
    display: inline-flex;
    margin-bottom: 15px;
    margin-right: 30px;
    margin-top: 5px
}

.cms-fancy-box.layout4 .item-icon i {
    font-size: 64px;
    color: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout4 .item-icon svg {
    height: 64px;
    width: auto;
    fill: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout4 .item-content .item-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px
}

.cms-fancy-box.layout4 .item-content .item-description {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 15px
}

.cms-fancy-box.layout4 .item-content .item-button a {
    font-size: 15px;
    font-weight: bold;
    color: var(--color-secondary)
}

.cms-fancy-box.layout4 .item-content .item-button a i {
    margin-right: 3px
}

.cms-fancy-box.layout4:hover {
    transform: translateY(-10px)
}

.cms-fancy-box.layout5 {
    padding: 43px 45px 50px;
    background-color: #fff;
    transition: all 300ms linear 0s;
    border-radius: 10px;
    box-shadow: 0 5px 83px 0 rgba(14, 32, 77, 0.15);
    position: relative;
    display: flex
}

@media screen and (max-width:767px) {
    .cms-fancy-box.layout5 {
        flex-direction: column
    }
}

.cms-fancy-box.layout5 .item-icon {
    flex: none;
    display: inline-flex;
    margin-bottom: 20px;
    margin-right: 40px;
    margin-top: 5px
}

.cms-fancy-box.layout5 .item-icon i {
    font-size: 48px;
    color: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout5 .item-icon svg {
    height: 48px;
    width: auto;
    fill: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout5 .item-content .item-title {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 17px;
    color: var(--color-secondary)
}

.cms-fancy-box.layout5 .item-content .item-description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px
}

.cms-fancy-box.layout5 .item-content .item-button a {
    font-size: 15px;
    font-weight: bold;
    color: var(--color-secondary);
    display: inline-block;
    padding: 0 20px;
    line-height: 38px;
    border-radius: 20px;
    border: 2px solid rgba(14, 32, 77, 0.25)
}

.cms-fancy-box.layout5 .item-content .item-button a i {
    margin-left: 5px;
    font-size: 14px
}

.cms-fancy-box.layout5 .item-content .item-button a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

.cms-fancy-box.layout5:hover .item-icon i {
    color: var(--color-primary)
}

.cms-fancy-box.layout5:hover .item-icon svg {
    fill: var(--color-primary)
}

.cms-fancy-box.layout6 {
    text-align: center;
    display: inline-block
}

.cms-fancy-box.layout6 .icon-wrap {
    margin-bottom: 10px
}

.cms-fancy-box.layout6 .item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    box-sizing: content-box;
    background-color: #fff;
    position: relative;
    border-radius: 45px;
    transition: all 300ms ease 0s;
    z-index: 1
}

.cms-fancy-box.layout6 .item-icon i {
    font-size: 45px;
    color: var(--color-secondary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout6 .item-icon svg {
    height: 45px;
    width: auto;
    fill: var(--color-secondary);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout6 .item-icon:before {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -10px;
    left: -10px;
    border: 10px solid rgba(53, 79, 142, 0.1);
    border-radius: 50%;
    transition: all 300ms ease 0ms;
    opacity: 0;
    visibility: hidden;
    z-index: -1
}

.cms-fancy-box.layout6 .item-title {
    font-size: 15px;
    line-height: 24px;
    font-weight: bold;
    color: var(--color-secondary)
}

.cms-fancy-box.layout6:hover .item-icon {
    transform: translateY(-10px) !important
}

.cms-fancy-box.layout6:hover .item-icon:before {
    opacity: 1;
    visibility: visible
}

.cms-fancy-box.layout7 {
    padding: 37px 40px 32px;
    background-color: #fff;
    transition: all 300ms ease 0s;
    box-shadow: 0 5px 80px 0 rgba(14, 32, 77, 0.15);
    position: relative
}

.cms-fancy-box.layout7:after {
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    background-color: var(--color-primary);
    transform: scale(0);
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout7 .item-icon {
    margin-bottom: 25px
}

.cms-fancy-box.layout7 .item-icon i {
    font-size: 56px;
    color: #354f8e;
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout7 .item-icon svg {
    height: 56px;
    width: auto;
    fill: #354f8e;
    transition: all 300ms ease 0s
}

.cms-fancy-box.layout7 .item-content .item-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: "Inter", Sans-serif
}

.cms-fancy-box.layout7 .item-content .item-description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px
}

.cms-fancy-box.layout7 .item-content .item-button a {
    font-size: 15px;
    font-weight: bold;
    color: var(--color-primary)
}

.cms-fancy-box.layout7 .item-content .item-button a i {
    margin-left: 5px;
    font-size: 14px
}

.cms-fancy-box.layout7 .item-content .item-button a:hover {
    color: var(--color-primary)
}

.cms-fancy-box.layout7 .item-content .item-index {
    font-family: "Quicksand", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: bold;
    color: #eaedf5;
    position: absolute;
    top: 31px;
    right: 40px
}

.cms-fancy-box.layout7:hover:after {
    transform: scale(1)
}

.cms-fancy-box.layout7:hover .item-icon i {
    color: var(--color-primary)
}

.cms-fancy-box.layout7:hover .item-icon svg {
    fill: var(--color-primary)
}

.cms-fancy-box.layout7:hover .item-button a {
    color: var(--color-primary)
}

.cms-fancy-box-carousel.layout1 .slick-list {
    padding-top: 27px
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner {
    padding: 53px 40px 54px;
    background-color: #fff;
    transition: all 300ms linear 0s;
    border-radius: 10px;
    position: relative;
    transform: translateY(0);
    box-shadow: 0 0 15px 0 rgba(14, 32, 77, 0.1)
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner:before {
    content: "";
    display: block;
    width: 3px;
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0;
    background-color: var(--color-primary);
    transform: scaleY(0);
    transition: all 300ms linear 0s
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner .item-icon {
    flex: none;
    display: inline-flex;
    margin-bottom: 32px;
    margin-right: 25px;
    margin-top: 5px
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner .item-icon i {
    font-size: 55px;
    color: var(--color-tertiary);
    transition: all 300ms ease 0s
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner .item-icon svg {
    height: 55px;
    width: auto;
    fill: var(--color-tertiary);
    transition: all 300ms ease 0s
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner .item-content .item-title {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 27px;
    color: #26365e
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner .item-content .item-description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner .item-content .item-button a {
    font-size: 15px;
    font-weight: bold;
    color: var(--color-primary)
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner .item-content .item-button a i {
    margin-left: 5px;
    font-size: 14px
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner .item-content .item-button a:hover {
    color: var(--color-primary)
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner .item-content .item-index {
    font-family: "Quicksand", sans-serif;
    font-size: 104px;
    line-height: 1;
    font-weight: bold;
    color: #eaedf5;
    position: absolute;
    top: 24px;
    right: 40px
}

@media screen and (max-width:767px) {
    .cms-fancy-box-carousel.layout1 .carousel-item-inner .item-content br {
        display: none
    }
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner:hover {
    transform: translateY(-20px)
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner:hover:before {
    transform: scaleY(1)
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner:hover .item-icon i {
    color: var(--color-primary)
}

.cms-fancy-box-carousel.layout1 .carousel-item-inner:hover .item-icon svg {
    fill: var(--color-primary)
}

.cms-fancy-box-carousel.layout1 .slick-dots {
    margin-top: 23px
}

@media screen and (min-width:1025px) {
    .cms-fancy-box-carousel.layout1 .slick-dots {
        margin-left: -23%
    }
}

.cms-fancy-box-carousel.layout1 .slick-dots li button {
    background-color: #fff
}

.cms-fancy-box-carousel.layout1 .slick-dots li button:before {
    z-index: 1;
    background-color: rgba(var(--rgb-color-primary), 0.3)
}

.cms-fancy-box-carousel.layout1 .slick-dots li.slick-active button {
    background-color: var(--color-primary)
}

.cms-fancy-box-carousel.layout2 .slick-slider.slick-dotted {
    padding-top: 0 !important
}

.cms-fancy-box-carousel.layout2 .slick-list {
    padding-bottom: 20px
}

.cms-fancy-box-carousel.layout2 .carousel-item-inner {
    padding: 44px 40px 40px;
    background-color: #fff;
    transition: all 300ms linear 0s;
    position: relative;
    display: flex;
    box-shadow: 0 0 20px 0 rgba(14, 32, 77, 0.1)
}

.cms-fancy-box-carousel.layout2 .carousel-item-inner .item-icon {
    flex: none;
    display: inline-flex;
    margin-bottom: 20px;
    margin-right: 25px;
    margin-top: 5px
}

.cms-fancy-box-carousel.layout2 .carousel-item-inner .item-icon i {
    font-size: 80px;
    color: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box-carousel.layout2 .carousel-item-inner .item-icon svg {
    height: 80px;
    width: auto;
    fill: var(--color-primary);
    transition: all 300ms ease 0s
}

.cms-fancy-box-carousel.layout2 .carousel-item-inner .item-content .item-title {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 17px;
    color: #26365e
}

.cms-fancy-box-carousel.layout2 .carousel-item-inner .item-content .item-description {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 15px
}

.cms-fancy-box-carousel.layout2 .carousel-item-inner .item-content .item-button a {
    font-size: 15px;
    font-weight: bold;
    color: var(--color-primary)
}

.cms-fancy-box-carousel.layout2 .carousel-item-inner .item-content .item-button a i {
    margin-left: 5px;
    font-size: 14px
}

.cms-fancy-box-carousel.layout2 .carousel-item-inner .item-content .item-button a:hover {
    color: var(--color-primary)
}

@media screen and (max-width:767px) {
    .cms-fancy-box-carousel.layout2 .carousel-item-inner .item-content br {
        display: none
    }
}

.cms-fancy-box-carousel.layout2 .carousel-item-inner:hover .item-icon i {
    color: var(--color-primary)
}

.cms-fancy-box-carousel.layout2 .carousel-item-inner:hover .item-icon svg {
    fill: var(--color-primary)
}

.cms-image-gallery .cms-grid-inner .grid-item .grid-item-inner {
    overflow: hidden;
    position: relative
}

.cms-image-gallery .cms-grid-inner .grid-item .grid-item-inner .hover-effect img {
    border-radius: 10px
}

.cms-image-gallery .cms-grid-inner .grid-item .grid-item-inner .grid-item-content {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    opacity: 0;
    transition: all 300ms linear 0s
}

.cms-image-gallery .cms-grid-inner .grid-item .grid-item-inner .grid-item-content .up-icon {
    display: inline-block;
    margin: 0 10px
}

.cms-image-gallery .cms-grid-inner .grid-item .grid-item-inner .grid-item-content .up-icon a {
    display: inline-flex;
    width: 62px;
    height: 62px;
    background-color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: relative
}

.cms-image-gallery .cms-grid-inner .grid-item .grid-item-inner .grid-item-content .up-icon a:before {
    content: "";
    display: block;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: rgba(var(--rgb-color-secondary), 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1
}

.cms-image-gallery .cms-grid-inner .grid-item .grid-item-inner .grid-item-content .up-icon i {
    font-size: 30px;
    color: var(--color-secondary)
}

.cms-image-gallery .cms-grid-inner .grid-item .grid-item-inner:hover .grid-item-content {
    visibility: visible;
    opacity: 1
}

.cms-client-list .client-image a {
    text-align: center;
    display: block
}

.cms-client-list .client-image a img {
    display: inline-block;
    max-height: 44px;
    opacity: 0.7;
    transition: all 300ms linear 0s
}

.cms-client-list .client-image a:hover img {
    opacity: 1
}

.cms-client-list .client-image.image-white img {
    filter: brightness(0) invert(1);
    opacity: 1 !important
}

.cms-client-list .slick-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.cms-price-list {
    background-color: #def8f6;
    padding: 33px 40px 30px 40px;
    border-radius: 10px
}

@media screen and (max-width:767px) {
    .cms-price-list {
        padding: 33px 20px 30px 20px
    }
}

.cms-price-list h3.list-title {
    font-size: 19px;
    margin-bottom: 16px
}

.cms-price-list .price-item {
    padding: 11px 0
}

.cms-price-list .price-item .item-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.cms-price-list .price-item .item-inner .item-text {
    font-size: 15px;
    font-weight: bold;
    margin-right: 15px
}

.cms-price-list .price-item .item-inner .item-price {
    display: inline-block;
    padding: 1px 10px;
    background-color: var(--color-primary);
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    font-weight: bold
}

.cms-price-list .price-item+.price-item {
    border-top: 1px solid #dcdee2
}

.cms-doctor-info .info-inner {
    box-shadow: 0 5px 60px 0 rgba(14, 32, 77, 0.15);
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden
}

.cms-doctor-info .bottom-content .content-text {
    padding: 33px 40px 40px;
    position: relative
}

.cms-doctor-info .bottom-content .content-text:after {
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    background-color: var(--color-primary)
}

.cms-doctor-info .bottom-content .content-text .doctor-title {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 7px
}

.cms-doctor-info .bottom-content .content-text .doctor-category {
    font-size: 14px;
    color: var(--color-primary)
}

.cms-doctor-info .bottom-content .content-text .description {
    font-size: 15px;
    line-height: 25px;
    margin-top: 17px;
    margin-bottom: 0
}

.cms-doctor-info .bottom-content .content-social {
    margin-top: 22px
}

.cms-doctor-info .bottom-content .content-social .doctor-social {
    display: flex;
    margin: 0
}

.cms-doctor-info .bottom-content .content-social .doctor-social li {
    display: inline-flex
}

.cms-doctor-info .bottom-content .content-social .doctor-social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px
}

.cms-doctor-info .bottom-content .content-social .doctor-social li a i {
    font-size: 20px;
    color: #fff
}

.cms-doctor-info .bottom-content .content-social .doctor-social li a.doctor-f {
    background-color: #3b5999
}

.cms-doctor-info .bottom-content .content-social .doctor-social li a.doctor-t {
    background-color: #55acee
}

.cms-doctor-info .bottom-content .content-social .doctor-social li a.doctor-i {
    background-color: #3f729b
}

.cms-doctor-info .bottom-content .content-social .doctor-social li a.doctor-e {
    background-color: #21cdc0
}

.cms-doctor-info .bottom-content .content-social .doctor-social li a.doctor-p {
    background-color: var(--e-global-color-accent)
}

.cms-doctor-info .bottom-content .content-social .doctor-social li a:hover {
    transform: translateY(-3px)
}

.cms-team-grid .item-image {
    margin-bottom: 20px;
    position: relative;
    border-radius: 3px
}

.cms-team-grid .item-image img {
    border-radius: 3px;
    width: 100%
}

.cms-team-grid .item-image .item-social {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -10px);
    transition: all 400ms ease 0ms;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.cms-team-grid .item-image .item-social a {
    color: #fff;
    font-size: 16px;
    background-color: var(--color-secondary);
    display: inline-flex;
    height: 50px;
    width: 50px;
    margin: 0;
    align-items: center;
    justify-content: center
}

.cms-team-grid .item-image .item-social a i {
    color: #fff;
    transition: all 300ms ease 0s;
    font-size: 17px
}

.cms-team-grid .item-image .item-social a:hover i {
    transform: translateY(-5px)
}

.cms-team-grid .item-title {
    font-size: 21px;
    color: var(--color-secondary);
    margin-bottom: 7px
}

.cms-team-grid .item-title a {
    color: inherit
}

.cms-team-grid .item-title a:hover {
    color: var(--color-primary)
}

.cms-team-grid .item-position {
    font-size: 14px;
    color: #848e9f
}

.cms-team-grid .item-inner {
    text-align: center;
    margin-bottom: 53px
}

.cms-team-grid .item-inner:hover .item-image:before {
    opacity: 1
}

.cms-team-grid .item-inner:hover .item-social {
    opacity: 1;
    transform: translate(-50%, 0)
}

.cms-pricing-layout1 .pricing-title {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 18px
}

.cms-pricing-layout1 .pricing-description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 42px
}

.cms-pricing-layout1 .cms-pricing-feature {
    font-size: 15px;
    font-weight: bold;
    list-style: none;
    margin: 0
}

.cms-pricing-layout1 .cms-pricing-feature i {
    font-size: 20px;
    color: var(--e-global-color-accent);
    margin-right: 15px;
    position: relative;
    top: 1px
}

.cms-pricing-layout1 .cms-pricing-feature li.item-slashed {
    visibility: hidden
}

.cms-pricing-layout1 .cms-pricing-feature li+li {
    margin-top: 10px
}

.cms-pricing-layout1 .cms-pricing-feature.sl-slash li.item-slashed {
    visibility: visible;
    text-decoration: line-through
}

.cms-pricing-layout1 .bottom-content {
    padding: 33px 20px 40px;
    background-color: #def8f6;
    border-radius: 10px;
    text-align: center;
    margin-top: 45px
}

.cms-pricing-layout1 .bottom-content .pricing-price {
    font-size: 50px;
    color: var(--color-tertiary);
    line-height: 1;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    margin-bottom: 22px
}

.cms-pricing-layout1 .bottom-content .pricing-price>span {
    font-size: 14px
}

@media screen and (max-width:1199px) {
    .cms-pricing-layout1 .bottom-content .pricing-price {
        font-size: 30px
    }
}

.cms-pricing-layout1 .bottom-content .pricing-button .btn {
    line-height: 56px;
    border-radius: 30px;
    padding: 0 30px
}

.cms-pricing-layout1 .cms-pricing-inner {
    padding: 45px 50px 50px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 5px 83px rgba(14, 32, 77, 0.15);
    position: relative
}

.cms-pricing-layout1 .cms-pricing-inner:before {
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50px;
    right: 50px;
    background-color: var(--color-primary);
    transition: all 300ms ease 0s;
    transform: scaleX(0)
}

@media screen and (max-width:1199px) {
    .cms-pricing-layout1 .cms-pricing-inner {
        padding: 45px 30px
    }

    .cms-pricing-layout1 .cms-pricing-inner:before {
        left: 30px;
        right: 30px
    }
}

.cms-pricing-layout1 .cms-pricing-inner:hover:before {
    transform: scaleX(1)
}

.cms-pricing-layout1.style2 .cms-pricing-inner:before {
    background-color: var(--color-primary)
}

.cms-pricing-layout1.style2 .pricing-button a {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #fff
}

.cms-pricing-layout1.style2 .pricing-button a:hover {
    border-color: var(--color-secondary);
    background-color: var(--color-secondary)
}

.cms-download .item--download a {
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3px;
    padding: 23px 23px 23px 30px;
    position: relative
}

.cms-download .item--download a .download-file-type {
    display: inline-block;
    flex: none;
    margin-left: 20px;
    font-size: 8px;
    background-color: #fff;
    width: 22px;
    height: 24px;
    color: var(--color-primary);
    text-align: center;
    line-height: 24px;
    transition: all 300ms linear 0ms;
    text-transform: uppercase
}

.cms-download .item--download a:hover {
    background-color: var(--color-secondary)
}

.cms-download .item--download a:hover:before {
    background-color: var(--color-primary)
}

.cms-download .item--download a:hover .download-file-type {
    color: var(--color-secondary)
}

.cms-download .item--download+.item--download {
    margin-top: 20px
}

.cms-image-carousel.layout1 .cms-image-carousel-inner {
    display: flex;
    align-items: center
}

@media screen and (max-width:767px) {
    .cms-image-carousel.layout1 .cms-image-carousel-inner {
        flex-direction: column-reverse
    }
}

.cms-image-carousel.layout1 .cms-image-carousel-inner .cms-slick-nav-wrap {
    width: 25%;
    flex: none
}

@media screen and (max-width:767px) {
    .cms-image-carousel.layout1 .cms-image-carousel-inner .cms-slick-nav-wrap {
        width: 100%
    }
}

.cms-image-carousel.layout1 .cms-image-carousel-inner .cms-slick-nav-wrap .nav-arrows {
    display: flex
}

.cms-image-carousel.layout1 .cms-image-carousel-inner .cms-slick-nav-wrap .nav-arrows .cms-slick-nav-arrow {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(14, 32, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-right: 18px
}

.cms-image-carousel.layout1 .cms-image-carousel-inner .cms-slick-nav-wrap .slider-counter {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-secondary);
    margin-left: 46px;
    margin-top: 19px
}

.cms-image-carousel.layout1 .cms-image-carousel-inner .cms-slick-primary {
    width: 75%
}

@media screen and (max-width:767px) {
    .cms-image-carousel.layout1 .cms-image-carousel-inner .cms-slick-primary {
        width: 100%
    }
}

.cms-image-carousel.layout1 .cms-image-carousel-inner .item-image {
    position: relative
}

.cms-image-carousel.layout1 .cms-image-carousel-inner .item-image img {
    border-radius: 4px
}

.cms-image-carousel.layout1 .cms-image-carousel-inner .item-image .up-icon {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 300ms ease 0s;
    opacity: 0;
    visibility: hidden
}

.cms-image-carousel.layout1 .cms-image-carousel-inner .item-image .up-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    color: var(--color-secondary)
}

.cms-image-carousel.layout1 .cms-image-carousel-inner .item-image .up-icon a i {
    font-size: 23px
}

.cms-image-carousel.layout1 .cms-image-carousel-inner .item-image:hover .up-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1)
}

.cms-image-carousel.layout2 .cms-slick-carousel .slick-list {
    border-radius: 10px
}

.cms-image-carousel.layout2 .slick-dots {
    margin-top: 15px
}

.cms-image-carousel.layout2 .slick-arrow {
    width: 21px;
    height: 45px;
    background-color: transparent;
    color: transparent;
    border: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 3
}

.cms-image-carousel.layout2 .slick-arrow.slick-prev {
    background-image: url(../images/arrow-left.png);
    left: -58px
}

.cms-image-carousel.layout2 .slick-arrow.slick-next {
    background-image: url(../images/arrow-right.png);
    right: -58px
}

.cms-image-carousel.layout2 .slick-arrow:hover {
    opacity: 0.7 !important
}

.cms-image-box-carousel {
    background-color: var(--e-global-color-accent);
    padding: 30px 50px 50px;
    max-width: 270px;
    border-radius: 0 4px 4px 0;
    display: inline-block;
    position: relative
}

.cms-image-box-carousel .cms-box-inner {
    text-align: left
}

.cms-image-box-carousel .cms-box-inner .box-image {
    margin-bottom: 25px;
    flex: none
}

.cms-image-box-carousel .cms-box-inner .box-image img {
    max-height: 62px
}

.cms-image-box-carousel .cms-box-inner .box-text h4 {
    font-size: 19px;
    line-height: 28px;
    color: #fff;
    font-weight: 600;
    font-style: italic
}

.cms-image-box-carousel.horizontal {
    max-width: 330px;
    padding: 13px 40px 40px;
    border-radius: 4px
}

@media screen and (max-width:767px) {
    .cms-image-box-carousel.horizontal {
        max-width: 290px
    }
}

.cms-image-box-carousel.horizontal .cms-box-inner {
    display: flex
}

@media screen and (max-width:767px) {
    .cms-image-box-carousel.horizontal .cms-box-inner {
        flex-direction: column
    }
}

.cms-image-box-carousel.horizontal .cms-box-inner .box-image {
    margin-top: 10px;
    margin-right: 30px
}

.cms-image-box-carousel .slick-dots {
    justify-content: flex-start;
    margin-top: 23px
}

.cms-image-box-carousel .slick-dots li {
    margin-left: 0;
    margin-right: 10px
}

.cms-image-box-carousel .slick-dots li button {
    background-color: #fff
}

.cms-image-box-carousel .slick-dots li.slick-active button {
    border-color: var(--color-secondary);
    background-color: var(--color-secondary)
}

.cms-image-box-carousel .slick-dots li:before,
.cms-image-box-carousel .slick-dots li:after {
    content: none !important
}

.light-dots .cms-image-box-carousel .slick-dots li button {
    background-color: #a8b2c4
}

.light-dots .cms-image-box-carousel .slick-dots li.slick-active button {
    border-color: var(--color-primary);
    background-color: var(--color-primary)
}

.cms-company-history .content-item {
    display: flex
}

.cms-company-history .content-item .left-content {
    padding-right: 54px;
    position: relative
}

.cms-company-history .content-item .left-content span.dot {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid #dcdee2;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: -11px
}

.cms-company-history .content-item .left-content span.dot:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%
}

.cms-company-history .content-item .left-content:after {
    content: "";
    display: block;
    width: 2px;
    background-color: #dcdee2;
    position: absolute;
    top: 26px;
    right: 0;
    bottom: -3px
}

.cms-company-history .content-item .left-content .timeline-year {
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    padding: 5px 15px 5px 30px;
    background-color: #273a69;
    color: #fff;
    border-radius: 5px 3px 3px 5px;
    position: relative;
    white-space: nowrap
}

.cms-company-history .content-item .left-content .timeline-year:before {
    position: absolute;
    content: "";
    display: block;
    height: 8px;
    width: 8px;
    top: 49%;
    left: 12px;
    background-color: #fff;
    border-radius: 50%;
    transform: translateY(-50%)
}

.cms-company-history .content-item .left-content .timeline-year:after {
    content: "";
    display: block;
    width: 12px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -11px;
    background-color: #273a69;
    clip-path: polygon(0 0, 12px 50%, 0 100%)
}

.cms-company-history .content-item .right-content {
    padding-left: 40px
}

.cms-company-history .content-item .right-content .timeline-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 18px
}

.cms-company-history .content-item .right-content .timeline-text {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 45px
}

.cms-company-history .content-item:last-child .right-content .timeline-text {
    margin-bottom: 0
}

.cms-company-history .content-item:last-child .left-content:after {
    bottom: 7px
}

@media screen and (max-width:767px) {
    .cms-company-history .content-item {
        flex-direction: column
    }

    .cms-company-history .content-item span.dot,
    .cms-company-history .content-item .left-content:after {
        display: none !important
    }

    .cms-company-history .content-item .right-content {
        padding-left: 0;
        margin-top: 15px
    }
}

.cms-doctor-contact {
    padding: 0 30px 22px;
    border: 1px solid #e6e8eb;
    border-radius: 4px
}

@media screen and (max-width:767px) {
    .cms-doctor-contact {
        padding: 0 20px 22px
    }
}

.cms-doctor-contact .top-info {
    display: flex;
    align-items: flex-end;
    margin-top: -40px
}

.cms-doctor-contact .top-info .doctor-avatar {
    flex: none;
    margin-right: 30px
}

@media screen and (max-width:767px) {
    .cms-doctor-contact .top-info .doctor-avatar {
        margin-right: 20px
    }
}

.cms-doctor-contact .top-info .doctor-avatar img {
    max-width: 80px;
    height: 108px;
    border-radius: 4px
}

.cms-doctor-contact .top-info .doctor-name {
    margin-bottom: -7px
}

.cms-doctor-contact .top-info .doctor-name h4 {
    font-size: 17px;
    font-weight: 600
}

.cms-doctor-contact .top-info .doctor-name .doctor-position {
    font-size: 13px;
    color: var(--color-primary)
}

.cms-doctor-contact .bottom-info {
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid #e6e8eb
}

.cms-doctor-contact .bottom-info .info-item {
    font-size: 15px
}

.cms-doctor-contact .bottom-info .info-item .info-label {
    font-weight: bold;
    color: var(--color-secondary)
}

.cms-doctor-contact .bottom-info .info-item .info-text {
    color: #848e9f
}

.elementor-icon-box-icon .elementor-icon,
.elementor-widget-icon .elementor-icon {
    padding-top: 5px
}

.site-content .elementor-widget-icon-box .elementor-icon-box-content .elementor-icon-box-title {
    font-family: "Quicksand", sans-serif
}

.line-before .cms-heading-wrapper .custom-heading:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    top: 0.75em;
    left: -50px
}

@media screen and (max-width:1300px) {
    .line-before .cms-heading-wrapper .custom-heading:before {
        position: relative;
        left: 0;
        top: -0.3em;
        margin-right: 20px
    }
}

@media screen and (max-width:767px) {
    .line-before .cms-heading-wrapper .custom-heading:before {
        display: none
    }
}

table.tt_timetable {
    font-family: "Roboto", sans-serif
}

table.tt_timetable th {
    font-weight: bold !important;
    padding: 17px 15px
}

table.tt_timetable .event hr {
    background: #FFFFFF;
    height: 2px;
    opacity: 1
}

.tabs_box_navigation_selected {
    border-width: 2px !important;
    border-color: #e6e8eb !important;
    background-color: transparent !important;
    color: var(--color-secondary) !important;
    border-radius: 4px
}

.tabs_box_navigation_selected .tabs_box_navigation_icon {
    position: relative;
    background: none !important;
    margin-top: 0
}

.tabs_box_navigation_selected .tabs_box_navigation_icon:after {
    content: "";
    font-family: "font awesome 5 pro";
    color: var(--color-secondary);
    font-size: 18px;
    font-weight: bold
}

.tabs_box_navigation_selected label {
    font-size: 14px !important
}

.tabs_box_navigation_selected .sub-menu {
    border-width: 2px !important;
    border-color: #e6e8eb !important;
    left: -2px !important
}

.tabs_box_navigation_selected .sub-menu a {
    font-size: 14px !important
}

.tt_navigation_cell {
    margin-bottom: 50px !important
}

.tt_timetable .event a,
.tt_timetable .event .event_header {
    font-family: "Quicksand", sans-serif;
    font-weight: bold
}

.tt_timetable .event_container {
    padding: 27px 10px;
    border-radius: 10px
}

.tt_timetable th,
.tt_timetable td {
    font-weight: bold;
    color: #848e9f;
    border-radius: 10px
}

.cms-eheading-1 .cms-simg {
    max-width: 134px
}

.cms-heading-features2 .cms-list {
    padding-bottom: 10px
}

[class^="cms--emenu-"] {
    margin: 0
}

.cms--emenu-2 {
    font-size: 14px
}

.cms--emenu-2 li:not(:last-child) {
    padding-bottom: 10px
}

.cms--emenu-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px
}

.cms-eqc-item:not(:last-child) {
    padding-bottom: 8px
}

.cms-eqc-2:before,
.cms-eqc-3:before,
.cms-eqc-4:before {
    content: "";
    width: 2px;
    background-color: var(--color-accent);
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0
}

[dir="rtl"] .cms-eqc-2:before,
[dir="rtl"] .cms-eqc-3:before,
[dir="rtl"] .cms-eqc-4:before {
    left: auto;
    right: 0
}

.cms-eqc-2 .cms-eqc-item:not(:last-child),
.cms-eqc-3 .cms-eqc-item:not(:last-child),
.cms-eqc-4 .cms-eqc-item:not(:last-child) {
    padding-bottom: 15px
}

.cms-eqc-2 .cms-qc-bg-icon,
.cms-eqc-3 .cms-qc-bg-icon,
.cms-eqc-4 .cms-qc-bg-icon {
    transform: rotate(-25deg);
    opacity: 0.05;
    margin-inline-end: -30px;
    margin-block-end: -12px
}

.cms-slider--content {
    max-width: var(--cms-slider--content-w, 840px)
}

.cms-slider-desc {
    max-width: var(--cms-slider-desc-w, 560px)
}

.cms-ttmn-img {
    position: relative
}

.cms-ttmn-img>.icon-quote {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 33px;
    height: 33px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.25)
}

.cms-play-text2 {
    width: 400px
}

@media (max-width:480px) {
    .cms-play-text2 {
        width: 100vw
    }
}

.cms-evideo-1>img {
    min-height: 320px
}

.sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 30px
}

.admin-bar .sidebar-sticky {
    top: 60px
}

.header-sticky .sidebar-sticky {
    top: 110px
}

.admin-bar.header-sticky .sidebar-sticky {
    top: 140px
}

.entry-content .page-links {
    clear: left;
    padding-top: 10px
}

.entry-content .page-links span {
    text-align: center;
    display: inline-block;
    height: 26px;
    width: 26px;
    line-height: 26px;
    color: #fff;
    border-radius: 26px;
    background-color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    margin: 0 3px;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s
}

.entry-content .page-links a span {
    background-color: #e0e3e8;
    color: #000
}

.entry-content .page-links a span:hover {
    background-color: var(--color-primary);
    color: #fff
}

.entry-content .page-links .post-page-numbers {
    margin: 0 3px
}

.entry-content .page-links .post-page-numbers span {
    margin: 0
}

@media screen and (min-width:1400px) {
    body .container {
        max-width: 1200px;
        width: 100%
    }

    body #primary.content-has-sidebar {
        -ms-flex: 0 0 68.3%;
        flex: 0 0 68.3%;
        max-width: 68.3%
    }

    body #primary.content-has-sidebar.float-left+#secondary {
        padding-left: 35px
    }

    body #primary.content-has-sidebar.float-right+#secondary {
        padding-right: 35px
    }

    body #secondary.widget-has-sidebar {
        -ms-flex: 0 0 31.7%;
        flex: 0 0 31.7%;
        max-width: 31.7%
    }
}

@media screen and (max-width:1199px) {
    body .container {
        max-width: 100%
    }
}

@media screen and (max-width:991px) {
    #primary+#secondary {
        margin-top: 60px
    }
}

.site-content {
    padding: 110px 0;
    position: relative
}

@media screen and (max-width:991px) {
    .site-content {
        overflow: hidden
    }
}

.layout-container {
    background-color: #fcfcfc;
    padding-bottom: 55px
}

.widget .widget-content ul:not(.entry-meta) {
    margin: 0;
    list-style: none
}

.page-template-default .entry-footer {
    text-align: center
}

.page-template-default .entry-footer i {
    padding-right: 8px
}

@media screen and (min-width:992px) {
    .content-has-sidebar.float-right {
        order: 2;
        -webkit-order: 2;
        -ms-order: 2
    }

    .content-has-sidebar.float-right+#secondary {
        order: 1;
        -webkit-order: 1;
        -ms-order: 1
    }
}

.widget_shopping_cart {
    position: absolute;
    background-color: #fff;
    right: 0;
    top: 100%;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12);
    width: 320px;
    padding: 30px;
    transition: all 300ms linear 0ms;
    text-align: left;
    color: #848e9f;
    z-index: -99;
    visibility: hidden;
    opacity: 0;
    margin-top: 32px;
    line-height: normal
}

.widget_shopping_cart.open {
    z-index: 99;
    margin-top: 11px;
    visibility: visible;
    opacity: 1;
    margin-top: 0
}

.widget_shopping_cart:before {
    content: "";
    width: 21px;
    height: 11px;
    position: absolute;
    top: -11px;
    left: 0;
    right: 0;
    margin: auto
}

.widget_shopping_cart .widget_shopping_title {
    font-size: 20px;
    border-bottom: 1px solid #ebebeb;
    line-height: 1;
    padding-bottom: 20px;
    margin-bottom: 30px;
    color: #1d274e
}

.widget_shopping_cart .product_list_widget {
    list-style: none;
    margin: 0
}

.widget_shopping_cart .product_list_widget li {
    display: flex;
    flex-wrap: nowrap;
    padding-left: 0 !important;
    padding-right: 40px !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #e6e8eb;
    position: relative
}

.widget_shopping_cart .product_list_widget li.empty {
    font-size: 16px
}

.widget_shopping_cart .product_list_widget li a {
    white-space: inherit !important
}

.widget_shopping_cart .product_list_widget .cart-product-image {
    width: 70px;
    min-width: 70px;
    margin-right: 20px
}

.widget_shopping_cart .product_list_widget .cart-product-image img {
    float: none;
    margin: 0;
    width: 100%
}

.widget_shopping_cart .product_list_widget .cart-product-meta h3 {
    font-size: 16px;
    line-height: 27px;
    margin-top: -5px;
    margin-bottom: 4px
}

.widget_shopping_cart .product_list_widget .cart-product-meta h3 a {
    display: block;
    color: inherit;
    font-weight: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%
}

.widget_shopping_cart .product_list_widget .cart-product-meta h3 a:hover {
    color: var(--color-primary)
}

.widget_shopping_cart .product_list_widget .cart-product-meta .quantity {
    font-size: 13px;
    color: #848e9f;
    border: none;
    font-family: "Quicksand", sans-serif
}

.widget_shopping_cart .product_list_widget .cart-product-meta .remove_from_cart_button {
    font-size: 10px;
    color: #fff;
    position: absolute;
    width: 19px;
    height: 19px;
    line-height: 19px;
    text-align: center;
    top: 0;
    right: 0;
    background-color: #222222;
    border-radius: 1px
}

.widget_shopping_cart .product_list_widget .cart-product-meta .remove_from_cart_button:hover {
    background-color: var(--color-primary);
    color: #fff
}

.widget_shopping_cart .widget_shopping_cart_footer {
    border-top: 2px solid #f2f2f2;
    margin-top: 30px;
    padding-top: 20px
}

.widget_shopping_cart .widget_shopping_cart_footer .total {
    margin-bottom: 18px;
    padding-top: 0;
    border: none
}

.widget_shopping_cart .widget_shopping_cart_footer .total strong {
    font-size: 16px;
    color: #848e9f;
    font-family: "Quicksand", sans-serif;
    font-weight: normal;
    line-height: 28px
}

.widget_shopping_cart .widget_shopping_cart_footer .total span.amount {
    color: var(--color-primary);
    float: right;
    font-size: 14px;
    line-height: 28px;
    font-family: "Quicksand", sans-serif
}

.widget_shopping_cart .widget_shopping_cart_footer .buttons {
    margin-bottom: 0;
    display: flex;
    flex-wrap: nowrap;
    margin-left: -15px;
    margin-right: -15px
}

.widget_shopping_cart .widget_shopping_cart_footer .buttons .btn {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 15px;
    width: 50%;
    line-height: 40px
}

.widget_shopping_cart .widget_shopping_cart_footer .buttons .btn.checkout {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary)
}

.widget_shopping_cart .widget_shopping_cart_footer .buttons .btn.checkout:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

.entry-content>.woocommerce .cart-empty,
.entry-content>.woocommerce .return-to-shop {
    text-align: center
}

body.woocommerce ins,
body.woocommerce-page ins,
.cms-product-grid.woocommerce ins {
    background-color: transparent
}

body.woocommerce #secondary .widget,
body.woocommerce-page #secondary .widget,
.cms-product-grid.woocommerce #secondary .widget {
    padding: 0;
    background-color: transparent;
    margin-bottom: 48px
}

body.woocommerce #secondary .widget:last-child,
body.woocommerce-page #secondary .widget:last-child,
.cms-product-grid.woocommerce #secondary .widget:last-child {
    margin-bottom: 0
}

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

    body.woocommerce .coupon #coupon_code,
    body.woocommerce-page .coupon #coupon_code,
    .cms-product-grid.woocommerce .coupon #coupon_code {
        width: 100% !important;
        margin-bottom: 10px
    }

    body.woocommerce .coupon .button,
    body.woocommerce-page .coupon .button,
    .cms-product-grid.woocommerce .coupon .button {
        width: 100% !important
    }
}

body.woocommerce form .form-row,
body.woocommerce-page form .form-row,
.cms-product-grid.woocommerce form .form-row {
    padding: 0 0 10px
}

body.woocommerce table.cart td.actions .coupon .input-text,
body.woocommerce-page table.cart td.actions .coupon .input-text,
.cms-product-grid.woocommerce table.cart td.actions .coupon .input-text {
    margin-right: 15px
}

body.woocommerce #respond input#submit,
body.woocommerce a.button,
body.woocommerce a.wc-forward,
body.woocommerce button.button,
body.woocommerce input.button,
body.woocommerce .cart button.button,
body.woocommerce a.button.alt,
body.woocommerce-page #respond input#submit,
body.woocommerce-page a.button,
body.woocommerce-page a.wc-forward,
body.woocommerce-page button.button,
body.woocommerce-page input.button,
body.woocommerce-page .cart button.button,
body.woocommerce-page a.button.alt,
.cms-product-grid.woocommerce #respond input#submit,
.cms-product-grid.woocommerce a.button,
.cms-product-grid.woocommerce a.wc-forward,
.cms-product-grid.woocommerce button.button,
.cms-product-grid.woocommerce input.button,
.cms-product-grid.woocommerce .cart button.button,
.cms-product-grid.woocommerce a.button.alt {
    background-color: #283b6a;
    font-size: 14px;
    border: none;
    color: #fff;
    text-transform: capitalize;
    font-family: "Quicksand", sans-serif;
    padding: 0 44px;
    line-height: 51px;
    transition: all 300ms linear 0ms;
    border-radius: 25px;
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    font-weight: 700
}

body.woocommerce #respond input#submit:hover,
body.woocommerce #respond input#submit:focus,
body.woocommerce #respond input#submit:active,
body.woocommerce a.button:hover,
body.woocommerce a.button:focus,
body.woocommerce a.button:active,
body.woocommerce a.wc-forward:hover,
body.woocommerce a.wc-forward:focus,
body.woocommerce a.wc-forward:active,
body.woocommerce button.button:hover,
body.woocommerce button.button:focus,
body.woocommerce button.button:active,
body.woocommerce input.button:hover,
body.woocommerce input.button:focus,
body.woocommerce input.button:active,
body.woocommerce .cart button.button:hover,
body.woocommerce .cart button.button:focus,
body.woocommerce .cart button.button:active,
body.woocommerce a.button.alt:hover,
body.woocommerce a.button.alt:focus,
body.woocommerce a.button.alt:active,
body.woocommerce-page #respond input#submit:hover,
body.woocommerce-page #respond input#submit:focus,
body.woocommerce-page #respond input#submit:active,
body.woocommerce-page a.button:hover,
body.woocommerce-page a.button:focus,
body.woocommerce-page a.button:active,
body.woocommerce-page a.wc-forward:hover,
body.woocommerce-page a.wc-forward:focus,
body.woocommerce-page a.wc-forward:active,
body.woocommerce-page button.button:hover,
body.woocommerce-page button.button:focus,
body.woocommerce-page button.button:active,
body.woocommerce-page input.button:hover,
body.woocommerce-page input.button:focus,
body.woocommerce-page input.button:active,
body.woocommerce-page .cart button.button:hover,
body.woocommerce-page .cart button.button:focus,
body.woocommerce-page .cart button.button:active,
body.woocommerce-page a.button.alt:hover,
body.woocommerce-page a.button.alt:focus,
body.woocommerce-page a.button.alt:active,
.cms-product-grid.woocommerce #respond input#submit:hover,
.cms-product-grid.woocommerce #respond input#submit:focus,
.cms-product-grid.woocommerce #respond input#submit:active,
.cms-product-grid.woocommerce a.button:hover,
.cms-product-grid.woocommerce a.button:focus,
.cms-product-grid.woocommerce a.button:active,
.cms-product-grid.woocommerce a.wc-forward:hover,
.cms-product-grid.woocommerce a.wc-forward:focus,
.cms-product-grid.woocommerce a.wc-forward:active,
.cms-product-grid.woocommerce button.button:hover,
.cms-product-grid.woocommerce button.button:focus,
.cms-product-grid.woocommerce button.button:active,
.cms-product-grid.woocommerce input.button:hover,
.cms-product-grid.woocommerce input.button:focus,
.cms-product-grid.woocommerce input.button:active,
.cms-product-grid.woocommerce .cart button.button:hover,
.cms-product-grid.woocommerce .cart button.button:focus,
.cms-product-grid.woocommerce .cart button.button:active,
.cms-product-grid.woocommerce a.button.alt:hover,
.cms-product-grid.woocommerce a.button.alt:focus,
.cms-product-grid.woocommerce a.button.alt:active {
    box-shadow: none;
    outline: medium none;
    text-decoration: none;
    color: #fff;
    background-color: var(--color-primary)
}

body.woocommerce ins,
body.woocommerce-page ins,
.cms-product-grid.woocommerce ins {
    color: inherit;
    background-color: transparent
}

.cms-product-grid.woocommerce .grid-item-inner {
    margin-bottom: 30px
}

.cms-product-grid.woocommerce .woocommerce-product-holder {
    text-align: center
}

.cms-product-grid.woocommerce .posts-pagination .posts-page-links,
.cms-product-grid.woocommerce .cms-load-more {
    margin-top: 40px
}

.cms-product-grid.woocommerce .grid-filter-wrap {
    margin-bottom: 40px
}

.cms-product-grid.woocommerce span.onsale {
    right: 20px !important
}

.cms-product-grid.woocommerce .price {
    font-size: 19px;
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 0
}

.cms-product-grid.woocommerce .price del {
    color: #848e9f
}

.cms-product-grid.woocommerce .price ins {
    padding: 0;
    font-weight: inherit;
    background-color: transparent
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
    border-color: transparent;
    background-color: #def8f6;
    color: #26365e;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    padding: 2em 2em 1em 3.5em;
    border-radius: 10px
}

.woocommerce .woocommerce-message:before,
.woocommerce .woocommerce-info:before {
    color: var(--color-primary);
    top: 2em
}

.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-info .button {
    position: relative;
    bottom: 0.7em
}

.woocommerce .quantity {
    position: relative;
    display: inline-block
}

.woocommerce .quantity .qty {
    padding: 0 24px 0 0;
    border: 2px solid #e6e8eb;
    border-radius: 10px;
    -moz-appearance: textfield;
    height: 52px;
    width: 76px;
    font-size: 20px;
    color: #26365e;
    font-weight: 700
}

.woocommerce .quantity .qty:-webkit-outer-spin-button,
.woocommerce .quantity .qty:-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.woocommerce .quantity-icon i {
    right: 0;
    width: 26px;
    height: 27px;
    border: 2px solid #e6e8eb;
    color: #26365e;
    font-size: 10px;
    line-height: 23px;
    text-align: center;
    position: absolute;
    cursor: pointer
}

.woocommerce .quantity-icon i.quantity-up {
    top: 0;
    border-radius: 0 10px 0 0
}

.woocommerce .quantity-icon i.quantity-down {
    bottom: 0;
    border-radius: 0 0 10px 0
}

.woocommerce table.shop_table {
    margin-bottom: 55px
}

.woocommerce table.shop_table td {
    padding: 30px 15px
}

.woocommerce table.shop_table td.product-remove {
    padding-inline-end: 5px;
    width: 40px
}

.woocommerce table.shop_table td.actions {
    padding: 30px 20px
}

.woocommerce table.shop_table tr {
    border-bottom: 1px solid #e6e8eb
}

.woocommerce-page #add_payment_method table.cart img,
.woocommerce-page.woocommerce-cart table.cart img,
.woocommerce-page.woocommerce-checkout table.cart img {
    width: 50px
}

.woocommerce form .select2-container--default,
.woocommerce-page form .select2-container--default {
    width: 100% !important
}

.woocommerce form .select2-container--default .select2-selection,
.woocommerce-page form .select2-container--default .select2-selection {
    border: 1px solid #e9e9e9;
    height: 60px;
    background-color: #fff;
    margin-bottom: 0;
    border-radius: 30px
}

.woocommerce form .select2-container--default .select2-selection .select2-selection__rendered,
.woocommerce-page form .select2-container--default .select2-selection .select2-selection__rendered {
    line-height: 58px;
    padding-left: 20px;
    color: #848e9f
}

.woocommerce form .select2-container--default .select2-selection .select2-selection__arrow,
.woocommerce-page form .select2-container--default .select2-selection .select2-selection__arrow {
    right: 20px;
    top: 50%;
    color: #848e9f
}

.woocommerce form .select2-container--default .select2-selection .select2-selection__clear,
.woocommerce-page form .select2-container--default .select2-selection .select2-selection__clear {
    height: 20px;
    line-height: 20px;
    position: absolute;
    right: 30px;
    text-align: center;
    top: 50%;
    transform: translate(0px, -50%);
    width: 20px;
    color: #747da1
}

.woocommerce form .select2-container--default .select2-selection .select2-selection__placeholder,
.woocommerce-page form .select2-container--default .select2-selection .select2-selection__placeholder {
    color: #747da1
}

.woocommerce .select2-container.select2-container--open .select2-dropdown,
.woocommerce-page .select2-container.select2-container--open .select2-dropdown {
    border-color: #e7e8e9
}

.woocommerce .select2-container.select2-container--open .select2-dropdown .select2-search__field,
.woocommerce-page .select2-container.select2-container--open .select2-dropdown .select2-search__field {
    border: 1px solid #e7e8e9;
    padding-left: 15px;
    padding-right: 15px
}

.woocommerce .select2-container.select2-container--open .select2-results li.select2-results__option--highlighted,
.woocommerce-page .select2-container.select2-container--open .select2-results li.select2-results__option--highlighted {
    background-color: var(--color-primary)
}

.woocommerce .select2 .select2-selection--single,
.woocommerce-page .select2 .select2-selection--single {
    border-radius: 0px;
    background-color: #f7f7f7
}

@media screen and (min-width:992px) {
    .woocommerce #primary.content-has-sidebar {
        flex: 0 0 75%;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        -o-flex: 0 0 75%;
        max-width: 75%
    }

    .woocommerce #secondary.widget-has-sidebar {
        flex: 0 0 25%;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        -o-flex: 0 0 25%;
        max-width: 25%
    }
}

#shop-newsletter {
    text-align: center;
    padding: 40px 30px 30px 30px;
    color: rgba(255, 255, 255, 0.87);
    border-radius: 14px;
    margin-top: 60px
}

#shop-newsletter h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 13px
}

#shop-newsletter .shop-newsletter-introduction {
    color: #fff;
    text-transform: uppercase
}

#shop-newsletter .shop-newsletter-introduction,
#shop-newsletter .shop-newsletter-desc {
    max-width: 590px;
    margin: auto
}

#shop-newsletter .ct-newsletter-inner {
    margin-top: 33px;
    margin-bottom: 18px
}

#shop-newsletter .ct-newsletter-inner .tnp-email {
    background-color: #fff;
    color: rgba(0, 0, 0, 0.33)
}

#shop-newsletter .ct-newsletter-inner .tnp-field-button {
    position: absolute;
    top: 0;
    right: 0
}

.woocommerce #secondary .widget:before {
    content: none
}

.widget_product_categories ul {
    list-style: none;
    margin-bottom: 0
}

.widget_product_categories ul li {
    font-size: 0;
    line-height: 0
}

.widget_product_categories ul li a {
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    display: block;
    position: relative;
    margin-bottom: 13px;
    color: var(--color-primary)
}

.widget_product_categories ul li.current-cat>a,
.widget_product_categories ul li.current-cat-parent>a,
.widget_product_categories ul li>a:hover {
    color: var(--color-primary)
}

.widget_product_categories ul li:last-child>a {
    border-bottom: none
}

.widget_product_categories ul li.current-menu-item>a,
.widget_product_categories ul li.current-cat>a,
.widget_product_categories ul li.current-cat-parent>a,
.widget_product_categories ul li>a:hover {
    color: var(--color-primary)
}

.widget_product_search input[type="search"] {
    background-color: transparent;
    border: 1px solid #e6e8eb
}

.widget_product_search .woocommerce-product-search {
    position: relative
}

.widget_product_search .woocommerce-product-search:before {
    content: "";
    font-family: FontAwesome;
    font-size: 18px;
    color: var(--color-primary);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 20px
}

.widget_product_search button {
    border: none;
    background-color: transparent;
    padding: 0;
    height: 60px;
    line-height: 60px;
    width: 60px;
    font-size: 18px;
    color: var(--color-secondary);
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: 99
}

.widget_product_tag_cloud .tagcloud a {
    padding-left: 10px;
    padding-right: 10px
}

.woocommerce #secondary .widget_price_filter .widget-title {
    margin-bottom: 22px
}

.woocommerce #secondary .widget_price_filter .widget-content-inner {
    padding-top: 30px
}

.woocommerce #secondary .widget_price_filter .ui-slider-horizontal {
    height: 4px;
    background-color: #e5e8ed;
    border-radius: 3px;
    margin: 0
}

.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-range {
    background-color: var(--color-primary);
    border-radius: 0px
}

.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-handle {
    height: 10px;
    width: 10px;
    background-color: var(--color-primary);
    top: -3px;
    border-radius: 4px;
    margin: 0
}

.woocommerce #secondary .widget_price_filter .ui-slider .ui-slider-handle+.ui-slider-handle {
    margin-left: -2px
}

.woocommerce #secondary .widget_price_filter .price_slider_amount {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    padding-top: 25px
}

.woocommerce #secondary .widget_price_filter .price_slider_amount .price_label {
    text-align: left;
    font-size: 14px;
    line-height: 1;
    flex-grow: 1
}

.woocommerce #secondary .widget_price_filter .price_slider_amount .button {
    float: none;
    max-width: 110px;
    border: none;
    border-radius: 0px;
    background-color: transparent;
    color: var(--color-secondary);
    line-height: 1;
    padding: 0;
    font-weight: 700;
    font-size: 14px;
    text-transform: capitalize
}

body .widget_products ul.product_list_widget li {
    display: flex;
    flex-wrap: nowrap
}

body .widget_products ul.product_list_widget li+li {
    margin-top: 22px
}

body .widget_products ul.product_list_widget li .product-title {
    font-size: 16px;
    line-height: 23px;
    font-weight: bold;
    margin-bottom: 0;
    color: #26365e
}

body .widget_products ul.product_list_widget li .product-title a {
    color: inherit
}

body .widget_products ul.product_list_widget li .product-title a:hover {
    color: var(--color-primary)
}

body .widget_products ul.product_list_widget li .amount {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: bold
}

body .widget_products ul.product_list_widget li del {
    color: var(--color-primary)
}

body .widget_products ul.product_list_widget li del .amount {
    color: inherit
}

body .widget_products ul.product_list_widget li .star-rating-wrap {
    display: none;
    margin-bottom: 6px !important
}

body .widget_products ul.product_list_widget li .star-rating-wrap .count-rating {
    display: none
}

body .widget_products ul.product_list_widget li .wg-product-image {
    width: 60px;
    margin-right: 20px;
    min-width: 60px
}

body .widget_products ul.product_list_widget li .wg-product-image img {
    float: none;
    width: 100%;
    margin: 0;
    border-radius: 4px
}

.widget_rating_filter .wc-layered-nav-rating a {
    font-size: 0px;
    display: block;
    padding-left: 28px !important;
    position: relative
}

.widget_rating_filter .wc-layered-nav-rating a:before {
    content: "";
    height: 18px;
    width: 18px;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    position: absolute;
    top: 1px;
    left: 0;
    transition: all 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0s
}

.widget_rating_filter .wc-layered-nav-rating a .star-rating {
    font-size: 18px
}

.widget_rating_filter .wc-layered-nav-rating a:hover:before {
    border-color: var(--color-primary);
    background-color: var(--color-primary)
}

.widget_rating_filter .wc-layered-nav-rating.chosen a:before {
    border-color: var(--color-primary);
    background-color: var(--color-primary)
}

#shop-topbar {
    border-bottom: 1px solid #e5e5e5;
    background-color: #f7f7f7
}

#shop-topbar .shop-topbar-item {
    margin: 11px 0;
    position: relative;
    padding-left: 76px;
    color: #000000;
    font-size: 16px;
    min-height: 56px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center
}

#shop-topbar .shop-topbar-item i {
    height: 56px;
    width: 56px;
    border-radius: 56px;
    border: 1px solid #e5e5e5;
    line-height: 54px;
    text-align: center;
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 0
}

#shop-topbar .shop-topbar-item span {
    font-weight: 500
}

#shop-breadcrumb {
    padding: 23px 0
}

#shop-breadcrumb ul {
    list-style: none;
    margin: 0
}

#shop-breadcrumb ul li {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 10px 0;
    padding: 0 12px;
    position: relative
}

#shop-breadcrumb ul li::after {
    content: "/";
    color: #e9e9e9;
    position: absolute;
    top: 0;
    right: -4px
}

#shop-breadcrumb ul li:first-child {
    padding-left: 0
}

#shop-breadcrumb ul li:last-child:after {
    display: none
}

#shop-breadcrumb ul li a {
    color: #054c8b
}

#shop-breadcrumb ul li a:hover {
    color: var(--color-primary)
}

.woocommerce .star-rating-wrap {
    display: flex;
    align-items: center;
    flex-wrap: nowrap
}

.woocommerce .star-rating-wrap .star-rating {
    margin: 0
}

.woocommerce .star-rating-wrap .count-rating {
    font-size: 14px;
    margin-left: 8px;
    color: #808a98
}

.woocommerce .woocommerce-product-category a {
    font-size: 12px;
    color: #848e9f;
    margin-bottom: 8px;
    display: inline-block
}

.woocommerce .woocommerce-product-category a:hover {
    color: var(--color-primary)
}

.woocommerce span.onsale {
    height: 30px;
    width: 60px;
    min-width: inherit;
    min-height: inherit;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    padding: 0;
    text-align: center;
    line-height: 30px;
    background-color: var(--e-global-color-accent);
    border-radius: 3px;
    margin: 0 !important;
    left: auto;
    top: 20px !important;
    right: 35px !important;
    z-index: 1
}

.woocommerce .star-rating {
    margin: 0;
    letter-spacing: 0.2em;
    width: 90px;
    height: 18px
}

.woocommerce .star-rating span::before,
.woocommerce .star-rating:before {
    content: "";
    font-family: "Material-Design-Iconic-Font";
    font-size: 18px
}

.woocommerce .star-rating span::before {
    color: var(--color-primary)
}

.woocommerce .star-rating:before {
    color: #848e9f
}

.woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px
}

.woocommerce ul.products li.product {
    margin-bottom: 47px;
    margin-right: 0;
    padding: 0 15px
}

.woocommerce ul.products li.product.last {
    margin-right: 0
}

@media screen and (min-width:992px) {
    .woocommerce ul.products.columns-4 li.product {
        width: 25%
    }
}

@media screen and (min-width:768px) {
    .woocommerce ul.products.columns-3 li.product {
        width: 33.33%
    }
}

@media (min-width:576px) and (max-width:767px) {
    .woocommerce ul.products li.product {
        width: 50% !important
    }
}

@media screen and (max-width:575px) {
    .woocommerce ul.products li.product {
        width: 100% !important
    }
}

@media screen and (min-width:992px) {
    .woocommerce #primary.content-has-sidebar ul.products.columns-4 li.product {
        width: 33.33%
    }
}

.woocommerce ul.products li.product .woocommerce-product-title,
.woocommerce .woocommerce-product-title {
    font-family: "Quicksand", sans-serif;
    font-size: 21px;
    font-weight: bold
}

.woocommerce ul.products li.product .woocommerce-product-title a,
.woocommerce .woocommerce-product-title a {
    color: inherit
}

.woocommerce ul.products li.product .woocommerce-product-title a:hover,
.woocommerce .woocommerce-product-title a:hover {
    color: var(--color-primary)
}

.woocommerce ul.products li.product .price {
    font-size: 19px;
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 0
}

.woocommerce ul.products li.product .price del {
    color: #848e9f
}

.woocommerce ul.products li.product .price ins {
    padding: 0;
    font-weight: inherit;
    background-color: transparent
}

.woocommerce .woocommerce-topbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    z-index: 99
}

.woocommerce .woocommerce-topbar div.woocommerce-result-count {
    flex-grow: 1;
    color: #848e9f;
    font-size: 14px;
    font-weight: 700
}

.woocommerce .woocommerce-topbar .woocommerce-result-count,
.woocommerce .woocommerce-topbar .woocommerce-topbar-ordering .woocommerce-ordering {
    float: none;
    margin: 0
}

.woocommerce .woocommerce-topbar .woocommerce-ordering {
    min-width: 220px
}

.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select {
    padding-left: 25px
}

.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select:after {
    right: 20px;
    color: var(--color-secondary);
    font-size: 18px
}

.woocommerce .woocommerce-topbar .woocommerce-ordering .nice-select .list {
    color: #848e9f
}

.woocommerce .woocommerce-product-inner {
    overflow: hidden;
    border-radius: 10px;
    transition: all 300ms linear 0s
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header {
    position: relative;
    overflow: hidden;
    border-radius: 10px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header img {
    width: auto;
    display: inline-block;
    margin-bottom: 0 !important
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    transition: all 300ms linear 0ms;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 40px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a {
    line-height: 60px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    padding: 0 40px;
    margin: 0
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a:before {
    content: "";
    font-family: "font awesome 5 pro";
    margin-right: 5px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.added {
    display: none
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.wc-forward {
    padding-top: 0;
    padding-bottom: 0
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.loading {
    opacity: 1
}

.woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a.loading:after {
    letter-spacing: 0;
    top: 0;
    right: 15px
}

@media screen and (max-width:1199px) {
    .woocommerce .woocommerce-product-inner .woocommerce-product-header .woocommerce-product-meta .woocommerce-add-to-cart a {
        padding-left: 32px;
        padding-right: 32px;
        line-height: 48px;
        letter-spacing: 0.05em
    }
}

.woocommerce .woocommerce-product-inner:hover {
    box-shadow: 0 5px 83px 0 rgba(var(--rgb-color-secondary), 0.15)
}

.woocommerce .woocommerce-product-inner:hover .woocommerce-product-header .woocommerce-product-meta {
    opacity: 1
}

.woocommerce .woocommerce-product-inner .woocommerce-product-holder {
    padding: 23px 0 27px;
    text-align: center;
    transition: all 300ms linear 0s
}

@media screen and (max-width:1199px) {
    .woocommerce .woocommerce-product-inner .woocommerce-product-holder {
        display: block
    }
}

.woocommerce .woocommerce-product-inner .woocommerce-product-holder .price {
    line-height: 1
}

.woocommerce .woocommerce-product-inner .woocommerce-product-holder .star-rating {
    float: none;
    margin: 0 auto 8px auto
}

.woocommerce .woocommerce-product-inner .woocommerce-product-holder .count-rating {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin-left: 8px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-title {
    padding: 0px !important;
    margin-bottom: 9px;
    color: #26365e
}

.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-title a {
    color: inherit
}

.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-title a:hover {
    color: var(--color-primary)
}

.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-subtitle {
    color: rgba(51, 51, 51, 0.66);
    font-size: 14px;
    margin-bottom: 12px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-attr {
    margin-bottom: 12px
}

.woocommerce .woocommerce-product-inner .woocommerce-product-holder .woocommerce-product-attr img {
    width: auto !important;
    margin: 0 !important
}

.woocommerce .woocommerce-product-inner+.button.yith-wcqv-button {
    display: none !important
}

.woocommerce .product-type-grouped .woocommerce-product-header .woocommerce-product-meta {
    display: none !important
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 0;
    text-align: center
}

.woocommerce nav.woocommerce-pagination ul.page-numbers {
    border: none
}

.woocommerce nav.woocommerce-pagination ul.page-numbers li {
    border: none;
    margin: 0 0 10px
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers {
    text-align: center;
    height: 50px;
    width: 50px;
    padding: 0;
    line-height: 48px;
    border-radius: 25px;
    color: var(--color-secondary);
    background-color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 10px 0 0;
    border: 2px solid #e6e8eb
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.next,
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.prev {
    font-size: 0
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.next {
    margin-left: 10px
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.next:before {
    font-size: 18px;
    content: "";
    font-family: "Material-Design-Iconic-Font"
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.prev {
    margin-right: 18px
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.prev:before {
    font-size: 20px;
    content: "";
    font-family: "Material-Design-Iconic-Font"
}

.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul.page-numbers .page-numbers:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary)
}

.single-product #shop-breadcrumb {
    padding-bottom: 46px
}

.single-product #shop-newsletter {
    margin-top: 30px
}

.single-product section.related h2 {
    font-size: 24px;
    margin-bottom: 35px
}

.single-product section.related ul.products {
    margin-bottom: 0
}

.single-product section.related ul.products li.product {
    margin-bottom: 0 !important
}

@media screen and (max-width:991px) {
    .single-product section.related ul.products.columns-4 {
        margin-top: -40px
    }

    .single-product section.related ul.products.columns-4 li.product {
        width: 50%;
        margin-top: 50px
    }
}

@media screen and (max-width:575px) {
    .single-product section.related ul.products.columns-4 li.product {
        width: 100%
    }
}

.single-product #primary div.product .woocommerce-product-details__short-description {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 9px
}

.single-product #primary div.product .woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0
}

.single-product #primary div.product form.cart {
    padding-top: 24px;
    padding-bottom: 27px;
    margin: 0
}

.single-product #primary div.product form.cart label {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
    font-weight: 700;
    color: #232323;
    font-family: "Quicksand", sans-serif
}

@media screen and (max-width:767px) {
    .single-product #primary div.product form.cart label {
        font-size: 15px;
        line-height: normal
    }
}

.single-product #primary div.product form.cart .reset_variations {
    display: none !important
}

.single-product #primary div.product form.cart .variations {
    margin-bottom: 10px
}

.single-product #primary div.product form.cart .variations td {
    padding-bottom: 20px
}

.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item {
    background-color: #f3f3f3;
    border: none;
    line-height: 40px;
    color: #1b1a1a;
    text-transform: uppercase;
    border-radius: 0px;
    box-shadow: none;
    transition: all 0.3s ease 0s;
    margin: 0 5px 5px 0;
    width: 40px;
    height: 40px
}

.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item span {
    font-size: 14px
}

.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item.selected,
.single-product #primary div.product form.cart .button-variable-wrapper .button-variable-item:hover {
    background-color: var(--color-primary);
    color: #fff
}

.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item {
    padding: 0;
    border: none;
    box-shadow: none;
    margin: 0 5px 5px 0;
    opacity: 0.5
}

.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item span {
    border: 2px solid rgba(0, 0, 0, 0.2)
}

.single-product #primary div.product form.cart .color-variable-wrapper .color-variable-item.selected {
    opacity: 1
}

.single-product #primary div.product form.cart:not(.grouped_form) {
    display: flex;
    flex-wrap: nowrap;
    align-items: center
}

.single-product #primary div.product form.cart:not(.grouped_form) .single_add_to_cart_button {
    margin-top: 0
}

.single-product #primary div.product form.cart:not(.grouped_form) .single_add_to_cart_button:before {
    background-color: var(--color-primary)
}

.single-product #primary div.product .woocommerce-gallery span.onsale {
    display: none
}

.single-product #primary div.product .woocommerce-product-gallery {
    width: 100% !important;
    margin-bottom: 32px
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    right: 20px;
    top: 20px;
    display: none
}

@media screen and (min-width:1200px) {
    .single-product #primary div.product .woocommerce-product-gallery {
        padding-right: 15px
    }

    .single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
        right: 35px
    }
}

.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav {
    margin-top: 30px;
    margin-left: -15px;
    margin-right: -15px
}

@media screen and (max-width:575px) {
    .single-product #primary div.product .woocommerce-product-gallery .flex-control-nav {
        margin-top: 10px;
        margin-left: -5px;
        margin-right: -5px
    }
}

.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav li {
    padding: 0 15px
}

@media screen and (max-width:575px) {
    .single-product #primary div.product .woocommerce-product-gallery .flex-control-nav li {
        padding: 0 5px
    }
}

.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav img {
    opacity: 1
}

.single-product #primary div.product .woocommerce-product-gallery .flex-control-nav img.flex-active {
    outline: 5px solid rgba(0, 0, 0, 0.1);
    outline-offset: -10px
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    border-radius: 22px;
    overflow: hidden
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image {
    border-radius: 22px
}

.single-product #primary div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
    position: relative;
    display: block
}

.single-product #primary div.product .entry-summary {
    width: 100% !important;
    margin-bottom: 69px
}

@media screen and (min-width:768px) {
    .single-product #primary div.product .entry-summary {
        position: sticky;
        top: 62px
    }
}

.single-product #primary div.product .entry-summary .woocommerce-product-rating {
    margin-bottom: 12px
}

.single-product #primary div.product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
    display: none
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-price {
    margin-bottom: 25px
}

.single-product #primary div.product .entry-summary .entry-title {
    font-size: 29px;
    margin-bottom: 4px;
    font-weight: 700
}

.single-product #primary div.product .entry-summary .price {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 0;
    color: #9b9b9b;
    align-items: center
}

.single-product #primary div.product .entry-summary .price .amount {
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 700
}

.single-product #primary div.product .entry-summary .price ins {
    margin-right: 22px
}

.single-product #primary div.product .entry-summary .price del .amount {
    color: inherit
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-excerpt>h3 {
    font-size: 30px;
    margin-bottom: 11px
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-excerpt p {
    font-size: 14px;
    line-height: 23px
}

.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta {
    margin-top: 10px;
    margin-bottom: 32px;
    font-size: 15px;
    color: #9b9b9b
}

.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta>div {
    margin-bottom: 10px
}

.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta a {
    color: inherit;
    font-size: inherit
}

.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta a:hover {
    color: var(--color-primary)
}

.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta label {
    color: #26365e;
    font-size: 16px;
    padding-right: 10px;
    min-width: 120px;
    font-weight: 700
}

.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta .woocommerce-product-category {
    display: block
}

.single-product #primary div.product .entry-summary .woocommerce-product-summary-meta .woocommerce-product-category a {
    margin-bottom: 0
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-social-share .el-label {
    font-size: 16px;
    font-weight: 700;
    color: #282829;
    margin-right: 15px
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-social-share .el-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-primary);
    font-size: 18px;
    color: #fff;
    margin-right: 7px
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-social-share .el-social a:hover {
    background-color: var(--color-tertiary)
}

.single-product #primary div.product .entry-summary .single_add_to_cart_button {
    clear: left;
    margin-top: 30px
}

.single-product #primary div.product .entry-summary .woocommerce-sg-product-holder {
    flex-grow: 1
}

.single-product #primary div.product .woocommerce-tabs {
    margin-top: 48px;
    margin-bottom: 83px
}

@media screen and (min-width:1200px) {
    .single-product #primary div.product .woocommerce-tabs {
        padding: 0 100px
    }
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs {
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
    border-bottom: 2px solid #e6e8eb
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs:before,
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs:after {
    display: none
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li {
    margin-left: 0;
    margin-right: 30px;
    padding: 0;
    border: none;
    background-color: transparent
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a {
    font-size: 16px;
    color: #26365e;
    font-weight: 700;
    padding: 0;
    line-height: 51px;
    position: relative
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li a:before {
    content: "";
    height: 2px;
    width: 100%;
    background-color: var(--color-primary);
    position: absolute;
    bottom: -2px;
    left: 0;
    opacity: 0
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li:before,
.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li:after {
    display: none
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li.active a {
    background-color: #fff;
    color: var(--color-primary)
}

.single-product #primary div.product .woocommerce-tabs ul.wc-tabs li.active a:before {
    opacity: 1
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 25px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel p:last-child {
    margin-bottom: 0
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel>h2 {
    display: none
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes {
    border: 1px solid #dee2e6
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes th,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes td {
    border-bottom: 1px solid #dee2e6;
    font-family: inherit;
    color: #1d274e;
    font-weight: normal;
    font-style: normal;
    padding: 10px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes td {
    border-left: 1px solid #dee2e6
}

.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list {
    font-size: 18px;
    line-height: 34px
}

.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list .col-xl-4 {
    font-weight: bold
}

.single-product #primary div.product .woocommerce-tabs .tab-product-feature-list .line-gap {
    margin: 0;
    width: 100%
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-noreviews {
    margin-bottom: 15px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating {
    margin-bottom: 15px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating label {
    margin-bottom: 10px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form label {
    margin-bottom: 8px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form .form-submit {
    margin-top: 30px !important
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form .comment-form-email {
    margin-top: 19px !important
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form .comment-form-cookies-consent {
    margin-top: 12px !important;
    margin-bottom: -10px !important
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .woocommerce-Reviews-title {
    font-size: 18px;
    margin-bottom: 22px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-reply-title,
.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .nice-select {
    display: none
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form #comment {
    padding-top: 15px;
    height: 120px;
    padding-bottom: 22px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form {
    padding: 30px;
    border: 1px solid #e9e9e9
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form #respond {
    box-shadow: none
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist {
    padding: 0
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review {
    position: relative;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #eee
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap {
    position: absolute;
    right: 10px;
    top: 0
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap .count-rating {
    display: none
}

@media screen and (max-width:991px) {
    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .star-rating-wrap {
        position: static;
        margin-bottom: 6px
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment_container {
    position: relative
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
    padding: 0;
    width: 70px;
    border-radius: 80px;
    border: 5px solid #fff
}

@media screen and (max-width:575px) {
    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review img.avatar {
        width: 40px;
        border: none
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
    border: none;
    margin: 0;
    padding: 0 0 0 100px
}

@media screen and (max-width:767px) {
    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text .star-rating {
        float: none
    }
}

@media screen and (max-width:575px) {
    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .comment-text {
        padding-left: 60px
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta {
    display: flex;
    align-items: center;
    margin: 0 0 8px;
    font-size: 16px
}

@media screen and (max-width:575px) {
    .single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta {
        display: block
    }
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date {
    display: block;
    font-size: 14px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__author {
    color: #054c8b;
    font-family: "Quicksand", sans-serif
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__dash {
    display: none
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .meta .woocommerce-review__published-date:before {
    content: "";
    font-family: FontAwesome;
    margin: 0 4px
}

.single-product #primary div.product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #reviews ol.commentlist li.review .description p {
    margin: 0
}

.single-product #primary div.product .woocommerce-sg-product-navigation {
    text-align: center;
    margin-bottom: 57px
}

.single-product #primary div.product .woocommerce-sg-product-navigation .product-previous-next {
    display: inline-block;
    position: relative
}

.single-product #primary div.product .woocommerce-sg-product-navigation .product-previous-next a {
    height: 50px;
    width: 50px;
    line-height: 50px;
    background-color: #222222;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    margin: 0 3px;
    border-radius: 2px
}

.single-product #primary div.product .woocommerce-sg-product-navigation .product-previous-next a:hover {
    background-color: var(--color-primary)
}

.single-product #primary div.product .quantity {
    margin-right: 15px
}

.single-product #primary div.product .product_meta .sku_wrapper,
.single-product #primary div.product .product_meta .posted_in,
.single-product #primary div.product .product_meta .tagged_as {
    display: block;
    font-weight: bold;
    font-size: 15px
}

.single-product #primary div.product .product_meta .sku_wrapper span,
.single-product #primary div.product .product_meta .sku_wrapper a,
.single-product #primary div.product .product_meta .posted_in span,
.single-product #primary div.product .product_meta .posted_in a,
.single-product #primary div.product .product_meta .tagged_as span,
.single-product #primary div.product .product_meta .tagged_as a {
    color: var(--color-primary);
    margin-left: 7px
}

.single-product #primary div.product .product_meta .sku_wrapper a:hover,
.single-product #primary div.product .product_meta .posted_in a:hover,
.single-product #primary div.product .product_meta .tagged_as a:hover {
    color: var(--color-secondary)
}

.single-product #primary div.product .product_meta .posted_in {
    display: none
}

@media screen and (min-width:768px) {
    .single-product.header-sticky #primary div.product .entry-summary {
        top: 120px
    }

    .single-product.header-sticky.admin-bar #primary div.product .entry-summary {
        top: 150px
    }
}

.cart-icon-wrap {
    position: relative;
    display: flex;
    align-items: center
}

.cart-icon-wrap .cart-desktop {
    margin-top: 2px;
    margin-left: 43px
}

.cart-icon-wrap .cart-desktop .open-cart {
    position: relative;
    display: inline-block
}

.cart-icon-wrap .cart-desktop .open-cart i {
    font-size: 16px;
    color: var(--color-secondary)
}

.cart-icon-wrap .cart-desktop .open-cart span.cart-count {
    position: absolute;
    min-width: 21px;
    padding: 0 6px 0 7px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 12px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: -13px
}

.header-trans .cart-desktop svg {
    fill: #fff
}

.widget_shopping_cart_content {
    width: 330px;
    padding: 36px 30px 40px;
    position: absolute;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 83px 0 rgba(var(--rgb-color-secondary), 0.15);
    color: var(--color-secondary);
    top: calc(100% + 30px);
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: top ease-in-out 0.3s
}

@media screen and (max-width:767px) {
    .widget_shopping_cart_content {
        top: 50px;
        right: -95px
    }
}

.widget_shopping_cart_content.active {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 99;
    top: calc(100% + 10px)
}

.widget_shopping_cart_content ul.product_list_widget {
    font-size: 0;
    line-height: 0;
    margin: 0;
    max-height: 250px;
    overflow-y: auto
}

.widget_shopping_cart_content ul.product_list_widget li {
    display: block !important;
    line-height: normal !important;
    position: relative;
    margin: 0 !important
}

.widget_shopping_cart_content ul.product_list_widget li a {
    text-align: left;
    display: flex !important;
    align-items: flex-start;
    line-height: 25px !important;
    width: calc(100% - 25px);
    font-size: 14px;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    color: var(--color-secondary)
}

.widget_shopping_cart_content ul.product_list_widget li a img {
    float: none;
    margin-right: 15px;
    width: 60px;
    height: 60px;
    max-width: 60px
}

.widget_shopping_cart_content ul.product_list_widget li .remove_from_cart_button {
    position: absolute;
    display: block !important;
    width: 20px;
    height: 20px;
    font-size: 18px;
    line-height: 19px !important;
    background: var(--color-secondary);
    right: 0;
    top: 30px;
    border-radius: 0px;
    color: #fff !important;
    text-align: center
}

.widget_shopping_cart_content ul.product_list_widget li .quantity {
    font-size: 16px;
    font-weight: bold;
    margin: -29px 0px 12px 75px;
    display: block;
    text-align: left;
    color: var(--color-primary)
}

.widget_shopping_cart_content ul.product_list_widget li+li {
    padding-top: 20px
}

.widget_shopping_cart_content ul.product_list_widget li:first-child .remove_from_cart_button {
    top: 5px
}

.widget_shopping_cart_content .woocommerce-mini-cart__total {
    font-family: "Quicksand", sans-serif;
    font-size: 17px;
    color: var(--color-secondary);
    font-weight: bold;
    padding: 20px 0 0;
    margin: 0;
    text-align: left
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
    line-height: normal;
    padding-top: 24px;
    margin: 0;
    white-space: normal;
    text-align: center
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons a.button {
    background: var(--color-primary);
    color: #fff;
    border: 2px solid transparent;
    width: 100%;
    font-size: 14px;
    padding: 0 31px;
    line-height: 46px;
    letter-spacing: 0;
    transition: all 300ms ease 0s
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons a.button:hover {
    background-color: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary)
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons a.button:before {
    margin-bottom: 0
}

.widget_shopping_cart_content .woocommerce-mini-cart__buttons a.checkout {
    display: none;
    background: none;
    border-color: #fff;
    color: #fff;
    float: right
}

.widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
    margin-bottom: 0
}

body.woocommerce-cart .woocommerce-cart-form .actions .button,
body.woocommerce-cart #yith-wcwl-form .actions .button,
body.woocommerce-wishlist .woocommerce-cart-form .actions .button,
body.woocommerce-wishlist #yith-wcwl-form .actions .button {
    padding: 0 20px !important;
    color: #fff !important;
    border-radius: 10px
}

body.woocommerce-cart .woocommerce-cart-form table.cart td.actions .input-text,
body.woocommerce-cart #yith-wcwl-form table.cart td.actions .input-text,
body.woocommerce-wishlist .woocommerce-cart-form table.cart td.actions .input-text,
body.woocommerce-wishlist #yith-wcwl-form table.cart td.actions .input-text {
    width: 180px !important;
    height: 51px;
    padding: 0 25px;
    font-size: 16px;
    border-radius: 10px
}

body.woocommerce-cart .woocommerce-cart-form .shop_table,
body.woocommerce-cart #yith-wcwl-form .shop_table,
body.woocommerce-wishlist .woocommerce-cart-form .shop_table,
body.woocommerce-wishlist #yith-wcwl-form .shop_table {
    border-radius: 10px
}

body.woocommerce-cart .woocommerce-cart-form .shop_table thead th,
body.woocommerce-cart #yith-wcwl-form .shop_table thead th,
body.woocommerce-wishlist .woocommerce-cart-form .shop_table thead th,
body.woocommerce-wishlist #yith-wcwl-form .shop_table thead th {
    font-size: 16px;
    font-weight: 700;
    color: #848e9f;
    padding: 15px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #e6e8eb
}

body.woocommerce-cart .woocommerce-cart-form .shop_table tbody td,
body.woocommerce-cart #yith-wcwl-form .shop_table tbody td,
body.woocommerce-wishlist .woocommerce-cart-form .shop_table tbody td,
body.woocommerce-wishlist #yith-wcwl-form .shop_table tbody td {
    text-align: left;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid #e6e8eb
}

body.woocommerce-cart .woocommerce-cart-form .shop_table tbody tr:last-child td,
body.woocommerce-cart #yith-wcwl-form .shop_table tbody tr:last-child td,
body.woocommerce-wishlist .woocommerce-cart-form .shop_table tbody tr:last-child td,
body.woocommerce-wishlist #yith-wcwl-form .shop_table tbody tr:last-child td {
    border-bottom: none
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-name a,
body.woocommerce-cart #yith-wcwl-form tbody .product-name a,
body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name a,
body.woocommerce-wishlist #yith-wcwl-form tbody .product-name a {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: bold;
    font-family: "Quicksand", sans-serif
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-name a:hover,
body.woocommerce-cart #yith-wcwl-form tbody .product-name a:hover,
body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name a:hover,
body.woocommerce-wishlist #yith-wcwl-form tbody .product-name a:hover {
    color: var(--color-primary)
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-name .yith-wcqv-button,
body.woocommerce-cart #yith-wcwl-form tbody .product-name .yith-wcqv-button,
body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name .yith-wcqv-button,
body.woocommerce-wishlist #yith-wcwl-form tbody .product-name .yith-wcqv-button {
    display: none
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-name dl.variation,
body.woocommerce-cart #yith-wcwl-form tbody .product-name dl.variation,
body.woocommerce-wishlist .woocommerce-cart-form tbody .product-name dl.variation,
body.woocommerce-wishlist #yith-wcwl-form tbody .product-name dl.variation {
    display: none
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-price,
body.woocommerce-cart .woocommerce-cart-form tbody .product-subtotal,
body.woocommerce-cart #yith-wcwl-form tbody .product-price,
body.woocommerce-cart #yith-wcwl-form tbody .product-subtotal,
body.woocommerce-wishlist .woocommerce-cart-form tbody .product-price,
body.woocommerce-wishlist .woocommerce-cart-form tbody .product-subtotal,
body.woocommerce-wishlist #yith-wcwl-form tbody .product-price,
body.woocommerce-wishlist #yith-wcwl-form tbody .product-subtotal {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: bold
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-price ins,
body.woocommerce-cart .woocommerce-cart-form tbody .product-subtotal ins,
body.woocommerce-cart #yith-wcwl-form tbody .product-price ins,
body.woocommerce-cart #yith-wcwl-form tbody .product-subtotal ins,
body.woocommerce-wishlist .woocommerce-cart-form tbody .product-price ins,
body.woocommerce-wishlist .woocommerce-cart-form tbody .product-subtotal ins,
body.woocommerce-wishlist #yith-wcwl-form tbody .product-price ins,
body.woocommerce-wishlist #yith-wcwl-form tbody .product-subtotal ins {
    color: #1b1a1a;
    background-color: transparent
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail,
body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail,
body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail,
body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail {
    width: 110px
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail a,
body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail a,
body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail a,
body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail a {
    display: block
}

body.woocommerce-cart .woocommerce-cart-form tbody .product-thumbnail a img,
body.woocommerce-cart #yith-wcwl-form tbody .product-thumbnail a img,
body.woocommerce-wishlist .woocommerce-cart-form tbody .product-thumbnail a img,
body.woocommerce-wishlist #yith-wcwl-form tbody .product-thumbnail a img {
    width: 100%;
    max-width: 80px;
    border-radius: 10px
}

body.woocommerce-cart .woocommerce-cart-form .product-remove,
body.woocommerce-cart #yith-wcwl-form .product-remove,
body.woocommerce-wishlist .woocommerce-cart-form .product-remove,
body.woocommerce-wishlist #yith-wcwl-form .product-remove {
    position: relative;
    min-width: 50px
}

body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove,
body.woocommerce-cart #yith-wcwl-form .product-remove a.remove,
body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove,
body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove {
    font-size: 0px
}

body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove:before,
body.woocommerce-cart #yith-wcwl-form .product-remove a.remove:before,
body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove:before,
body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove:before {
    content: "";
    font-family: "Material-Design-Iconic-Font";
    font-size: 16px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    background-color: var(--color-secondary);
    color: #fff;
    font-weight: normal;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    right: 0;
    margin: auto
}

body.woocommerce-cart .woocommerce-cart-form .product-remove a.remove:hover:before,
body.woocommerce-cart #yith-wcwl-form .product-remove a.remove:hover:before,
body.woocommerce-wishlist .woocommerce-cart-form .product-remove a.remove:hover:before,
body.woocommerce-wishlist #yith-wcwl-form .product-remove a.remove:hover:before {
    color: #fff;
    background-color: rgba(var(--rgb-color-primary), 0.85)
}

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

    body.woocommerce-cart .woocommerce-cart-form .product-remove,
    body.woocommerce-cart #yith-wcwl-form .product-remove,
    body.woocommerce-wishlist .woocommerce-cart-form .product-remove,
    body.woocommerce-wishlist #yith-wcwl-form .product-remove {
        min-height: 57px
    }
}

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

    body.woocommerce-cart .woocommerce-cart-form table.shop_table td,
    body.woocommerce-cart #yith-wcwl-form table.shop_table td,
    body.woocommerce-wishlist .woocommerce-cart-form table.shop_table td,
    body.woocommerce-wishlist #yith-wcwl-form table.shop_table td {
        background-color: #fff !important
    }
}

body.woocommerce-cart .cart-collaterals .cart_totals,
body.woocommerce-wishlist .cart-collaterals .cart_totals {
    width: 100%;
    float: none
}

@media (min-width:880px) {

    body.woocommerce-cart .cart-collaterals .cart_totals,
    body.woocommerce-wishlist .cart-collaterals .cart_totals {
        width: 50%
    }
}

body.woocommerce-cart .cart-collaterals .cart_totals>h2,
body.woocommerce-wishlist .cart-collaterals .cart_totals>h2 {
    font-size: 21px;
    margin-bottom: 16px;
    text-transform: capitalize
}

body.woocommerce-cart .cart-collaterals .cart_totals th,
body.woocommerce-wishlist .cart-collaterals .cart_totals th {
    vertical-align: middle !important;
    border: none !important;
    color: inherit;
    font-weight: normal;
    padding: 12px 10px 12px 0px
}

body.woocommerce-cart .cart-collaterals .cart_totals th+td,
body.woocommerce-wishlist .cart-collaterals .cart_totals th+td {
    border-left: 1px solid #ebebeb
}

body.woocommerce-cart .cart-collaterals .cart_totals td,
body.woocommerce-wishlist .cart-collaterals .cart_totals td {
    border: none !important;
    padding: 12px 10px;
    text-align: right
}

body.woocommerce-cart .cart-collaterals .cart_totals strong,
body.woocommerce-wishlist .cart-collaterals .cart_totals strong {
    font-weight: bold
}

body.woocommerce-cart .cart-collaterals .cart_totals .order-total th,
body.woocommerce-cart .cart-collaterals .cart_totals .order-total td,
body.woocommerce-cart .cart-collaterals .cart_totals .cart-subtotal th,
body.woocommerce-cart .cart-collaterals .cart_totals .cart-subtotal td,
body.woocommerce-wishlist .cart-collaterals .cart_totals .order-total th,
body.woocommerce-wishlist .cart-collaterals .cart_totals .order-total td,
body.woocommerce-wishlist .cart-collaterals .cart_totals .cart-subtotal th,
body.woocommerce-wishlist .cart-collaterals .cart_totals .cart-subtotal td {
    color: var(--color-secondary);
    font-weight: bold
}

body.woocommerce-cart .cart-collaterals .cart_totals .shop_table,
body.woocommerce-wishlist .cart-collaterals .cart_totals .shop_table {
    border: none
}

body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator p,
body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator p {
    margin-bottom: 0
}

body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button,
body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button {
    color: var(--color-primary)
}

body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:after,
body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:after {
    content: "";
    margin-left: 9px;
    font-family: "Material-Design-Iconic-Font";
    position: relative;
    top: 1px
}

body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:hover,
body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button:hover {
    color: var(--color-primary)
}

body.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-form,
body.woocommerce-wishlist .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-form {
    padding-top: 10px
}

body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout,
body.woocommerce-wishlist .cart-collaterals .cart_totals .wc-proceed-to-checkout {
    padding-bottom: 0;
    margin-top: 24px
}

body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button,
body.woocommerce-wishlist .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
    background-color: var(--color-primary);
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 15px;
    border-radius: 10px
}

body.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover,
body.woocommerce-wishlist .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
    opacity: 0.8
}

.woocommerce-checkout form.checkout_coupon {
    border: 1px solid #eee;
    border-radius: 0px;
    background-color: #f7f8fa
}

.woocommerce-checkout form.checkout_coupon .form-row-first {
    width: 50%;
    padding-right: 30px
}

.woocommerce-checkout form.checkout_coupon .form-row-last {
    width: 50%
}

.woocommerce-checkout form.checkout_coupon .form-row-last button {
    line-height: 60px;
    border-radius: 30px
}

.woocommerce-checkout #add_payment_method #payment,
.woocommerce-checkout #payment {
    border-radius: 0px
}

.woocommerce-checkout #customer_details {
    margin: 0 -15px;
    width: inherit
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    width: 50%;
    flex: inherit;
    max-width: 100%
}

@media screen and (max-width:767px) {
    .woocommerce-checkout #customer_details {
        margin: 0
    }

    .woocommerce-checkout #customer_details .col-1,
    .woocommerce-checkout #customer_details .col-2 {
        width: 100%
    }
}

.woocommerce-checkout #customer_details span.woocommerce-input-wrapper {
    width: 100%;
    display: block
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields {
    margin-bottom: 36px
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields>h3 {
    font-size: 28px;
    text-transform: capitalize
}

.woocommerce-checkout #customer_details .woocommerce-additional-fields {
    margin-bottom: 36px
}

.woocommerce-checkout #customer_details .woocommerce-additional-fields>h3 {
    font-size: 18px;
    font-weight: bold
}

.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address {
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s linear
}

.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address:hover {
    color: var(--color-primary)
}

.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address #ship-to-different-address-checkbox {
    position: absolute;
    opacity: 0
}

.woocommerce-checkout #customer_details .woocommerce-shipping-fields #ship-to-different-address .woocommerce-form__label span:after {
    content: "";
    font-family: FontAwesome;
    margin-left: 14px;
    font-weight: normal
}

.woocommerce-checkout #customer_details #billing_country_field label,
.woocommerce-checkout #customer_details #shipping_country_field label,
.woocommerce-checkout #customer_details #billing_address_1_field label,
.woocommerce-checkout #customer_details #shipping_address_1_field label,
.woocommerce-checkout #customer_details #order_comments_field label {
    display: none !important
}

.woocommerce-checkout form.woocommerce-checkout input[type="text"],
.woocommerce-checkout form.woocommerce-checkout input[type="email"],
.woocommerce-checkout form.woocommerce-checkout input[type="url"],
.woocommerce-checkout form.woocommerce-checkout input[type="tel"],
.woocommerce-checkout form.woocommerce-checkout input[type="number"],
.woocommerce-checkout form.woocommerce-checkout textarea,
.woocommerce-checkout form.woocommerce-checkout select,
.woocommerce-checkout form.woocommerce-checkout .nice-select {
    background-color: transparent;
    border: 1px solid #e9e9e9
}

.woocommerce-checkout form.woocommerce-checkout #order_review_heading {
    font-size: 24px;
    text-transform: capitalize
}

.woocommerce-checkout form.woocommerce-checkout #order_review th {
    color: #1b1a1a;
    vertical-align: middle !important
}

.woocommerce-checkout form.woocommerce-checkout #order_review th+td {
    border-left: 1px solid #ebebeb
}

.woocommerce-checkout form.woocommerce-checkout #order_review .product-total {
    border-left: 1px solid #ebebeb
}

.woocommerce-checkout form.woocommerce-checkout #order_review .cart-subtotal td,
.woocommerce-checkout form.woocommerce-checkout #order_review .order-total td {
    font-weight: bold;
    color: #1b1a1a
}

.woocommerce-checkout form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
    margin-bottom: 60px
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment {
    background-color: #f7f8fa;
    border: 1px solid #eee
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment .about_paypal {
    margin-left: 10px
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment .wc_payment_methods {
    padding: 20px;
    border-bottom: 1px solid #eee
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment .place-order {
    padding: 20px;
    margin: 0
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment #place_order {
    background-color: var(--color-primary);
    float: none;
    margin-top: 10px
}

.woocommerce-checkout form.woocommerce-checkout #order_review #payment #place_order:hover {
    background-color: var(--color-secondary)
}

.woocommerce-checkout #payment label {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.87);
    font-weight: bold
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation {
    margin-bottom: 30px
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul {
    margin: 0;
    list-style: none
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #eaeaea
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a {
    font-size: 16px;
    padding: 10px 0;
    color: #747da1;
    position: relative;
    display: block
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover {
    color: var(--color-primary)
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    display: block;
    font-family: "FontAwesome";
    color: var(--color-primary);
    margin-left: -16px;
    opacity: 0;
    transition: all 300ms linear 0ms
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li.is-active>a,
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover {
    color: inherit;
    padding-left: 26px
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li.is-active>a:before,
.woocommerce-account .site-content #primary .woocommerce-MyAccount-navigation ul li a:hover:before {
    margin-left: 0;
    opacity: 1
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-content {
    margin-bottom: 30px
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .col-1,
.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .col-2 {
    flex: inherit;
    max-width: inherit
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .form-row label {
    width: 100%
}

.woocommerce-account .site-content #primary .woocommerce-MyAccount-content .form-row .woocommerce-input-wrapper {
    width: 100%
}

.woocommerce-account .site-content #primary .woocommerce-form {
    background-color: #f7f8fa;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 0px;
    max-width: 670px;
    margin: 0px auto 30px auto
}

.woocommerce-account .site-content #primary .woocommerce-form label {
    font-weight: 500;
    margin-bottom: 2px
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-Button.button {
    margin-right: 16px;
    height: auto
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword {
    margin-bottom: 0
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword a {
    color: var(--color-primary)
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-LostPassword a:hover {
    color: var(--color-secondary)
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox {
    padding: 0;
    line-height: 50px
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox span {
    font-size: 15px
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox {
    position: relative;
    top: -1px
}

.woocommerce-account .site-content #primary .woocommerce-form .woocommerce-Button {
    height: 42px
}

.woocommerce-account .site-content #primary .woocommerce-notices-wrapper+h2 {
    text-align: center;
    font-size: 24px
}

.woocommerce-account .site-content #primary #customer_login {
    margin: 0 -15px;
    width: inherit;
    display: flex;
    flex-wrap: wrap
}

.woocommerce-account .site-content #primary #customer_login h2 {
    font-size: 24px
}

.woocommerce-account .site-content #primary #customer_login .u-column1.col-1,
.woocommerce-account .site-content #primary #customer_login .u-column2.col-2 {
    width: 50%;
    flex: inherit;
    max-width: 100%
}

@media screen and (max-width:767px) {
    .woocommerce-account .site-content #primary #customer_login {
        margin: 0
    }

    .woocommerce-account .site-content #primary #customer_login .u-column1.col-1,
    .woocommerce-account .site-content #primary #customer_login .u-column2.col-2 {
        width: 100%;
        padding: 0
    }
}

.woocommerce-account .site-content #primary .woocommerce-password-strength.bad {
    background-color: transparent;
    padding: 8px 0
}

body #yith-wcwl-popup-message {
    margin-left: -108px;
    display: none;
    bottom: 30px;
    top: auto;
    right: 30px;
    left: auto;
    background-color: var(--color-primary);
    border-radius: 3px;
    border: none;
    color: #fff;
    padding: 0 20px
}

.woocommerce-wishlist tfoot td {
    display: none
}

.woocommerce-wishlist .product-stock-status {
    font-size: 16px;
    font-weight: bold
}

.woocommerce-wishlist .product-stock-status .wishlist-in-stock {
    color: var(--color-secondary) !important
}

.woocommerce-wishlist #yith-wcwl-form .wishlist-empty {
    text-align: center !important
}

.woocommerce-wishlist #yith-wcwl-form .product-add-to-cart {
    text-align: center !important
}

.woocommerce-wishlist #yith-wcwl-form .product-add-to-cart a.button {
    padding: 0 20px;
    background-color: var(--color-primary);
    color: #fff;
    line-height: 42px;
    font-size: 16px;
    display: inline-block !important
}

.woocommerce-wishlist #yith-wcwl-form .product-add-to-cart a.button:hover {
    background-color: var(--color-secondary)
}

.woocommerce-wishlist #yith-wcwl-form .product-add-to-cart a.button.loading {
    padding-right: 30px
}

.woocommerce-wishlist #yith-wcwl-form .product-add-to-cart a.button.loading:after {
    top: 0;
    right: 8px
}

@media screen and (max-width:767px) {
    .woocommerce-wishlist #yith-wcwl-form {
        overflow-x: scroll
    }

    .woocommerce-wishlist #yith-wcwl-form .cart.wishlist_table {
        min-width: 767px
    }
}

.woocommerce-grouped-product-list {
    border: none
}

.woocommerce-grouped-product-list td {
    vertical-align: middle !important
}

.woocommerce-grouped-product-list .woocommerce-Price-amount {
    font-weight: bold;
    color: var(--color-primary)
}

.woocommerce-grouped-product-list del .woocommerce-Price-amount {
    color: inherit;
    opacity: 0.5
}

.single-product:not(.redux-page) #primary div.product .entry-summary .entry-title {
    display: none
}

.elementor-element h1:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]),
.elementor-element h2:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]),
.elementor-element h3:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]),
.elementor-element h4:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]),
.elementor-element h5:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]),
.elementor-element h6:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]),
.elementor-element .h1:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]),
.elementor-element .h2:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]),
.elementor-element .h3:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]),
.elementor-element .h4:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]),
.elementor-element .h5:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]),
.elementor-element .h6:not[class*="mt"]:not([class*="mt"]):not([class*="m-"]) {
    margin: 0
}

.elementor-element .elementor-widget:not(:last-child) {
    margin-bottom: 0
}

.elementor .elementor-section.elementor-section-boxed>.elementor-container {
    flex-grow: 1
}

.elementor .elementor-section.elementor-section-boxed>.elementor-container.elementor-column-gap-no {
    max-width: 1170px
}

.elementor .elementor-section.elementor-section-boxed>.elementor-container.elementor-column-gap-default {
    max-width: 1190px
}

.elementor .elementor-section.elementor-section-boxed>.elementor-container.elementor-column-gap-extended {
    max-width: 1200px
}

.site-content .elementor-row,
.site-footer-custom .elementor-row {
    justify-content: space-between
}

.site-content .elementor-container.elementor-column-gap-default,
.site-footer-custom .elementor-container.elementor-column-gap-default {
    margin: 0 -10px
}

.site-content .elementor-container.elementor-column-gap-extended,
.site-footer-custom .elementor-container.elementor-column-gap-extended {
    margin: 0 -15px
}

.site-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default,
.site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default {
    margin: 0 auto
}

.site-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default .elementor-row .elementor-column-gap-extended,
.site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default .elementor-row .elementor-column-gap-extended {
    margin: 0 -15px
}

.site-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default .elementor-row .elementor-column-gap-default,
.site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default .elementor-row .elementor-column-gap-default {
    margin: 0 -10px
}

.site-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended,
.site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended {
    margin: 0 auto
}

.site-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended .elementor-row .elementor-column-gap-extended,
.site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended .elementor-row .elementor-column-gap-extended {
    margin: 0 -15px
}

.site-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended .elementor-row .elementor-column-gap-default,
.site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended .elementor-row .elementor-column-gap-default {
    margin: 0 -10px
}

.site-content .elementor-element-edit-mode.elementor-section-boxed .elementor-container,
.site-content .elementor-section-stretched.elementor-section-full_width .elementor-inner-section.elementor-section-boxed .elementor-container,
.site-footer-custom .elementor-element-edit-mode.elementor-section-boxed .elementor-container,
.site-footer-custom .elementor-section-stretched.elementor-section-full_width .elementor-inner-section.elementor-section-boxed .elementor-container {
    margin: 0 auto
}

.site-content .elementor-widget-text-editor,
.site-footer-custom .elementor-widget-text-editor {
    color: inherit;
    font-family: inherit;
    font-weight: inherit
}

.site-content .elementor-widget-icon-list .elementor-icon-list-item,
.site-footer-custom .elementor-widget-icon-list .elementor-icon-list-item {
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.site-content .elementor-widget-image-box .elementor-image-box-content .elementor-image-box-title,
.site-footer-custom .elementor-widget-image-box .elementor-image-box-content .elementor-image-box-title {
    font-family: "Quicksand", sans-serif
}

.site-content .elementor-widget-image-box .elementor-image-box-content .elementor-image-box-description,
.site-footer-custom .elementor-widget-image-box .elementor-image-box-content .elementor-image-box-description {
    color: inherit;
    font-family: inherit;
    font-weight: inherit
}

.site-content .fa,
.site-footer-custom .fa {
    font: normal normal normal 14px/1 FontAwesome
}

.site-content .cms-dropcap .elementor-drop-cap,
.site-footer-custom .cms-dropcap .elementor-drop-cap {
    margin-top: -13px
}

.single-footer #colophon,
.elementor_library-template-default.single-elementor_library #colophon {
    display: none
}

@media screen and (max-width:1199px) {
    .col-offset-left>.elementor-column-wrap .elementor-widget-wrap {
        padding-left: 0 !important
    }

    .col-offset-right>.elementor-column-wrap .elementor-widget-wrap {
        padding-right: 0 !important
    }
}

@media screen and (min-width:1200px) {
    .section-align-top>.elementor-container>.elementor-row {
        align-items: flex-start;
        justify-content: space-between
    }

    .section-align-top .column-sticky {
        position: sticky;
        top: 150px
    }
}

:root {
    --color-accent: var(--color-primary);
    --color-white: white;
    --color-white-15: rgba(255, 255, 255, 0.15);
    --color-white-25: rgba(255, 255, 255, 0.25);
    --color-white-f4: #f4f4f4;
    --color-btn: var(--color-primary);
    --color-btn2: #687596;
    --color-border: #e6e8eb;
    --color-transparent: transparent;
    --max-mobile: "screen and (max-width: 767px)"
}

.container-wide {
    padding-inline-start: 20px;
    padding-inline-end: 20px
}

@media (min-width:1600px) {
    .container-wide {
        padding-inline-start: 50px;
        padding-inline-end: 50px
    }
}

.cms-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.relative {
    position: relative
}

.absolute {
    position: absolute
}

.absolute.top-left {
    top: 0;
    left: 0
}

[dir="rtl"] .absolute.top-left {
    left: auto;
    right: 0
}

.absolute.top-right {
    top: 0;
    right: 0
}

[dir="rtl"] .absolute.top-right {
    right: auto;
    left: 0
}

.absolute.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.absolute.center-left,
.absolute.center-right {
    top: 50%;
    transform: translate(0, -50%)
}

.absolute.center-left {
    left: 0
}

.absolute.center-right {
    right: 0
}

.absolute.bottom-left,
.absolute.bottom-right {
    bottom: 0
}

.absolute.bottom-left {
    left: 0
}

[dir="rtl"] .absolute.bottom-left {
    left: auto;
    right: 0
}

.absolute.bottom-right {
    right: 0
}

[dir="rtl"] .absolute.bottom-right {
    right: auto;
    left: 0
}

.z-top {
    z-index: 1
}

.img-cover {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover
}

.w-100 {
    width: 100%
}

.h-100 {
    height: 100%
}

.cms-frame-playback {
    aspect-ratio: 1.77778
}

.cms-transition {
    transition: all 300ms linear 0ms
}

.empty-none:empty {
    display: none
}

.circle,
.elementor .circle {
    border-radius: 50%
}

.cms-sticky {
    position: sticky !important;
    top: var(--site-branding-height-header-desktop)
}

@media screen and (max-width:1199px) {
    .cms-sticky {
        top: var(--site-branding-height-header-mobile)
    }
}

.text-end {
    text-align: end
}

.text-uppercase {
    text-transform: uppercase
}

.overflow-hidden {
    overflow: hidden
}

.mh-100 {
    max-height: 100%
}

img.mh-100 {
    object-fit: cover
}

img.mh-100:not([class*="ratio-"]) {
    aspect-ratio: 1.7777777778
}

.ratio-152 {
    aspect-ratio: 1.52
}

.cms-bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.cms-lazy-loaded {
    --cms-bg-lazyload-loaded: var(--cms-bg-lazyload)
}

.cms-translateY {
    transform: translateY(var(--cms-translateY))
}

[class*="text-line-"],
.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical
}

[class*="text-line-"] {
    display: -webkit-box
}

.text-line-2 {
    -webkit-line-clamp: 2
}

.text-line-3 {
    -webkit-line-clamp: 3
}

.text-line-4 {
    -webkit-line-clamp: 4
}

.cms-radius-0,
.elementor .cms-radius-0 {
    border-radius: 0px !important
}

.cms-radius-5,
.elementor .cms-radius-5 {
    border-radius: 5px !important
}

.cms-radius-8,
.elementor .cms-radius-8 {
    border-radius: 8px !important
}

.cms-radius-10,
.elementor .cms-radius-10 {
    border-radius: 10px !important
}

.cms-radius-12,
.elementor .cms-radius-12 {
    border-radius: 12px !important
}

.cms-radius-20,
.elementor .cms-radius-20 {
    border-radius: 20px !important
}

.cms-radius-24,
.elementor .cms-radius-24 {
    border-radius: 24px !important
}

.cms-radius-tl-12,
.elementor .cms-radius-tl-12 {
    border-radius: 12px 0 0 0
}

[dir="rtl"] .cms-radius-tl-12,
[dir="rtl"] .elementor .cms-radius-tl-12 {
    border-radius: 0 12px 0 0
}

.cms-radius-bl-12,
.elementor .cms-radius-bl-12 {
    border-radius: 0 0 0 12px
}

[dir="rtl"] .cms-radius-bl-12,
[dir="rtl"] .elementor .cms-radius-bl-12 {
    border-radius: 0 0 12px 0
}

.cms-radius-trbr-12,
.elementor .cms-radius-trbr-12 {
    border-radius: 0 12px 12px 0
}

[dir="rtl"] .cms-radius-trbr-12,
[dir="rtl"] .elementor .cms-radius-trbr-12 {
    border-radius: 12px 0 0 12px
}

.cms-shadow-1,
.cms-hover-shadow-1:hover {
    box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15)
}

.cms-shadow-2,
.cms-hover-shadow-2:hover {
    box-shadow: 0px 0px 83px 5px rgba(9, 29, 62, 0.08)
}

.d-flex {
    flex-wrap: wrap
}

.flex-nowrap {
    flex-wrap: nowrap
}

.flex-basic {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.flex-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none
}

.gap {
    gap: var(--gap, 40px)
}

.gap-10 {
    gap: 10px
}

.gap-15 {
    gap: 15px
}

.gap-20 {
    gap: 20px
}

.gap-25 {
    gap: 25px
}

.gap-30 {
    gap: 30px
}

.gap-0-40 {
    gap: 0 40px
}

.gutterX-10 {
    margin-inline-start: -5px;
    margin-inline-end: -5px
}

.gutterX-10>* {
    padding-inline-start: 5px;
    padding-inline-end: 5px
}

.gutterX-40 {
    margin-inline-start: -20px;
    margin-inline-end: -20px
}

.gutterX-40>* {
    padding-inline-start: 20px;
    padding-inline-end: 20px
}

.flex-cols-2>*:not(.col-separate) {
    flex: 0 0 calc(100% / 2);
    width: calc(100% / 2);
    max-width: calc(100% / 2)
}

.flex-cols-4>*:not(.col-separate) {
    flex: 0 0 calc(100% / 4);
    width: calc(100% / 4);
    max-width: calc(100% / 4)
}

.max-w {
    max-width: var(--max-w)
}

.min-w {
    min-width: var(--min-w)
}

.max-h {
    max-height: var(--max-h)
}

.min-h {
    min-height: var(--min-h)
}

.p-40 {
    padding: 40px
}

.p-50 {
    padding: 50px
}

.p-60 {
    padding: 60px
}

.pt-5 {
    padding-top: 5px
}

.pt-10 {
    padding-top: 10px
}

.pt-15 {
    padding-top: 15px
}

.pt-20 {
    padding-top: 20px
}

.pt-25 {
    padding-top: 25px
}

.pt-30 {
    padding-top: 30px
}

.pt-37 {
    padding-top: 37px
}

.pt-40 {
    padding-top: 40px
}

.pt-50 {
    padding-top: 50px
}

.pt-55 {
    padding-top: 55px
}

.pt-37 {
    padding-top: 37px
}

.pt-22 {
    padding-top: 22px
}

.pt-60 {
    padding-top: 60px
}

.pt-70 {
    padding-top: 70px
}

.pt-90 {
    padding-top: 90px
}

.pt-100 {
    padding-top: 100px
}

.pt-105 {
    padding-top: 105px
}

.pt-120 {
    padding-top: 120px
}

.pb-15 {
    padding-bottom: 15px
}

.pb-17 {
    padding-bottom: 17px
}

.pb-20 {
    padding-bottom: 20px
}

.pb-22 {
    padding-bottom: 22px
}

.pb-25 {
    padding-bottom: 25px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-35 {
    padding-bottom: 35px
}

.pb-40 {
    padding-bottom: 40px
}

.pb-45 {
    padding-bottom: 45px
}

.pb-50 {
    padding-bottom: 50px
}

.pb-55 {
    padding-bottom: 55px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-80 {
    padding-bottom: 80px
}

.pb-90 {
    padding-bottom: 90px
}

.pb-100 {
    padding-bottom: 100px
}

.pb-110 {
    padding-bottom: 110px
}

.pb-115 {
    padding-bottom: 115px
}

.p-tb-15 {
    padding-top: 15px;
    padding-bottom: 15px
}

.p-tb-20 {
    padding-top: 20px;
    padding-bottom: 20px
}

.p-tb-30 {
    padding-top: 30px;
    padding-bottom: 30px
}

.p-tb-40 {
    padding-top: 40px;
    padding-bottom: 40px
}

.p-tb-50 {
    padding-top: 50px;
    padding-bottom: 50px
}

.p-tb-70 {
    padding-top: 70px;
    padding-bottom: 70px
}

.p-tb-80 {
    padding-top: 80px;
    padding-bottom: 80px
}

.p-tb-100 {
    padding-top: 100px;
    padding-bottom: 100px
}

.p-tb-110 {
    padding-top: 110px;
    padding-bottom: 110px
}

.p-tb-115 {
    padding-top: 115px;
    padding-bottom: 115px
}

.p-tb-120 {
    padding-top: 120px;
    padding-bottom: 120px
}

.pl-40 {
    padding-inline-start: 40px
}

.pl-70 {
    padding-inline-start: 70px
}

.pl-100 {
    padding-inline-start: 100px
}

.pr-5 {
    padding-inline-end: 5px
}

.pr-10 {
    padding-inline-end: 10px
}

.pr-20 {
    padding-inline-end: 20px
}

.pr-30 {
    padding-inline-end: 30px
}

.pr-40 {
    padding-inline-end: 40px
}

.pr-60 {
    padding-inline-end: 60px
}

.p-lr-25 {
    padding-inline-start: 25px;
    padding-inline-end: 25px
}

.p-lr-30 {
    padding-inline-start: 30px;
    padding-inline-end: 30px
}

.p-lr-40 {
    padding-inline-start: 40px;
    padding-inline-end: 40px
}

.p-lr-50 {
    padding-inline-start: 50px;
    padding-inline-end: 50px
}

@media (min-width:576px) {
    .pl-container {
        padding-inline-start: 20px
    }
}

@media (min-width:1200px) {
    .pl-container {
        padding-inline-start: calc(calc(100vw - 1200px)/2)
    }
}

@media (min-width:576px) {
    .pr-container {
        padding-inline-end: 20px
    }
}

@media (min-width:1200px) {
    .pr-container {
        padding-inline-end: calc(calc(100vw - 1200px)/2)
    }
}

.p-lr-container {
    padding-inline-start: 20px;
    padding-inline-end: 20px
}

@media (min-width:1200px) {
    .p-lr-container {
        padding-inline-start: calc(calc(100vw - 1200px)/2);
        padding-inline-end: calc(calc(100vw - 1200px)/2)
    }
}

.m-lr-auto {
    margin-left: auto;
    margin-right: auto
}

.mt-10 {
    margin-block-start: 10px !important
}

.mt-25 {
    margin-block-start: 25px !important
}

.mt-32 {
    margin-block-start: 32px !important
}

.mt-35 {
    margin-block-start: 35px !important
}

.mb-30 {
    margin-block-end: 30px !important
}

.ml-50 {
    margin-inline-start: 50px
}

.mr-40 {
    margin-inline-end: 40px
}

.mr-50 {
    margin-inline-end: 50px
}

.m-lr-50 {
    margin-inline-start: 50px;
    margin-inline-end: 50px
}

.m-lr-60 {
    margin-inline-start: 60px;
    margin-inline-end: 60px
}

.m-lr-100 {
    margin-inline-start: 100px;
    margin-inline-end: 100px
}

.elementor-element .mt-n5 {
    margin-block-start: -5px
}

.elementor-element .mt-n8 {
    margin-block-start: -8px
}

.elementor-element .mt-n10 {
    margin-block-start: -10px
}

.elementor-element .mb-n8 {
    margin-block-end: -8px
}

.elementor-element .m-lr-n15 {
    margin-inline-start: -15px;
    margin-inline-end: -15px
}

.pa {
    padding: var(--pa)
}

.pt {
    padding-top: var(--pt)
}

.pb {
    padding-bottom: var(--pb)
}

.p-tb {
    padding-top: var(--p-tb);
    padding-bottom: var(--p-tb)
}

.pl {
    padding-inline-start: var(--pl)
}

.pr {
    padding-inline-end: var(--pr)
}

.p-lr {
    padding-inline-start: var(--p-lr);
    padding-inline-end: var(--p-lr)
}

.mt {
    margin-top: var(--mt)
}

.mb {
    margin-bottom: var(--mb)
}

.m-tb {
    margin-top: var(--m-tb);
    margin-bottom: var(--m-tb)
}

.ml {
    margin-inline-start: var(--ml)
}

.mr {
    margin-inline-end: var(--mr)
}

.m-lr {
    margin-inline-start: var(--m-lr);
    margin-inline-end: var(--m-lr)
}

.lh-0 {
    line-height: 0
}

.lh-1 {
    line-height: 1
}

.lh-11 {
    line-height: 1.1
}

.lh-1375 {
    line-height: 1.375
}

.lh-1826 {
    line-height: 1.826
}

.font-300 {
    font-weight: 300
}

.font-400 {
    font-weight: 400
}

.font-500 {
    font-weight: 500
}

.font-600 {
    font-weight: 600
}

.font-700 {
    font-weight: 700
}

.font-italic {
    font-style: italic
}

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

.text-10>svg {
    width: 10px;
    height: auto
}

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

.text-12>svg {
    width: 12px;
    height: auto
}

.text-13 {
    font-size: 13px
}

.text-13>svg {
    width: 13px;
    height: auto
}

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

.text-14>svg {
    width: 14px;
    height: auto
}

.text-15 {
    font-size: 15px
}

.text-15>svg {
    width: 15px;
    height: auto
}

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

.text-16>svg {
    width: 16px;
    height: auto
}

.text-17 {
    font-size: 17px
}

.text-17>svg {
    width: 17px;
    height: auto
}

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

.text-18>svg {
    width: 18px;
    height: auto
}

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

.text-20>svg {
    width: 20px;
    height: auto
}

.text-22 {
    font-size: 22px
}

.text-22>svg {
    width: 22px;
    height: auto
}

.text-23 {
    font-size: 23px
}

.text-23>svg {
    width: 23px;
    height: auto
}

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

.text-24>svg {
    width: 24px;
    height: auto
}

.text-30 {
    font-size: 30px
}

.text-30>svg {
    width: 30px;
    height: auto
}

.text-38 {
    font-size: 38px
}

.text-38>svg {
    width: 38px;
    height: auto
}

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

.text-40>svg {
    width: 40px;
    height: auto
}

.text-45 {
    font-size: 45px
}

.text-45>svg {
    width: 45px;
    height: auto
}

.text-48 {
    font-size: 48px
}

.text-48>svg {
    width: 48px;
    height: auto
}

.text-50 {
    font-size: 50px
}

.text-50>svg {
    width: 50px;
    height: auto
}

.text-64 {
    font-size: 64px
}

.text-64>svg {
    width: 64px;
    height: auto
}

.text-75 {
    font-size: 75px
}

.text-75>svg {
    width: 75px;
    height: auto
}

.text-168 {
    font-size: 168px
}

.text-168>svg {
    width: 168px;
    height: auto
}

.text-size {
    font-size: var(--text-size)
}

.text-size>svg {
    width: var(--text-size)
}

.lh {
    line-height: var(--lh)
}

.heading,
.cms-heading {
    font-family: var(--cms-heading-font)
}

.cms-heading {
    color: var(--color-secondary)
}

.cms-hover-change:hover .text-on-hover-accent {
    color: var(--color-accent)
}

.cms-hover-change:hover .bg-on-hover-accent {
    background-color: var(--color-accent)
}

.cms-hover-change:hover .cms-btn-on-hover-accent {
    background-color: var(--color-accent);
    box-shadow: 0 0 0 2px var(--color-accent) inset !important
}

.cms-hover-change:hover .cms-on-hover-translateY {
    transform: translateY(var(--cms-on-hover-translateY))
}

.cms-hover-change:hover .text-on-hover-primary {
    color: var(--color-primary)
}

.cms-hover-change:hover .bg-on-hover-primary {
    background-color: var(--color-primary)
}

.cms-hover-change:hover .cms-btn-on-hover-primary {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary) inset !important
}

.cms-hover-change:hover .cms-on-hover-translateY {
    transform: translateY(var(--cms-on-hover-translateY))
}

.cms-hover-change:hover .text-on-hover-secondary {
    color: var(--color-secondary)
}

.cms-hover-change:hover .bg-on-hover-secondary {
    background-color: var(--color-secondary)
}

.cms-hover-change:hover .cms-btn-on-hover-secondary {
    background-color: var(--color-secondary);
    box-shadow: 0 0 0 2px var(--color-secondary) inset !important
}

.cms-hover-change:hover .cms-on-hover-translateY {
    transform: translateY(var(--cms-on-hover-translateY))
}

.cms-hover-change:hover .text-on-hover-tertiary {
    color: var(--color-tertiary)
}

.cms-hover-change:hover .bg-on-hover-tertiary {
    background-color: var(--color-tertiary)
}

.cms-hover-change:hover .cms-btn-on-hover-tertiary {
    background-color: var(--color-tertiary);
    box-shadow: 0 0 0 2px var(--color-tertiary) inset !important
}

.cms-hover-change:hover .cms-on-hover-translateY {
    transform: translateY(var(--cms-on-hover-translateY))
}

.cms-hover-change:hover .text-on-hover-white {
    color: var(--color-white)
}

.cms-hover-change:hover .bg-on-hover-white {
    background-color: var(--color-white)
}

.cms-hover-change:hover .cms-btn-on-hover-white {
    background-color: var(--color-white);
    box-shadow: 0 0 0 2px var(--color-white) inset !important
}

.cms-hover-change:hover .cms-on-hover-translateY {
    transform: translateY(var(--cms-on-hover-translateY))
}

.cms-hover-change:hover .text-on-hover-white-f4 {
    color: var(--color-white-f4)
}

.cms-hover-change:hover .bg-on-hover-white-f4 {
    background-color: var(--color-white-f4)
}

.cms-hover-change:hover .cms-btn-on-hover-white-f4 {
    background-color: var(--color-white-f4);
    box-shadow: 0 0 0 2px var(--color-white-f4) inset !important
}

.cms-hover-change:hover .cms-on-hover-translateY {
    transform: translateY(var(--cms-on-hover-translateY))
}

.cms-hover-change:hover .text-on-hover-btn {
    color: var(--color-btn)
}

.cms-hover-change:hover .bg-on-hover-btn {
    background-color: var(--color-btn)
}

.cms-hover-change:hover .cms-btn-on-hover-btn {
    background-color: var(--color-btn);
    box-shadow: 0 0 0 2px var(--color-btn) inset !important
}

.cms-hover-change:hover .cms-on-hover-translateY {
    transform: translateY(var(--cms-on-hover-translateY))
}

.cms-hover-change:hover .text-on-hover-btn2 {
    color: var(--color-btn2)
}

.cms-hover-change:hover .bg-on-hover-btn2 {
    background-color: var(--color-btn2)
}

.cms-hover-change:hover .cms-btn-on-hover-btn2 {
    background-color: var(--color-btn2);
    box-shadow: 0 0 0 2px var(--color-btn2) inset !important
}

.cms-hover-change:hover .cms-on-hover-translateY {
    transform: translateY(var(--cms-on-hover-translateY))
}

.text-accent,
.text-hover-accent:hover,
.cms-hover-change:hover .text-hover-accent:hover {
    color: var(--color-accent)
}

.bg-accent,
.bg-hover-accent:hover,
.cms-hover-change:hover .bg-hover-accent:hover {
    background-color: var(--color-accent)
}

.text-primary,
.text-hover-primary:hover,
.cms-hover-change:hover .text-hover-primary:hover {
    color: var(--color-primary)
}

.bg-primary,
.bg-hover-primary:hover,
.cms-hover-change:hover .bg-hover-primary:hover {
    background-color: var(--color-primary)
}

.text-secondary,
.text-hover-secondary:hover,
.cms-hover-change:hover .text-hover-secondary:hover {
    color: var(--color-secondary)
}

.bg-secondary,
.bg-hover-secondary:hover,
.cms-hover-change:hover .bg-hover-secondary:hover {
    background-color: var(--color-secondary)
}

.text-tertiary,
.text-hover-tertiary:hover,
.cms-hover-change:hover .text-hover-tertiary:hover {
    color: var(--color-tertiary)
}

.bg-tertiary,
.bg-hover-tertiary:hover,
.cms-hover-change:hover .bg-hover-tertiary:hover {
    background-color: var(--color-tertiary)
}

.text-white,
.text-hover-white:hover,
.cms-hover-change:hover .text-hover-white:hover {
    color: var(--color-white)
}

.bg-white,
.bg-hover-white:hover,
.cms-hover-change:hover .bg-hover-white:hover {
    background-color: var(--color-white)
}

.text-white-f4,
.text-hover-white-f4:hover,
.cms-hover-change:hover .text-hover-white-f4:hover {
    color: var(--color-white-f4)
}

.bg-white-f4,
.bg-hover-white-f4:hover,
.cms-hover-change:hover .bg-hover-white-f4:hover {
    background-color: var(--color-white-f4)
}

.text-btn,
.text-hover-btn:hover,
.cms-hover-change:hover .text-hover-btn:hover {
    color: var(--color-btn)
}

.bg-btn,
.bg-hover-btn:hover,
.cms-hover-change:hover .bg-hover-btn:hover {
    background-color: var(--color-btn)
}

.text-btn2,
.text-hover-btn2:hover,
.cms-hover-change:hover .text-hover-btn2:hover {
    color: var(--color-btn2)
}

.bg-btn2,
.bg-hover-btn2:hover,
.cms-hover-change:hover .bg-hover-btn2:hover {
    background-color: var(--color-btn2)
}

.text-nowrap {
    white-space: nowrap
}

.cms-hover-zoom-img:hover img {
    transform: scale(1.1)
}

.cms-hover-anim:hover .cms-hover-anim--icon {
    transform: scale(1.1)
}

.bdr-2 {
    border: 2px solid
}

.bdr-t-1 {
    border-top: 1px solid #e6e8eb
}

.bdr-t-2 {
    border-top: 2px solid #e6e8eb
}

.bdr-b-6 {
    border-bottom: 6px solid transparent
}

.bdr-b2 {
    border-bottom: 2px solid
}

.bdr-r-1 {
    border-right: 1px solid
}

.bdr-t-1 {
    border-top: 1px solid
}

.bdr-b-1 {
    border-bottom: 1px solid
}

.bdr-accent,
.bdr-active-accent.active,
.bdr-hover-accent:hover {
    border-color: var(--color-accent) !important
}

.bdr-t-accent {
    border-top-color: var(--color-accent) !important
}

.bdr-primary,
.bdr-active-primary.active,
.bdr-hover-primary:hover {
    border-color: var(--color-primary) !important
}

.bdr-t-primary {
    border-top-color: var(--color-primary) !important
}

.bdr-secondary,
.bdr-active-secondary.active,
.bdr-hover-secondary:hover {
    border-color: var(--color-secondary) !important
}

.bdr-t-secondary {
    border-top-color: var(--color-secondary) !important
}

.bdr-tertiary,
.bdr-active-tertiary.active,
.bdr-hover-tertiary:hover {
    border-color: var(--color-tertiary) !important
}

.bdr-t-tertiary {
    border-top-color: var(--color-tertiary) !important
}

.bdr-white,
.bdr-active-white.active,
.bdr-hover-white:hover {
    border-color: var(--color-white) !important
}

.bdr-t-white {
    border-top-color: var(--color-white) !important
}

.bdr-white-15,
.bdr-active-white-15.active,
.bdr-hover-white-15:hover {
    border-color: var(--color-white-15) !important
}

.bdr-t-white-15 {
    border-top-color: var(--color-white-15) !important
}

.bdr-white-25,
.bdr-active-white-25.active,
.bdr-hover-white-25:hover {
    border-color: var(--color-white-25) !important
}

.bdr-t-white-25 {
    border-top-color: var(--color-white-25) !important
}

.bdr-border,
.bdr-active-border.active,
.bdr-hover-border:hover {
    border-color: var(--color-border) !important
}

.bdr-t-border {
    border-top-color: var(--color-border) !important
}

.bdr-transparent,
.bdr-active-transparent.active,
.bdr-hover-transparent:hover {
    border-color: var(--color-transparent) !important
}

.bdr-t-transparent {
    border-top-color: var(--color-transparent) !important
}

[class*="cms-divider-bottom-"] {
    position: relative
}

[class*="cms-divider-bottom-"]:after {
    content: "";
    height: 3px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 40px;
    width: calc(100% - 80px);
    transition: all 300ms linear 0ms
}

[dir="rtl"] [class*="cms-divider-bottom-"]:after {
    left: auto;
    right: 40px
}

[class*="cms-divider-bottom-hover-"]:after {
    width: 0
}

.cms-divider-bottom-accent:after,
.cms-divider-bottom-hover-accent:hover:after {
    width: calc(100% - 80px);
    background-color: var(--color-accent)
}

.cms-divider-bottom-primary:after,
.cms-divider-bottom-hover-primary:hover:after {
    width: calc(100% - 80px);
    background-color: var(--color-primary)
}

.cms-divider-bottom-secondary:after,
.cms-divider-bottom-hover-secondary:hover:after {
    width: calc(100% - 80px);
    background-color: var(--color-secondary)
}

.cms-divider-bottom-tertiary:after,
.cms-divider-bottom-hover-tertiary:hover:after {
    width: calc(100% - 80px);
    background-color: var(--color-tertiary)
}

.cms-divider-bottom-white:after,
.cms-divider-bottom-hover-white:hover:after {
    width: calc(100% - 80px);
    background-color: var(--color-white)
}

.cms-divider-bottom-white-f4:after,
.cms-divider-bottom-hover-white-f4:hover:after {
    width: calc(100% - 80px);
    background-color: var(--color-white-f4)
}

.cms-divider-bottom-btn:after,
.cms-divider-bottom-hover-btn:hover:after {
    width: calc(100% - 80px);
    background-color: var(--color-btn)
}

.cms-divider-bottom-btn2:after,
.cms-divider-bottom-hover-btn2:hover:after {
    width: calc(100% - 80px);
    background-color: var(--color-btn2)
}

.cms-btn,
.cms-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 700
}

.cms-btn {
    border-radius: 6px;
    height: 51px;
    font-weight: 700;
    padding: 0 30px;
    border: none
}

.cms-btn2 {
    border-radius: 10px
}

.cms-btn-md {
    height: 42px;
    padding: 0 20px
}

.cms-btn-lg,
.cms-btn-xlg {
    height: 61px
}

.cms-btn-xl {
    height: 71px
}

.cms-btn-xlg {
    padding-left: 30px;
    padding-right: 30px
}

.cms-btn-2xlg {
    padding-left: 45px;
    padding-right: 45px
}

.cms-btn-accent,
.cms-btn-hover-accent:hover,
.cms-hover-change:hover .cms-btn-hover-accent:hover {
    background-color: var(--color-accent);
    box-shadow: 0 0 0 2px var(--color-accent) inset !important
}

.cms-btn-outline-accent,
.cms-btn-hover-outline-accent,
.cms-hover-change:hover .cms-btn-hover-outline-accent {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--color-accent) inset !important
}

.cms-btn-primary,
.cms-btn-hover-primary:hover,
.cms-hover-change:hover .cms-btn-hover-primary:hover {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary) inset !important
}

.cms-btn-outline-primary,
.cms-btn-hover-outline-primary,
.cms-hover-change:hover .cms-btn-hover-outline-primary {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--color-primary) inset !important
}

.cms-btn-secondary,
.cms-btn-hover-secondary:hover,
.cms-hover-change:hover .cms-btn-hover-secondary:hover {
    background-color: var(--color-secondary);
    box-shadow: 0 0 0 2px var(--color-secondary) inset !important
}

.cms-btn-outline-secondary,
.cms-btn-hover-outline-secondary,
.cms-hover-change:hover .cms-btn-hover-outline-secondary {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--color-secondary) inset !important
}

.cms-btn-tertiary,
.cms-btn-hover-tertiary:hover,
.cms-hover-change:hover .cms-btn-hover-tertiary:hover {
    background-color: var(--color-tertiary);
    box-shadow: 0 0 0 2px var(--color-tertiary) inset !important
}

.cms-btn-outline-tertiary,
.cms-btn-hover-outline-tertiary,
.cms-hover-change:hover .cms-btn-hover-outline-tertiary {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--color-tertiary) inset !important
}

.cms-btn-white,
.cms-btn-hover-white:hover,
.cms-hover-change:hover .cms-btn-hover-white:hover {
    background-color: var(--color-white);
    box-shadow: 0 0 0 2px var(--color-white) inset !important
}

.cms-btn-outline-white,
.cms-btn-hover-outline-white,
.cms-hover-change:hover .cms-btn-hover-outline-white {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--color-white) inset !important
}

.cms-btn-white-f4,
.cms-btn-hover-white-f4:hover,
.cms-hover-change:hover .cms-btn-hover-white-f4:hover {
    background-color: var(--color-white-f4);
    box-shadow: 0 0 0 2px var(--color-white-f4) inset !important
}

.cms-btn-outline-white-f4,
.cms-btn-hover-outline-white-f4,
.cms-hover-change:hover .cms-btn-hover-outline-white-f4 {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--color-white-f4) inset !important
}

.cms-btn-btn,
.cms-btn-hover-btn:hover,
.cms-hover-change:hover .cms-btn-hover-btn:hover {
    background-color: var(--color-btn);
    box-shadow: 0 0 0 2px var(--color-btn) inset !important
}

.cms-btn-outline-btn,
.cms-btn-hover-outline-btn,
.cms-hover-change:hover .cms-btn-hover-outline-btn {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--color-btn) inset !important
}

.cms-btn-btn2,
.cms-btn-hover-btn2:hover,
.cms-hover-change:hover .cms-btn-hover-btn2:hover {
    background-color: var(--color-btn2);
    box-shadow: 0 0 0 2px var(--color-btn2) inset !important
}

.cms-btn-outline-btn2,
.cms-btn-hover-outline-btn2,
.cms-hover-change:hover .cms-btn-hover-outline-btn2 {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--color-btn2) inset !important
}

.cms-btn-video {
    cursor: pointer;
    font-size: 15px;
    font-weight: 700
}

.cms-btn-video-1 {
    color: white
}

.cms-btn-video-1 .cms-play-icon {
    position: relative;
    width: 61px;
    height: 61px;
    background-color: white;
    color: var(--color-btn);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1);
    border-radius: 50%
}

.cms-btn-video-1 .cms-play-icon:after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite
}

.cms-btn-video-1.size-large .cms-play-icon {
    width: 81px;
    height: 81px;
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1)
}

.cms-gradient-render {
    border-radius: inherit
}

.cms-gradient-render:not(.cms-overlay):not(.relative) {
    position: relative
}

.cms-gradient-render:before,
.cms-gradient-render:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: inherit
}

.cms-gradient-1>.cms-gradient-render:before {
    background-color: rgba(29, 42, 77, 0.3)
}

.cms-gradient-1>.cms-gradient-render:after {
    opacity: 0.3;
    background: linear-gradient(to bottom, #1d2a4d 0%, rgba(28, 36, 56, 0) 34%, rgba(27, 26, 26, 0) 84%)
}

.cms-gradient-2>.cms-gradient-render:before {
    background-color: rgba(var(--rgb-color-primary), 0.9)
}

.cms-gradient-2>.cms-gradient-render:after {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(var(--rgb-color-primary), 0) 0%, rgba(var(--rgb-color-primary), 1) 53%, rgba(var(--rgb-color-primary), 1) 100%)
}

.cms-gradient-3>.cms-gradient-render:before {
    background-color: rgba(var(--rgb-color-secondary), 0.9)
}

.cms-gradient-3>.cms-gradient-render:after {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(var(--rgb-color-secondary), 0) 0%, rgba(var(--rgb-color-secondary), 1) 80%, rgba(var(--rgb-color-secondary), 1) 100%)
}

.cms-gradient-4>.cms-gradient-render:before {
    background-color: rgba(var(--rgb-color-primary), 0.9)
}

.cms-gradient-4>.cms-gradient-render:after {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(var(--rgb-color-primary), 1) 0%, rgba(var(--rgb-color-primary), 0.47) 53%, rgba(var(--rgb-color-primary), 0) 100%)
}

.cms-gradient-5>.cms-gradient-render:before {
    background-color: rgba(237, 251, 250, 0)
}

.cms-gradient-5>.cms-gradient-render:after {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 42%, white 100%)
}

.cms-hover-change:hover .cms-on-hover-gradient-6>.cms-gradient-render:before,
.cms-gradient-6>.cms-gradient-render:before {
    background-color: rgba(255, 255, 255, 0)
}

.cms-hover-change:hover .cms-on-hover-gradient-6>.cms-gradient-render:after,
.cms-gradient-6>.cms-gradient-render:after {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(29, 42, 77, 0) 0%, #1d2a4d 97%, #1d2a4d 100%)
}

.cms-hover-change:hover .cms-on-hover-gradient-7>.cms-gradient-render:before,
.cms-gradient-7>.cms-gradient-render:before {
    background-color: rgba(255, 255, 255, 0)
}

.cms-hover-change:hover .cms-on-hover-gradient-7>.cms-gradient-render:after,
.cms-gradient-7>.cms-gradient-render:after {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(var(--rgb-color-primary), 0) 0%, rgba(var(--rgb-color-primary), 1) 97%, rgba(var(--rgb-color-primary), 1) 100%)
}

.cms-gradient-8>.cms-gradient-render:before {
    background-color: rgba(255, 255, 255, 0)
}

.cms-gradient-8>.cms-gradient-render:after {
    background: linear-gradient(to bottom, #1d2a4d 0%, rgba(28, 33, 48, 0) 47%, rgba(27, 26, 26, 0) 82%);
    opacity: 0.45
}

.cms-gradient-9>.cms-gradient-render:before {
    background-color: rgba(var(--rgb-color-primary), 0.7)
}

.cms-gradient-9>.cms-gradient-render:after {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(var(--rgb-color-primary), 0) 0%, rgba(var(--rgb-color-primary), 1) 53%, rgba(var(--rgb-color-primary), 1) 100%)
}

.cms-slick-dots-currenColor .slick-dots li button {
    color: currentColor;
    background-color: currentColor
}

.cms-slick-dots-currenColor .slick-dots li button:before {
    background-color: currentColor;
    opacity: 0;
    transition: all 300ms linear 0ms
}

.cms-slick-dots-currenColor .slick-dots li:hover button:before,
.cms-slick-dots-currenColor .slick-dots li.slick-active button:before {
    opacity: 0.3
}

.slick-dots-40 .slick-dots {
    margin-top: 40px
}

.wpcf7-form-control-wrap.cms-date-time .cms-placeholder {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding-inline-start: 50px;
    padding-inline-end: 20px
}

.wpcf7-form-control-wrap .nice-select {
    background-color: transparent;
    z-index: 2
}

.wpcf7-form-control-wrap .nice-select .list {
    background-color: #fff
}

input.wpcf7-form-control::-moz-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    text-align: start;
    padding: 0;
    margin: 0;
    background-image: none
}

input.wpcf7-form-control::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    text-align: start;
    padding: 0;
    margin: 0;
    background-image: none
}

input.wpcf7-form-control::calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
    text-align: start;
    padding: 0;
    margin: 0;
    background-image: none
}

input.wpcf7-form-control::-moz-datetime-edit,
input.wpcf7-form-control::-webkit-datetime-edit,
input.wpcf7-form-control::datetime-edit {
    text-align: start;
    width: 100%
}

.cms-placeholder {
    white-space: nowrap
}

.cms-placeholder+.wpcf7-form-control {
    opacity: 0;
    position: relative
}

.cms-placeholder+.wpcf7-form-control:hover {
    opacity: 1
}

.cms-date-time input[type="text"]::placeholder {
    display: none !important;
    opacity: 0
}

.cms-date-time:hover .cms-placeholder,
.cms-date-time.active .cms-placeholder {
    opacity: 0
}

.cms-date-time:hover .cms-placeholder+.wpcf7-form-control,
.cms-date-time.active .cms-placeholder+.wpcf7-form-control {
    opacity: 1;
    z-index: 5
}

.wpcf7-form-control-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 21px;
    line-height: 0;
    color: #d5d7d9;
    z-index: 1
}

.wpcf7-form-control-icon.select {
    margin-inline-end: -7px;
    color: var(--icon-select-color, var(--color-secondary));
    z-index: 0
}

.wpcf7-form-control-icon svg {
    width: 21px;
    height: 21px
}

.wpcf7-form-control-icon.before {
    left: 25px
}

[dir="rtl"] .wpcf7-form-control-icon.before {
    left: auto;
    right: 25px
}

.wpcf7-form-control-icon.after {
    right: 25px
}

[dir="rtl"] .wpcf7-form-control-icon.after {
    right: auto;
    left: 25px
}

[class*="cms-box-"] {
    display: flex;
    align-items: center;
    justify-content: center
}

.cms-box-20 {
    width: 20px !important;
    height: 20px !important
}

.cms-box-22 {
    width: 22px !important;
    height: 22px !important
}

.cms-box-40 {
    width: 40px !important;
    height: 40px !important
}

.cms-box-42 {
    width: 42px !important;
    height: 42px !important
}

.cms-box-64 {
    width: 64px !important;
    height: 64px !important
}

.cms-box-100 {
    width: 100px !important;
    height: 100px !important
}

.cms-box-142 {
    width: 142px !important;
    height: 142px !important
}

@media screen and (max-width:1024px) {
    .text-size {
        font-size: var(--text-size-tablet, var(--text-size-tablet-extra, var(--text-size-laptop, var(--text-size))))
    }

    .pt-tablet-40 {
        padding-top: 40px
    }

    .pt-tablet-50 {
        padding-top: 50px
    }

    .pb-tablet-40 {
        padding-bottom: 40px
    }

    .p-tb-tablet-20 {
        padding-top: 20px;
        padding-bottom: 20px
    }

    .p-tb-tablet-30 {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .p-tb-tablet-40 {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .p-tb-tablet-45 {
        padding-top: 45px;
        padding-bottom: 45px
    }

    .pl-tablet-0 {
        padding-inline-start: 0px
    }

    .pr-tablet-0 {
        padding-inline-end: 0px
    }

    .p-lr-tablet-0 {
        padding-inline-start: 0px;
        padding-inline-end: 0px
    }

    .p-lr-tablet-10 {
        padding-inline-start: 10px;
        padding-inline-end: 10px
    }

    .p-lr-tablet-20 {
        padding-inline-start: 20px;
        padding-inline-end: 20px
    }

    .mt-tablet-32 {
        margin-block-start: 32px
    }

    .m-lr-tablet-0 {
        margin-inline-start: 0px;
        margin-inline-end: 0px
    }

    .m-lr-tablet-50 {
        margin-inline-start: 50px;
        margin-inline-end: 50px
    }

    .flex-cols-tablet-2>*:not(.col-separate) {
        flex: 0 0 calc(100% / 2);
        width: calc(100% / 2);
        max-width: calc(100% / 2)
    }

    .mt {
        margin-top: var(--mt-tablet, var(--mt-tablet-extra, var(--mt-laptop, var(--mt))))
    }

    .mb {
        margin-bottom: var(--mb-tablet, var(--mb-tablet-extra, var(--mb-laptop, var(--mb))))
    }

    .m-tb {
        margin-top: var(--m-tb-tablet, var(--m-tb-tablet-extra, var(--m-tb-laptop, var(--m-tb))));
        margin-bottom: var(--m-tb-tablet, var(--m-tb-tablet-extra, var(--m-tb-laptop, var(--m-tb))))
    }

    .ml {
        margin-inline-start: var(--ml-tablet, var(--ml-tablet-extra, var(--ml-laptop, var(--ml))))
    }

    .mr {
        margin-inline-end: var(--mr-tablet, var(--mr-tablet-extra, var(--mr-laptop, var(--mr))))
    }

    .m-lr {
        margin-inline-start: var(--m-lr-tablet, var(--m-lr-tablet-extra, var(--m-lr-laptop, var(--m-lr))));
        margin-inline-end: var(--m-lr-tablet, var(--m-lr-tablet-extra, var(--m-lr-laptop, var(--m-lr))))
    }

    .pa {
        padding: var(--pa-tablet, var(--pa-tablet-extra, var(--pa-laptop, var(--pa))))
    }

    .pt {
        padding-top: var(--pt-tablet, var(--pt-tablet-extra, var(--pt-laptop, var(--pt))))
    }

    .pb {
        padding-bottom: var(--pb-tablet, var(--pb-tablet-extra, var(--pb-laptop, var(--pb))))
    }

    .p-tb {
        padding-top: var(--p-tb-tablet, var(--p-tb-tablet-extra, var(--p-tb-laptop, var(--p-tb))));
        padding-bottom: var(--p-tb-tablet, var(--p-tb-tablet-extra, var(--p-tb-laptop, var(--p-tb))))
    }

    .pl {
        padding-inline-start: var(--pl-tablet, var(--pl-tablet-extra, var(--pl-laptop, var(--pl))))
    }

    .pr {
        padding-inline-end: var(--pr-tablet, var(--pr-tablet-extra, var(--pr-laptop, var(--pr))))
    }

    .p-lr {
        padding-inline-start: var(--p-lr-tablet, var(--p-lr-tablet-extra, var(--p-lr-laptop, var(--p-lr))));
        padding-inline-end: var(--p-lr-tablet, var(--p-lr-tablet-extra, var(--p-lr-laptop, var(--p-lr))))
    }

    .max-w {
        max-width: var(--max-w-tablet, var(--max-w-tablet-extra, var(--max-w-laptop, var(--max-w))))
    }

    .min-w {
        min-width: var(--min-w-tablet, var(--min-w-tablet-extram, var(--min-w-laptop, var(--min-w))))
    }

    .max-h {
        max-height: var(--max-h-tablet, var(--max-h-tablet-extra, var(--max-h-laptop, var(--max-h))))
    }

    .min-h {
        min-height: var(--min-h-tablet, var(--min-h-tablet-extra, var(--min-h-laptop, var(--min-h))))
    }

    .cms-hidden-tablet {
        display: none
    }
}

@media screen and (max-width:767px) {
    .text-mobile-50 {
        font-size: 50px
    }

    .text-size {
        font-size: var(--text-size-mobile, var(--text-size-mobile-extra, var(--text-size-tablet, var(--text-size-tablet-extra, var(--text-size-laptop, var(--text-size))))))
    }

    .flex-cols-mobile-1>*:not(.col-separate) {
        flex: 0 0 calc(100% / 1);
        width: calc(100% / 1);
        max-width: calc(100% / 1)
    }

    .cms-hidden-mobile {
        display: none
    }

    .order-mobile-first {
        order: -1 !important
    }

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

    .mt {
        margin-top: var(--mt-mobile, var(--mt-mobile-extra, var(--mt-tablet, var(--mt-tablet-extra, var(--mt-laptop, var(--mt))))))
    }

    .mb {
        margin-bottom: var(--mb-mobile, var(--mb-mobile-extra, var(--mb-tablet, var(--mb-tablet-extra, var(--mb-laptop, var(--mb))))))
    }

    .m-tb {
        margin-top: var(--m-tb-mobile, var(--m-tb-mobile-extra, var(--m-tb-tablet, var(--m-tb-tablet-extra, var(--m-tb-laptop, var(--m-tb))))));
        margin-bottom: var(--m-tb-mobile, var(--m-tb-mobile-extra, var(--m-tb-tablet, var(--m-tb-tablet-extra, var(--m-tb-laptop, var(--m-tb))))))
    }

    .ml {
        margin-inline-start: var(--ml-mobile, var(--ml-mobile-extra, var(--ml-tablet, var(--ml-tablet-extra, var(--ml-laptop, var(--ml))))))
    }

    .mr {
        margin-inline-end: var(--mr-mobile, var(--mr-mobile-extra, var(--mr-tablet, var(--mr-tablet-extra, var(--mr-laptop, var(--mr))))))
    }

    .m-lr {
        margin-inline-start: var(--m-lr-mobile, var(--m-lr-mobile-extra, var(--m-lr-tablet, var(--m-lr-tablet-extra, var(--m-lr-laptop, var(--m-lr))))));
        margin-inline-end: var(--m-lr-mobile, var(--m-lr-mobile-extra, var(--m-lr-tablet, var(--m-lr-tablet-extra, var(--m-lr-laptop, var(--m-lr))))))
    }

    .pa {
        padding: var(--pa-mobile, var(--pa-mobile-extra, var(--pa-tablet, var(--pa-tablet-extra, var(--pa-laptop, var(--pa))))))
    }

    .pt {
        padding-top: var(--pt-mobile, var(--pt-mobile-extra, var(--pt-tablet, var(--pt-tablet-extra, var(--pt-laptop, var(--pt))))))
    }

    .pb {
        padding-bottom: var(--pb-mobile, var(--pb-mobile-extra, var(--pb-tablet, var(--pb-tablet-extra, var(--pb-laptop, var(--pb))))))
    }

    .p-tb {
        padding-top: var(--p-tb-mobile, var(--p-tb-mobile-extra, var(--p-tb-tablet, var(--p-tb-tablet-extra, var(--p-tb-laptop, var(--p-tb))))));
        padding-bottom: var(--p-tb-mobile, var(--p-tb-mobile-extra, var(--p-tb-tablet, var(--p-tb-tablet-extra, var(--p-tb-laptop, var(--p-tb))))))
    }

    .pl {
        padding-inline-start: var(--pl-mobile, var(--pl-mobile-extra, var(--pl-tablet, var(--pl-tablet-extra, var(--pl-laptop, var(--pl))))))
    }

    .pr {
        padding-inline-end: var(--pr-mobile, var(--pr-mobile-extra, var(--pr-tablet, var(--pr-tablet-extra, var(--pr-laptop, var(--pr))))))
    }

    .p-lr {
        padding-inline-start: var(--p-lr-mobile, var(--p-lr-mobile-extra, var(--p-lr-tablet, var(--p-lr-tablet-extra, var(--p-lr-laptop, var(--p-lr))))));
        padding-inline-end: var(--p-lr-mobile, var(--p-lr-mobile-extra, var(--p-lr-tablet, var(--p-lr-tablet-extra, var(--p-lr-laptop, var(--p-lr))))))
    }

    .max-w {
        max-width: var(--max-w-mobile, var(--max-w-mobile-extra, var(--max-w-tablet, var(--max-w-tablet-extra, var(--max-w-laptop, var(--max-w))))))
    }

    .min-w {
        min-width: var(--min-w-mobile, var(--min-w-mobile-extra, var(--min-w-tablet, var(--min-w-tablet-extram, var(--min-w-laptop, var(--min-w))))))
    }

    .max-h {
        max-height: var(--max-h-mobile, var(--max-h-mobile-extra, var(--max-h-tablet, var(--max-h-tablet-extra, var(--max-h-laptop, var(--max-h))))))
    }

    .min-h {
        min-height: var(--min-h-mobile, var(--min-h-mobile-extra, var(--min-h-tablet, var(--min-h-tablet-extra, var(--min-h-laptop, var(--min-h))))))
    }
}

@media screen and (max-width:575px) {
    .text-size {
        font-size: var(--text-size-smobile, var(--text-size-mobile, var(--text-size-mobile-extra, var(--text-size-tablet, var(--text-size-tablet-extra, var(--text-size-laptop, var(--text-size)))))))
    }

    .pt-smobile-200 {
        padding-top: 200px
    }

    .p-lr-smobile-20 {
        padding-inline-start: 20px;
        padding-inline-end: 20px
    }

    .flex-cols-smobile-1>*:not(.col-separate) {
        flex: 0 0 calc(100% / 1);
        width: calc(100% / 1);
        max-width: calc(100% / 1)
    }

    .flex-smobile-100 {
        width: 100%;
        flex: 0 0 100%
    }

    .cms-hidden-smobile {
        display: none
    }

    .mt {
        margin-top: var(--mt-smobile, var(--mt-mobile, var(--mt-mobile-extra, var(--mt-tablet, var(--mt-tablet-extra, var(--mt-laptop, var(--mt)))))))
    }

    .mb {
        margin-bottom: var(--mb-smobile, var(--mb-mobile, var(--mb-mobile-extra, var(--mb-tablet, var(--mb-tablet-extra, var(--mb-laptop, var(--mb)))))))
    }

    .m-tb {
        margin-top: var(--m-tb-smobile, var(--m-tb-mobile, var(--m-tb-mobile-extra, var(--m-tb-tablet, var(--m-tb-tablet-extra, var(--m-tb-laptop, var(--m-tb)))))));
        margin-bottom: var(--m-tb-smobile, var(--m-tb-mobile, var(--m-tb-mobile-extra, var(--m-tb-tablet, var(--m-tb-tablet-extra, var(--m-tb-laptop, var(--m-tb)))))))
    }

    .ml {
        margin-inline-start: var(--ml-smobile, var(--ml-mobile, var(--ml-mobile-extra, var(--ml-tablet, var(--ml-tablet-extra, var(--ml-laptop, var(--ml)))))))
    }

    .mr {
        margin-inline-end: var(--mr-smobile, var(--mr-mobile, var(--mr-mobile-extra, var(--mr-tablet, var(--mr-tablet-extra, var(--mr-laptop, var(--mr)))))))
    }

    .m-lr {
        margin-inline-start: var(--m-lr-smobile, var(--m-lr-mobile, var(--m-lr-mobile-extra, var(--m-lr-tablet, var(--m-lr-tablet-extra, var(--m-lr-laptop, var(--m-lr)))))));
        margin-inline-end: var(--m-lr-smobile, var(--m-lr-mobile, var(--m-lr-mobile-extra, var(--m-lr-tablet, var(--m-lr-tablet-extra, var(--m-lr-laptop, var(--m-lr)))))))
    }

    .pa {
        padding: var(--pa-smobile, var(--pa-mobile, var(--pa-mobile-extra, var(--pa-tablet, var(--pa-tablet-extra, var(--pa-laptop, var(--pa)))))))
    }

    .pt {
        padding-top: var(--pt-smobile, var(--pt-mobile, var(--pt-mobile-extra, var(--pt-tablet, var(--pt-tablet-extra, var(--pt-laptop, var(--pt)))))))
    }

    .pb {
        padding-bottom: var(--pb-smobile, var(--pb-mobile, var(--pb-mobile-extra, var(--pb-tablet, var(--pb-tablet-extra, var(--pb-laptop, var(--pb)))))))
    }

    .p-tb {
        padding-top: var(--p-tb-smobile, var(--p-tb-mobile, var(--p-tb-mobile-extra, var(--p-tb-tablet, var(--p-tb-tablet-extra, var(--p-tb-laptop, var(--p-tb)))))));
        padding-bottom: var(--p-tb-smobile, var(--p-tb-mobile, var(--p-tb-mobile-extra, var(--p-tb-tablet, var(--p-tb-tablet-extra, var(--p-tb-laptop, var(--p-tb)))))))
    }

    .pl {
        padding-inline-start: var(--pl-smobile, var(--pl-mobile, var(--pl-mobile-extra, var(--pl-tablet, var(--pl-tablet-extra, var(--pl-laptop, var(--pl)))))))
    }

    .pr {
        padding-inline-end: var(--pr-smobile, var(--pr-mobile, var(--pr-mobile-extra, var(--pr-tablet, var(--pr-tablet-extra, var(--pr-laptop, var(--pr)))))))
    }

    .p-lr {
        padding-inline-start: var(--p-lr-smobile, var(--p-lr-mobile, var(--p-lr-mobile-extra, var(--p-lr-tablet, var(--p-lr-tablet-extra, var(--p-lr-laptop, var(--p-lr)))))));
        padding-inline-end: var(--p-lr-smobile, var(--p-lr-mobile, var(--p-lr-mobile-extra, var(--p-lr-tablet, var(--p-lr-tablet-extra, var(--p-lr-laptop, var(--p-lr)))))))
    }

    .max-w {
        max-width: var(--max-w-smobile, var(--max-w-mobile, var(--max-w-mobile-extra, var(--max-w-tablet, var(--max-w-tablet-extra, var(--max-w-laptop, var(--max-w)))))))
    }

    .min-w {
        min-width: var(--min-w-smobile, var(--min-w-mobile, var(--min-w-mobile-extra, var(--min-w-tablet, var(--min-w-tablet-extram, var(--min-w-laptop, var(--min-w)))))))
    }

    .max-h {
        max-height: var(--max-h-smobile, var(--max-h-mobile, var(--max-h-mobile-extra, var(--max-h-tablet, var(--max-h-tablet-extra, var(--max-h-laptop, var(--max-h)))))))
    }

    .min-h {
        min-height: var(--min-h-smobile, var(--min-h-mobile, var(--min-h-mobile-extra, var(--min-h-tablet, var(--min-h-tablet-extra, var(--min-h-laptop, var(--min-h)))))))
    }
}

.cms-hover-show {
    visibility: hidden;
    opacity: 0
}

.cms-hover-change:hover .cms-hover-show {
    visibility: visible;
    opacity: 1
}

.row-grid {
    margin: -15px
}

.row-grid>* {
    padding: 15px
}

.menu-color {
    color: var(--menu-color-regular)
}

.menu-color:hover {
    color: var(--menu-color-hover)
}

.menu-color.active {
    color: var(--menu-color-active)
}

.p-lr-hover-20:hover {
    padding-left: 20px;
    padding-right: 20px
}

.p-tb-hover-8:hover {
    padding-top: 8px;
    padding-bottom: 8px
}

[dir="rtl"] .rtl-flip {
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH"
}

.swiper:not(.swiper-initialized) .swiper-wrapper {
    flex-wrap: nowrap;
    opacity: 0
}

.swiper-fade .swiper-slide:not(.swiper-slide-active) {
    opacity: 0;
    visibility: hidden
}

.cms-carousel-item-shadow-yes .cms-carousel.swiper {
    overflow: visible
}

.cms-carousel-item-shadow-yes .cms-carousel-item:not(.swiper-slide-visible),
.cms-carousel-item-shadow-yes .cms-swiper-item:not(.swiper-slide-visible) {
    opacity: 0;
    visibility: hidden
}

.cms-slick-carousel .swiper-slide:not(.swiper-slide-visible) {
    opacity: 0;
    visibility: hidden
}

.swiper-slide {
    max-width: 100%
}

[class*="cms-carousel-button"] {
    cursor: pointer;
    transition: all 300ms linear 0ms;
    z-index: 1
}

[class*="cms-carousel-button"]>* {
    display: inline-block;
    vertical-align: top
}

.cms-carousel-navs {
    margin-top: 40px
}

.cms-carousel-button.arrow-button {
    width: 40px;
    height: 40px;
    text-align: center
}

.cms-carousel-button.arrow-button:not([class*="bg-"]) {
    background-color: var(--color-primary);
    color: white
}

.cms-carousel-button.arrow-button:not([class*="bg-hover-"]) {
    background-color: var(--color-accent)
}

.cms-carousel-button.in,
.cms-carousel-button.out {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.cms-carousel-button.in.next {
    right: 0
}

[dir="rtl"] .cms-carousel-button.in.next {
    right: auto;
    left: 0
}

.cms-carousel-button.in.prev {
    left: 0
}

[dir="rtl"] .cms-carousel-button.in.prev {
    left: auto;
    right: 0
}

.cms-carousel-button.out.next {
    right: -140px
}

[dir="rtl"] .cms-carousel-button.out.next {
    right: auto;
    left: -140px
}

@media screen and (max-width:1024px) {
    .cms-carousel-button.out.next {
        right: -50px
    }

    [dir="rtl"] .cms-carousel-button.out.next {
        right: auto;
        left: -50px
    }
}

@media screen and (max-width:767px) {
    .cms-carousel-button.out.next {
        right: 0
    }

    [dir="rtl"] .cms-carousel-button.out.next {
        right: auto;
        left: 0
    }
}

.cms-carousel-button.out.prev {
    left: -140px
}

[dir="rtl"] .cms-carousel-button.out.prev {
    left: auto;
    right: -140px
}

@media screen and (max-width:1024px) {
    .cms-carousel-button.out.prev {
        left: -50px
    }

    [dir="rtl"] .cms-carousel-button.out.prev {
        left: auto;
        right: -50px
    }
}

@media screen and (max-width:767px) {
    .cms-carousel-button.out.prev {
        left: 0
    }

    [dir="rtl"] .cms-carousel-button.out.prev {
        left: auto;
        right: 0
    }
}

.cms-carousel-button .cms-carousel-button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.cms-carousel-button .cms-carousel-button-icon.hover {
    transform: translate(-150%, -50%)
}

.cms-carousel-button .cms-carousel-button-icon.hover {
    opacity: 0;
    visibility: hidden
}

.cms-carousel-button.hover:hover .cms-carousel-button-icon:not(.hover) {
    opacity: 0;
    visibility: hidden;
    transform: translate(150%, -50%)
}

.cms-carousel-button.hover:hover .cms-carousel-button-icon.hover {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%)
}

.cms-carousel-button-hover-circle {
    color: var(--color-primary)
}

.cms-carousel-button-hover-circle>* {
    position: relative
}

.cms-carousel-button-hover-circle>*:before,
.cms-carousel-button-hover-circle>* svg {
    position: relative;
    z-index: 1
}

.cms-carousel-button-hover-circle>*:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    border-radius: 50%;
    background-color: rgba(var(--rgb-color-primary), 1);
    opacity: 0;
    width: 58px;
    height: 58px;
    transition: all 300ms linear 0ms;
    backdrop-filter: blur(10px) brightness(93%)
}

.cms-carousel-button-hover-circle:hover>* {
    color: white
}

.cms-carousel-button-hover-circle:hover>*:after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
}

.cms-carousel-button-hover-circle.white>* {
    color: #fff
}

.cms-carousel-button-hover-circle.white>*:after {
    background-color: rgba(255, 255, 255, 0.4)
}

.cms-slick-carousel .swiper-button-prev {
    left: var(--swiper-button-prev-pos, 0)
}

.cms-slick-carousel .swiper-button-next {
    right: var(--swiper-button-next-pos, 0)
}

.cms-slick-carousel [class*="swiper-button-"] {
    color: var(--swiper-navigation-color, var(--color-secondary));
    transition: all 300ms linear 0ms
}

.cms-slick-carousel [class*="swiper-button-"]:hover {
    opacity: var(--swiper-navigation-hover-opacity, 0.7);
    color: var(--swiper-navigation-color-hover, var(--color-primary))
}

.cms-slick-carousel [class*="swiper-button-"].relative {
    position: relative
}

.cms-carousel-dots {
    display: flex;
    align-items: end;
    gap: 10px;
    cursor: auto
}

.cms-carousel-dots:not([class*="mt-"]) {
    margin-top: 40px
}

.cms-carousel-dots .swiper-pagination-bullet {
    cursor: pointer
}

.cms-carousel-dots:not(.swiper-pagination-bullets-dynamic).cms-swiper-pagination-bullet {
    cursor: pointer;
    position: relative;
    transition: all 300ms linear 0ms
}

.cms-carousel-dots:not(.swiper-pagination-bullets-dynamic).cms-swiper-pagination-bullet:before,
.cms-carousel-dots:not(.swiper-pagination-bullets-dynamic).cms-swiper-pagination-bullet:after {
    transition: all 300ms linear 0ms
}

.cms-carousel-dots-in {
    position: absolute
}

.cms-swiper-pagination-bullet {
    position: relative;
    cursor: pointer;
    transition: all 300ms linear 0ms
}

.cms-swiper-pagination-bullet:before,
.cms-swiper-pagination-bullet:after {
    transition: all 300ms linear 0ms
}

.cms-carousel-dots-bullets {
    font-size: 0
}

.cms-carousel-dots-bullets.swiper-pagination-horizontal .cms-swiper-pagination-bullet {
    width: 20px;
    height: 6px
}

.cms-carousel-dots-bullets.swiper-pagination-vertical .cms-swiper-pagination-bullet {
    width: 20px;
    height: 6px
}

.cms-carousel-dots-circle {
    font-size: 0;
    gap: 0
}

.cms-carousel-dots-circle .cms-swiper-pagination-bullet {
    width: 26px;
    height: 26px;
    background-color: transparent
}

.cms-carousel-dots-circle .cms-swiper-pagination-bullet:before,
.cms-carousel-dots-circle .cms-swiper-pagination-bullet:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: currentColor
}

.cms-carousel-dots-circle .cms-swiper-pagination-bullet:before {
    width: 10px;
    height: 10px
}

.cms-carousel-dots-circle .cms-swiper-pagination-bullet:after {
    width: 22px;
    height: 22px;
    visibility: hidden;
    opacity: 0
}

.cms-carousel-dots-circle .cms-swiper-pagination-bullet:hover,
.cms-carousel-dots-circle .cms-swiper-pagination-bullet-active {
    background-color: transparent
}

.cms-carousel-dots-circle .cms-swiper-pagination-bullet:hover:after,
.cms-carousel-dots-circle .cms-swiper-pagination-bullet-active:after {
    visibility: visible;
    opacity: 0.2
}

.cms-carousel-dots-number .cms-swiper-pagination-bullet {
    font-size: 15px;
    border-bottom: 1px solid
}

.cms-carousel-dots-number .cms-swiper-pagination-bullet:hover,
.cms-carousel-dots-number .cms-swiper-pagination-bullet-active {
    padding-inline-end: 10px
}

.cms-carousel-dots-number.swiper-pagination-vertical .cms-swiper-pagination-bullet {
    margin-inline-end: 25px
}

.cms-carousel-dots-number.swiper-pagination-vertical .cms-swiper-pagination-bullet:hover,
.cms-carousel-dots-number.swiper-pagination-vertical .cms-swiper-pagination-bullet-active {
    margin-inline-end: 0;
    padding-inline-end: 25px
}

.cms-carousel-dots-progressbar.swiper-pagination-progressbar:not(.in) {
    position: relative
}

.cms-carousel-dots.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.cms-carousel-dots.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: auto;
    transform: translateX(0)
}

.cms-carousel-dots-custom-1 {
    position: static
}

.cms-carousel-dots-custom-1.swiper-pagination-bullets-dynamic {
    transform: none !important;
    gap: 30px;
    overflow: visible
}

.cms-carousel-dots-custom-1.swiper-pagination-bullets-dynamic .cms-swiper-pagination-bullet-custom {
    transition: 0.2s transform, 0.2s left;
    width: 170px;
    cursor: pointer
}

.cms-carousel-dots-custom-1.swiper-pagination-bullets-dynamic .cms-swiper-pagination-bullet-custom .cms-ttmn-img {
    padding: 7px;
    border: 2px solid var(--color-primary);
    border-radius: 50%
}

.cms-carousel-dots-custom-1.swiper-pagination-bullets-dynamic .cms-swiper-pagination-bullet-custom:not(.active-main) {
    opacity: 0.5
}

.cms-carousel-dots-custom-1.swiper-pagination-bullets-dynamic .cms-swiper-pagination-bullet-custom:not(.active-main) .cms-ttmn-img {
    border-color: transparent
}

.cms-carousel-dots-custom-1.swiper-pagination-bullets-dynamic .cms-swiper-pagination-bullet-custom:not(.active-main) .icon-quote {
    opacity: 0
}

.swiper-pagination-html:not(.swiper-pagination-html-active) {
    opacity: var(--swiper-pagination-bullet-inactive-opacity)
}

.swiper-pagination-html:not(.swiper-pagination-html-active):hover {
    opacity: 1
}

.cms-carousel-dots-color .cms-swiper-pagination-bullet {
    color: var(--cms-dots-color)
}

.cms-carousel-dots-color.cms-carousel-dots-bullets .cms-swiper-pagination-bullet {
    background-color: var(--cms-dots-color)
}

.cms-carousel-dots-color.cms-carousel-dots-bullets .cms-swiper-pagination-bullet:hover,
.cms-carousel-dots-color.cms-carousel-dots-bullets .cms-swiper-pagination-bullet-active {
    background-color: var(--cms-dots-color-hover)
}

.cms-carousel-dots-color.cms-carousel-dots-circle .cms-swiper-pagination-bullet:before {
    background-color: var(--cms-dots-color)
}

.cms-carousel-dots-color.cms-carousel-dots-circle .cms-swiper-pagination-bullet:after {
    border-color: var(--cms-dots-color);
    opacity: 0
}

.cms-carousel-dots-color.cms-carousel-dots-circle .cms-swiper-pagination-bullet:hover:after,
.cms-carousel-dots-color.cms-carousel-dots-circle .cms-swiper-pagination-bullet-active:after {
    background-color: var(--cms-dots-color-hover);
    opacity: 0.3
}

.cms-carousel-dots-color.cms-carousel-dots-progressbar {
    background-color: var(--cms-dots-color)
}

.cms-carousel-dots-container {
    padding-left: 20px;
    padding-right: 20px
}

@media (min-width:1320px) {
    .cms-carousel-dots-container {
        padding-left: calc(calc(100% - 1280px)/2);
        padding-right: calc(calc(100% - 1280px)/2)
    }
}

@media (min-width:1280px) {
    .cms-swiper-full-end .cms-carousel {
        margin-inline-end: -120px
    }
}

@media (min-width:1600px) {
    .cms-swiper-full-end .cms-carousel {
        margin-inline-end: -120px
    }
}

@media (min-width:1280px) {
    .cms-swiper-full-start .cms-carousel {
        margin-inline-start: -120px
    }
}

@media (min-width:1600px) {
    .cms-swiper-full-start .cms-carousel {
        margin-inline-start: -120px
    }
}

@media (min-width:1280px) {
    .cms-swiper-full-end-medium .cms-carousel {
        margin-inline-end: -210px
    }
}

@media (min-width:1600px) {
    .cms-swiper-full-end-medium .cms-carousel {
        margin-inline-end: -210px
    }
}

@media (min-width:1800px) {
    .cms-swiper-full-end-medium .cms-carousel {
        margin-inline-end: -210px
    }
}

@media (min-width:1280px) {
    .cms-swiper-full-start-medium .cms-carousel {
        margin-inline-start: -210px
    }
}

@media (min-width:1600px) {
    .cms-swiper-full-start-medium .cms-carousel {
        margin-inline-start: -210px
    }
}

@media (min-width:1800px) {
    .cms-swiper-full-start-medium .cms-carousel {
        margin-inline-start: -210px
    }
}

@media (min-width:1280px) {
    .cms-swiper-full-end-large .cms-carousel {
        margin-inline-end: -350px
    }
}

@media (min-width:1600px) {
    .cms-swiper-full-end-large .cms-carousel {
        margin-inline-end: -350px
    }
}

@media (min-width:1800px) {
    .cms-swiper-full-end-large .cms-carousel {
        margin-inline-end: -350px
    }
}

@media (min-width:1280px) {
    .cms-swiper-full-start-large .cms-carousel {
        margin-inline-start: -350px
    }
}

@media (min-width:1600px) {
    .cms-swiper-full-start-large .cms-carousel {
        margin-inline-start: -350px
    }
}

@media (min-width:1800px) {
    .cms-swiper-full-start-large .cms-carousel {
        margin-inline-start: -350px
    }
}

@media (min-width:1280px) {
    .cms-swiper-full-end-mlarge .cms-carousel {
        margin-inline-end: -452px
    }
}

@media (min-width:1600px) {
    .cms-swiper-full-end-mlarge .cms-carousel {
        margin-inline-end: -452px
    }
}

@media (min-width:1800px) {
    .cms-swiper-full-end-mlarge .cms-carousel {
        margin-inline-end: -452px
    }
}

@media (min-width:1280px) {
    .cms-swiper-full-start-mlarge .cms-carousel {
        margin-inline-start: -452px
    }
}

@media (min-width:1600px) {
    .cms-swiper-full-start-mlarge .cms-carousel {
        margin-inline-start: -452px
    }
}

@media (min-width:1800px) {
    .cms-swiper-full-start-mlarge .cms-carousel {
        margin-inline-start: -452px
    }
}

@media (min-width:1280px) {
    .cms-swiper-full-end-xlarge .cms-carousel {
        margin-inline-end: -600px
    }
}

@media (min-width:1600px) {
    .cms-swiper-full-end-xlarge .cms-carousel {
        margin-inline-end: -600px
    }
}

@media (min-width:1800px) {
    .cms-swiper-full-end-xlarge .cms-carousel {
        margin-inline-end: -600px
    }
}

@media (min-width:1280px) {
    .cms-swiper-full-start-xlarge .cms-carousel {
        margin-inline-start: -600px
    }
}

@media 1600px {
    .cms-swiper-full-start-xlarge .cms-carousel {
        margin-inline-start: -600px
    }
}

@media (min-width:1800px) {
    .cms-swiper-full-start-xlarge .cms-carousel {
        margin-inline-start: -600px
    }
}

@media (min-width:1280px) {
    .cms-swiper-full-both .cms-carousel {
        margin-left: -310px;
        margin-right: -310px
    }
}

.cms-swiper-splits,
.cms-swiper-split {
    overflow: hidden;
    height: 100vh
}

.cms-swiper-split.swiper-slide-active .swiper-half {
    opacity: 1;
    transform: translateY(0)
}

.cms-swiper-split .swiper-half {
    height: 100vh;
    position: relative;
    transition: 1s ease;
    opacity: 0
}

.cms-swiper-split .swiper-l {
    transform: translateY(-100%)
}

.cms-swiper-split .swiper-r {
    transform: translateY(100%)
}

@media screen and (min-width:1200px) {
    .header-layout8 .primary-menu>li>a {
        line-height: 107px
    }

    .header-layout8 .primary-menu>li>a:before {
        height: 1px;
        top: calc(50% + 12px);
        right: 0
    }

    [dir="rtl"] .header-layout8 .primary-menu>li>a:before {
        right: 15px;
        left: 0
    }

    .header-layout8 .primary-menu>li.menu-item-has-children:hover>a:after,
    .header-layout8 .primary-menu>li.current-menu-ancestor>a:after,
    .header-layout8 .primary-menu>li.current-menu-parent>a:after,
    .header-layout8 .primary-menu>li.current-menu-item>a:after {
        color: var(--color-primary)
    }
}

.header-layout8 .btn {
    border-radius: 5px;
    padding: 0 20px;
    background-color: var(--color-tertiary);
    border-color: var(--color-teriary)
}

.header-layout8 .btn:hover {
    background-color: var(--color-primary);
    border-color: var(--colorprimary)
}

.text-grey-10 {
    color: #85849e
}

.bg-grey-10 {
    background-color: #85849e
}

.bdr-grey-10 {
    border-color: #85849e !important
}

.text-grey-10-2 {
    color: #f1f7fe
}

.bg-grey-10-2 {
    background-color: #f1f7fe
}

.bdr-grey-10-2 {
    border-color: #f1f7fe !important
}

.text-light-grey-10 {
    color: #f4f4f4
}

.bg-light-grey-10 {
    background-color: #f4f4f4
}

.bdr-light-grey-10 {
    border-color: #f4f4f4 !important
}

.text-light-grey-10-2 {
    color: #f9f9f9
}

.bg-light-grey-10-2 {
    background-color: #f9f9f9
}

.bdr-light-grey-10-2 {
    border-color: #f9f9f9 !important
}

.text-blue-10 {
    color: #283b6a
}

.bg-blue-10 {
    background-color: #283b6a
}

.bdr-blue-10 {
    border-color: #283b6a !important
}

.text-blue-10-2 {
    color: #0e204d
}

.bg-blue-10-2 {
    background-color: #0e204d
}

.bdr-blue-10-2 {
    border-color: #0e204d !important
}

.text-body-10 {
    color: #848e9f
}

.bg-body-10 {
    background-color: #848e9f
}

.bdr-body-10 {
    border-color: #848e9f !important
}

.text-menu-color {
    color: var(--menu-color-regular)
}

.bg-menu-color {
    background-color: var(--menu-color-regular)
}

.bdr-menu-color {
    border-color: var(--menu-color-regular) !important
}

.text-border-10 {
    color: #e7ebef
}

.bg-border-10 {
    background-color: #e7ebef
}

.bdr-border-10 {
    border-color: #e7ebef !important
}

.text-border-10-30 {
    color: rgba(231, 235, 239, 0.3)
}

.bg-border-10-30 {
    background-color: rgba(231, 235, 239, 0.3)
}

.bdr-border-10-30 {
    border-color: rgba(231, 235, 239, 0.3) !important
}

.text-custom-mc-1 {
    color: #283b6a
}

.bg-custom-mc-1 {
    background-color: #283b6a
}

.bdr-custom-mc-1 {
    border-color: #283b6a !important
}

.cms-btn-custom-mc-1,
.cms-btn-hover-custom-mc-1:hover,
.cms-hover-change:hover .cms-btn-hover-custom-mc-1:hover {
    background-color: #283b6a;
    box-shadow: 0 0 0 2px #283b6a inset !important
}

.cms-btn-outline-custom-mc-1,
.cms-btn-hover-outline-custom-mc-1,
.cms-hover-change:hover .cms-btn-hover-outline-custom-mc-1 {
    background-color: transparent;
    box-shadow: 0 0 0 2px #283b6a inset !important
}

.text-custom-mc-1-70 {
    color: rgba(40, 59, 106, 0.7)
}

.bg-custom-mc-1-70 {
    background-color: rgba(40, 59, 106, 0.7)
}

.bdr-custom-mc-1-70 {
    border-color: rgba(40, 59, 106, 0.7) !important
}

.cms-btn-custom-mc-1-70,
.cms-btn-hover-custom-mc-1-70:hover,
.cms-hover-change:hover .cms-btn-hover-custom-mc-1-70:hover {
    background-color: rgba(40, 59, 106, 0.7);
    box-shadow: 0 0 0 2px rgba(40, 59, 106, 0.7) inset !important
}

.cms-btn-outline-custom-mc-1-70,
.cms-btn-hover-outline-custom-mc-1-70,
.cms-hover-change:hover .cms-btn-hover-outline-custom-mc-1-70 {
    background-color: transparent;
    box-shadow: 0 0 0 2px rgba(40, 59, 106, 0.7) inset !important
}

.text-custom-mc-2 {
    color: var(--color-primary)
}

.bg-custom-mc-2 {
    background-color: var(--color-primary)
}

.bdr-custom-mc-2 {
    border-color: var(--color-primary) !important
}

.cms-btn-custom-mc-2,
.cms-btn-hover-custom-mc-2:hover,
.cms-hover-change:hover .cms-btn-hover-custom-mc-2:hover {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary) inset !important
}

.cms-btn-outline-custom-mc-2,
.cms-btn-hover-outline-custom-mc-2,
.cms-hover-change:hover .cms-btn-hover-outline-custom-mc-2 {
    background-color: transparent;
    box-shadow: 0 0 0 2px var(--color-primary) inset !important
}

.text-custom-mc-2-70 {
    color: rgba(33, 51, 96, 0.7)
}

.bg-custom-mc-2-70 {
    background-color: rgba(33, 51, 96, 0.7)
}

.bdr-custom-mc-2-70 {
    border-color: rgba(33, 51, 96, 0.7) !important
}

.cms-btn-custom-mc-2-70,
.cms-btn-hover-custom-mc-2-70:hover,
.cms-hover-change:hover .cms-btn-hover-custom-mc-2-70:hover {
    background-color: rgba(33, 51, 96, 0.7);
    box-shadow: 0 0 0 2px rgba(33, 51, 96, 0.7) inset !important
}

.cms-btn-outline-custom-mc-2-70,
.cms-btn-hover-outline-custom-mc-2-70,
.cms-hover-change:hover .cms-btn-hover-outline-custom-mc-2-70 {
    background-color: transparent;
    box-shadow: 0 0 0 2px rgba(33, 51, 96, 0.7) inset !important
}

.text-custom-mc-border {
    color: #e6e8eb
}

.bg-custom-mc-border {
    background-color: #e6e8eb
}

.bdr-custom-mc-border {
    border-color: #e6e8eb !important
}

.cms-btn-custom-mc-border,
.cms-btn-hover-custom-mc-border:hover,
.cms-hover-change:hover .cms-btn-hover-custom-mc-border:hover {
    background-color: #e6e8eb;
    box-shadow: 0 0 0 2px #e6e8eb inset !important
}

.cms-btn-outline-custom-mc-border,
.cms-btn-hover-outline-custom-mc-border,
.cms-hover-change:hover .cms-btn-hover-outline-custom-mc-border {
    background-color: transparent;
    box-shadow: 0 0 0 2px #e6e8eb inset !important
}