html,body,div,span,h1,h2,h3,a,img,i,ul,li,header,nav,section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

:focus {
    outline: 0;
}

header,nav,section {
    display: block;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
    max-width: 100%;
}

.btn {
    display: inline-block;
    line-height: 24px;
    text-align: center;
    padding: 13px 25px 14px 25px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    background-color: gray;
    border-color: gray;
    border-style: solid;
    border-width: 2px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 575.98px) {
    .btn {
        font-size:14px;
        padding: 10px 15px 11px 15px;
        line-height: 20px;
    }
}

.btn:after {
    content: "";
    position: absolute;
    z-index: -1;
    height: 0;
    background-color: #1997aa;
    top: 0;
    left: 0;
    right: 0;
}

.btn.white-btn {
    background-color: #fff;
    border-color: #000;
    color: #000;
}

.btn.white-btn:after {
    background-color: #000;
}

::-webkit-input-placeholder {
    color: #ccc;
    font-weight: 400;
}

::-moz-placeholder {
    color: #ccc;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #ccc;
    font-weight: 400;
}

:-moz-placeholder {
    color: #ccc;
    font-weight: 400;
}

* {
    text-decoration: none;
    outline: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: "Montserrat";
    color: #000;
}

a {
    color: #1997aa;
}

img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    border: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,h2,h3 {
    font-family: "Montserrat";
}

h1 {
    font-size: 48px;
    line-height: 58px;
    font-weight: 300;
}

@media (max-width: 1199.98px) {
    h1 {
        line-height:1.17;
        font-size: 40px;
    }
}

@media (max-width: 991.98px) {
    h1 {
        font-size:35px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size:30px;
    }
}

h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    h2 {
        font-size:33px;
        line-height: 1.17;
    }
}

@media (max-width: 767.98px) {
    h2 {
        font-size:27px;
    }
}

h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    h3 {
        font-size:28px;
        line-height: 1.2;
    }
}

@media (max-width: 767.98px) {
    h3 {
        font-size:24px;
    }
}

p {
    margin-top: 0;
    margin-bottom: 25px;
}

p:last-child {
    margin-bottom: 0 !important;
}

.page-overlay {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background-color: rgba(0,0,0,.7);
    z-index: -1;
    z-index: 19;
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.container-fluid,.container {
    padding: 0 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1399.98px) {
    .container {
        max-width:1280px;
    }
}

@media (max-width: 1299.98px) {
    .container {
        max-width:1140px;
    }
}

@media (max-width: 1199.98px) {
    .container {
        max-width:960px;
    }
}

@media (max-width: 991.98px) {
    .container {
        max-width:720px;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width:100%;
    }
}

@media (max-width: 575.98px) {
    .container {
        max-width:100%;
    }
}

.row {
    margin-left: -15px;
    margin-right: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row>* {
    padding-left: 15px;
    padding-right: 15px;
}

.row>[class*=col-] {
    position: relative;
    width: 100%;
}

@media (min-width: 1200px) {
    .col-lg-5 {
        -ms-flex:0 0 41.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
}

@media (min-width: 1200px) {
    .col-lg-7 {
        -ms-flex:0 0 58.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mr-auto {
    margin-right: auto;
}

.accordianSec .accList .accDesc {
    display: none;
}

.accordianSec .accList .accDesc .descBox {
    padding-top: 16px;
}

.blackBg {
    background-color: #000;
}

.blackBg  {
    color: #fff;

}

.site-container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.headerMain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    padding: 10px 0;
    background-color: rgba(0,0,0,0);
}

.headerMain.headerDark {
    background-color: rgba(0,0,0,0);
}

.headerMain.headerDark .desktopMenu nav>ul>li>a {
    color: #464646;
}

.headerMain.headerDark .btn.white-btn {
    border-color: #000;
    background-color: #000;
    color: #fff;
}

.headerMain.headerDark .btn.white-btn:after {
    background-color: #fff;
}

.headerMain.headerDark .brand-logo .whiteLogo {
    display: none;
}

.headerMain.headerDark .brand-logo .colorLogo {
    display: block;
}

.headerMain.headerDark .menuOpen span {
    background-color: #464646;
}

.headerMain .navbarnew {
    -webkit-box-pack: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.headerMain .brand-logo {
    margin-right: auto;
    width: 290px;
}

@media (max-width: 1200.98px) {
    .headerMain .brand-logo {
        width:220px;
    }
}

.headerMain .brand-logo .whiteLogo {
    display: block;
}

.headerMain .brand-logo .colorLogo {
    display: none;
}

.headerMain .container-fluid {
    padding-left: 5%;
    padding-right: 5%;
}

@media (max-width: 1200.98px) {
    .headerMain .container-fluid {
        padding-left:35px;
        padding-right: 35px;
    }
}

@media (max-width: 991.98px) {
    .headerMain .container-fluid {
        padding-left:15px;
        padding-right: 15px;
    }
}

@media (max-width: 991.98px) {
    .headerMain .desktopMenu {
        display:none;
    }
}

.headerMain .desktopMenu nav>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.headerMain .desktopMenu nav>ul>li {
    position: relative;
    z-index: 0;
    padding: 14px 0;
}

.headerMain .desktopMenu nav>ul>li>a {
    color: #fff;
    font-size: 18px;
    line-height: 34px;
    font-weight: 500;
    padding: 11px 18px;
    letter-spacing: .3px;
}

@media (max-width: 1200.98px) {
    .headerMain .desktopMenu nav>ul>li>a {
        font-size:16px;
    }
}

@media (max-width: 1024.98px) {
    .headerMain .desktopMenu nav>ul>li>a {
        font-size:14px;
    }
}

.headerMain .desktopMenu nav>ul>li.current-menu-item>a {
    color: #000;
}

.headerMain .desktopMenu nav>ul>li>ul {
    margin-top: 30px;
    padding: 30px;
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 20px;
    width: 330px;
    background-color: #fff;
    border-top: 2px solid #000;
    -webkit-box-shadow: 0 5px 20px rgba(0,0,0,.12);
    box-shadow: 0 5px 20px rgba(0,0,0,.12);
}

.headerMain .desktopMenu nav>ul>li>ul>li {
    margin-bottom: 11px;
}

.headerMain .desktopMenu nav>ul>li>ul>li:last-child {
    margin-bottom: 0;
}

.headerMain .desktopMenu nav>ul>li>ul>li>a {
    color: rgba(0,0,0,.85);
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    padding-left: 20px;
    position: relative;
}

.headerMain .desktopMenu nav>ul>li>ul>li>a:before {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 0;
    content: " ";
    width: 10px;
    height: 1px;
    background-color: rgba(0,0,0,.6);
}

.headerMain .desktopMenu nav>ul>li:last-child ul {
    width: 220px;
}

.headerMain .btn {
    min-width: 200px;
    padding: 15px 25px 16px 25px;
    margin-left: 27px;
}

.headerMain .btn.white-btn {
    border-color: #fff;
}

@media (max-width: 991.98px) {
    .headerMain .btn {
        display:none;
    }
}

.headerMain .menuOpen {
    font-size: 0;
    line-height: 1;
    display: none;
    width: 23px;
    height: 15px;
    z-index: 0;
    z-index: 0;
    position: fixed;
    top: 20px;
    right: 15px;
}

@media (max-width: 991.98px) {
    .headerMain .menuOpen {
        display:block;
    }
}

.headerMain .menuOpen span {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: #fff;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}

.headerMain .menuOpen span:first-child {
    top: 0;
    left: 0;
}

.headerMain .menuOpen span:last-child {
    bottom: 0;
    left: 0;
}

.mobileMenu {
    position: fixed;
    top: 0;
    z-index: 90;
    background: #fff;
    right: auto;
    right: -100%;
    height: 100%;
    width: 100%;
    max-width: 100%;
    padding: 15px 15px;
    overflow: hidden;
    display: none;
}

@media (max-width: 991.98px) {
    .mobileMenu {
        display:block;
    }
}

.mobileMenu .slide-menu-top {
    position: relative;
    z-index: 0;
    margin-bottom: 25px;
}

.mobileMenu .slide-menu-top .brand-logo {
    width: 220px;
}

.mobileMenu .slide-menu-top .menu-close {
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 24px;
    font-weight: 700;
    z-index: 0;
    color: red;
}

.mobileMenu .slide-menu-top .menu-close img {
    width: 30px;
    height: auto;
    display: block;
}

.mobileMenu .main-nav {
    padding: 0 40px;
    max-height: calc(100vh - 195px);
    overflow: auto;
}

.mobileMenu .main-nav>ul>li {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 0;
    margin: 10px 0;
}

.mobileMenu .main-nav>ul>li>a {
    color: #010001;
    display: block;
    padding: 8px 0;
}

.mobileMenu .main-nav>ul>li.current-menu-item>a {
    color: red;
}

.mobileMenu .main-nav>ul>li ul {
    display: none;
}

.mobileMenu .main-nav>ul>li ul>li {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
}

.mobileMenu .main-nav>ul>li ul>li a {
    padding: 7px 0 7px 25px;
    display: block;
    color: rgba(0,0,0,.8);
}

.mobileMenu .headerInfo {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    padding: 15px 15px;
}

.mobileMenu .headerInfo .headerSocial {
    padding-top: 20px;
    margin-bottom: 15px;
    display: none;
}

.mobileMenu .headerInfo .headerSocial ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mobileMenu .headerInfo .headerSocial ul li {
    margin-right: 20px;
}

.mobileMenu .headerInfo .headerSocial ul li:last-child {
    margin-right: 0;
}

.mobileMenu .headerInfo .headerSocial ul li a {
    opacity: .75;
    display: block;
}

.mobileMenu .headerInfo .headerSocial ul li a img {
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .mobileMenu .headerInfo .headerSocial ul li a img {
        -webkit-filter:brightness(.1);
        filter: brightness(.1);
    }
}

.mobileMenu .headerInfo .headerSocial ul li:nth-child(1) a {
    width: 20px;
}

.mobileMenu .headerInfo .headerSocial ul li:nth-child(2) a {
    width: 8px;
}

.mobileMenu .headerInfo .headerSocial ul li:nth-child(3) a {
    width: 18px;
}

.mobileMenu .headerInfo .headerSocial ul li:nth-child(4) a {
    width: 17px;
}

.mobileMenu .headerInfo .headerSocial ul li:nth-child(5) a {
    width: 23px;
}

.mobileMenu .headerInfo .headerSocial ul li:nth-child(6) a {
    width: 27px;
}

.mobileMenu .headerInfo .quickLinks ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobileMenu .headerInfo .quickLinks ul li {
    font-size: 12px;
    line-height: 24px;
    color: #232636;
    opacity: .7;
}

.mobileMenu .headerInfo .quickLinks ul li:after {
    content: "|";
    padding: 0 6px;
}

.mobileMenu .headerInfo .quickLinks ul li:last-child:after {
    content: normal;
}

.mobileMenu .headerInfo .quickLinks ul li a {
    color: #232636;
}

.mobileMenu .headerInfo .copyrightText {
    text-align: center;
    margin-top: 2px;
}

.mobileMenu .headerInfo .copyrightText p {
    font-size: 12px;
    line-height: 24px;
    color: #232636;
    opacity: .7;
}

.mobileMenu .headerInfo .madeWith {
    text-align: center;
    margin-top: 8px;
}

.mobileMenu .headerInfo .madeWith p {
    font-size: 12px;
    line-height: 24px;
    color: #000;
    opacity: .7;
}

.mobileMenu .headerInfo .madeWith p i {
    margin-left: 5px;
}

.mobileMenu .headerInfo .madeWith p i img {
    display: inline;
    width: 12px;
}

.mobileFloating {
    display: none;
    position: fixed;
    z-index: 5;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
}

@media (max-width: 991.98px) {
    .mobileFloating {
        display:block;
    }
}

.mobileFloating .linkBox {
    width: 50%;
    text-align: center;
    border-right: 1px solid #1a1a1a;
}

.mobileFloating .linkBox:last-child {
    border: none;
}

.mobileFloating .linkBox a {
    color: #fff;
    display: block;
    padding: 12px 5px;
}

.mobileFloating .linkBox img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 18px;
}

.mobileFloating .linkBox span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.83;
    letter-spacing: 1.7px;
    margin-top: 2px;
}

.common-text-banner-wrapper .others-banner-text {
    width: 75%;
    padding: 160px 0 0;
}

@media (max-width: 1199.98px) {
    .common-text-banner-wrapper .others-banner-text {
        width:100%;
        padding-top: 130px;
    }
}

@media (max-width: 991.98px) {
    .common-text-banner-wrapper .others-banner-text {
        padding-top:110px;
    }
}

.common-text-banner-wrapper .others-banner-text .page-title {
    margin-bottom: 1.09375em;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.common-text-banner-wrapper .others-banner-text p {
    margin-bottom: 0;
    margin-bottom: 2.5rem;
    font-size: 52px;
    font-weight: bold;
    line-height: 70px;
    color: #000;
}

@media (max-width: 1600.98px) {
    .common-text-banner-wrapper .others-banner-text p {
        font-size:38px;
        line-height: 52px;
    }
}

@media (max-width: 1199.98px) {
    .common-text-banner-wrapper .others-banner-text p {
        line-height:1.17;
    }
}

@media (max-width: 991.98px) {
    .common-text-banner-wrapper .others-banner-text p {
        font-size:35px;
    }
}

@media (max-width: 767.98px) {
    .common-text-banner-wrapper .others-banner-text p {
        font-size:30px;
    }
}

.how-we-work-wrapper {
    padding-top: 95px;
    padding-bottom: 80px;
    padding-left: calc(( 100% - 1161px ) / 2);
}

@media (max-width: 767.98px) {
    .how-we-work-wrapper {
        padding-bottom:0;
    }
}

.how-we-work-wrapper .holder {
    position: relative;
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap;
    }
}

.how-we-work-wrapper .holder .how-we-work-side-menu {
    width: 290px;
    min-width: 290px;
    border-left: 1px solid #e6e6e6;
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder .how-we-work-side-menu {
        width:100%;
        min-width: auto;
    }
}

.how-we-work-wrapper .holder .how-we-work-side-menu .progress-container {
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder .how-we-work-side-menu .progress-container {
        display:none;
    }
}

.how-we-work-wrapper .holder .how-we-work-side-menu .progress-container .progress-bar {
    background: #000;
    width: 1px;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row {
    padding-top: 80px;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row:first-child {
    padding-top: 0;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder {
    margin-left: -289px;
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder {
        margin:0;
    }
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder>.sectionHead {
    margin-left: 289px;
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder>.sectionHead {
        margin:0;
    }
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder>.sectionHead h2 {
    margin-bottom: 30px;
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder>.sectionHead h2 {
        text-align:center;
    }
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder h3 {
    font-size: 16px;
    line-height: 1.88;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 16px;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder ul {
    padding-left: 18px;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder ul li {
    margin-bottom: 15px;
    list-style: disc;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder ul li:last-child {
    margin-bottom: 0;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top {
    margin-left: 289px;
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top {
        margin:0;
    }
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top .discovery-content-description {
    padding-top: 80px;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top .discovery-content-description .row {
    margin: 0;
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top .discovery-content-description .row {
        -webkit-box-orient:vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top .discovery-content-description .row [class*=col-] {
    padding: 0;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top .discovery-content-description .data {
    padding: 46px 60px 60px 60px!important;
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top .discovery-content-description .data {
        padding:0 20px 35px;
    }
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top .discovery-content-description .col-lg-5 {
    margin-bottom: -60px;
}

@media (max-width: 1199.98px) {
    .how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top .discovery-content-description .col-lg-5 {
        margin-bottom:35px;
    }
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top .discovery-content-description .col-lg-5 .discovery-pic {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-top .discovery-content-description .col-lg-5 .discovery-pic {
        padding:0 15px;
    }
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-bottom {
    margin-left: 289px;
    padding: 80px 60px 0 60px;
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-bottom {
        padding:40px 20px 0;
        margin-left: 0;
    }
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-bottom .list-info-data {
    margin-bottom: 40px;
}
:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

.has-black-color {
    color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
    color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
    color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
    background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
    background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
    background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
    background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
    background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
    background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
    background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
    background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
    border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
    border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
    border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
    border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
    border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
    background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
    background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
    background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
    background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important;
}

.wp-block-navigation a:where(:not(.wp-element-button)) {
    color: inherit;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

.wp-block-pullquote {
    font-size: 1.5em;
    line-height: 1.6;
}

@-webkit-keyframes bgslide {
    from {
        background-position-x: 0
    }

    to {
        background-position-x: -200%
    }
}

@keyframes bgslide {
    from {
        background-position-x: 0
    }

    to {
        background-position-x: -200%
    }
}

.wpp-widget-block-placeholder,.wpp-shortcode-placeholder {
    margin: 0 auto;
    width: 60px;
    height: 3px;
    background: #dd3737;
    background: linear-gradient(90deg,#dd3737 0%,#571313 10%,#dd3737 100%);
    background-size: 200% auto;
    border-radius: 3px;
    -webkit-animation: bgslide 1s infinite linear;
    animation: bgslide 1s infinite linear
}
.mc4wp-checkbox-contact-form-7 label span {
    display: none;
}

span.country-name {
    color: #000;
}

h3.wp-block-heading {
    margin-bottom: 12px;
}

#ra-player {
    margin-bottom: 25px;
}

#page-id-13419 .blackFloatingForm .custom-checkbox .custom-control-label {
    color: rgba(255,255,255,.8)!important;
}

#page-id-13419 .blackFloatingForm .custom-checkbox .custom-control-label a {
    color: #fff!important;
    text-decoration: underline !important;
}

#trinity-audio-table {
    background-color: ghostwhite;
    border-radius: 6px;
    margin-bottom: 15px!important;
}

.blackFloatingForm .iti__selected-flag {
    display: none;
}

.intl-tel-input .selected-flag .iti-arrow {
    margin-right: 4px
}

.jobFormSec .intl-tel-input.allow-dropdown .flag-container,.jobFormSec .intl-tel-input.separate-dial-code .flag-container {
    right: auto;
    left: 50px;
}

.blackFloatingForm input:-webkit-autofill, .blackFloatingForm input:-webkit-autofill:hover, .blackFloatingForm input:-webkit-autofill:focus, .blackFloatingForm input:-internal-autofill-selected, .blackFloatingForm textarea:-webkit-autofill, .blackFloatingForm textarea:-webkit-autofill:hover, .blackFloatingForm textarea:-webkit-autofill:focus, .blackFloatingForm textarea:-internal-autofill-selected, .blackFloatingForm select:-webkit-autofill, .blackFloatingForm select:-webkit-autofill:hover, .blackFloatingForm select:-webkit-autofill:focus, .blackFloatingForm select:-internal-autofill-selected {
    -webkit-text-fill-color: #000 !important;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
    transition: background-color 0s ease-in-out 0s;
}

.darkTheme .blackFloatingForm input:-webkit-autofill, .darkTheme .blackFloatingForm input:-webkit-autofill:hover, .darkTheme .blackFloatingForm input:-webkit-autofill:focus, .darkTheme .blackFloatingForm input:-internal-autofill-selected, .darkTheme .blackFloatingForm textarea:-webkit-autofill, .darkTheme .blackFloatingForm textarea:-webkit-autofill:hover, .darkTheme .blackFloatingForm textarea:-webkit-autofill:focus, .darkTheme .blackFloatingForm textarea:-internal-autofill-selected, .darkTheme .blackFloatingForm select:-webkit-autofill, .darkTheme .blackFloatingForm select:-webkit-autofill:hover, .darkTheme .blackFloatingForm select:-webkit-autofill:focus, .darkTheme .blackFloatingForm select:-internal-autofill-selected,.bg-dark .blackFloatingForm input:-webkit-autofill, .bg-dark .blackFloatingForm input:-webkit-autofill:hover, .bg-dark .blackFloatingForm input:-webkit-autofill:focus, .bg-dark .blackFloatingForm input:-internal-autofill-selected, .bg-dark .blackFloatingForm textarea:-webkit-autofill, .bg-dark .blackFloatingForm textarea:-webkit-autofill:hover, .bg-dark .blackFloatingForm textarea:-webkit-autofill:focus, .bg-dark .blackFloatingForm textarea:-internal-autofill-selected, .bg-dark .blackFloatingForm select:-webkit-autofill, .bg-dark .blackFloatingForm select:-webkit-autofill:hover, .bg-dark .blackFloatingForm select:-webkit-autofill:focus, .bg-dark .blackFloatingForm select:-internal-autofill-selected {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px #000000 inset !important;
    transition: background-color 0s ease-in-out 0s;
}

.blackFloatingForm .form-group .form-control {
    transition: none!important;
}

.testimonialSec .rightPan .inner .blackFloatingForm .form-group .form-control.has-value~label, .testimonialSec .rightPan .inner .blackFloatingForm .form-group .form-control:focus~label {
    top: -15px!important;
}

.wpcf7-not-valid-tip {
    padding-top: 3px;
}
.wp-block-archives-dropdown label {
    display: block;
}

.wp-block-avatar {
    line-height: 0;
}

.wp-block-avatar,.wp-block-avatar img {
    box-sizing: border-box;
}

.wp-block-audio {
    box-sizing: border-box;
}

.wp-block-audio audio {
    min-width: 300px;
    width: 100%;
}

.wp-block-button__link {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    word-break: break-word;
}

.wp-block-button__link.alignright {
    text-align: right;
}

.wp-block-button[style*=text-decoration] .wp-block-button__link {
    text-decoration: inherit;
}

.wp-block-buttons>.wp-block-button.has-custom-width {
    max-width: none;
}

.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link {
    width: 100%;
}

.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link {
    font-size: inherit;
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-25 {
    width: calc(25% - var(--wp--style--block-gap,.5em) * .75);
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-50 {
    width: calc(50% - var(--wp--style--block-gap,.5em) * .5);
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-75 {
    width: calc(75% - var(--wp--style--block-gap,.5em) * .25);
}

.wp-block-buttons>.wp-block-button.wp-block-button__width-100 {
    flex-basis: 100%;
    width: 100%;
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25 {
    width: 25%;
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50 {
    width: 50%;
}

.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75 {
    width: 75%;
}

.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared {
    border-radius: 0;
}

.wp-block-button .wp-block-button__link:where(.is-style-outline),.wp-block-button:where(.is-style-outline)>.wp-block-button__link {
    border: 2px solid;
    padding: .667em 1.333em;
}

.wp-block-button .wp-block-button__link:where(.is-style-outline):not(.has-text-color),.wp-block-button:where(.is-style-outline)>.wp-block-button__link:not(.has-text-color) {
    color: currentColor;
}

.wp-block-button .wp-block-button__link:where(.is-style-outline):not(.has-background),.wp-block-button:where(.is-style-outline)>.wp-block-button__link:not(.has-background) {
    background-color: initial;
    background-image: none;
}

.wp-block-button .wp-block-button__link:where(.is-style-outline):not(.has-background).nitro-lazy,.wp-block-button:where(.is-style-outline)>.wp-block-button__link:not(.has-background).nitro-lazy {
    background-image: none !important;
}

.wp-block-button .wp-block-button__link:where(.has-border-color) {
    border-width: initial;
}

.wp-block-button .wp-block-button__link:where([style*=border-top-color]) {
    border-top-width: medium;
}

.wp-block-button .wp-block-button__link:where([style*=border-right-color]) {
    border-right-width: medium;
}

.wp-block-button .wp-block-button__link:where([style*=border-bottom-color]) {
    border-bottom-width: medium;
}

.wp-block-button .wp-block-button__link:where([style*=border-left-color]) {
    border-left-width: medium;
}

.wp-block-button .wp-block-button__link:where([style*=border-style]) {
    border-width: initial;
}

.wp-block-button .wp-block-button__link:where([style*=border-top-style]) {
    border-top-width: medium;
}

.wp-block-button .wp-block-button__link:where([style*=border-right-style]) {
    border-right-width: medium;
}

.wp-block-button .wp-block-button__link:where([style*=border-bottom-style]) {
    border-bottom-width: medium;
}

.wp-block-button .wp-block-button__link:where([style*=border-left-style]) {
    border-left-width: medium;
}

.wp-block-buttons.is-vertical {
    flex-direction: column;
}

.wp-block-buttons.is-vertical>.wp-block-button:last-child {
    margin-bottom: 0;
}

.wp-block-buttons>.wp-block-button {
    display: inline-block;
    margin: 0;
}

.wp-block-buttons.is-content-justification-left {
    justify-content: flex-start;
}

.wp-block-buttons.is-content-justification-left.is-vertical {
    align-items: flex-start;
}

.wp-block-buttons.is-content-justification-center {
    justify-content: center;
}

.wp-block-buttons.is-content-justification-center.is-vertical {
    align-items: center;
}

.wp-block-buttons.is-content-justification-right {
    justify-content: flex-end;
}

.wp-block-buttons.is-content-justification-right.is-vertical {
    align-items: flex-end;
}

.wp-block-buttons.is-content-justification-space-between {
    justify-content: space-between;
}

.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link {
    text-decoration: inherit;
}

.wp-block-buttons.has-custom-font-size .wp-block-button__link {
    font-size: inherit;
}

.wp-block-calendar {
    text-align: center;
}

.wp-block-calendar td,.wp-block-calendar th {
    border: 1px solid;
    padding: .25em;
}

.wp-block-calendar th {
    font-weight: 400;
}

.wp-block-calendar caption {
    background-color: inherit;
}

.wp-block-calendar table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-calendar table:where(:not(.has-text-color)) {
    color: #40464d;
}

.wp-block-calendar table:where(:not(.has-text-color)) td,.wp-block-calendar table:where(:not(.has-text-color)) th {
    border-color: #ddd;
}

.wp-block-calendar table.has-background th {
    background-color: inherit;
}

.wp-block-calendar table.has-text-color th {
    color: inherit;
}

.wp-block-categories {
    box-sizing: border-box;
}

.wp-block-categories.alignleft {
    margin-right: 2em;
}

.wp-block-categories.alignright {
    margin-left: 2em;
}

.wp-block-code {
    box-sizing: border-box;
}

.wp-block-code code {
    display: block;
    font-family: inherit;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

.wp-block-columns {
    align-items: normal !important;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap !important;
}

@media (min-width: 782px) {
    .wp-block-columns {
        flex-wrap:nowrap !important;
    }
}

@media (min-width: 782px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis:0;
        flex-grow: 1;
    }
}

.wp-block-columns.is-not-stacked-on-mobile {
    flex-wrap: nowrap !important;
}

.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
}

.wp-block-column {
    flex-grow: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.wp-block-column.is-vertically-aligned-top {
    align-self: flex-start;
}

.wp-block-column.is-vertically-aligned-center {
    align-self: center;
}

.wp-block-column.is-vertically-aligned-bottom {
    align-self: flex-end;
}

.wp-block-column.is-vertically-aligned-stretch {
    align-self: stretch;
}

.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top {
    width: 100%;
}

.wp-block-post-comments {
    box-sizing: border-box;
}

.wp-block-post-comments .alignleft {
    float: left;
}

.wp-block-post-comments .alignright {
    float: right;
}

.wp-block-post-comments .navigation:after {
    clear: both;
    content: "";
    display: table;
}

.wp-block-post-comments .comment-form-cookies-consent {
    display: flex;
    gap: .25em;
}

.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent {
    margin-top: .35em;
}

.wp-block-post-comments input:not([type=submit]),.wp-block-post-comments textarea {
    border: 1px solid #949494;
    font-family: inherit;
    font-size: 1em;
}

.wp-block-post-comments input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments textarea {
    padding: calc(.667em + 2px);
}

.wp-block-comments-pagination>.wp-block-comments-pagination-next,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers,.wp-block-comments-pagination>.wp-block-comments-pagination-previous {
    margin-bottom: .5em;
    margin-right: .5em;
}

.wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child {
    margin-right: 0;
}

.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow {
    display: inline-block;
    margin-right: 1ch;
}

.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron) {
    transform: scaleX(1);
}

.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow {
    display: inline-block;
    margin-left: 1ch;
}

.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron) {
    transform: scaleX(1);
}

.wp-block-comment-template {
    box-sizing: border-box;
    list-style: none;
    margin-bottom: 0;
    max-width: 100%;
    padding: 0;
}

.wp-block-comment-template li {
    clear: both;
}

.wp-block-comment-template ol {
    list-style: none;
    margin-bottom: 0;
    max-width: 100%;
    padding-left: 2rem;
}

.wp-block-comment-template.alignleft {
    float: left;
}

.wp-block-comment-template.alignright {
    float: right;
}

.wp-block-cover,.wp-block-cover-image {
    align-items: center;
    background-position: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    min-height: 430px;
    overflow: hidden;
    overflow: clip;
    padding: 1em;
    position: relative;
}

.wp-block-cover .has-background-dim:not([class*=-background-color]),.wp-block-cover-image .has-background-dim:not([class*=-background-color]),.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]) {
    background-color: #000;
}

.wp-block-cover .has-background-dim.has-background-gradient,.wp-block-cover-image .has-background-dim.has-background-gradient {
    background-color: initial;
}

.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before {
    background-color: inherit;
    content: "";
}

.wp-block-cover .wp-block-cover__background,.wp-block-cover .wp-block-cover__gradient-background,.wp-block-cover-image .wp-block-cover__background,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover.has-background-dim:not(.has-background-gradient):before {
    bottom: 0;
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before {
    opacity: .1;
}

.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before {
    opacity: .2;
}

.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before {
    opacity: .3;
}

.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before {
    opacity: .4;
}

.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before {
    opacity: .5;
}

.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before {
    opacity: .6;
}

.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before {
    opacity: .7;
}

.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before {
    opacity: .8;
}

.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before {
    opacity: .9;
}

.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before {
    opacity: 1;
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0 {
    opacity: 0;
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10 {
    opacity: .1;
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20 {
    opacity: .2;
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30 {
    opacity: .3;
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40 {
    opacity: .4;
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50 {
    opacity: .5;
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60 {
    opacity: .6;
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70 {
    opacity: .7;
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80 {
    opacity: .8;
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90 {
    opacity: .9;
}

.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100 {
    opacity: 1;
}

.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright {
    max-width: 420px;
    width: 100%;
}

.wp-block-cover-image:after,.wp-block-cover:after {
    content: "";
    display: block;
    font-size: 0;
    min-height: inherit;
}

@supports (position: sticky) {
    .wp-block-cover-image:after,.wp-block-cover:after {
        content:none;
    }
}

.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright {
    display: flex;
}

.wp-block-cover .wp-block-cover__inner-container,.wp-block-cover-image .wp-block-cover__inner-container {
    color: inherit;
    width: 100%;
    z-index: 1;
}

.wp-block-cover h1:where(:not(.has-text-color)),.wp-block-cover h2:where(:not(.has-text-color)),.wp-block-cover h3:where(:not(.has-text-color)),.wp-block-cover p:where(:not(.has-text-color)),.wp-block-cover-image h1:where(:not(.has-text-color)),.wp-block-cover-image h2:where(:not(.has-text-color)),.wp-block-cover-image h3:where(:not(.has-text-color)),.wp-block-cover-image p:where(:not(.has-text-color)) {
    color: inherit;
}

.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left {
    align-items: flex-start;
    justify-content: flex-start;
}

.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center {
    align-items: flex-start;
    justify-content: center;
}

.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right {
    align-items: flex-start;
    justify-content: flex-end;
}

.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left {
    align-items: center;
    justify-content: flex-start;
}

.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center {
    align-items: center;
    justify-content: center;
}

.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right {
    align-items: center;
    justify-content: flex-end;
}

.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left {
    align-items: flex-end;
    justify-content: flex-start;
}

.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center {
    align-items: flex-end;
    justify-content: center;
}

.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right {
    align-items: flex-end;
    justify-content: flex-end;
}

.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container {
    margin: 0;
}

.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container {
    margin: 0;
    width: auto;
}

.wp-block-cover .wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background,.wp-block-cover-image .wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background {
    border: none;
    bottom: 0;
    box-shadow: none;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    object-fit: cover;
    outline: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

@supports (-webkit-touch-callout:inherit) {
    .wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax {
        background-attachment: scroll;
    }
}

@media (prefers-reduced-motion:reduce) {
    .wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax {
        background-attachment: scroll;
    }
}

.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated,.wp-block-cover__image-background.is-repeated,video.wp-block-cover__video-background.is-repeated {
    background-repeat: repeat;
    background-size: auto;
}

.wp-block-cover__image-background,.wp-block-cover__video-background {
    z-index: 0;
}

.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover {
    color: #fff;
}

.wp-block-cover-image .wp-block-cover.has-left-content {
    justify-content: flex-start;
}

.wp-block-cover-image .wp-block-cover.has-right-content {
    justify-content: flex-end;
}

.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2 {
    margin-left: 0;
    text-align: left;
}

.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2 {
    margin-right: 0;
    text-align: right;
}

.wp-block-cover .wp-block-cover-text,.wp-block-cover-image .wp-block-cover-image-text,section.wp-block-cover-image>h2 {
    font-size: 2em;
    line-height: 1.25;
    margin-bottom: 0;
    max-width: 840px;
    padding: .44em;
    text-align: center;
    z-index: 1;
}

.wp-block-details {
    box-sizing: border-box;
    overflow: hidden;
}

.wp-block-details summary {
    cursor: pointer;
}

.wp-block-embed.alignleft,.wp-block-embed.alignright {
    max-width: 360px;
    width: 100%;
}

.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper {
    min-width: 280px;
}

.wp-block-cover .wp-block-embed {
    min-height: 240px;
    min-width: 320px;
}

.wp-block-embed {
    overflow-wrap: break-word;
}

.wp-block-embed iframe {
    max-width: 100%;
}

.wp-block-embed__wrapper {
    position: relative;
}

.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
    padding-top: 42.85%;
}

.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before {
    padding-top: 50%;
}

.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
    padding-top: 56.25%;
}

.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before {
    padding-top: 75%;
}

.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before {
    padding-top: 100%;
}

.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before {
    padding-top: 177.77%;
}

.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before {
    padding-top: 200%;
}

.wp-block-file {
    box-sizing: border-box;
}

.wp-block-file:not(.wp-element-button) {
    font-size: .8em;
}

.wp-block-file.alignright {
    text-align: right;
}

.wp-block-file *+.wp-block-file__button {
    margin-left: .75em;
}

.wp-block-file__embed {
    margin-bottom: 1em;
}

.wp-block-form-input__label {
    display: flex;
    flex-direction: column;
    gap: .25em;
    margin-bottom: .5em;
    width: 100%;
}

.wp-block-form-input__label.is-label-inline {
    align-items: center;
    flex-direction: row;
    gap: .5em;
}

.wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content {
    margin-bottom: .5em;
}

.wp-block-form-input__label:has(input[type=checkbox]) {
    flex-direction: row-reverse;
    width: -moz-fit-content;
    width: fit-content;
}

.wp-block-form-input__label-content {
    width: -moz-fit-content;
    width: fit-content;
}

.wp-block-form-input__input {
    font-size: 1em;
    margin-bottom: .5em;
    padding: 0 .5em;
}

.wp-block-form-input__input[type=date],.wp-block-form-input__input[type=email],.wp-block-form-input__input[type=month],.wp-block-form-input__input[type=number],.wp-block-form-input__input[type=password],.wp-block-form-input__input[type=search],.wp-block-form-input__input[type=tel],.wp-block-form-input__input[type=text],.wp-block-form-input__input[type=time],.wp-block-form-input__input[type=url],.wp-block-form-input__input[type=week] {
    border: 1px solid;
    line-height: 2;
    min-height: 2em;
}

textarea.wp-block-form-input__input {
    min-height: 10em;
}

.blocks-gallery-grid:not(.has-nested-images),.wp-block-gallery:not(.has-nested-images) {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    margin: 0 1em 1em 0;
    position: relative;
    width: calc(50% - 1em);
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure {
    align-items: flex-end;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    margin: 0;
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img {
    display: block;
    height: auto;
    max-width: 100%;
    width: auto;
}

.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img {
    flex: 1;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child {
    margin-right: 0;
}

.blocks-gallery-grid:not(.has-nested-images).alignleft,.blocks-gallery-grid:not(.has-nested-images).alignright,.wp-block-gallery:not(.has-nested-images).alignleft,.wp-block-gallery:not(.has-nested-images).alignright {
    max-width: 420px;
    width: 100%;
}

.wp-block-gallery:not(.is-cropped) .blocks-gallery-item {
    align-self: flex-start;
}

figure.wp-block-gallery.has-nested-images {
    align-items: normal;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    margin: 0;
    width: calc(50% - var(--wp--style--unstable-gallery-gap,16px) / 2);
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    max-width: 100%;
    position: relative;
}

.wp-block-gallery.has-nested-images figure.wp-block-image>a,.wp-block-gallery.has-nested-images figure.wp-block-image>div {
    flex-direction: column;
    flex-grow: 1;
    margin: 0;
}

.wp-block-gallery.has-nested-images figure.wp-block-image img {
    display: block;
    height: auto;
    max-width: 100% !important;
    width: auto;
}

.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border img {
    box-sizing: border-box;
}

.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a,.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div {
    flex: 1 1 auto;
}

.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) {
    margin-bottom: auto;
    margin-top: 0;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) {
    align-self: inherit;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone) {
    display: flex;
}

.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
    flex: 1 0 0%;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.wp-block-gallery.has-nested-images.alignleft,.wp-block-gallery.has-nested-images.alignright {
    max-width: 420px;
    width: 100%;
}

.wp-block-group {
    box-sizing: border-box;
}

h1.has-background,h2.has-background,h3.has-background {
    padding: 1.25em 2.375em;
}

.wp-block-image img {
    box-sizing: border-box;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
}

.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a {
    border-radius: inherit;
}

.wp-block-image.has-custom-border img {
    box-sizing: border-box;
}

.wp-block-image.alignfull img,.wp-block-image.alignwide img {
    height: auto;
    width: 100%;
}

.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.alignleft,.wp-block-image.alignright {
    display: table;
}

.wp-block-image .alignleft {
    float: left;
    margin: .5em 1em .5em 0;
}

.wp-block-image .alignright {
    float: right;
    margin: .5em 0 .5em 1em;
}

.wp-block-image .is-style-rounded img,.wp-block-image.is-style-circle-mask img,.wp-block-image.is-style-rounded img {
    border-radius: 9999px;
}

@supports ((-webkit-mask-image: none) or (mask-image:none)) or (-webkit-mask-image:none) {
    .wp-block-image.is-style-circle-mask img {
        border-radius:0;
        -webkit-mask-image: url("data:image/svg+xml;utf8,<svg viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"50\" cy=\"50\" r=\"50\"/></svg>");
        mask-image: url("data:image/svg+xml;utf8,<svg viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"50\" cy=\"50\" r=\"50\"/></svg>");
        mask-mode: alpha;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        mask-size: contain;
    }
}

.wp-block-image :where(.has-border-color) {
    border-style: solid;
}

.wp-block-image :where([style*=border-top-color]) {
    border-top-style: solid;
}

.wp-block-image :where([style*=border-right-color]) {
    border-right-style: solid;
}

.wp-block-image :where([style*=border-bottom-color]) {
    border-bottom-style: solid;
}

.wp-block-image :where([style*=border-left-color]) {
    border-left-style: solid;
}

.wp-block-image :where([style*=border-width]) {
    border-style: solid;
}

.wp-block-image :where([style*=border-top-width]) {
    border-top-style: solid;
}

.wp-block-image :where([style*=border-right-width]) {
    border-right-style: solid;
}

.wp-block-image :where([style*=border-bottom-width]) {
    border-bottom-style: solid;
}

.wp-block-image :where([style*=border-left-width]) {
    border-left-style: solid;
}

.wp-block-image figure {
    margin: 0;
}

@keyframes turn-on-visibility {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes turn-off-visibility {
    0% {
        opacity: 1;
        visibility: visible;
    }

    99% {
        opacity: 0;
        visibility: visible;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes lightbox-zoom-in {
    0% {
        transform: translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) / 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));
    }

    to {
        transform: translate(-50%,-50%) scale(1);
    }
}

@keyframes lightbox-zoom-out {
    0% {
        transform: translate(-50%,-50%) scale(1);
        visibility: visible;
    }

    99% {
        visibility: visible;
    }

    to {
        transform: translate(calc(( -100vw + var(--wp--lightbox-scrollbar-width) ) / 2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));
        visibility: hidden;
    }
}

ol.wp-block-latest-comments {
    box-sizing: border-box;
    margin-left: 0;
}

.has-dates :where(.wp-block-latest-comments:not([style*=line-height])),.has-excerpts :where(.wp-block-latest-comments:not([style*=line-height])) {
    line-height: 1.5;
}

.wp-block-latest-comments .wp-block-latest-comments {
    padding-left: 0;
}

.wp-block-latest-comments__comment {
    list-style: none;
    margin-bottom: 1em;
}

.has-avatars .wp-block-latest-comments__comment {
    list-style: none;
    min-height: 2.25em;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
    margin-left: 3.25em;
}

.wp-block-latest-comments__comment-excerpt p {
    font-size: .875em;
    margin: .36em 0 1.4em;
}

.wp-block-latest-comments__comment-date {
    display: block;
    font-size: .75em;
}

.wp-block-latest-comments__comment-avatar {
    border-radius: 1.5em;
    display: block;
    float: left;
    height: 2.5em;
    margin-right: .75em;
    width: 2.5em;
}

.wp-block-latest-comments[class*=-font-size] a,.wp-block-latest-comments[style*=font-size] a {
    font-size: inherit;
}

.wp-block-latest-posts {
    box-sizing: border-box;
}

.wp-block-latest-posts.alignleft {
    margin-right: 2em;
}

.wp-block-latest-posts.alignright {
    margin-left: 2em;
}

.wp-block-latest-posts.wp-block-latest-posts__list {
    list-style: none;
    padding-left: 0;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
    clear: both;
}

.wp-block-latest-posts.is-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.wp-block-latest-posts.is-grid li {
    margin: 0 1.25em 1.25em 0;
    width: 100%;
}

.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date {
    display: block;
    font-size: .8125em;
}

.wp-block-latest-posts__post-excerpt {
    margin-bottom: 1em;
    margin-top: .5em;
}

.wp-block-latest-posts__featured-image a {
    display: inline-block;
}

.wp-block-latest-posts__featured-image img {
    height: auto;
    max-width: 100%;
    width: auto;
}

.wp-block-latest-posts__featured-image.alignleft {
    float: left;
    margin-right: 1em;
}

.wp-block-latest-posts__featured-image.alignright {
    float: right;
    margin-left: 1em;
}

ol {
    box-sizing: border-box;
}

ol.has-background,ul.has-background {
    padding: 1.25em 2.375em;
}

.wp-block-media-text {
    box-sizing: border-box;
    direction: ltr;
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-template-rows: auto;
}

.wp-block-media-text.has-media-on-the-right {
    grid-template-columns: 1fr 50%;
}

.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {
    align-self: start;
}

.wp-block-media-text .wp-block-media-text__content,.wp-block-media-text .wp-block-media-text__media,.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {
    align-self: center;
}

.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {
    align-self: end;
}

.wp-block-media-text .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
}

.wp-block-media-text .wp-block-media-text__content {
    direction: ltr;
    grid-column: 2;
    grid-row: 1;
    padding: 0 8%;
    word-break: break-word;
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
    grid-column: 2;
    grid-row: 1;
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 1;
}

.wp-block-media-text__media img,.wp-block-media-text__media video {
    height: auto;
    max-width: unset;
    vertical-align: middle;
    width: 100%;
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media {
    background-size: cover;
    height: 100%;
    min-height: 250px;
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media>a {
    display: block;
    height: 100%;
}

.wp-block-media-text.is-image-fill .wp-block-media-text__media img {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    clip: rect(0,0,0,0);
    border: 0;
}

.wp-block-navigation {
    position: relative;
    --navigation-layout-justification-setting: flex-start;
    --navigation-layout-direction: row;
    --navigation-layout-wrap: wrap;
    --navigation-layout-justify: flex-start;
    --navigation-layout-align: center;
}

.wp-block-navigation ul {
    margin-bottom: 0;
    margin-left: 0;
    margin-top: 0;
    padding-left: 0;
}

.wp-block-navigation ul,.wp-block-navigation ul li {
    list-style: none;
    padding: 0;
}

.wp-block-navigation .wp-block-navigation-item {
    align-items: center;
    display: flex;
    position: relative;
}

.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty {
    display: none;
}

.wp-block-navigation .wp-block-navigation-item__content {
    display: block;
}

.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
    color: inherit;
}

.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus {
    text-decoration: underline;
}

.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus {
    text-decoration: line-through;
}

.wp-block-navigation:where(:not([class*=has-text-decoration])) a {
    text-decoration: none;
}

.wp-block-navigation:where(:not([class*=has-text-decoration])) a:active,.wp-block-navigation:where(:not([class*=has-text-decoration])) a:focus {
    text-decoration: none;
}

.wp-block-navigation .wp-block-navigation__submenu-icon {
    align-self: center;
    background-color: inherit;
    border: none;
    color: currentColor;
    display: inline-block;
    font-size: inherit;
    height: .6em;
    line-height: 0;
    margin-left: .25em;
    padding: 0;
    width: .6em;
}

.wp-block-navigation .wp-block-navigation__submenu-icon svg {
    display: inline-block;
    stroke: currentColor;
    height: inherit;
    margin-top: .075em;
    width: inherit;
}

.wp-block-navigation.is-vertical {
    --navigation-layout-direction: column;
    --navigation-layout-justify: initial;
    --navigation-layout-align: flex-start;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
    align-items: normal;
    background-color: inherit;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 0;
    left: -1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    transition: opacity .1s linear;
    visibility: hidden;
    width: 0;
    z-index: 2;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content {
    display: flex;
    flex-grow: 1;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon {
    margin-left: auto;
    margin-right: 0;
}

.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    margin: 0;
}

@media (min-width: 782px) {
    .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
        left:100%;
        top: -1px;
    }

    .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before {
        background: rgba(0,0,0,0);
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        right: 100%;
        width: .5em;
    }

    .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon {
        margin-right: .25em;
    }

    .wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg {
        transform: rotate(-90deg);
    }
}

.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container {
    height: auto;
    min-width: 200px;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    width: auto;
}

.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container {
    left: 0;
    top: 100%;
}

@media (min-width: 782px) {
    .wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
        left:100%;
        top: 0;
    }
}

.wp-block-navigation-submenu {
    display: flex;
    position: relative;
}

.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg {
    stroke: currentColor;
}

button.wp-block-navigation-item__content {
    background-color: initial;
    border: none;
    color: currentColor;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: left;
    text-transform: inherit;
}

.wp-block-navigation-submenu__toggle {
    cursor: pointer;
}

.wp-block-navigation .wp-block-page-list,.wp-block-navigation__container,.wp-block-navigation__responsive-close,.wp-block-navigation__responsive-container,.wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-dialog {
    gap: inherit;
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
}

.wp-block-navigation.has-background .wp-block-navigation__submenu-container {
    background-color: inherit;
}

.wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container {
    color: #000;
}

.wp-block-navigation__container {
    align-items: var(--navigation-layout-align,initial);
    display: flex;
    flex-direction: var(--navigation-layout-direction,initial);
    flex-wrap: var(--navigation-layout-wrap,wrap);
    justify-content: var(--navigation-layout-justify,initial);
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.wp-block-navigation__container .is-responsive {
    display: none;
}

.wp-block-navigation__container:only-child,.wp-block-page-list:only-child {
    flex-grow: 1;
}

@keyframes overlay-menu__fade-in-animation {
    0% {
        opacity: 0;
        transform: translateY(.5em);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wp-block-navigation__responsive-container {
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}

.wp-block-navigation__responsive-container :where(.wp-block-navigation-item a) {
    color: inherit;
}

.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content {
    align-items: var(--navigation-layout-align,initial);
    display: flex;
    flex-direction: var(--navigation-layout-direction,initial);
    flex-wrap: var(--navigation-layout-wrap,wrap);
    justify-content: var(--navigation-layout-justify,initial);
}

.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open) {
    background-color: inherit !important;
    color: inherit !important;
}

.wp-block-navigation__responsive-container.is-menu-open {
    animation: overlay-menu__fade-in-animation .1s ease-out;
    animation-fill-mode: forwards;
    background-color: inherit;
    display: flex;
    flex-direction: column;
    overflow: auto;
    padding: clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20em);
    z-index: 100000;
}

@media (prefers-reduced-motion:reduce) {
    .wp-block-navigation__responsive-container.is-menu-open {
        animation-delay: 0s;
        animation-duration: 1ms;
    }
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    align-items: var(--navigation-layout-justification-setting,inherit);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: visible;
    padding-top: calc(2rem + 24px);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
    justify-content: flex-start;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon {
    display: none;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
    border: none;
    height: auto;
    min-width: 200px;
    opacity: 1;
    overflow: initial;
    padding-left: 2rem;
    padding-right: 2rem;
    position: static;
    visibility: visible;
    width: auto;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
    gap: inherit;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
    padding-top: var(--wp--style--block-gap,2em);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content {
    padding: 0;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list {
    align-items: var(--navigation-layout-justification-setting,initial);
    display: flex;
    flex-direction: column;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list {
    background: rgba(0,0,0,0) !important;
    color: inherit !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
    left: auto;
    right: auto;
}

@media (min-width: 600px) {
    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
        background-color:inherit;
        display: block;
        position: relative;
        width: 100%;
        z-index: auto;
    }

    .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close {
        display: none;
    }

    .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container {
        left: 0;
    }
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open {
    background-color: #fff;
}

.wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open {
    color: #000;
}

.wp-block-navigation__toggle_button_label {
    font-size: 1rem;
    font-weight: 700;
}

.wp-block-navigation__responsive-container-close,.wp-block-navigation__responsive-container-open {
    background: rgba(0,0,0,0);
    border: none;
    color: currentColor;
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-transform: inherit;
    vertical-align: middle;
}

.wp-block-navigation__responsive-container-close svg,.wp-block-navigation__responsive-container-open svg {
    fill: currentColor;
    display: block;
    height: 24px;
    pointer-events: none;
    width: 24px;
}

.wp-block-navigation__responsive-container-open {
    display: flex;
}

.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

@media (min-width: 600px) {
    .wp-block-navigation__responsive-container-open:not(.always-shown) {
        display:none;
    }
}

.wp-block-navigation__responsive-container-close {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.wp-block-navigation__responsive-close {
    width: 100%;
}

.has-modal-open .wp-block-navigation__responsive-close {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--wp--style--global--wide-size,100%);
}

.wp-block-navigation__responsive-close:focus {
    outline: none;
}

.is-menu-open .wp-block-navigation__responsive-close,.is-menu-open .wp-block-navigation__responsive-container-content,.is-menu-open .wp-block-navigation__responsive-dialog {
    box-sizing: border-box;
}

.wp-block-navigation__responsive-dialog {
    position: relative;
}

.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog {
    margin-top: 46px;
}

@media (min-width: 782px) {
    .has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog {
        margin-top:32px;
    }
}

html.has-modal-open {
    overflow: hidden;
}

.wp-block-navigation .wp-block-navigation-item__label {
    overflow-wrap: break-word;
}

.wp-block-navigation .wp-block-navigation-item__description {
    display: none;
}

.wp-block-navigation .wp-block-page-list {
    align-items: var(--navigation-layout-align,initial);
    background-color: inherit;
    display: flex;
    flex-direction: var(--navigation-layout-direction,initial);
    flex-wrap: var(--navigation-layout-wrap,wrap);
    justify-content: var(--navigation-layout-justify,initial);
}

.wp-block-navigation .wp-block-navigation-item {
    background-color: inherit;
}

.is-small-text {
    font-size: .875em;
}

.is-regular-text {
    font-size: 1em;
}

.is-large-text {
    font-size: 2.25em;
}

.is-larger-text {
    font-size: 3em;
}

.has-drop-cap:not(:focus):first-letter {
    float: left;
    font-size: 8.4em;
    font-style: normal;
    font-weight: 100;
    line-height: .68;
    margin: .05em .1em 0 0;
    text-transform: uppercase;
}

body.rtl .has-drop-cap:not(:focus):first-letter {
    float: none;
    margin-left: .1em;
}

p.has-drop-cap.has-background {
    overflow: hidden;
}

p.has-background {
    padding: 1.25em 2.375em;
}

:where(p.has-text-color:not(.has-link-color)) a {
    color: inherit;
}

.wp-block-post-author {
    display: flex;
    flex-wrap: wrap;
}

.wp-block-post-author__byline {
    font-size: .5em;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
}

.wp-block-post-author__avatar {
    margin-right: 1em;
}

.wp-block-post-author__bio {
    font-size: .7em;
    margin-bottom: .7em;
}

.wp-block-post-author__content {
    flex-basis: 0;
    flex-grow: 1;
}

.wp-block-post-author__name {
    margin: 0;
}

.wp-block-post-comments-form {
    box-sizing: border-box;
}

.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title) {
    font-weight: inherit;
}

.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title) {
    font-family: inherit;
}

.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title),.wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title) {
    font-size: inherit;
}

.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title) {
    line-height: inherit;
}

.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title) {
    letter-spacing: inherit;
}

.wp-block-post-comments-form input[type=submit] {
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    overflow-wrap: break-word;
    text-align: center;
}

.wp-block-post-comments-form input:not([type=submit]),.wp-block-post-comments-form textarea {
    border: 1px solid #949494;
    font-family: inherit;
    font-size: 1em;
}

.wp-block-post-comments-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments-form textarea {
    padding: calc(.667em + 2px);
}

.wp-block-post-comments-form .comment-form-cookies-consent {
    display: flex;
    gap: .25em;
}

.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent {
    margin-top: .35em;
}

.wp-block-post-date {
    box-sizing: border-box;
}

.wp-block-post-excerpt__excerpt {
    margin-bottom: 0;
    margin-top: 0;
}

.wp-block-post-excerpt__more-text {
    margin-bottom: 0;
    margin-top: var(--wp--style--block-gap);
}

.wp-block-post-excerpt__more-link {
    display: inline-block;
}

.wp-block-post-featured-image {
    margin-left: 0;
    margin-right: 0;
}

.wp-block-post-featured-image a {
    display: block;
    height: 100%;
}

.wp-block-post-featured-image img {
    box-sizing: border-box;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    width: 100%;
}

.wp-block-post-featured-image.alignfull img,.wp-block-post-featured-image.alignwide img {
    width: 100%;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim {
    background-color: #000;
    inset: 0;
    position: absolute;
}

.wp-block-post-featured-image {
    position: relative;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient {
    background-color: initial;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0 {
    opacity: 0;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10 {
    opacity: .1;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20 {
    opacity: .2;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30 {
    opacity: .3;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40 {
    opacity: .4;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50 {
    opacity: .5;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60 {
    opacity: .6;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70 {
    opacity: .7;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80 {
    opacity: .8;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90 {
    opacity: .9;
}

.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100 {
    opacity: 1;
}

.wp-block-post-featured-image:where(.alignleft,.alignright) {
    width: 100%;
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous {
    display: inline-block;
    margin-right: 1ch;
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron) {
    transform: scaleX(1);
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next {
    display: inline-block;
    margin-left: 1ch;
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron) {
    transform: scaleX(1);
}

.wp-block-post-terms {
    box-sizing: border-box;
}

.wp-block-post-terms .wp-block-post-terms__separator {
    white-space: pre-wrap;
}

.wp-block-post-time-to-read,.wp-block-post-title {
    box-sizing: border-box;
}

.wp-block-post-title {
    word-break: break-word;
}

.wp-block-post-title a {
    display: inline-block;
}

.wp-block-preformatted {
    box-sizing: border-box;
    white-space: pre-wrap;
}

.wp-block-pullquote {
    box-sizing: border-box;
    overflow-wrap: break-word;
    padding: 4em 0;
    text-align: center;
}

.wp-block-pullquote p {
    color: inherit;
}

.wp-block-pullquote p {
    margin-top: 0;
}

.wp-block-pullquote p:last-child {
    margin-bottom: 0;
}

.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright {
    max-width: 420px;
}

.wp-block-pullquote footer {
    position: relative;
}

.wp-block-pullquote .has-text-color a {
    color: inherit;
}

.wp-block-pullquote.is-style-solid-color {
    border: none;
}

.wp-block-post-template {
    list-style: none;
    margin-bottom: 0;
    margin-top: 0;
    max-width: 100%;
    padding: 0;
}

.wp-block-post-template.wp-block-post-template {
    background: none;
}

.wp-block-post-template.is-flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25em;
}

.wp-block-post-template.is-flex-container>li {
    margin: 0;
    width: 100%;
}

.wp-block-post-template-is-layout-constrained>li>.alignright,.wp-block-post-template-is-layout-flow>li>.alignright {
    float: right;
    margin-inline-end:0;margin-inline-start:2em;}

.wp-block-post-template-is-layout-constrained>li>.alignleft,.wp-block-post-template-is-layout-flow>li>.alignleft {
    float: left;
    margin-inline-end:2em;margin-inline-start:0;}

.wp-block-query-pagination>.wp-block-query-pagination-next,.wp-block-query-pagination>.wp-block-query-pagination-numbers,.wp-block-query-pagination>.wp-block-query-pagination-previous {
    margin-bottom: .5em;
    margin-right: .5em;
}

.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child {
    margin-right: 0;
}

.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type {
    margin-inline-start:auto;}

.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child {
    margin-inline-end:auto;}

.wp-block-query-pagination .wp-block-query-pagination-previous-arrow {
    display: inline-block;
    margin-right: 1ch;
}

.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron) {
    transform: scaleX(1);
}

.wp-block-query-pagination .wp-block-query-pagination-next-arrow {
    display: inline-block;
    margin-left: 1ch;
}

.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron) {
    transform: scaleX(1);
}

.wp-block-query-title,.wp-block-quote {
    box-sizing: border-box;
}

.wp-block-quote {
    overflow-wrap: break-word;
}

.wp-block-quote.is-large:where(:not(.is-style-plain)),.wp-block-quote.is-style-large:where(:not(.is-style-plain)) {
    margin-bottom: 1em;
    padding: 0 1em;
}

.wp-block-quote.is-large:where(:not(.is-style-plain)) p,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p {
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.6;
}

.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer {
    font-size: 1.125em;
    text-align: right;
}

.wp-block-read-more {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
}

.wp-block-read-more:where(:not([style*=text-decoration])) {
    text-decoration: none;
}

.wp-block-read-more:where(:not([style*=text-decoration])):active,.wp-block-read-more:where(:not([style*=text-decoration])):focus {
    text-decoration: none;
}

ul.wp-block-rss {
    list-style: none;
    padding: 0;
}

ul.wp-block-rss.wp-block-rss {
    box-sizing: border-box;
}

ul.wp-block-rss.alignleft {
    margin-right: 2em;
}

ul.wp-block-rss.alignright {
    margin-left: 2em;
}

ul.wp-block-rss.is-grid {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

ul.wp-block-rss.is-grid li {
    margin: 0 1em 1em 0;
    width: 100%;
}

.wp-block-rss__item-author,.wp-block-rss__item-publish-date {
    display: block;
    font-size: .8125em;
}

.wp-block-search__button {
    margin-left: 10px;
    word-break: normal;
}

.wp-block-search__button.has-icon {
    line-height: 0;
}

.wp-block-search__button svg {
    height: 1.25em;
    min-height: 24px;
    min-width: 24px;
    width: 1.25em;
    fill: currentColor;
    vertical-align: text-bottom;
}

.wp-block-search__inside-wrapper {
    display: flex;
    flex: auto;
    flex-wrap: nowrap;
    max-width: 100%;
}

.wp-block-search__label {
    width: 100%;
}

.wp-block-search__input {
    -webkit-appearance: initial;
    appearance: none;
    border: 1px solid #949494;
    flex-grow: 1;
    margin-left: 0;
    margin-right: 0;
    min-width: 3rem;
    padding: 8px;
    text-decoration: unset !important;
}

.wp-block-search.wp-block-search__button-only .wp-block-search__button {
    flex-shrink: 0;
    margin-left: 0;
    max-width: 100%;
}

.wp-block-search.wp-block-search__button-only .wp-block-search__button[aria-expanded=true] {
    max-width: calc(100% - 100px);
}

.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper {
    min-width: 0 !important;
    transition-property: width;
}

.wp-block-search.wp-block-search__button-only .wp-block-search__input {
    flex-basis: 100%;
    transition-duration: .3s;
}

.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden,.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper {
    overflow: hidden;
}

.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input {
    border-left-width: 0 !important;
    border-right-width: 0 !important;
    flex-basis: 0;
    flex-grow: 0;
    margin: 0;
    min-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 0 !important;
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input {
    border: none;
    border-radius: 0;
    padding: 0 4px;
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus {
    outline: none;
}

.wp-block-separator {
    border: none;
    border-top: 2px solid;
}

.wp-block-separator.is-style-dots {
    background: none !important;
    border: none;
    height: auto;
    line-height: 1;
    text-align: center;
}

.wp-block-separator.is-style-dots:before {
    color: currentColor;
    content: "···";
    font-family: serif;
    font-size: 1.5em;
    letter-spacing: 2em;
    padding-left: 2em;
}

.wp-block-site-logo {
    box-sizing: border-box;
    line-height: 0;
}

.wp-block-site-logo a {
    display: inline-block;
    line-height: 0;
}

.wp-block-site-logo.is-default-size img {
    height: auto;
    width: 120px;
}

.wp-block-site-logo img {
    height: auto;
    max-width: 100%;
}

.wp-block-site-logo a,.wp-block-site-logo img {
    border-radius: inherit;
}

.wp-block-site-logo.is-style-rounded {
    border-radius: 9999px;
}

.wp-block-site-title a {
    color: inherit;
}

.wp-block-social-links {
    background: none;
    box-sizing: border-box;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    text-indent: 0;
}

.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover {
    border-bottom: 0;
    box-shadow: none;
    text-decoration: none;
}

.wp-block-social-links .wp-social-link a {
    padding: .25em;
}

.wp-block-social-links .wp-social-link svg {
    height: 1em;
    width: 1em;
}

.wp-block-social-links .wp-social-link span:not(.screen-reader-text) {
    font-size: .65em;
    margin-left: .5em;
    margin-right: .5em;
}

.wp-block-social-links.has-small-icon-size {
    font-size: 16px;
}

.wp-block-social-links,.wp-block-social-links.has-normal-icon-size {
    font-size: 24px;
}

.wp-block-social-links.has-large-icon-size {
    font-size: 36px;
}

.wp-block-social-links.has-huge-icon-size {
    font-size: 48px;
}

.wp-block-social-links.alignright {
    justify-content: flex-end;
}

.wp-block-social-link {
    border-radius: 9999px;
    display: block;
    height: auto;
    transition: transform .1s ease;
}

@media (prefers-reduced-motion:reduce) {
    .wp-block-social-link {
        transition-delay: 0s;
        transition-duration: 0s;
    }
}

.wp-block-social-link a {
    align-items: center;
    display: flex;
    line-height: 0;
    transition: transform .1s ease;
}

.wp-block-social-link:hover {
    transform: scale(1.1);
}

.wp-block-social-links .wp-block-social-link.wp-social-link {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited {
    color: currentColor;
    fill: currentColor;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
    background-color: #f0f0f0;
    color: #444;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {
    background-color: #f90;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {
    background-color: #1ea0c3;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {
    background-color: #0757fe;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {
    background-color: #1e1f26;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {
    background-color: #02e49b;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {
    background-color: #e94c89;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {
    background-color: #4280ff;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {
    background-color: #f45800;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
    background-color: #1778f2;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {
    background-color: #000;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {
    background-color: #0461dd;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {
    background-color: #e65678;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {
    background-color: #24292d;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {
    background-color: #eceadd;
    color: #382110;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {
    background-color: #ea4434;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-gravatar {
    background-color: #1d4fc4;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
    background-color: #f00075;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {
    background-color: #e21b24;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
    background-color: #0d66c2;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {
    background-color: #3288d4;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {
    background-color: #02ab6c;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {
    background-color: #f6405f;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon {
    background-color: #000;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {
    background-color: #e60122;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {
    background-color: #ef4155;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {
    background-color: #ff4500;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {
    background-color: #0478d7;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {
    background-color: #fefc00;
    color: #fff;
    stroke: #000;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {
    background-color: #ff5600;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {
    background-color: #1bd760;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram {
    background-color: #2aabee;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-threads,.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok {
    background-color: #000;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {
    background-color: #011835;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {
    background-color: #6440a4;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {
    background-color: #1da1f2;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {
    background-color: #1eb7ea;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {
    background-color: #4680c2;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {
    background-color: #3499cd;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-x {
    background-color: #000;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {
    background-color: #d32422;
    color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
    background-color: red;
    color: #fff;
}

.wp-block-social-links.is-style-logos-only .wp-social-link {
    background: none;
}

.wp-block-social-links.is-style-logos-only .wp-social-link a {
    padding: 0;
}

.wp-block-social-links.is-style-logos-only .wp-social-link svg {
    height: 1.25em;
    width: 1.25em;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-amazon {
    color: #f90;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {
    color: #1ea0c3;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-behance {
    color: #0757fe;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-codepen {
    color: #1e1f26;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {
    color: #02e49b;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {
    color: #e94c89;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {
    color: #4280ff;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-etsy {
    color: #f45800;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
    color: #1778f2;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {
    color: #000;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-flickr {
    color: #0461dd;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {
    color: #e65678;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-github {
    color: #24292d;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {
    color: #382110;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-google {
    color: #ea4434;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-gravatar {
    color: #1d4fc4;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-instagram {
    color: #f00075;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {
    color: #e21b24;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {
    color: #0d66c2;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {
    color: #3288d4;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-medium {
    color: #02ab6c;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-meetup {
    color: #f6405f;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-patreon {
    color: #000;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {
    color: #e60122;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-pocket {
    color: #ef4155;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-reddit {
    color: #ff4500;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-skype {
    color: #0478d7;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {
    color: #fff;
    stroke: #000;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {
    color: #ff5600;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-spotify {
    color: #1bd760;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-telegram {
    color: #2aabee;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-threads,.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok {
    color: #000;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {
    color: #011835;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-twitch {
    color: #6440a4;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-twitter {
    color: #1da1f2;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {
    color: #1eb7ea;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-vk {
    color: #4680c2;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-whatsapp {
    color: #25d366;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {
    color: #3499cd;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-x {
    color: #000;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-yelp {
    color: #d32422;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-youtube {
    color: red;
}

.wp-block-social-links.is-style-pill-shape .wp-social-link {
    width: auto;
}

.wp-block-social-links.is-style-pill-shape .wp-social-link a {
    padding-left: .66667em;
    padding-right: .66667em;
}

.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label {
    color: #000;
}

.wp-block-spacer {
    clear: both;
}

.wp-block-tag-cloud {
    box-sizing: border-box;
}

.wp-block-tag-cloud.alignfull {
    padding-left: 1em;
    padding-right: 1em;
}

.wp-block-tag-cloud a {
    display: inline-block;
    margin-right: 5px;
}

.wp-block-tag-cloud span {
    display: inline-block;
    margin-left: 5px;
    text-decoration: none;
}

.wp-block-tag-cloud.is-style-outline {
    display: flex;
    flex-wrap: wrap;
    gap: 1ch;
}

.wp-block-tag-cloud.is-style-outline a {
    border: 1px solid;
    font-size: unset !important;
    margin-right: 0;
    padding: 1ch 2ch;
    text-decoration: none !important;
}

.wp-block-table {
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table thead {
    border-bottom: 3px solid;
}

.wp-block-table tfoot {
    border-top: 3px solid;
}

.wp-block-table td,.wp-block-table th {
    border: 1px solid;
    padding: .5em;
}

.wp-block-table .has-fixed-layout {
    table-layout: fixed;
    width: 100%;
}

.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th {
    word-break: break-word;
}

.wp-block-table.alignleft,.wp-block-table.alignright {
    display: table;
    width: auto;
}

.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th {
    word-break: break-word;
}

.wp-block-table .has-subtle-light-gray-background-color {
    background-color: #f3f4f5;
}

.wp-block-table .has-subtle-pale-green-background-color {
    background-color: #e9fbe5;
}

.wp-block-table .has-subtle-pale-blue-background-color {
    background-color: #e7f5fe;
}

.wp-block-table .has-subtle-pale-pink-background-color {
    background-color: #fcf0ef;
}

.wp-block-table.is-style-stripes {
    background-color: initial;
    border-bottom: 1px solid #f0f0f0;
    border-collapse: inherit;
    border-spacing: 0;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #f0f0f0;
}

.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
    background-color: #f3f4f5;
}

.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
    background-color: #e9fbe5;
}

.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
    background-color: #e7f5fe;
}

.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
    background-color: #fcf0ef;
}

.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th {
    border-color: rgba(0,0,0,0);
}

.wp-block-table .has-border-color td,.wp-block-table .has-border-color th,.wp-block-table .has-border-color tr,.wp-block-table .has-border-color>* {
    border-color: inherit;
}

.wp-block-table table[style*=border-style] td,.wp-block-table table[style*=border-style] th,.wp-block-table table[style*=border-style] tr,.wp-block-table table[style*=border-style]>* {
    border-style: inherit;
}

.wp-block-table table[style*=border-width] td,.wp-block-table table[style*=border-width] th,.wp-block-table table[style*=border-width] tr,.wp-block-table table[style*=border-width]>* {
    border-style: inherit;
    border-width: inherit;
}

.wp-block-term-description p {
    margin-bottom: 0;
    margin-top: 0;
}

.wp-block-text-columns {
    display: flex;
}

.wp-block-text-columns .wp-block-column {
    margin: 0 1em;
    padding: 0;
}

.wp-block-text-columns .wp-block-column:first-child {
    margin-left: 0;
}

.wp-block-text-columns .wp-block-column:last-child {
    margin-right: 0;
}

.wp-block-video {
    box-sizing: border-box;
}

.wp-block-video video {
    vertical-align: middle;
    width: 100%;
}

@supports (position: sticky) {
    .wp-block-video [poster] {
        object-fit:cover;
    }
}

.wp-element-button {
    cursor: pointer;
}

:root .has-very-light-gray-background-color {
    background-color: #eee;
}

:root .has-very-dark-gray-background-color {
    background-color: #313131;
}

:root .has-very-light-gray-color {
    color: #eee;
}

:root .has-very-dark-gray-color {
    color: #313131;
}

:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
    background: linear-gradient(135deg,#00d084,#0693e3);
}

:root .has-purple-crush-gradient-background {
    background: linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe);
}

:root .has-hazy-dawn-gradient-background {
    background: linear-gradient(135deg,#faaca8,#dad0ec);
}

:root .has-subdued-olive-gradient-background {
    background: linear-gradient(135deg,#fafae1,#67a671);
}

:root .has-atomic-cream-gradient-background {
    background: linear-gradient(135deg,#fdd79a,#004a59);
}

:root .has-nightshade-gradient-background {
    background: linear-gradient(135deg,#330968,#31cdcf);
}

:root .has-midnight-gradient-background {
    background: linear-gradient(135deg,#020381,#2874fc);
}

.has-regular-font-size {
    font-size: 1em;
}

.has-larger-font-size {
    font-size: 2.625em;
}

.has-normal-font-size {
    font-size: var(--wp--preset--font-size--normal);
}

.has-huge-font-size {
    font-size: var(--wp--preset--font-size--huge);
}

.has-text-align-center {
    text-align: center;
}

.has-text-align-left {
    text-align: left;
}

.has-text-align-right {
    text-align: right;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #ddd;
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

html :where(.has-border-color) {
    border-style: solid;
}

html :where([style*=border-top-color]) {
    border-top-style: solid;
}

html :where([style*=border-right-color]) {
    border-right-style: solid;
}

html :where([style*=border-bottom-color]) {
    border-bottom-style: solid;
}

html :where([style*=border-left-color]) {
    border-left-style: solid;
}

html :where([style*=border-width]) {
    border-style: solid;
}

html :where([style*=border-top-width]) {
    border-top-style: solid;
}

html :where([style*=border-right-width]) {
    border-right-style: solid;
}

html :where([style*=border-bottom-width]) {
    border-bottom-style: solid;
}

html :where([style*=border-left-width]) {
    border-left-style: solid;
}

html :where(img[class*=wp-image-]) {
    height: auto;
    max-width: 100%;
}

html :where(.is-position-sticky) {
    --wp-admin--admin-bar--position-offset: var(--wp-admin--admin-bar--height,0px);
}

.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em .5em 1em;
    padding: .2em 1em;
    border: 2px solid #00a0d2;
}

.wpcf7 form.init .wpcf7-response-output,.wpcf7 form.resetting .wpcf7-response-output,.wpcf7 form.submitting .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output,.wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
    border-color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output,.wpcf7 form.unaccepted .wpcf7-response-output,.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: relative;
    top: -2ex;
    left: 1em;
    z-index: 100;
    border: 1px solid #dc3232;
    background: #fff;
    padding: .2em .8em;
    width: 24em;
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: .75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: relative;
}

form.submitting .wpcf7-spinner {
    visibility: visible;
}

.wpcf7-spinner::before {
    content: "";
    position: absolute;
    background-color: #fbfbfc;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
    .wpcf7-spinner::before {
        animation-name: blink;
        animation-duration: 2000ms;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    from {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.wpcf7 [inert] {
    opacity: .5;
}

.wpcf7 input[type="file"] {
    cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
    cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
}

.wpcf7 input[type="url"],.wpcf7 input[type="email"],.wpcf7 input[type="tel"] {
    direction: ltr;
}

.intl-tel-input {
    position: relative;
}

.intl-tel-input * {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.intl-tel-input .hide {
    display: none;
}

.intl-tel-input .v-hide {
    visibility: hidden;
}

.intl-tel-input input,.intl-tel-input input[type=tel],.intl-tel-input input[type=text] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0;
}

.intl-tel-input .flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px;
}

.intl-tel-input .selected-flag {
    z-index: 1;
    position: relative;
    width: 36px;
    height: 100%;
    padding: 0 0 0 8px;
}

.intl-tel-input .selected-flag .iti-flag {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.intl-tel-input .selected-flag .iti-arrow {
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555;
}

.intl-tel-input .selected-flag .iti-arrow.up {
    border-top: none;
    border-bottom: 4px solid #555;
}

.intl-tel-input ul.country-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intl-tel-input .country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0,0,0,.2);
    background-color: #fff;
    border: 1px solid #ccc;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
}

.intl-tel-input .country-list.dropup {
    bottom: 100%;
    margin-bottom: -1px;
}

.intl-tel-input .country-list .flag-box {
    display: inline-block;
    width: 20px;
}

.intl-tel-input .country-list .divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc;
    list-style: none;
}

.intl-tel-input .country-list li.country {
    list-style: none;
}

.intl-tel-input .country-list .country {
    padding: 5px 10px;
}

.intl-tel-input .country-list .country .dial-code {
    color: #999;
}

.intl-tel-input .country-list .country.highlight {
    background-color: rgba(0,0,0,.05);
}

.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .dial-code,.intl-tel-input .country-list .flag-box {
    vertical-align: middle;
}

.intl-tel-input .country-list .country-name,.intl-tel-input .country-list .flag-box {
    margin-right: 6px;
}

.intl-tel-input.allow-dropdown input,.intl-tel-input.allow-dropdown input[type=tel],.intl-tel-input.allow-dropdown input[type=text],.intl-tel-input.separate-dial-code input,.intl-tel-input.separate-dial-code input[type=tel],.intl-tel-input.separate-dial-code input[type=text] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0;
}

.intl-tel-input.allow-dropdown .flag-container,.intl-tel-input.separate-dial-code .flag-container {
    right: auto;
    left: 0;
}

.intl-tel-input.allow-dropdown .selected-flag,.intl-tel-input.separate-dial-code .selected-flag {
    width: 46px;
}

.intl-tel-input.allow-dropdown .flag-container:hover {
    cursor: pointer;
}

.intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
    background-color: rgba(0,0,0,.05);
}

.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover {
    cursor: default;
}

.intl-tel-input.allow-dropdown input[disabled]+.flag-container:hover .selected-flag,.intl-tel-input.allow-dropdown input[readonly]+.flag-container:hover .selected-flag {
    background-color: transparent;
}

.intl-tel-input.separate-dial-code .selected-flag {
    background-color: rgba(0,0,0,.05);
    display: table;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    display: table-cell;
    vertical-align: middle;
    padding-left: 28px;
}

.intl-tel-input.iti-container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px;
}

.intl-tel-input.iti-container:hover {
    cursor: pointer;
}

.iti-mobile .intl-tel-input.iti-container {
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    position: fixed;
}

.iti-mobile .intl-tel-input .country-list {
    max-height: 100%;
    width: 100%;
}

.iti-mobile .intl-tel-input .country-list .country {
    padding: 10px 10px;
    line-height: 1.5em;
}

.iti-flag {
    width: 20px;
}

.iti-flag.be {
    width: 18px;
}

.iti-flag.ch {
    width: 15px;
}

.iti-flag.mc {
    width: 19px;
}

.iti-flag.ne {
    width: 18px;
}

.iti-flag.np {
    width: 13px;
}

.iti-flag.va {
    width: 15px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2 / 1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx) {
    .iti-flag {
        background-size:5630px 15px;
    }
}

.iti-flag.ac {
    height: 10px;
    background-position: 0 0;
}

.iti-flag.ad {
    height: 14px;
    background-position: -22px 0;
}

.iti-flag.ae {
    height: 10px;
    background-position: -44px 0;
}

.iti-flag.af {
    height: 14px;
    background-position: -66px 0;
}

.iti-flag.ag {
    height: 14px;
    background-position: -88px 0;
}

.iti-flag.ai {
    height: 10px;
    background-position: -110px 0;
}

.iti-flag.al {
    height: 15px;
    background-position: -132px 0;
}

.iti-flag.am {
    height: 10px;
    background-position: -154px 0;
}

.iti-flag.ao {
    height: 14px;
    background-position: -176px 0;
}

.iti-flag.aq {
    height: 14px;
    background-position: -198px 0;
}

.iti-flag.ar {
    height: 13px;
    background-position: -220px 0;
}

.iti-flag.as {
    height: 10px;
    background-position: -242px 0;
}

.iti-flag.at {
    height: 14px;
    background-position: -264px 0;
}

.iti-flag.au {
    height: 10px;
    background-position: -286px 0;
}

.iti-flag.aw {
    height: 14px;
    background-position: -308px 0;
}

.iti-flag.ax {
    height: 13px;
    background-position: -330px 0;
}

.iti-flag.az {
    height: 10px;
    background-position: -352px 0;
}

.iti-flag.ba {
    height: 10px;
    background-position: -374px 0;
}

.iti-flag.bb {
    height: 14px;
    background-position: -396px 0;
}

.iti-flag.bd {
    height: 12px;
    background-position: -418px 0;
}

.iti-flag.be {
    height: 15px;
    background-position: -440px 0;
}

.iti-flag.bf {
    height: 14px;
    background-position: -460px 0;
}

.iti-flag.bg {
    height: 12px;
    background-position: -482px 0;
}

.iti-flag.bh {
    height: 12px;
    background-position: -504px 0;
}

.iti-flag.bi {
    height: 12px;
    background-position: -526px 0;
}

.iti-flag.bj {
    height: 14px;
    background-position: -548px 0;
}

.iti-flag.bl {
    height: 14px;
    background-position: -570px 0;
}

.iti-flag.bm {
    height: 10px;
    background-position: -592px 0;
}

.iti-flag.bn {
    height: 10px;
    background-position: -614px 0;
}

.iti-flag.bo {
    height: 14px;
    background-position: -636px 0;
}

.iti-flag.bq {
    height: 14px;
    background-position: -658px 0;
}

.iti-flag.br {
    height: 14px;
    background-position: -680px 0;
}

.iti-flag.bs {
    height: 10px;
    background-position: -702px 0;
}

.iti-flag.bt {
    height: 14px;
    background-position: -724px 0;
}

.iti-flag.bw {
    height: 14px;
    background-position: -768px 0;
}

.iti-flag.by {
    height: 10px;
    background-position: -790px 0;
}

.iti-flag.bz {
    height: 14px;
    background-position: -812px 0;
}

.iti-flag.ca {
    height: 10px;
    background-position: -834px 0;
}

.iti-flag.cc {
    height: 10px;
    background-position: -856px 0;
}

.iti-flag.cd {
    height: 15px;
    background-position: -878px 0;
}

.iti-flag.cf {
    height: 14px;
    background-position: -900px 0;
}

.iti-flag.cg {
    height: 14px;
    background-position: -922px 0;
}

.iti-flag.ch {
    height: 15px;
    background-position: -944px 0;
}

.iti-flag.ci {
    height: 14px;
    background-position: -961px 0;
}

.iti-flag.ck {
    height: 10px;
    background-position: -983px 0;
}

.iti-flag.cl {
    height: 14px;
    background-position: -1005px 0;
}

.iti-flag.cm {
    height: 14px;
    background-position: -1027px 0;
}

.iti-flag.cn {
    height: 14px;
    background-position: -1049px 0;
}

.iti-flag.co {
    height: 14px;
    background-position: -1071px 0;
}

.iti-flag.cp {
    height: 14px;
    background-position: -1093px 0;
}

.iti-flag.cr {
    height: 12px;
    background-position: -1115px 0;
}

.iti-flag.cu {
    height: 10px;
    background-position: -1137px 0;
}

.iti-flag.cv {
    height: 12px;
    background-position: -1159px 0;
}

.iti-flag.cw {
    height: 14px;
    background-position: -1181px 0;
}

.iti-flag.cx {
    height: 10px;
    background-position: -1203px 0;
}

.iti-flag.cy {
    height: 13px;
    background-position: -1225px 0;
}

.iti-flag.cz {
    height: 14px;
    background-position: -1247px 0;
}

.iti-flag.de {
    height: 12px;
    background-position: -1269px 0;
}

.iti-flag.dg {
    height: 10px;
    background-position: -1291px 0;
}

.iti-flag.dj {
    height: 14px;
    background-position: -1313px 0;
}

.iti-flag.dk {
    height: 15px;
    background-position: -1335px 0;
}

.iti-flag.dm {
    height: 10px;
    background-position: -1357px 0;
}

.iti-flag.do {
    height: 13px;
    background-position: -1379px 0;
}

.iti-flag.dz {
    height: 14px;
    background-position: -1401px 0;
}

.iti-flag.ea {
    height: 14px;
    background-position: -1423px 0;
}

.iti-flag.ec {
    height: 14px;
    background-position: -1445px 0;
}

.iti-flag.ee {
    height: 13px;
    background-position: -1467px 0;
}

.iti-flag.eg {
    height: 14px;
    background-position: -1489px 0;
}

.iti-flag.eh {
    height: 10px;
    background-position: -1511px 0;
}

.iti-flag.er {
    height: 10px;
    background-position: -1533px 0;
}

.iti-flag.es {
    height: 14px;
    background-position: -1555px 0;
}

.iti-flag.et {
    height: 10px;
    background-position: -1577px 0;
}

.iti-flag.eu {
    height: 14px;
    background-position: -1599px 0;
}

.iti-flag.fi {
    height: 12px;
    background-position: -1621px 0;
}

.iti-flag.fj {
    height: 10px;
    background-position: -1643px 0;
}

.iti-flag.fk {
    height: 10px;
    background-position: -1665px 0;
}

.iti-flag.fm {
    height: 11px;
    background-position: -1687px 0;
}

.iti-flag.fo {
    height: 15px;
    background-position: -1709px 0;
}

.iti-flag.fr {
    height: 14px;
    background-position: -1731px 0;
}

.iti-flag.ga {
    height: 15px;
    background-position: -1753px 0;
}

.iti-flag.gb {
    height: 10px;
    background-position: -1775px 0;
}

.iti-flag.gd {
    height: 12px;
    background-position: -1797px 0;
}

.iti-flag.ge {
    height: 14px;
    background-position: -1819px 0;
}

.iti-flag.gf {
    height: 14px;
    background-position: -1841px 0;
}

.iti-flag.gg {
    height: 14px;
    background-position: -1863px 0;
}

.iti-flag.gh {
    height: 14px;
    background-position: -1885px 0;
}

.iti-flag.gi {
    height: 10px;
    background-position: -1907px 0;
}

.iti-flag.gl {
    height: 14px;
    background-position: -1929px 0;
}

.iti-flag.gm {
    height: 14px;
    background-position: -1951px 0;
}

.iti-flag.gn {
    height: 14px;
    background-position: -1973px 0;
}

.iti-flag.gp {
    height: 14px;
    background-position: -1995px 0;
}

.iti-flag.gq {
    height: 14px;
    background-position: -2017px 0;
}

.iti-flag.gr {
    height: 14px;
    background-position: -2039px 0;
}

.iti-flag.gs {
    height: 10px;
    background-position: -2061px 0;
}

.iti-flag.gt {
    height: 13px;
    background-position: -2083px 0;
}

.iti-flag.gu {
    height: 11px;
    background-position: -2105px 0;
}

.iti-flag.gw {
    height: 10px;
    background-position: -2127px 0;
}

.iti-flag.gy {
    height: 12px;
    background-position: -2149px 0;
}

.iti-flag.hk {
    height: 14px;
    background-position: -2171px 0;
}

.iti-flag.hm {
    height: 10px;
    background-position: -2193px 0;
}

.iti-flag.hn {
    height: 10px;
    background-position: -2215px 0;
}

.iti-flag.hr {
    height: 10px;
    background-position: -2237px 0;
}

.iti-flag.ht {
    height: 12px;
    background-position: -2259px 0;
}

.iti-flag.hu {
    height: 10px;
    background-position: -2281px 0;
}

.iti-flag.ic {
    height: 14px;
    background-position: -2303px 0;
}

.iti-flag.id {
    height: 14px;
    background-position: -2325px 0;
}

.iti-flag.ie {
    height: 10px;
    background-position: -2347px 0;
}

.iti-flag.il {
    height: 15px;
    background-position: -2369px 0;
}

.iti-flag.im {
    height: 10px;
    background-position: -2391px 0;
}

.iti-flag.in {
    height: 14px;
    background-position: -2413px 0;
}

.iti-flag.io {
    height: 10px;
    background-position: -2435px 0;
}

.iti-flag.iq {
    height: 14px;
    background-position: -2457px 0;
}

.iti-flag.ir {
    height: 12px;
    background-position: -2479px 0;
}

.iti-flag.is {
    height: 15px;
    background-position: -2501px 0;
}

.iti-flag.it {
    height: 14px;
    background-position: -2523px 0;
}

.iti-flag.je {
    height: 12px;
    background-position: -2545px 0;
}

.iti-flag.jm {
    height: 10px;
    background-position: -2567px 0;
}

.iti-flag.jo {
    height: 10px;
    background-position: -2589px 0;
}

.iti-flag.jp {
    height: 14px;
    background-position: -2611px 0;
}

.iti-flag.ke {
    height: 14px;
    background-position: -2633px 0;
}

.iti-flag.kg {
    height: 12px;
    background-position: -2655px 0;
}

.iti-flag.kh {
    height: 13px;
    background-position: -2677px 0;
}

.iti-flag.ki {
    height: 10px;
    background-position: -2699px 0;
}

.iti-flag.km {
    height: 12px;
    background-position: -2721px 0;
}

.iti-flag.kn {
    height: 14px;
    background-position: -2743px 0;
}

.iti-flag.kp {
    height: 10px;
    background-position: -2765px 0;
}

.iti-flag.kr {
    height: 14px;
    background-position: -2787px 0;
}

.iti-flag.kw {
    height: 10px;
    background-position: -2809px 0;
}

.iti-flag.ky {
    height: 10px;
    background-position: -2831px 0;
}

.iti-flag.kz {
    height: 10px;
    background-position: -2853px 0;
}

.iti-flag.la {
    height: 14px;
    background-position: -2875px 0;
}

.iti-flag.lb {
    height: 14px;
    background-position: -2897px 0;
}

.iti-flag.lc {
    height: 10px;
    background-position: -2919px 0;
}

.iti-flag.li {
    height: 12px;
    background-position: -2941px 0;
}

.iti-flag.lk {
    height: 10px;
    background-position: -2963px 0;
}

.iti-flag.lr {
    height: 11px;
    background-position: -2985px 0;
}

.iti-flag.ls {
    height: 14px;
    background-position: -3007px 0;
}

.iti-flag.lt {
    height: 12px;
    background-position: -3029px 0;
}

.iti-flag.lu {
    height: 12px;
    background-position: -3051px 0;
}

.iti-flag.lv {
    height: 10px;
    background-position: -3073px 0;
}

.iti-flag.ly {
    height: 10px;
    background-position: -3095px 0;
}

.iti-flag.ma {
    height: 14px;
    background-position: -3117px 0;
}

.iti-flag.mc {
    height: 15px;
    background-position: -3139px 0;
}

.iti-flag.md {
    height: 10px;
    background-position: -3160px 0;
}

.iti-flag.me {
    height: 10px;
    background-position: -3182px 0;
}

.iti-flag.mf {
    height: 14px;
    background-position: -3204px 0;
}

.iti-flag.mg {
    height: 14px;
    background-position: -3226px 0;
}

.iti-flag.mh {
    height: 11px;
    background-position: -3248px 0;
}

.iti-flag.mk {
    height: 10px;
    background-position: -3270px 0;
}

.iti-flag.ml {
    height: 14px;
    background-position: -3292px 0;
}

.iti-flag.mm {
    height: 14px;
    background-position: -3314px 0;
}

.iti-flag.mn {
    height: 10px;
    background-position: -3336px 0;
}

.iti-flag.mo {
    height: 14px;
    background-position: -3358px 0;
}

.iti-flag.mp {
    height: 10px;
    background-position: -3380px 0;
}

.iti-flag.mq {
    height: 14px;
    background-position: -3402px 0;
}

.iti-flag.mr {
    height: 14px;
    background-position: -3424px 0;
}

.iti-flag.ms {
    height: 10px;
    background-position: -3446px 0;
}

.iti-flag.mt {
    height: 14px;
    background-position: -3468px 0;
}

.iti-flag.mu {
    height: 14px;
    background-position: -3490px 0;
}

.iti-flag.mv {
    height: 14px;
    background-position: -3512px 0;
}

.iti-flag.mw {
    height: 14px;
    background-position: -3534px 0;
}

.iti-flag.mx {
    height: 12px;
    background-position: -3556px 0;
}

.iti-flag.my {
    height: 10px;
    background-position: -3578px 0;
}

.iti-flag.mz {
    height: 14px;
    background-position: -3600px 0;
}

.iti-flag.na {
    height: 14px;
    background-position: -3622px 0;
}

.iti-flag.nc {
    height: 10px;
    background-position: -3644px 0;
}

.iti-flag.ne {
    height: 15px;
    background-position: -3666px 0;
}

.iti-flag.nf {
    height: 10px;
    background-position: -3686px 0;
}

.iti-flag.ng {
    height: 10px;
    background-position: -3708px 0;
}

.iti-flag.ni {
    height: 12px;
    background-position: -3730px 0;
}

.iti-flag.nl {
    height: 14px;
    background-position: -3752px 0;
}

.iti-flag.no {
    height: 15px;
    background-position: -3774px 0;
}

.iti-flag.np {
    height: 15px;
    background-position: -3796px 0;
}

.iti-flag.nr {
    height: 10px;
    background-position: -3811px 0;
}

.iti-flag.nu {
    height: 10px;
    background-position: -3833px 0;
}

.iti-flag.nz {
    height: 10px;
    background-position: -3855px 0;
}

.iti-flag.om {
    height: 10px;
    background-position: -3877px 0;
}

.iti-flag.pa {
    height: 14px;
    background-position: -3899px 0;
}

.iti-flag.pe {
    height: 14px;
    background-position: -3921px 0;
}

.iti-flag.pf {
    height: 14px;
    background-position: -3943px 0;
}

.iti-flag.pg {
    height: 15px;
    background-position: -3965px 0;
}

.iti-flag.ph {
    height: 10px;
    background-position: -3987px 0;
}

.iti-flag.pk {
    height: 14px;
    background-position: -4009px 0;
}

.iti-flag.pl {
    height: 13px;
    background-position: -4031px 0;
}

.iti-flag.pm {
    height: 14px;
    background-position: -4053px 0;
}

.iti-flag.pn {
    height: 10px;
    background-position: -4075px 0;
}

.iti-flag.pr {
    height: 14px;
    background-position: -4097px 0;
}

.iti-flag.ps {
    height: 10px;
    background-position: -4119px 0;
}

.iti-flag.pt {
    height: 14px;
    background-position: -4141px 0;
}

.iti-flag.pw {
    height: 13px;
    background-position: -4163px 0;
}

.iti-flag.py {
    height: 11px;
    background-position: -4185px 0;
}

.iti-flag.qa {
    height: 8px;
    background-position: -4207px 0;
}

.iti-flag.re {
    height: 14px;
    background-position: -4229px 0;
}

.iti-flag.ro {
    height: 14px;
    background-position: -4251px 0;
}

.iti-flag.rs {
    height: 14px;
    background-position: -4273px 0;
}

.iti-flag.ru {
    height: 14px;
    background-position: -4295px 0;
}

.iti-flag.rw {
    height: 14px;
    background-position: -4317px 0;
}

.iti-flag.sa {
    height: 14px;
    background-position: -4339px 0;
}

.iti-flag.sb {
    height: 10px;
    background-position: -4361px 0;
}

.iti-flag.sc {
    height: 10px;
    background-position: -4383px 0;
}

.iti-flag.sd {
    height: 10px;
    background-position: -4405px 0;
}

.iti-flag.se {
    height: 13px;
    background-position: -4427px 0;
}

.iti-flag.sg {
    height: 14px;
    background-position: -4449px 0;
}

.iti-flag.sh {
    height: 10px;
    background-position: -4471px 0;
}

.iti-flag.si {
    height: 10px;
    background-position: -4493px 0;
}

.iti-flag.sj {
    height: 15px;
    background-position: -4515px 0;
}

.iti-flag.sk {
    height: 14px;
    background-position: -4537px 0;
}

.iti-flag.sl {
    height: 14px;
    background-position: -4559px 0;
}

.iti-flag.sm {
    height: 15px;
    background-position: -4581px 0;
}

.iti-flag.sn {
    height: 14px;
    background-position: -4603px 0;
}

.iti-flag.so {
    height: 14px;
    background-position: -4625px 0;
}

.iti-flag.sr {
    height: 14px;
    background-position: -4647px 0;
}

.iti-flag.ss {
    height: 10px;
    background-position: -4669px 0;
}

.iti-flag.st {
    height: 10px;
    background-position: -4691px 0;
}

.iti-flag.sv {
    height: 12px;
    background-position: -4713px 0;
}

.iti-flag.sx {
    height: 14px;
    background-position: -4735px 0;
}

.iti-flag.sy {
    height: 14px;
    background-position: -4757px 0;
}

.iti-flag.sz {
    height: 14px;
    background-position: -4779px 0;
}

.iti-flag.ta {
    height: 10px;
    background-position: -4801px 0;
}

.iti-flag.tc {
    height: 10px;
    background-position: -4823px 0;
}

.iti-flag.td {
    height: 14px;
    background-position: -4845px 0;
}

.iti-flag.tf {
    height: 14px;
    background-position: -4867px 0;
}

.iti-flag.tg {
    height: 13px;
    background-position: -4889px 0;
}

.iti-flag.th {
    height: 14px;
    background-position: -4911px 0;
}

.iti-flag.tj {
    height: 10px;
    background-position: -4933px 0;
}

.iti-flag.tk {
    height: 10px;
    background-position: -4955px 0;
}

.iti-flag.tl {
    height: 10px;
    background-position: -4977px 0;
}

.iti-flag.tm {
    height: 14px;
    background-position: -4999px 0;
}

.iti-flag.tn {
    height: 14px;
    background-position: -5021px 0;
}

.iti-flag.to {
    height: 10px;
    background-position: -5043px 0;
}

.iti-flag.tr {
    height: 14px;
    background-position: -5065px 0;
}

.iti-flag.tt {
    height: 12px;
    background-position: -5087px 0;
}

.iti-flag.tv {
    height: 10px;
    background-position: -5109px 0;
}

.iti-flag.tw {
    height: 14px;
    background-position: -5131px 0;
}

.iti-flag.tz {
    height: 14px;
    background-position: -5153px 0;
}

.iti-flag.ua {
    height: 14px;
    background-position: -5175px 0;
}

.iti-flag.ug {
    height: 14px;
    background-position: -5197px 0;
}

.iti-flag.um {
    height: 11px;
    background-position: -5219px 0;
}

.iti-flag.us {
    height: 11px;
    background-position: -5241px 0;
}

.iti-flag.uy {
    height: 14px;
    background-position: -5263px 0;
}

.iti-flag.uz {
    height: 10px;
    background-position: -5285px 0;
}

.iti-flag.va {
    height: 15px;
    background-position: -5307px 0;
}

.iti-flag.vc {
    height: 14px;
    background-position: -5324px 0;
}

.iti-flag.ve {
    height: 14px;
    background-position: -5346px 0;
}

.iti-flag.vg {
    height: 10px;
    background-position: -5368px 0;
}

.iti-flag.vi {
    height: 14px;
    background-position: -5390px 0;
}

.iti-flag.vn {
    height: 14px;
    background-position: -5412px 0;
}

.iti-flag.vu {
    height: 12px;
    background-position: -5434px 0;
}

.iti-flag.wf {
    height: 14px;
    background-position: -5456px 0;
}

.iti-flag.ws {
    height: 10px;
    background-position: -5478px 0;
}

.iti-flag.xk {
    height: 15px;
    background-position: -5500px 0;
}

.iti-flag.ye {
    height: 14px;
    background-position: -5522px 0;
}

.iti-flag.yt {
    height: 14px;
    background-position: -5544px 0;
}

.iti-flag.za {
    height: 14px;
    background-position: -5566px 0;
}

.iti-flag.zm {
    height: 14px;
    background-position: -5588px 0;
}

.iti-flag.zw {
    height: 10px;
    background-position: -5610px 0;
}

.iti-flag {
    width: 20px;
    height: 15px;
    box-shadow: 0 0 1px 0 #888;
    background-image: url("https://cdn-icbnj.nitrocdn.com/DxLMbDkMAsFVFzgPzCObWFuipKtAgITG/assets/images/optimized/rev-81f18f1/www.unifiedinfotech.net/wp-content/plugins/country-phone-field-contact-form-7/assets/img/flags.png");
    background-repeat: no-repeat;
    background-color: #dbdbdb;
    background-position: 20px 0;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2 / 1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx) {
    .iti-flag {
        background-image:url("https://cdn-icbnj.nitrocdn.com/DxLMbDkMAsFVFzgPzCObWFuipKtAgITG/assets/images/optimized/rev-81f18f1/www.unifiedinfotech.net/wp-content/plugins/country-phone-field-contact-form-7/assets/img/flags@2x.png");
    }

    .iti-flag.nitro-lazy {
        background-image: none !important;
    }
}

.iti-flag.nitro-lazy {
    background-image: none !important;
}

.iti-flag.np {
    background-color: transparent;
}

.country-select {
    position: relative;
}

.country-select * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.country-select .hide {
    display: none;
}

.country-select .v-hide {
    visibility: hidden;
}

.country-select input,.country-select input[type=text] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0;
}

.country-select .flag-dropdown {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px;
}

.country-select .selected-flag {
    z-index: 1;
    position: relative;
    width: 36px;
    height: 100%;
    padding: 0 0 0 8px;
}

.country-select .selected-flag .flag {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.country-select .selected-flag .arrow {
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555;
}

.country-select .selected-flag .arrow.up {
    border-top: none;
    border-bottom: 4px solid #555;
}

.country-select ul.country-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.country-select .country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,.2);
    box-shadow: 1px 1px 4px rgba(0,0,0,.2);
    background-color: #fff;
    border: 1px solid #ccc;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
}

.country-select .country-list .flag {
    display: inline-block;
    width: 20px;
    margin-right: 6px;
}

.country-select .country-list .divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc;
    list-style: none;
}

.country-select .country-list .country {
    padding: 5px 10px;
}

.country-select .country-list li.country {
    list-style: none;
}

.country-select .country-list .country.highlight {
    background-color: rgba(0,0,0,.05);
}

.country-select .country-list .country-name,.country-select .country-list .flag {
    vertical-align: middle;
}

.country-select.inside input,.country-select.inside input[type=text] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0;
}

.country-select.inside .flag-dropdown {
    right: auto;
    left: 0;
}

.country-select.inside .selected-flag {
    width: 46px;
}

.country-select.inside .flag-dropdown:hover {
    cursor: pointer;
}

.country-select.inside .flag-dropdown:hover .selected-flag {
    background-color: rgba(0,0,0,.05);
}

.country-select.inside input[disabled]+.flag-dropdown:hover,.country-select.inside input[readonly]+.flag-dropdown:hover {
    cursor: default;
}

.country-select.inside input[disabled]+.flag-dropdown:hover .selected-flag,.country-select.inside input[readonly]+.flag-dropdown:hover .selected-flag {
    background-color: transparent;
}

.country-select .flag {
    height: 15px;
    -webkit-box-shadow: 0 0 1px 0 #888;
    box-shadow: 0 0 1px 0 #888;
    background-image: url("https://cdn-icbnj.nitrocdn.com/DxLMbDkMAsFVFzgPzCObWFuipKtAgITG/assets/images/optimized/rev-81f18f1/www.unifiedinfotech.net/wp-content/plugins/country-phone-field-contact-form-7/assets/img/flags.png");
    background-repeat: no-repeat;
    background-color: #dbdbdb;
    background-position: 20px 0;
    width: 20px;
}

.country-select .flag.be {
    width: 18px;
}

.country-select .flag.nitro-lazy {
    background-image: none !important;
}

.country-select .flag.ch {
    width: 15px;
}

.country-select .flag.mc {
    width: 19px;
}

.country-select .flag.ne {
    width: 18px;
}

.country-select .flag.np {
    width: 13px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx) {
    .country-select .flag {
        background-image:url("https://cdn-icbnj.nitrocdn.com/DxLMbDkMAsFVFzgPzCObWFuipKtAgITG/assets/images/optimized/rev-81f18f1/www.unifiedinfotech.net/wp-content/plugins/country-phone-field-contact-form-7/assets/img/flags@2x.png");
        background-size: 5630px 15px;
    }

    .country-select .flag.nitro-lazy {
        background-image: none !important;
    }
}

.country-select .flag.ac {
    height: 10px;
    background-position: 0 0;
}

.country-select .flag.ad {
    height: 14px;
    background-position: -22px 0;
}

.country-select .flag.ae {
    height: 10px;
    background-position: -44px 0;
}

.country-select .flag.af {
    height: 14px;
    background-position: -66px 0;
}

.country-select .flag.ag {
    height: 14px;
    background-position: -88px 0;
}

.country-select .flag.ai {
    height: 10px;
    background-position: -110px 0;
}

.country-select .flag.al {
    height: 15px;
    background-position: -132px 0;
}

.country-select .flag.am {
    height: 10px;
    background-position: -154px 0;
}

.country-select .flag.ao {
    height: 14px;
    background-position: -176px 0;
}

.country-select .flag.aq {
    height: 14px;
    background-position: -198px 0;
}

.country-select .flag.ar {
    height: 13px;
    background-position: -220px 0;
}

.country-select .flag.as {
    height: 10px;
    background-position: -242px 0;
}

.country-select .flag.at {
    height: 14px;
    background-position: -264px 0;
}

.country-select .flag.au {
    height: 10px;
    background-position: -286px 0;
}

.country-select .flag.aw {
    height: 14px;
    background-position: -308px 0;
}

.country-select .flag.ax {
    height: 13px;
    background-position: -330px 0;
}

.country-select .flag.az {
    height: 10px;
    background-position: -352px 0;
}

.country-select .flag.ba {
    height: 10px;
    background-position: -374px 0;
}

.country-select .flag.bb {
    height: 14px;
    background-position: -396px 0;
}

.country-select .flag.bd {
    height: 12px;
    background-position: -418px 0;
}

.country-select .flag.be {
    height: 15px;
    background-position: -440px 0;
}

.country-select .flag.bf {
    height: 14px;
    background-position: -460px 0;
}

.country-select .flag.bg {
    height: 12px;
    background-position: -482px 0;
}

.country-select .flag.bh {
    height: 12px;
    background-position: -504px 0;
}

.country-select .flag.bi {
    height: 12px;
    background-position: -526px 0;
}

.country-select .flag.bj {
    height: 14px;
    background-position: -548px 0;
}

.country-select .flag.bl {
    height: 14px;
    background-position: -570px 0;
}

.country-select .flag.bm {
    height: 10px;
    background-position: -592px 0;
}

.country-select .flag.bn {
    height: 10px;
    background-position: -614px 0;
}

.country-select .flag.bo {
    height: 14px;
    background-position: -636px 0;
}

.country-select .flag.bq {
    height: 14px;
    background-position: -658px 0;
}

.country-select .flag.br {
    height: 14px;
    background-position: -680px 0;
}

.country-select .flag.bs {
    height: 10px;
    background-position: -702px 0;
}

.country-select .flag.bt {
    height: 14px;
    background-position: -724px 0;
}

.country-select .flag.bw {
    height: 14px;
    background-position: -768px 0;
}

.country-select .flag.by {
    height: 10px;
    background-position: -790px 0;
}

.country-select .flag.bz {
    height: 14px;
    background-position: -812px 0;
}

.country-select .flag.ca {
    height: 10px;
    background-position: -834px 0;
}

.country-select .flag.cc {
    height: 10px;
    background-position: -856px 0;
}

.country-select .flag.cd {
    height: 15px;
    background-position: -878px 0;
}

.country-select .flag.cf {
    height: 14px;
    background-position: -900px 0;
}

.country-select .flag.cg {
    height: 14px;
    background-position: -922px 0;
}

.country-select .flag.ch {
    height: 15px;
    background-position: -944px 0;
}

.country-select .flag.ci {
    height: 14px;
    background-position: -961px 0;
}

.country-select .flag.ck {
    height: 10px;
    background-position: -983px 0;
}

.country-select .flag.cl {
    height: 14px;
    background-position: -1005px 0;
}

.country-select .flag.cm {
    height: 14px;
    background-position: -1027px 0;
}

.country-select .flag.cn {
    height: 14px;
    background-position: -1049px 0;
}

.country-select .flag.co {
    height: 14px;
    background-position: -1071px 0;
}

.country-select .flag.cp {
    height: 14px;
    background-position: -1093px 0;
}

.country-select .flag.cr {
    height: 12px;
    background-position: -1115px 0;
}

.country-select .flag.cu {
    height: 10px;
    background-position: -1137px 0;
}

.country-select .flag.cv {
    height: 12px;
    background-position: -1159px 0;
}

.country-select .flag.cw {
    height: 14px;
    background-position: -1181px 0;
}

.country-select .flag.cx {
    height: 10px;
    background-position: -1203px 0;
}

.country-select .flag.cy {
    height: 13px;
    background-position: -1225px 0;
}

.country-select .flag.cz {
    height: 14px;
    background-position: -1247px 0;
}

.country-select .flag.de {
    height: 12px;
    background-position: -1269px 0;
}

.country-select .flag.dg {
    height: 10px;
    background-position: -1291px 0;
}

.country-select .flag.dj {
    height: 14px;
    background-position: -1313px 0;
}

.country-select .flag.dk {
    height: 15px;
    background-position: -1335px 0;
}

.country-select .flag.dm {
    height: 10px;
    background-position: -1357px 0;
}

.country-select .flag.do {
    height: 13px;
    background-position: -1379px 0;
}

.country-select .flag.dz {
    height: 14px;
    background-position: -1401px 0;
}

.country-select .flag.ea {
    height: 14px;
    background-position: -1423px 0;
}

.country-select .flag.ec {
    height: 14px;
    background-position: -1445px 0;
}

.country-select .flag.ee {
    height: 13px;
    background-position: -1467px 0;
}

.country-select .flag.eg {
    height: 14px;
    background-position: -1489px 0;
}

.country-select .flag.eh {
    height: 10px;
    background-position: -1511px 0;
}

.country-select .flag.er {
    height: 10px;
    background-position: -1533px 0;
}

.country-select .flag.es {
    height: 14px;
    background-position: -1555px 0;
}

.country-select .flag.et {
    height: 10px;
    background-position: -1577px 0;
}

.country-select .flag.eu {
    height: 14px;
    background-position: -1599px 0;
}

.country-select .flag.fi {
    height: 12px;
    background-position: -1621px 0;
}

.country-select .flag.fj {
    height: 10px;
    background-position: -1643px 0;
}

.country-select .flag.fk {
    height: 10px;
    background-position: -1665px 0;
}

.country-select .flag.fm {
    height: 11px;
    background-position: -1687px 0;
}

.country-select .flag.fo {
    height: 15px;
    background-position: -1709px 0;
}

.country-select .flag.fr {
    height: 14px;
    background-position: -1731px 0;
}

.country-select .flag.ga {
    height: 15px;
    background-position: -1753px 0;
}

.country-select .flag.gb {
    height: 10px;
    background-position: -1775px 0;
}

.country-select .flag.gd {
    height: 12px;
    background-position: -1797px 0;
}

.country-select .flag.ge {
    height: 14px;
    background-position: -1819px 0;
}

.country-select .flag.gf {
    height: 14px;
    background-position: -1841px 0;
}

.country-select .flag.gg {
    height: 14px;
    background-position: -1863px 0;
}

.country-select .flag.gh {
    height: 14px;
    background-position: -1885px 0;
}

.country-select .flag.gi {
    height: 10px;
    background-position: -1907px 0;
}

.country-select .flag.gl {
    height: 14px;
    background-position: -1929px 0;
}

.country-select .flag.gm {
    height: 14px;
    background-position: -1951px 0;
}

.country-select .flag.gn {
    height: 14px;
    background-position: -1973px 0;
}

.country-select .flag.gp {
    height: 14px;
    background-position: -1995px 0;
}

.country-select .flag.gq {
    height: 14px;
    background-position: -2017px 0;
}

.country-select .flag.gr {
    height: 14px;
    background-position: -2039px 0;
}

.country-select .flag.gs {
    height: 10px;
    background-position: -2061px 0;
}

.country-select .flag.gt {
    height: 13px;
    background-position: -2083px 0;
}

.country-select .flag.gu {
    height: 11px;
    background-position: -2105px 0;
}

.country-select .flag.gw {
    height: 10px;
    background-position: -2127px 0;
}

.country-select .flag.gy {
    height: 12px;
    background-position: -2149px 0;
}

.country-select .flag.hk {
    height: 14px;
    background-position: -2171px 0;
}

.country-select .flag.hm {
    height: 10px;
    background-position: -2193px 0;
}

.country-select .flag.hn {
    height: 10px;
    background-position: -2215px 0;
}

.country-select .flag.hr {
    height: 10px;
    background-position: -2237px 0;
}

.country-select .flag.ht {
    height: 12px;
    background-position: -2259px 0;
}

.country-select .flag.hu {
    height: 10px;
    background-position: -2281px 0;
}

.country-select .flag.ic {
    height: 14px;
    background-position: -2303px 0;
}

.country-select .flag.id {
    height: 14px;
    background-position: -2325px 0;
}

.country-select .flag.ie {
    height: 10px;
    background-position: -2347px 0;
}

.country-select .flag.il {
    height: 15px;
    background-position: -2369px 0;
}

.country-select .flag.im {
    height: 10px;
    background-position: -2391px 0;
}

.country-select .flag.in {
    height: 14px;
    background-position: -2413px 0;
}

.country-select .flag.io {
    height: 10px;
    background-position: -2435px 0;
}

.country-select .flag.iq {
    height: 14px;
    background-position: -2457px 0;
}

.country-select .flag.ir {
    height: 12px;
    background-position: -2479px 0;
}

.country-select .flag.is {
    height: 15px;
    background-position: -2501px 0;
}

.country-select .flag.it {
    height: 14px;
    background-position: -2523px 0;
}

.country-select .flag.je {
    height: 12px;
    background-position: -2545px 0;
}

.country-select .flag.jm {
    height: 10px;
    background-position: -2567px 0;
}

.country-select .flag.jo {
    height: 10px;
    background-position: -2589px 0;
}

.country-select .flag.jp {
    height: 14px;
    background-position: -2611px 0;
}

.country-select .flag.ke {
    height: 14px;
    background-position: -2633px 0;
}

.country-select .flag.kg {
    height: 12px;
    background-position: -2655px 0;
}

.country-select .flag.kh {
    height: 13px;
    background-position: -2677px 0;
}

.country-select .flag.ki {
    height: 10px;
    background-position: -2699px 0;
}

.country-select .flag.km {
    height: 12px;
    background-position: -2721px 0;
}

.country-select .flag.kn {
    height: 14px;
    background-position: -2743px 0;
}

.country-select .flag.kp {
    height: 10px;
    background-position: -2765px 0;
}

.country-select .flag.kr {
    height: 14px;
    background-position: -2787px 0;
}

.country-select .flag.kw {
    height: 10px;
    background-position: -2809px 0;
}

.country-select .flag.ky {
    height: 10px;
    background-position: -2831px 0;
}

.country-select .flag.kz {
    height: 10px;
    background-position: -2853px 0;
}

.country-select .flag.la {
    height: 14px;
    background-position: -2875px 0;
}

.country-select .flag.lb {
    height: 14px;
    background-position: -2897px 0;
}

.country-select .flag.lc {
    height: 10px;
    background-position: -2919px 0;
}

.country-select .flag.li {
    height: 12px;
    background-position: -2941px 0;
}

.country-select .flag.lk {
    height: 10px;
    background-position: -2963px 0;
}

.country-select .flag.lr {
    height: 11px;
    background-position: -2985px 0;
}

.country-select .flag.ls {
    height: 14px;
    background-position: -3007px 0;
}

.country-select .flag.lt {
    height: 12px;
    background-position: -3029px 0;
}

.country-select .flag.lu {
    height: 12px;
    background-position: -3051px 0;
}

.country-select .flag.lv {
    height: 10px;
    background-position: -3073px 0;
}

.country-select .flag.ly {
    height: 10px;
    background-position: -3095px 0;
}

.country-select .flag.ma {
    height: 14px;
    background-position: -3117px 0;
}

.country-select .flag.mc {
    height: 15px;
    background-position: -3139px 0;
}

.country-select .flag.md {
    height: 10px;
    background-position: -3160px 0;
}

.country-select .flag.me {
    height: 10px;
    background-position: -3182px 0;
}

.country-select .flag.mf {
    height: 14px;
    background-position: -3204px 0;
}

.country-select .flag.mg {
    height: 14px;
    background-position: -3226px 0;
}

.country-select .flag.mh {
    height: 11px;
    background-position: -3248px 0;
}

.country-select .flag.mk {
    height: 10px;
    background-position: -3270px 0;
}

.country-select .flag.ml {
    height: 14px;
    background-position: -3292px 0;
}

.country-select .flag.mm {
    height: 14px;
    background-position: -3314px 0;
}

.country-select .flag.mn {
    height: 10px;
    background-position: -3336px 0;
}

.country-select .flag.mo {
    height: 14px;
    background-position: -3358px 0;
}

.country-select .flag.mp {
    height: 10px;
    background-position: -3380px 0;
}

.country-select .flag.mq {
    height: 14px;
    background-position: -3402px 0;
}

.country-select .flag.mr {
    height: 14px;
    background-position: -3424px 0;
}

.country-select .flag.ms {
    height: 10px;
    background-position: -3446px 0;
}

.country-select .flag.mt {
    height: 14px;
    background-position: -3468px 0;
}

.country-select .flag.mu {
    height: 14px;
    background-position: -3490px 0;
}

.country-select .flag.mv {
    height: 14px;
    background-position: -3512px 0;
}

.country-select .flag.mw {
    height: 14px;
    background-position: -3534px 0;
}

.country-select .flag.mx {
    height: 12px;
    background-position: -3556px 0;
}

.country-select .flag.my {
    height: 10px;
    background-position: -3578px 0;
}

.country-select .flag.mz {
    height: 14px;
    background-position: -3600px 0;
}

.country-select .flag.na {
    height: 14px;
    background-position: -3622px 0;
}

.country-select .flag.nc {
    height: 10px;
    background-position: -3644px 0;
}

.country-select .flag.ne {
    height: 15px;
    background-position: -3666px 0;
}

.country-select .flag.nf {
    height: 10px;
    background-position: -3686px 0;
}

.country-select .flag.ng {
    height: 10px;
    background-position: -3708px 0;
}

.country-select .flag.ni {
    height: 12px;
    background-position: -3730px 0;
}

.country-select .flag.nl {
    height: 14px;
    background-position: -3752px 0;
}

.country-select .flag.no {
    height: 15px;
    background-position: -3774px 0;
}

.country-select .flag.np {
    height: 15px;
    background-position: -3796px 0;
    background-color: transparent;
}

.country-select .flag.nr {
    height: 10px;
    background-position: -3811px 0;
}

.country-select .flag.nu {
    height: 10px;
    background-position: -3833px 0;
}

.country-select .flag.nz {
    height: 10px;
    background-position: -3855px 0;
}

.country-select .flag.om {
    height: 10px;
    background-position: -3877px 0;
}

.country-select .flag.pa {
    height: 14px;
    background-position: -3899px 0;
}

.country-select .flag.pe {
    height: 14px;
    background-position: -3921px 0;
}

.country-select .flag.pf {
    height: 14px;
    background-position: -3943px 0;
}

.country-select .flag.pg {
    height: 15px;
    background-position: -3965px 0;
}

.country-select .flag.ph {
    height: 10px;
    background-position: -3987px 0;
}

.country-select .flag.pk {
    height: 14px;
    background-position: -4009px 0;
}

.country-select .flag.pl {
    height: 13px;
    background-position: -4031px 0;
}

.country-select .flag.pm {
    height: 14px;
    background-position: -4053px 0;
}

.country-select .flag.pn {
    height: 10px;
    background-position: -4075px 0;
}

.country-select .flag.pr {
    height: 14px;
    background-position: -4097px 0;
}

.country-select .flag.ps {
    height: 10px;
    background-position: -4119px 0;
}

.country-select .flag.pt {
    height: 14px;
    background-position: -4141px 0;
}

.country-select .flag.pw {
    height: 13px;
    background-position: -4163px 0;
}

.country-select .flag.py {
    height: 11px;
    background-position: -4185px 0;
}

.country-select .flag.qa {
    height: 8px;
    background-position: -4207px 0;
}

.country-select .flag.re {
    height: 14px;
    background-position: -4229px 0;
}

.country-select .flag.ro {
    height: 14px;
    background-position: -4251px 0;
}

.country-select .flag.rs {
    height: 14px;
    background-position: -4273px 0;
}

.country-select .flag.ru {
    height: 14px;
    background-position: -4295px 0;
}

.country-select .flag.rw {
    height: 14px;
    background-position: -4317px 0;
}

.country-select .flag.sa {
    height: 14px;
    background-position: -4339px 0;
}

.country-select .flag.sb {
    height: 10px;
    background-position: -4361px 0;
}

.country-select .flag.sc {
    height: 10px;
    background-position: -4383px 0;
}

.country-select .flag.sd {
    height: 10px;
    background-position: -4405px 0;
}

.country-select .flag.se {
    height: 13px;
    background-position: -4427px 0;
}

.country-select .flag.sg {
    height: 14px;
    background-position: -4449px 0;
}

.country-select .flag.sh {
    height: 10px;
    background-position: -4471px 0;
}

.country-select .flag.si {
    height: 10px;
    background-position: -4493px 0;
}

.country-select .flag.sj {
    height: 15px;
    background-position: -4515px 0;
}

.country-select .flag.sk {
    height: 14px;
    background-position: -4537px 0;
}

.country-select .flag.sl {
    height: 14px;
    background-position: -4559px 0;
}

.country-select .flag.sm {
    height: 15px;
    background-position: -4581px 0;
}

.country-select .flag.sn {
    height: 14px;
    background-position: -4603px 0;
}

.country-select .flag.so {
    height: 14px;
    background-position: -4625px 0;
}

.country-select .flag.sr {
    height: 14px;
    background-position: -4647px 0;
}

.country-select .flag.ss {
    height: 10px;
    background-position: -4669px 0;
}

.country-select .flag.st {
    height: 10px;
    background-position: -4691px 0;
}

.country-select .flag.sv {
    height: 12px;
    background-position: -4713px 0;
}

.country-select .flag.sx {
    height: 14px;
    background-position: -4735px 0;
}

.country-select .flag.sy {
    height: 14px;
    background-position: -4757px 0;
}

.country-select .flag.sz {
    height: 14px;
    background-position: -4779px 0;
}

.country-select .flag.ta {
    height: 10px;
    background-position: -4801px 0;
}

.country-select .flag.tc {
    height: 10px;
    background-position: -4823px 0;
}

.country-select .flag.td {
    height: 14px;
    background-position: -4845px 0;
}

.country-select .flag.tf {
    height: 14px;
    background-position: -4867px 0;
}

.country-select .flag.tg {
    height: 13px;
    background-position: -4889px 0;
}

.country-select .flag.th {
    height: 14px;
    background-position: -4911px 0;
}

.country-select .flag.tj {
    height: 10px;
    background-position: -4933px 0;
}

.country-select .flag.tk {
    height: 10px;
    background-position: -4955px 0;
}

.country-select .flag.tl {
    height: 10px;
    background-position: -4977px 0;
}

.country-select .flag.tm {
    height: 14px;
    background-position: -4999px 0;
}

.country-select .flag.tn {
    height: 14px;
    background-position: -5021px 0;
}

.country-select .flag.to {
    height: 10px;
    background-position: -5043px 0;
}

.country-select .flag.tr {
    height: 14px;
    background-position: -5065px 0;
}

.country-select .flag.tt {
    height: 12px;
    background-position: -5087px 0;
}

.country-select .flag.tv {
    height: 10px;
    background-position: -5109px 0;
}

.country-select .flag.tw {
    height: 14px;
    background-position: -5131px 0;
}

.country-select .flag.tz {
    height: 14px;
    background-position: -5153px 0;
}

.country-select .flag.ua {
    height: 14px;
    background-position: -5175px 0;
}

.country-select .flag.ug {
    height: 14px;
    background-position: -5197px 0;
}

.country-select .flag.um {
    height: 11px;
    background-position: -5219px 0;
}

.country-select .flag.us {
    height: 11px;
    background-position: -5241px 0;
}

.country-select .flag.uy {
    height: 14px;
    background-position: -5263px 0;
}

.country-select .flag.uz {
    height: 10px;
    background-position: -5285px 0;
}

.country-select .flag.va {
    width: 15px;
    height: 15px;
    background-position: -5307px 0;
}

.country-select .flag.vc {
    height: 14px;
    background-position: -5324px 0;
}

.country-select .flag.ve {
    height: 14px;
    background-position: -5346px 0;
}

.country-select .flag.vg {
    height: 10px;
    background-position: -5368px 0;
}

.country-select .flag.vi {
    height: 14px;
    background-position: -5390px 0;
}

.country-select .flag.vn {
    height: 14px;
    background-position: -5412px 0;
}

.country-select .flag.vu {
    height: 12px;
    background-position: -5434px 0;
}

.country-select .flag.wf {
    height: 14px;
    background-position: -5456px 0;
}

.country-select .flag.ws {
    height: 10px;
    background-position: -5478px 0;
}

.country-select .flag.xk {
    height: 15px;
    background-position: -5500px 0;
}

.country-select .flag.ye {
    height: 14px;
    background-position: -5522px 0;
}

.country-select .flag.yt {
    height: 14px;
    background-position: -5544px 0;
}

.country-select .flag.za {
    height: 14px;
    background-position: -5566px 0;
}

.country-select .flag.zm {
    height: 14px;
    background-position: -5588px 0;
}

.country-select .flag.zw {
    height: 10px;
    background-position: -5610px 0;
}

[class*=" rmp-icon--"],[class^=rmp-icon--] {
    font-family: ratemypost !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.rmp-icon--star:before {
    content: "";
}

.rmp-icon--heart:before {
    content: "";
}

.rmp-icon--trophy:before {
    content: "";
}

.rmp-icon--smile-o:before {
    content: "";
}

.rmp-icon--thumbs-up:before {
    content: "";
}

.rmp-icon--twitter {
    background: #55acee;
    color: #fff;
}

.rmp-icon--twitter:before {
    content: "";
}

.rmp-icon--facebook {
    background: #3b5998;
    color: #fff;
}

.rmp-icon--facebook:before {
    content: "";
}

.rmp-icon--facebook-f:before {
    content: "";
}

.rmp-icon--pinterest {
    background: #cb2027;
    color: #fff;
}

.rmp-icon--pinterest:before {
    content: "";
}

.rmp-icon--linkedin {
    background: #007bb5;
    color: #fff;
}

.rmp-icon--linkedin:before {
    content: "";
}

.rmp-icon--youtube-square {
    background: #b00;
    color: #fff;
}

.rmp-icon--youtube-square:before {
    content: "";
}

.rmp-icon--instagram {
    background: #125688;
    color: #fff;
}

.rmp-icon--instagram:before {
    content: "";
}

.rmp-icon--flickr {
    background: #f40083;
    color: #fff;
}

.rmp-icon--flickr:before {
    content: "";
}

.rmp-icon--reddit {
    background: #ff5700;
    color: #fff;
}

.rmp-icon--reddit:before {
    content: "";
}

.rmp-icon--ratings {
    color: #ccc;
    font-size: 1rem;
}

.rmp-icon--full-highlight {
    color: #ff912c;
}

.rmp-icon--half-highlight {
    background: linear-gradient(to right,#ff912c 50%,#ccc 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rmp-social-widget .rmp-icon--social {
    padding: 20px;
    font-size: 30px;
    width: 70px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
    transition-property: none;
    box-shadow: none;
    font-family: ratemypost;
    display: inline-block;
}

.rmp-social-widget .rmp-icon--social:hover {
    -webkit-filter: contrast(140%);
    filter: contrast(140%);
    color: #fff;
    color: #fff;
    transition-property: none;
    box-shadow: none;
    text-decoration: none;
}

@-webkit-keyframes rmp-feedback-widget__loader {
    0% {
        top: 4px;
        height: 32px;
    }

    100%,50% {
        top: 12px;
        height: 16px;
    }
}

@keyframes rmp-feedback-widget__loader {
    0% {
        top: 4px;
        height: 32px;
    }

    100%,50% {
        top: 12px;
        height: 16px;
    }
}

.wpp-list {
}

.wpp-list li {
    overflow: hidden;
    float: none;
    clear: both;
    margin-bottom: 1rem;
}

.wpp-list li:last-of-type {
    margin-bottom: 0;
}

.wpp-list li.current {
}

object,iframe,address,code,del,em,q,s,sub,tt,var,b,u,center,dl,dt,dd,ol,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,canvas,details,embed,figure,footer,menu,output,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

article,details,figure,footer,menu,object {
    display: block;
}

object {
    max-width: 100%;
}

[hidden] {
    display: none;
}

a:focus {
    outline: thin dotted;
}

a:active,a:hover {
    outline: 0;
}

.error {
    color: red;
}

.success {
    color: green;
}

select {
    font-family: "Sofia Pro",sans-serif;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("https://cdn-icbnj.nitrocdn.com/DxLMbDkMAsFVFzgPzCObWFuipKtAgITG/assets/images/optimized/rev-81f18f1/www.unifiedinfotech.net/wp-content/themes/unifiedinfotech/assets/images/select-arrow.svg");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-color: rgba(0,0,0,0);
    background-size: 16px auto;
}

select::-ms-expand {
    display: none;
}

textarea.form-control {
    min-height: 31px;
}

.btn {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 575.98px) {
}

.btn:after {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn:hover {
    color: #fff;
    border-color: #696abc;
}

select.nitro-lazy {
    background-image: none !important;
}

.btn:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}

.btn.white-btn:hover {
    color: #fff;
}

.btn.black-btn {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.btn.black-btn:after {
    background-color: #fff;
}

.btn.black-btn:hover {
    color: #000;
}

.blackFloatingForm .wpcf7-spinner {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.blackFloatingForm .btn {
    border-color: #fff !important;
    min-width: 200px;
}

.blackFloatingForm .custom-checkbox {
    position: relative;
}

.blackFloatingForm .custom-checkbox input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
}

.blackFloatingForm .custom-checkbox input[type=checkbox]:checked+.custom-control-label:after {
    opacity: 1;
}

.blackFloatingForm .custom-checkbox .custom-control-label {
    padding-left: 24px;
    font-size: 14px;
    line-height: 24px;
    pointer-events: inherit;
    opacity: 1;
    color: rgba(255,255,255,.8);
    position: relative;
    display: inline-block;
}

.blackFloatingForm .custom-checkbox .custom-control-label a {
    color: #fff;
    text-decoration: underline !important;
}

.blackFloatingForm .custom-checkbox .custom-control-label:before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 5px;
    display: block;
    border: 1px solid #fff;
}

.blackFloatingForm .custom-checkbox .custom-control-label:after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 1px;
    top: 6px;
    display: block;
    background: no-repeat 50%/50% 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 8 8\'%3e%3cpath fill=\'%23fff\' d=\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\'/%3e%3c/svg%3e");
    opacity: 0;
}

.blackFloatingForm .uploadGroup {
    margin-bottom: 8px;
    position: relative;
}

.blackFloatingForm .uploadGroup:has(.wpcf7-not-valid-tip) {
    margin-bottom: 30px;
}

.blackFloatingForm .uploadGroup .uploadFileName {
    display: none;
    padding-top: 5px;
}

.blackFloatingForm .uploadGroup .uploadNameText {
    position: relative;
    z-index: 0;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: calc(100% - 23px);
    overflow: hidden;
}

.blackFloatingForm .uploadGroup .cancelIcon {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    top: 10px;
    margin-left: 5px;
    position: relative;
    cursor: pointer;
}

.blackFloatingForm .uploadGroup .wpcf7-form-control-wrap {
    position: static;
}

.blackFloatingForm .uploadGroup .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0;
    top: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-transform: lowercase;
}

.blackFloatingForm .uploadGroup .wpcf7-form-control-wrap .wpcf7-not-valid-tip::first-letter {
    text-transform: uppercase;
}

.blackFloatingForm .iti {
    display: block;
}

.blackFloatingForm .iti__selected-flag {
    padding-left: 0;
}

.blackFloatingForm .iti__selected-dial-code {
    display: none;
}

.blackFloatingForm .iti__country {
    color: #000;
}

.blackFloatingForm textarea::-webkit-scrollbar {
    width: 5px;
}

.blackFloatingForm textarea::-webkit-scrollbar {
    width: 5px;
}

.blackFloatingForm select {
    border: 0;
    padding: 6px 0 !important;
    width: 100%;
    font-size: 14px;
    color: rgba(255,255,255,.8) !important;
}

.blackFloatingForm select option {
    color: #000;
}

.blackFloatingForm select:focus {
    opacity: 1 !important;
}

.blackFloatingForm .dropdown-field .label {
    opacity: 1;
}

.blackFloatingForm .form-group {
    margin-bottom: 30px;
    position: relative;
}

.blackFloatingForm .form-group textarea {
    min-height: 40px;
    margin-top: 0;
    padding-top: 0;
    padding-top: 8px !important;
    max-height: 52px;
    height: auto !important;
    line-height: 20px;
    overflow: auto;
}

.blackFloatingForm .form-group textarea.has-value~label,.blackFloatingForm .form-group textarea:focus~label {
    top: -15px !important;
}

.blackFloatingForm .form-group .form-control {
    font-family: "Sofia Pro",sans-serif;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    font-size: 14px;
    line-height: 1.9;
    -webkit-transition: all .28s ease;
    transition: all .28s ease;
    border-radius: 0;
    border-width: 0;
    border-color: rgba(0,0,0,0);
    width: 100%;
    color: rgba(0,0,0,0);
    background: none;
    padding: 0;
    height: 40px;
}

.blackFloatingForm .form-group .form-control.has-value,.blackFloatingForm .form-group .form-control:focus {
    color: #fff;
}

.blackFloatingForm .form-group .form-control.has-value~label,.blackFloatingForm .form-group .form-control:focus~label {
    font-size: 13px;
    top: -20px;
}

.blackFloatingForm .form-group label {
    color: rgba(255,255,255,.8);
    position: absolute;
    top: 8px;
    left: 0;
    pointer-events: none;
    padding-left: 0;
    z-index: 1;
    opacity: .8;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    font-weight: 400;
    -webkit-transition: all .28s ease;
    transition: all .28s ease;
    margin: 0;
}

.blackFloatingForm .form-group label.hover {
    font-size: 13px;
    top: -20px;
}

.blackFloatingForm .form-group label .required {
    color: red;
}

.blackFloatingForm {
    font-family: "Sofia Pro",sans-serif;
}

.wpcf7-not-valid-tip {
    color: #d72828 !important;
    font-size: 12px;
    letter-spacing: .2px;
    position: absolute;
    line-height: 14px;
}

.blackFloatingForm .wpcf7-form .custom-checkbox .mc4wp-checkbox input[type=checkbox] {
    opacity: 0;
}

.blackFloatingForm .wpcf7-form .custom-checkbox .mc4wp-checkbox input[type=checkbox]+span {
    display: block;
    font-size: 0;
    position: absolute;
    top: 2px;
}

.blackFloatingForm .wpcf7-form .custom-checkbox .mc4wp-checkbox input[type=checkbox]+span::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 5px;
    display: block;
    border: 1px solid #fff;
}

.blackFloatingForm .wpcf7-form .custom-checkbox .mc4wp-checkbox input[type=checkbox]+span::after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 1px;
    top: 6px;
    display: block;
    background: no-repeat 50%/50% 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 8 8\'%3e%3cpath fill=\'%23fff\' d=\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\'/%3e%3c/svg%3e");
    opacity: 0;
}

.blackFloatingForm .wpcf7-form .custom-checkbox .mc4wp-checkbox input[type=checkbox]:checked+span::after {
    opacity: 1;
}

.blackFloatingForm .wpcf7-form .custom-checkbox .custom-control-label::before,.blackFloatingForm .wpcf7-form .custom-checkbox .custom-control-label::after {
    display: none;
}

a:hover {
    color: #0665ff;
}

ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

ol {
    list-style: decimal inside;
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
}

p:empty {
    display: none !important;
}

a {
    -webkit-transition: .3s;
    transition: .3s;
}

a:hover,a:focus {
    text-decoration: none;
}

.btn {
    -webkit-transition: .3s;
    transition: .3s;
}

.btn.focus,.btn:focus {
    outline: 0;
    -o-box-shadow: none;
    -ms-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.portfoliovideoBanner figure {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 0;
}

.portfoliovideoBanner figure img {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.text-center {
    text-align: center;
}

.page-overlay {
    -webkit-transition: opacity 250ms linear;
    transition: opacity 250ms linear;
}

.page-overlay.show {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
    z-index: 89;
}

@media (min-width: 1280px) {
    .container.lg {
        max-width:1280px;
    }
}

@media (max-width: 1399.98px) {
}

@media (max-width: 1299.98px) {
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
}

.col-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        -ms-flex:0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1200px) {
    .col-lg-3 {
        -ms-flex:0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 1200px) {
}

@media (min-width: 1200px) {
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.p-0 {
    padding: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.py-95 {
    padding-top: 95px;
    padding-bottom: 95px;
}

@media (max-width: 1199.98px) {
    .py-95 {
        padding-top:60px;
        padding-bottom: 60px;
    }
}

.darkTheme {
    background-color: #000;
    color: #fff;
}

.accordianSec .accList {
    padding-top: 35px;
    padding-bottom: 35px;
    border-top: 1px solid #ccc;
}

@media (max-width: 991.98px) {
    .accordianSec .accList {
        padding-top:20px;
        padding-bottom: 20px;
    }
}

.accordianSec .accList:last-child {
    padding-bottom: 0;
}

.accordianSec .accList .accTitle {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    position: relative;
    z-index: 0;
    padding-right: 30px;
}

.accordianSec .accList .accTitle span {
    cursor: pointer;
}

.accordianSec .accList .accTitle span i {
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    top: 1px;
    z-index: 0;
}

.accordianSec .accList .accTitle span:before {
    content: "";
    position: absolute;
    right: 9px;
    width: 2px;
    height: 20px;
    background-color: #000;
    top: 2px;
    opacity: 1;
}

.accordianSec .accList .accTitle span:after {
    content: "";
    position: absolute;
    right: 0;
    width: 20px;
    height: 2px;
    background-color: #000;
    top: 11px;
}

.accordianSec .accList .accTitle span.active:before {
    opacity: 0;
}

@-webkit-keyframes spin {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 24px;
    border-color: #ccc;
    font-size: 18px;
    line-height: 26px;
}

table th {
    font-weight: 700;
}

table thead,table tbody,table tfoot,table tr,table td,table th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

table:last-child {
    margin-bottom: 0;
}

table>:not(caption)>* {
    border-width: 1px 0;
}

table>:not(caption)>*>* {
    border-width: 0 1px;
    padding: 8px 8px;
}

.wpcf7-spinner {
    margin: 0 15px;
    top: 0;
}

.div .wpcf7-spinner {
    background-color: #000;
}

.div .wpcf7-spinner::before {
    background-color: #000;
}

.wpcf7 form.init .wpcf7-response-output,.wpcf7 form.resetting .wpcf7-response-output,.wpcf7 form.submitting .wpcf7-response-output {
    display: none !important;
}

.wpcf7-response-output:last-child {
    margin-bottom: 0 !important;
}

.wpcf7-not-valid-tip {
    color: red;
}

.wpcf7-not-valid-tip:not(:last-child) {
    display: none !important;
}

.wpcf7 form .wpcf7-response-output {
    padding: 8px 10px;
    margin-left: 0;
    margin-right: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: green;
    color: green;
}

.wpcf7 form.failed .wpcf7-response-output,.wpcf7 form.aborted .wpcf7-response-output,.wpcf7 form.invalid .wpcf7-response-output,.wpcf7 form.unaccepted .wpcf7-response-output,.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #d72828;
    color: #d72828;
}

.modal {
    background-color: rgba(0,0,0,.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(6px);
}

.bgImage {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.site-container.md {
    max-width: 1280px;
}

.site-container.mid {
    max-width: 1300px;
}

.site-container.lg {
    max-width: 1400px;
}

.site-container.xl {
    max-width: 1440px;
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.headerMain {
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
}

.headerMain.changeHeader {
    background-color: rgba(0,0,0,0);
}

.headerMain.changeHeader .desktopMenu nav>ul>li>a {
    color: #464646;
}

.headerMain.changeHeader .desktopMenu nav>ul>li>a:hover,.headerMain.headerDark .desktopMenu nav>ul>li>a:hover {
    color: #464646;
}

.headerMain.changeHeader .desktopMenu nav>ul>li.hasMenu>a:after,.headerMain.headerDark .desktopMenu nav>ul>li.hasMenu>a:after {
    background-image: url("https://cdn-icbnj.nitrocdn.com/DxLMbDkMAsFVFzgPzCObWFuipKtAgITG/assets/images/source/rev-81f18f1/www.unifiedinfotech.net/wp-content/themes/unifiedinfotech/assets/images/down-arrow-black.svg");
}

.headerMain.changeHeader .btn.white-btn {
    border-color: #000;
    background-color: #000;
    color: #fff;
}

.headerMain.changeHeader .btn.white-btn:hover,.headerMain.headerDark .btn.white-btn:hover {
    color: #000;
}

.headerMain.changeHeader .btn.white-btn:after {
    background-color: #fff;
}

.headerMain.changeHeader .brand-logo .whiteLogo {
    display: none;
}

.headerMain.changeHeader .brand-logo .colorLogo {
    display: block;
}

.headerMain.changeHeader .menuOpen span {
    background-color: #464646;
}

.headerMain.changeHeader {
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,.15);
    box-shadow: 0 0 15px rgba(0,0,0,.15);
    background-color: #fff;
}

@media (max-width: 1200.98px) {
}

@media (max-width: 1200.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

.headerMain .desktopMenu nav>ul>li.hasMenu:hover .subarrow {
    top: calc(100% + 2px);
    visibility: visible;
    opacity: 1;
    -webkit-transition: .3s;
    transition: .3s;
}

.headerMain .desktopMenu nav>ul>li.hasMenu .subarrow {
    top: calc(100% + 30px);
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: -1px;
    z-index: 2;
    -webkit-transition: .1s;
    transition: .1s;
}

.headerMain .desktopMenu nav>ul>li.hasMenu .subarrow::before {
    position: absolute;
    bottom: calc(100% + 0px);
    left: calc(100% - 10px);
    border: solid rgba(0,0,0,0);
    content: " ";
    width: 0;
    height: 0;
    pointer-events: none;
    margin-left: -11px;
    border-color: rgba(0,0,0,0);
    border-bottom-color: #000;
    border-width: 11px;
}

.headerMain .desktopMenu nav>ul>li.hasMenu .subarrow:after {
    position: absolute;
    bottom: 100%;
    left: calc(100% - 11px);
    border: solid rgba(0,0,0,0);
    content: " ";
    width: 0;
    height: 0;
    pointer-events: none;
    margin-left: -8px;
    border-color: rgba(255,255,255,0);
    border-bottom-color: #fff;
    border-width: 8px;
}

@media (max-width: 1200.98px) {
}

@media (max-width: 1024.98px) {
}

.headerMain .desktopMenu nav>ul>li>a:hover {
    color: #fff;
}

.headerMain .desktopMenu nav>ul>li.active>a {
    color: #000;
}

.headerMain .desktopMenu nav>ul>li.hasMenu>a {
    padding-right: 10px;
}

.headerMain .desktopMenu nav>ul>li.hasMenu>a:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 0;
    left: 7px;
    font-weight: 400;
    background: url("https://cdn-icbnj.nitrocdn.com/DxLMbDkMAsFVFzgPzCObWFuipKtAgITG/assets/images/source/rev-81f18f1/www.unifiedinfotech.net/wp-content/themes/unifiedinfotech/assets/images/down-arrow-white.svg") no-repeat center center;
    background-size: 100% auto;
    width: 12px;
    height: 12px;
}

.headerMain .desktopMenu nav>ul>li>ul {
    -webkit-transition: .1s;
    transition: .1s;
}

.headerMain .desktopMenu nav>ul>li>ul>li>a:before {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.headerMain .desktopMenu nav>ul>li>ul>li:hover>a,.headerMain .desktopMenu nav>ul>li>ul>li.active>a,.headerMain .desktopMenu nav>ul>li>ul>li.current-menu-item>a {
    padding-left: 28px;
    color: #000;
}

.headerMain .desktopMenu nav>ul>li>ul>li:hover>a:before,.headerMain .desktopMenu nav>ul>li>ul>li.active>a:before,.headerMain .desktopMenu nav>ul>li>ul>li.current-menu-item>a:before {
    width: 18px;
    background-color: #000;
}

.headerMain .desktopMenu nav>ul>li:hover>ul {
    margin-top: 1px;
    visibility: visible;
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 1;
    z-index: 1;
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

.headerMain .menuOpen:hover {
    color: red;
}

.headerMain .menuOpen.active span:first-child {
    top: calc(50% - 1px);
    -webkit-transform: rotate(47deg);
    -ms-transform: rotate(47deg);
    transform: rotate(47deg);
}

.headerMain .menuOpen.active span:last-child {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(-47deg);
    -ms-transform: rotate(-47deg);
    transform: rotate(-47deg);
}

.mobileMenu {
    -webkit-transition: .3s;
    transition: .3s;
}

@media (max-width: 991.98px) {
}

.mobileMenu.show {
    right: 0;
}

.mobileMenu .main-nav>ul>li>a:hover a {
    color: #010001;
}

.mobileMenu .main-nav>ul>li.active>a {
    color: red;
}

.mobileMenu .main-nav>ul>li .subToggle {
    background: url("https://cdn-icbnj.nitrocdn.com/DxLMbDkMAsFVFzgPzCObWFuipKtAgITG/assets/images/source/rev-81f18f1/www.unifiedinfotech.net/wp-content/themes/unifiedinfotech/assets/images/down-arrow-2.svg") no-repeat center center;
    background-size: 100% auto;
    width: 20px;
    display: block;
    text-align: center;
    height: 30px;
    position: absolute;
    top: 6px;
    z-index: 1;
    right: 0;
    cursor: pointer;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .3s;
    transition: .3s;
}

.mobileMenu .main-nav>ul>li .subToggle.nitro-lazy {
    background-image: none !important;
}

.mobileMenu .main-nav>ul>li .subToggle.active {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mobileMenu .main-nav>ul>li ul>li a:hover {
    color: rgba(0,0,0,.8);
}

.mobileMenu .main-nav>ul>li ul>li.current-menu-item>a,.mobileMenu .main-nav>ul>li ul>li.active>a {
    color: rgba(0,0,0,.8);
}

.mobileMenu .headerInfo .headerSocial ul li a:hover {
    opacity: 1;
}

@media (max-width: 991.98px) {
}

.mobileMenu .headerInfo .quickLinks ul li a:hover {
    color: #232636;
}

.mobileMenu .headerInfo .madeWith p span {
    padding-left: 5px;
}

@media (max-width: 991.98px) {
    .footerMain {
        padding-bottom:95px;
    }
}

.footerMain .footerTop .leftPan {
    padding: 5% 5%;
    background-color: #000;
    color: #fff;
    width: 41.666667%;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .leftPan {
        width:100%;
        background-color: #fff;
        color: #000;
        padding: 4% 20px 0;
    }
}

.footerMain .footerTop .leftPan .addressInfo {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-self: center;
    display: grid;
    height: 100%;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .leftPan .addressInfo h2 {
        display:none;
    }
}

.footerMain .footerTop .leftPan .addressInfo .btn {
    margin: 40px 0 60px;
    border-color: #fff;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .leftPan .addressInfo .btn {
        display:none;
    }
}

.footerMain .footerTop .leftPan .addressInfo h3 {
    margin: 0 0 22px;
    text-align: left;
    font-size: 18px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 1.2px;
}

.footerMain .footerTop .leftPan .addressInfo .locNewYork {
    position: relative;
    margin-top: 0;
    margin-bottom: 17px;
    padding-left: 33px;
    text-align: left;
    font-size: 23px;
    font-weight: normal;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .leftPan .addressInfo .locNewYork {
        font-size:18px;
        line-height: 24px;
    }
}

.footerMain .footerTop .leftPan .addressInfo .locNewYork a {
    color: #fff;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .leftPan .addressInfo .locNewYork a {
        color:#000;
    }
}

.footerMain .footerTop .leftPan .addressInfo .locNewYork a:hover {
    text-decoration: underline !important;
}

.footerMain .footerTop .leftPan .addressInfo .locNewYork .flag {
    position: absolute;
    top: 12px;
    left: 0;
    width: 20px;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .leftPan .addressInfo .locNewYork .flag {
        top:6px;
    }
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial {
    padding-top: 20px;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .leftPan .addressInfo .footerSocial {
        padding-top:8px;
    }
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul li {
    margin-right: 37px;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .leftPan .addressInfo .footerSocial ul li {
        margin-right:22px;
    }
}

@media (max-width: 359.98px) {
    .footerMain .footerTop .leftPan .addressInfo .footerSocial ul li {
        margin-right:17px;
    }
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul li:last-child {
    margin-right: 0;
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul li a {
    opacity: .75;
    display: block;
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul li a:hover {
    opacity: 1;
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul li a img {
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .leftPan .addressInfo .footerSocial ul li a img {
        -webkit-filter:brightness(.1);
        filter: brightness(.1);
    }
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul li:nth-child(1) a {
    width: 20px;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .leftPan .addressInfo .footerSocial ul li:nth-child(1) a {
        width:16px;
    }
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul li:nth-child(2) a {
    width: 8px;
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul li:nth-child(3) a {
    width: 18px;
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul li:nth-child(4) a {
    width: 17px;
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul li:nth-child(5) a {
    width: 23px;
}

.footerMain .footerTop .leftPan .addressInfo .footerSocial ul li:nth-child(6) a {
    width: 27px;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .leftPan .addressInfo .footerSocial ul li:nth-child(6) a {
        width:22px;
    }
}

.footerMain .footerTop .rightPan {
    width: 58.333333%;
}

@media (max-width: 991.98px) {
    .footerMain .footerTop .rightPan {
        width:100%;
    }
}

.footerMain .footerTop .rightPan .imageBox {
    height: 100%;
}

.footerMain .footerTop .rightPan .imageBox figure {
    height: 100%;
}

.footerMain .footerTop .rightPan .imageBox img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
    max-height: 94vh;
}

.footerMain .footer-bottom {
    padding: 1% 1%;
}

@media (max-width: 991.98px) {
    .footerMain .footer-bottom {
        padding:0 0;
        position: relative;
    }
}

.footerMain .footer-bottom .privacyFooter {
    color: #232636;
    width: 33.333333%;
}

@media (max-width: 991.98px) {
    .footerMain .footer-bottom .privacyFooter {
        display:none;
    }
}

.footerMain .footer-bottom .privacyFooter ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footerMain .footer-bottom .privacyFooter ul li {
    font-size: 12px;
    line-height: 26px;
}

.footerMain .footer-bottom .privacyFooter ul li::after {
    content: "|";
    padding: 0 7px;
    font-size: 11px;
}

.footerMain .footer-bottom .privacyFooter ul li:last-child:after {
    content: normal;
}

.footerMain .footer-bottom .privacyFooter ul li a {
    color: #232636;
    opacity: .7;
}

.footerMain .footer-bottom .privacyFooter ul li a:hover {
    opacity: 1;
}

.footerMain .footer-bottom .copyRight {
    text-align: center;
    width: 33.333333%;
}

@media (max-width: 991.98px) {
    .footerMain .footer-bottom .copyRight {
        display:none;
    }
}

.footerMain .footer-bottom .copyRight p {
    font-size: 12px;
    line-height: 26px;
    color: #232636;
    opacity: .7;
}

.footerMain .footer-bottom .madeWith {
    text-align: right;
    width: 33.333333%;
}

@media (max-width: 991.98px) {
    .footerMain .footer-bottom .madeWith {
        width:100%;
        -moz-text-align-last: left;
        text-align-last: left;
    }
}

.footerMain .footer-bottom .madeWith i {
    margin: 0 6px;
    display: inline-block;
    vertical-align: middle;
}

.footerMain .footer-bottom .madeWith i img {
    width: 12px;
    height: auto;
}

.footerMain .footer-bottom .madeWith span:after {
    content: "|";
    padding: 0 4px;
}

.footerMain .footer-bottom .madeWith p {
    font-size: 12px;
    line-height: 26px;
    color: #000;
    opacity: .7;
}

@media (max-width: 991.98px) {
    .footerMain .footer-bottom .madeWith p {
        font-size:0;
        line-height: 0;
    }
}

@media (max-width: 991.98px) {
    .footerMain .footer-bottom .madeWith p span,.footerMain .footer-bottom .madeWith p i {
        display:none;
    }
}

@media (max-width: 991.98px) {
    .footerMain .footer-bottom .madeWith p a {
        position:absolute;
        right: 15px;
        top: -21px;
        z-index: 0;
    }
}

.footerMain .footer-bottom .madeWith p a img {
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 991.98px) {
}

.testimonialSec {
    background-color: #f9f9f9;
    position: relative;
    z-index: 0;
}

.testimonialSec::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    width: 50%;
    bottom: 0;
    background-color: #000;
}

@media (max-width: 767.98px) {
    .testimonialSec::before {
        content:normal;
    }
}

.testimonialSec .container {
    max-width: 1450px;
    position: relative;
    z-index: 1;
}

.testimonialSec .leftPan {
    padding: 60px 60px 60px;
    width: 50%;
}

@media (max-width: 991.98px) {
    .testimonialSec .leftPan {
        padding:60px 40px;
    }
}

@media (max-width: 767.98px) {
    .testimonialSec .leftPan {
        width:100%;
        padding: 50px 15px;
    }
}

.testimonialSec .leftPan .slider-pagination {
    font-size: 0;
    line-height: 0;
    white-space: nowrap;
    margin-top: 25px;
}

.testimonialSec .rightPan {
    color: #fff;
    padding: 60px 60px 60px;
    width: 50%;
}

@media (max-width: 991.98px) {
    .testimonialSec .rightPan {
        padding:60px 40px;
    }
}

@media (max-width: 767.98px) {
    .testimonialSec .rightPan {
        width:100%;
        background-color: #000;
        padding: 50px 15px;
    }
}

.testimonialSec .rightPan h2 {
    margin-bottom: 24px;
}

.testimonialSec .rightPan .inner {
    max-width: 530px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    position: relative;
    right: -10px;
    padding-top: 0;
}

@media (max-width: 1199.98px) {
    .testimonialSec .rightPan .inner {
        right:0;
    }
}

@media (max-width: 767.98px) {
    .testimonialSec .rightPan .inner {
        padding:0 0;
    }
}

.testimonialSec .rightPan .inner .blackFloatingForm .form-group .form-control {
    height: 32px;
}

.testimonialSec .rightPan .inner .blackFloatingForm .form-group .form-control.has-value,.testimonialSec .rightPan .inner .blackFloatingForm .form-group .form-control:focus {
    color: #fff;
}

.testimonialSec .rightPan .inner .blackFloatingForm .form-group .form-control.has-value~label,.testimonialSec .rightPan .inner .blackFloatingForm .form-group .form-control:focus~label {
    font-size: 13px;
    top: -11px;
}

.testimonialSec .rightPan .inner .blackFloatingForm .form-group label {
    top: 8px;
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 1600.98px) {
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
}

.service-banner-wrapper>.container {
    max-width: 1300px;
}

.service-testimonial-wrapper {
    padding: 95px 0;
    overflow-x: hidden;
}

@media (max-width: 1199.98px) {
    .service-testimonial-wrapper {
        padding:60px 0;
    }
}

.service-testimonial-wrapper .service-testimonial-slide-outer {
    max-width: 850px;
    margin: 0 auto;
    overflow-x: hidden;
}

.service-testimonial-wrapper .service-testimonial-slide-outer .swiper-container {
    position: relative;
    padding-bottom: 70px;
}

@media (max-width: 767.98px) {
    .service-testimonial-wrapper .service-testimonial-slide-outer .swiper-container {
        padding-bottom:60px;
    }
}

@-webkit-keyframes progress {
    0% {
        stroke-dashoffset: 125.664px;
    }

    90% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -125.664px;
    }
}

@keyframes progress {
    0% {
        stroke-dashoffset: 125.664px;
    }

    90% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -125.664px;
    }
}

@-webkit-keyframes lineWrapAnim {
    0% {
        opacity: 0;
        -webkit-transform: scale(1) translate3d(0,0,0);
        transform: scale(1) translate3d(0,0,0);
    }

    50% {
        opacity: .5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    80% {
        opacity: .8;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1) translate3d(0,0,0);
        transform: scale(1) translate3d(0,0,0);
    }
}

@keyframes lineWrapAnim {
    0% {
        opacity: 0;
        -webkit-transform: scale(1) translate3d(0,0,0);
        transform: scale(1) translate3d(0,0,0);
    }

    50% {
        opacity: .5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    80% {
        opacity: .8;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1) translate3d(0,0,0);
        transform: scale(1) translate3d(0,0,0);
    }
}

.customTabMulti .tabPanel,.customTabMulti .tabPanel1 {
    display: none;
}

.pwa-engagement-models-wrapper .sectionHead {
    max-width: 450px;
}

@media (max-width: 1199.98px) {
    .pwa-engagement-models-wrapper .sectionHead {
        max-width:100%;
    }
}

.pwa-engagement-models-wrapper .sectionHead p {
    margin: 35px 0;
}

@media (max-width: 1199.98px) {
    .pwa-engagement-models-wrapper .sectionHead p {
        margin:15px 0 20px;
    }
}

.pwa-engagement-models-wrapper .row {
    margin-bottom: -30px;
}

.pwa-engagement-models-wrapper .row [class*=col-] {
    margin-bottom: 30px;
}

.row.gutter {
    margin-bottom: -30px;
}

@media (max-width: 1199.98px) {
    .row.gutter.mb-60 {
        margin-bottom:-60px;
    }
}

.row.gutter [class*=col-] {
    margin-bottom: 30px;
}

.project-com-structure-wrapper .sectionHead {
    margin-bottom: 45px;
}

.project-com-structure-wrapper .project-com-structure-card {
    height: 100%;
    padding: 25px 20px;
}

.project-com-structure-wrapper .project-com-structure-card h3 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    .project-com-structure-wrapper .project-com-structure-card h3 br {
        display:none;
    }
}

@media (max-width: 767.98px) {
    .project-com-structure-wrapper .project-com-structure-card h3 {
        font-size:24px;
    }
}

.project-com-structure-wrapper .project-com-structure-card li {
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    opacity: .7;
}

.project-com-structure-wrapper .project-com-structure-card li span {
    display: block;
}

.project-com-structure-wrapper .project-com-structure-card li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.collaboration-tools-wrapper .sectionHead {
    padding-right: 40px;
}

.collaboration-tools-wrapper .sectionHead h2 {
    margin-bottom: 25px;
}

.collaboration-tools-wrapper .collaboration-tools-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.collaboration-tools-wrapper .collaboration-tools-list figure {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    margin-bottom: 60px;
}

.collaboration-tools-wrapper .collaboration-tools-list figure img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 23px;
}

@media (max-width: 767.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
    .how-we-work-wrapper .holder .how-we-work-side-menu .sticky nav ul li a:before {
        -webkit-transition:all ease-in-out 300ms;
        transition: all ease-in-out 300ms;
    }
}

@media (max-width: 767.98px) {
}

@media (max-width: 991.98px) {
}

.how-we-work-wrapper .holder .how-we-work-side-menu .progress-container .progress-bar {
    transition: transform .3s ease 0s,opacity .3s ease 0s,-webkit-transform .3s ease 0s;
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
}

@media (max-width: 991.98px) {
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-bottom .list-info-data:last-child {
    margin-bottom: 0;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-bottom .list-info-data .tools-used {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 15px;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-bottom .list-info-data .testing-tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 520px;
    gap: 35px 0;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-bottom .list-info-data .testing-tools img {
    width: 33.33%;
    height: 27px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .data-bottom .list-info-data li a {
    color: #000;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .planning-bg {
    padding: 80px 0 0 60px;
}

@media (max-width: 767.98px) {
    .how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .planning-bg {
        padding:50px 0 0;
    }
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .planning-bg .data-top {
    max-width: 620px;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .testing-bg {
    background-color: #f9f9f9;
    position: relative;
    padding: 80px 0 0 60px;
}

@media (max-width: 767.98px) {
    .how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .testing-bg {
        padding:50px 0 0;
    }
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .testing-bg .testing-pic {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .testing-bg .testing-pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.how-we-work-wrapper .holder .how-we-work-content-outer .content-row .content-holder .testing-bg .data-top {
    max-width: 620px;
    position: relative;
}

.blackFloatingForm .custom-checkbox input[type=checkbox]:checked+.custom-control-label:before {
    background-color: #000;
}

.blackFloatingForm .custom-checkbox .custom-control-label {
    color: rgba(0,0,0,.7);
}

.blackFloatingForm .custom-checkbox .custom-control-label a {
    color: #000;
}

.blackFloatingForm .custom-checkbox .custom-control-label:before {
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    border: 1px solid #000;
}

.progressbar {
    position: fixed;
    z-index: 1;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,.12);
    height: 3px;
}

@media (max-width: 991.98px) {
    .progressbar {
        top:55px;
    }
}

.progressbar span {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #1997aa;
}

@-webkit-keyframes FloatingStampSwing {
    0% {
        -webkit-transform: rotate(4deg);
        transform: rotate(4deg);
    }

    100% {
        -webkit-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
}

@keyframes FloatingStampSwing {
    0% {
        -webkit-transform: rotate(4deg);
        transform: rotate(4deg);
    }

    100% {
        -webkit-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
}

.portfoliovideoBanner {
    position: relative;
    z-index: 0;
}

.portfoliovideoBanner figure {
    padding-top: 47.1362738644%;
}

.portfoliovideoBanner .playBtn {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    background-color: #000;
    width: 70px;
    height: 70px;
}

@media (max-width: 767.98px) {
    .portfoliovideoBanner .playBtn {
        width:50px;
        height: 50px;
    }
}

.portfoliovideoBanner .playBtn a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
    line-height: 0;
    position: relative;
    color: rgba(0,0,0,0);
}

.portfoliovideoBanner .playBtn a:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 0;
    height: 0;
    border-width: 10px 0 10px 15px;
    border-style: solid;
    border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #fff;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: .3s;
    transition: .3s;
    top: 50%;
}

@media (max-width: 767.98px) {
    .portfoliovideoBanner .playBtn a:before {
        border-width:8px 0 8px 12px;
    }
}

.portfoliovideoBanner .playBtn a:after {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

.portfoliovideoBanner .playBtn a:hover:before {
    border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #000;
}

.portfoliovideoBanner .playBtn a:hover:after {
    height: 100%;
}

.videoPopup {
    position: fixed;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: none;
}

.videoPopup .popupInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.videoPopup .vidClose {
    position: absolute;
    top: 10px;
    right: 25px;
    width: 30px;
    cursor: pointer;
    background-color: #000;
}

.videoPopup .vidClose img {
    display: block;
    width: 100%;
    height: auto;
}

.projectHighlightsSlider .swiper-container .swiper-pagination {
    position: static;
    margin-top: 30px;
}

.projectDiscoverySlider .swiper-container .data {
    text-align: center;
    margin-top: 25px;
}

.projectDiscoverySlider .swiper-container .data p {
    font-size: 20px;
    font-weight: 700;
}

.projectDiscoverySlider .swiper-container .swiper-pagination {
    position: static;
    margin-top: 30px;
}

.portfolio18SliderSec .swiper-pagination {
    position: static;
    width: auto;
    padding: 0 20px;
}

@-webkit-keyframes FloatingStampSwing {
    0% {
        -webkit-transform: rotate(4deg);
        transform: rotate(4deg);
    }

    100% {
        -webkit-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
}

@keyframes FloatingStampSwing {
    0% {
        -webkit-transform: rotate(4deg);
        transform: rotate(4deg);
    }

    100% {
        -webkit-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
}

.error {
    background: #000;
    height: 100%;
    overflow: hidden;
}

@-webkit-keyframes rocket-movement {
    100% {
        -webkit-transform: translate(1200px,-600px);
    }
}

@keyframes rocket-movement {
    100% {
        -webkit-transform: translate(1200px,-600px);
        transform: translate(1200px,-600px);
    }
}

@-webkit-keyframes spin-earth {
    100% {
        -webkit-transform: rotate(-360deg);
        -webkit-transition: -webkit-transform 20s;
        transition: -webkit-transform 20s;
        transition: transform 20s;
        transition: transform 20s,-webkit-transform 20s;
    }
}

@keyframes spin-earth {
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
        -webkit-transition: -webkit-transform 20s;
        transition: -webkit-transform 20s;
        transition: transform 20s;
        transition: transform 20s,-webkit-transform 20s;
    }
}

@-webkit-keyframes move-astronaut {
    100% {
        -webkit-transform: translate(-160px,-160px);
    }
}

@keyframes move-astronaut {
    100% {
        -webkit-transform: translate(-160px,-160px);
        transform: translate(-160px,-160px);
    }
}

@-webkit-keyframes rotate-astronaut {
    100% {
        -webkit-transform: rotate(-720deg);
    }
}

@keyframes rotate-astronaut {
    100% {
        -webkit-transform: rotate(-720deg);
        transform: rotate(-720deg);
    }
}

@-webkit-keyframes glow-star {
    40% {
        -webkit-opacity: .3;
    }

    90%,100% {
        -webkit-opacity: 1;
        -webkit-transform: scale(1.2);
    }
}

@keyframes glow-star {
    40% {
        -webkit-opacity: .3;
        opacity: .3;
    }

    90%,100% {
        -webkit-opacity: 1;
        opacity: 1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        border-radius: 999999px;
    }
}

@-webkit-keyframes f {
    0% {
        clip: rect(170px,9999px,180px,0);
    }

    2.85714% {
        clip: rect(120px,9999px,120px,0);
    }

    5.71429% {
        clip: rect(50px,9999px,100px,0);
    }

    8.57143% {
        clip: rect(33px,9999px,60px,0);
    }

    11.42857% {
        clip: rect(55px,9999px,30px,0);
    }

    14.28571% {
        clip: rect(49px,9999px,18px,0);
    }

    17.14286% {
        clip: rect(9px,9999px,10px,0);
    }

    20% {
        clip: rect(70px,9999px,18px,0);
    }

    22.85714% {
        clip: rect(66px,9999px,30px,0);
    }

    25.71429% {
        clip: rect(48px,9999px,5px,0);
    }

    28.57143% {
        clip: rect(67px,9999px,13px,0);
    }

    31.42857% {
        clip: rect(22px,9999px,17px,0);
    }

    34.28571% {
        clip: rect(58px,9999px,52px,0);
    }

    37.14286% {
        clip: rect(31px,9999px,67px,0);
    }

    40% {
        clip: rect(64px,9999px,26px,0);
    }

    42.85714% {
        clip: rect(48px,9999px,100px,0);
    }

    45.71429% {
        clip: rect(8px,9999px,17px,0);
    }

    48.57143% {
        clip: rect(20px,9999px,150px,0);
    }

    51.42857% {
        clip: rect(64px,9999px,120px,0);
    }

    54.28571% {
        clip: rect(56px,9999px,180px,0);
    }

    57.14286% {
        clip: rect(3px,9999px,25px,0);
    }
}

@keyframes f {
    0% {
        clip: rect(170px,9999px,180px,0);
    }

    2.85714% {
        clip: rect(120px,9999px,120px,0);
    }

    5.71429% {
        clip: rect(50px,9999px,100px,0);
    }

    8.57143% {
        clip: rect(33px,9999px,60px,0);
    }

    11.42857% {
        clip: rect(55px,9999px,30px,0);
    }

    14.28571% {
        clip: rect(49px,9999px,18px,0);
    }

    17.14286% {
        clip: rect(9px,9999px,10px,0);
    }

    20% {
        clip: rect(70px,9999px,18px,0);
    }

    22.85714% {
        clip: rect(66px,9999px,30px,0);
    }

    25.71429% {
        clip: rect(48px,9999px,5px,0);
    }

    28.57143% {
        clip: rect(67px,9999px,13px,0);
    }

    31.42857% {
        clip: rect(22px,9999px,17px,0);
    }

    34.28571% {
        clip: rect(58px,9999px,52px,0);
    }

    37.14286% {
        clip: rect(31px,9999px,67px,0);
    }

    40% {
        clip: rect(64px,9999px,26px,0);
    }

    42.85714% {
        clip: rect(48px,9999px,100px,0);
    }

    45.71429% {
        clip: rect(8px,9999px,17px,0);
    }

    48.57143% {
        clip: rect(20px,9999px,150px,0);
    }

    51.42857% {
        clip: rect(64px,9999px,120px,0);
    }

    54.28571% {
        clip: rect(56px,9999px,180px,0);
    }

    57.14286% {
        clip: rect(3px,9999px,25px,0);
    }
}

.f-spinner {
    margin: auto;
    padding: 0;
    width: var(--f-spinner-width);
    height: var(--f-spinner-height);
}

.f-spinner svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
    stroke-width: var(--f-spinner-stroke);
    fill: none;
}

.f-spinner svg *:first-child {
    stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
    stroke: var(--f-spinner-color-2);
    animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes f-spinner-dash {
    0% {
        stroke-dasharray: 1,150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90,150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90,150;
        stroke-dashoffset: -124;
    }
}

@keyframes f-throwOutUp {
    to {
        transform: translate3d(0,calc(var(--f-throw-out-distance,150px) * -1),0);
        opacity: 0;
    }
}

@keyframes f-throwOutDown {
    to {
        transform: translate3d(0,var(--f-throw-out-distance,150px),0);
        opacity: 0;
    }
}

.f-zoomInUp {
    animation: var(--f-transition-duration,.2s) ease .1s both f-zoomInUp;
}

@keyframes f-zoomInUp {
    from {
        transform: scale(.975) translate3d(0,16px,0);
        opacity: 0;
    }

    to {
        transform: scale(1) translate3d(0,0,0);
        opacity: 1;
    }
}

@keyframes f-zoomOutDown {
    to {
        transform: scale(.975) translate3d(0,16px,0);
        opacity: 0;
    }
}

.f-fadeIn {
    animation: var(--f-transition-duration,.2s) var(--f-transition-easing,ease) var(--f-transition-delay,0s) both f-fadeIn;
    z-index: 2;
}

.f-fadeOut {
    animation: var(--f-transition-duration,.2s) var(--f-transition-easing,ease) var(--f-transition-delay,0s) both f-fadeOut;
    z-index: 1;
}

@keyframes f-fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes f-fadeOut {
    100% {
        opacity: 0;
    }
}

.f-fadeFastOut {
    animation: var(--f-transition-duration,.1s) ease-out both f-fadeFastOut;
    z-index: 2;
}

@keyframes f-fadeFastIn {
    0% {
        opacity: .75;
    }

    100% {
        opacity: 1;
    }
}

@keyframes f-fadeFastOut {
    100% {
        opacity: 0;
    }
}

@keyframes f-fadeSlowIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes f-fadeSlowOut {
    100% {
        opacity: 0;
    }
}

@keyframes f-crossfadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes f-crossfadeOut {
    100% {
        opacity: 0;
    }
}

@keyframes f-slideInPrev {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translate3d(0,0,0);
    }
}

@keyframes f-slideInNext {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translate3d(0,0,0);
    }
}

@keyframes f-slideOutNext {
    100% {
        transform: translateX(-100%);
    }
}

@keyframes f-slideOutPrev {
    100% {
        transform: translateX(100%);
    }
}

@keyframes f-classicInNext {
    0% {
        transform: translateX(-75px);
        opacity: 0;
    }

    100% {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

@keyframes f-classicInPrev {
    0% {
        transform: translateX(75px);
        opacity: 0;
    }

    100% {
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}

@keyframes f-classicOutNext {
    100% {
        transform: translateX(-75px);
        opacity: 0;
    }
}

@keyframes f-classicOutPrev {
    100% {
        transform: translateX(75px);
        opacity: 0;
    }
}

:root {
    --f-button-transition: all .15s ease;
}

.f-button {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    position: relative;
    margin: 0;
    padding: 0;
    width: var(--f-button-width);
    height: var(--f-button-height);
    border: var(--f-button-border);
    border-radius: var(--f-button-border-radius);
    color: var(--f-button-color);
    background: var(--f-button-bg);
    box-shadow: var(--f-button-shadow);
    pointer-events: all;
    cursor: pointer;
    transition: var(--f-button-transition);
}

@media (hover: hover) {
    .f-button:hover:not([disabled]) {
        color:var(--f-button-hover-color);
        background-color: var(--f-button-hover-bg);
    }
}

.f-button:active:not([disabled]) {
    background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
    outline: none;
}

.f-button:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 var(--f-button-outline,2px) var(--f-button-outline-color,var(--f-button-color));
}

.f-button svg {
    width: var(--f-button-svg-width);
    height: var(--f-button-svg-height);
    fill: var(--f-button-svg-fill);
    stroke: currentColor;
    stroke-width: var(--f-button-svg-stroke-width);
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity .15s ease;
    transform: var(--f-button-transform);
    filter: var(--f-button-svg-filter);
    pointer-events: none;
}

.f-button[disabled] {
    cursor: default;
}

.f-button[disabled] svg {
    opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next {
    position: absolute;
    z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next {
    top: 50%;
    transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev {
    left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next {
    right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
    left: auto;
    right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
    right: auto;
    left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev {
    top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next {
    bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg {
    transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled,.fancybox__nav .f-button:disabled {
    pointer-events: none;
}

html.with-fancybox {
    width: auto;
    overflow: visible;
    scroll-behavior: auto;
}

html.with-fancybox body {
    touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
    width: auto;
    margin-right: calc(var(--fancybox-body-margin,0px) + var(--fancybox-scrollbar-compensate,0px));
    overflow: hidden !important;
    overscroll-behavior-y: none;
}

.fancybox__container {
    --fancybox-color: #dbdbdb;
    --fancybox-hover-color: #fff;
    --fancybox-bg: rgba(24,24,27,.98);
    --fancybox-slide-gap: 10px;
    --f-spinner-width: 50px;
    --f-spinner-height: 50px;
    --f-spinner-color-1: rgba(255,255,255,.1);
    --f-spinner-color-2: #bbb;
    --f-spinner-stroke: 3.65;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #f8f8f8;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    overflow: visible;
    z-index: var(--fancybox-zIndex,1050);
    outline: none;
    transform-origin: top left;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overscroll-behavior-y: contain;
}

.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after {
    box-sizing: inherit;
}

.fancybox__container::backdrop {
    background-color: rgba(0,0,0,0);
}

.fancybox__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: var(--fancybox-bg);
    opacity: var(--fancybox-opacity,1);
    will-change: opacity;
}

.fancybox__carousel {
    position: relative;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    z-index: 10;
    overflow-y: visible;
    overflow-x: clip;
}

.fancybox__viewport {
    width: 100%;
    height: 100%;
}

.fancybox__viewport.is-draggable {
    cursor: move;
    cursor: grab;
}

.fancybox__viewport.is-dragging {
    cursor: move;
    cursor: grabbing;
}

.fancybox__track {
    display: flex;
    margin: 0 auto;
    height: 100%;
}

.fancybox__slide {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 var(--fancybox-slide-gap) 0 0;
    padding: 4px;
    overflow: auto;
    overscroll-behavior: contain;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 40px;
}

.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video {
    overflow: hidden;
}

.fancybox__slide.has-image {
    overflow: hidden;
}

.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected {
    overflow: visible;
}

.fancybox__slide::before,.fancybox__slide::after {
    content: "";
    flex: 0 0 0;
    margin: auto;
}

.fancybox__backdrop:empty,.fancybox__viewport:empty,.fancybox__track:empty,.fancybox__slide:empty {
    display: block;
}

.fancybox__content {
    align-self: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 2rem;
    max-width: 100%;
    color: var(--fancybox-content-color,#374151);
    background: var(--fancybox-content-bg,#fff);
    cursor: default;
    border-radius: 0;
    z-index: 20;
}

.is-loading .fancybox__content {
    opacity: 0;
}

.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab;
}

.can-zoom_in .fancybox__content {
    cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
    cursor: zoom-out;
}

.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing;
}

.fancybox__content [data-selectable],.fancybox__content [contenteditable] {
    cursor: auto;
}

.fancybox__slide.has-image>.fancybox__content {
    padding: 0;
    background: rgba(0,0,0,0);
    min-height: 1px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: none;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
}

.fancybox__slide.has-image>.fancybox__content>picture>img {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.is-animating .fancybox__content,.is-dragging .fancybox__content {
    will-change: transform,width,height;
}

.fancybox-image {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    user-select: none;
    filter: blur(0px);
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    padding: 14px 0 4px 0;
    overflow-wrap: anywhere;
    line-height: 1.375;
    color: var(--fancybox-color,currentColor);
    opacity: var(--fancybox-opacity,1);
    cursor: auto;
    visibility: visible;
}

.is-loading .fancybox__caption,.is-closing .fancybox__caption {
    opacity: 0;
    visibility: hidden;
}

.is-compact .fancybox__caption {
    padding-bottom: 0;
}

.f-button.is-close-btn {
    --f-button-svg-stroke-width: 2;
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 40;
}

.fancybox__content>.f-button.is-close-btn {
    --f-button-width: 34px;
    --f-button-height: 34px;
    --f-button-border-radius: 4px;
    --f-button-color: var(--fancybox-color,#fff);
    --f-button-hover-color: var(--fancybox-color,#fff);
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-svg-width: 22px;
    --f-button-svg-height: 22px;
    position: absolute;
    top: -38px;
    right: 0;
    opacity: .75;
}

.is-loading .fancybox__content>.f-button.is-close-btn {
    visibility: hidden;
}

.is-zooming-out .fancybox__content>.f-button.is-close-btn {
    visibility: hidden;
}

.fancybox__content>.f-button.is-close-btn:hover {
    opacity: 1;
}

.fancybox__footer {
    padding: 0;
    margin: 0;
    position: relative;
}

.fancybox__footer .fancybox__caption {
    width: 100%;
    padding: 24px;
    opacity: var(--fancybox-opacity,1);
    transition: all .25s ease;
}

.is-compact .fancybox__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(24,24,27,.5);
}

.is-compact .fancybox__footer .fancybox__caption {
    padding: 12px;
}

.is-compact .fancybox__content>.f-button.is-close-btn {
    --f-button-border-radius: 50%;
    --f-button-color: #fff;
    --f-button-hover-color: #fff;
    --f-button-outline-color: #000;
    --f-button-bg: rgba(0,0,0,.6);
    --f-button-active-bg: rgba(0,0,0,.6);
    --f-button-hover-bg: rgba(0,0,0,.6);
    --f-button-svg-width: 18px;
    --f-button-svg-height: 18px;
    --f-button-svg-filter: none;
    top: 5px;
    right: 5px;
}

.fancybox__nav {
    --f-button-width: 50px;
    --f-button-height: 50px;
    --f-button-border: 0;
    --f-button-border-radius: 50%;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: transparent;
    --f-button-hover-bg: rgba(24,24,27,.3);
    --f-button-active-bg: rgba(24,24,27,.5);
    --f-button-shadow: none;
    --f-button-transition: all .15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 26px;
    --f-button-svg-height: 26px;
    --f-button-svg-stroke-width: 2.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24,24,27,.5));
    --f-button-svg-disabled-opacity: .65;
    --f-button-next-pos: 1rem;
    --f-button-prev-pos: 1rem;
    opacity: var(--fancybox-opacity,1);
}

.fancybox__nav .f-button:before {
    position: absolute;
    content: "";
    top: -30px;
    right: -20px;
    left: -20px;
    bottom: -30px;
    z-index: 1;
}

.is-idle .fancybox__nav {
    animation: .15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
    pointer-events: none;
    animation: .15s ease-out both f-fadeOut;
}

.fancybox__slide>.f-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: var(--f-spinner-top,calc(var(--f-spinner-width) * -.5)) 0 0 var(--f-spinner-left,calc(var(--f-spinner-height) * -.5));
    z-index: 30;
    cursor: pointer;
}

.fancybox-protected {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    user-select: none;
}

.fancybox-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    z-index: 40;
    user-select: none;
    pointer-events: none;
}

.fancybox-focus-guard {
    outline: none;
    opacity: 0;
    position: fixed;
    pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
    opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content) {
    animation: var(--f-interface-enter-duration,.25s) ease .1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
    animation: var(--f-backdrop-enter-duration,.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content) {
    animation: var(--f-interface-exit-duration,.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
    animation: var(--f-backdrop-exit-duration,.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible;
}

.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content {
    width: calc(100% - 120px);
    height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content,.fancybox__container.is-compact .has-map .fancybox__content,.fancybox__container.is-compact .has-pdf .fancybox__content {
    width: 100%;
    height: 100%;
}

.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%;
}

.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content {
    padding: 0;
    background: rgba(24,24,27,.9);
    color: #fff;
}

.has-map .fancybox__content {
    background: #e5e3df;
}

.fancybox__html5video,.fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0);
}

.fancybox-placeholder {
    border: 0 !important;
    clip: rect(1px,1px,1px,1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.f-carousel__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-outline: 0;
    --f-thumb-outline-color: #5eb0ef;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
    --f-thumb-border-radius: 2px;
    --f-thumb-offset: 0px;
    --f-button-next-pos: 0;
    --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: .5;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 16px;
    --f-thumb-clip-width: 46px;
}

.f-thumbs {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
    perspective: 1000px;
    transform: translateZ(0);
}

.f-thumbs .f-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background-image: linear-gradient(#ebeff2,#e2e8f0);
    z-index: -1;
}

.f-thumbs .f-spinner svg {
    display: none;
}

.f-thumbs.is-vertical {
    height: 100%;
}

.f-thumbs__viewport {
    width: 100%;
    height: auto;
    overflow: hidden;
    transform: translate3d(0,0,0);
}

.f-thumbs__track {
    display: flex;
}

.f-thumbs__slide {
    position: relative;
    flex: 0 0 auto;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: var(--f-thumb-width);
    height: var(--f-thumb-height);
    overflow: visible;
    cursor: pointer;
}

.f-thumbs__slide.is-loading img {
    opacity: 0;
}

.is-classic .f-thumbs__viewport {
    height: 100%;
}

.is-modern .f-thumbs__track {
    width: max-content;
}

.is-modern .f-thumbs__track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(( var(--f-thumb-clip-width,0) ) * -.5);
    width: calc(var(--width,0) * 1px + var(--f-thumb-clip-width,0));
    cursor: pointer;
}

.is-modern .f-thumbs__slide {
    width: var(--f-thumb-clip-width);
    transform: translate3d(calc(var(--shift,0) * -1px),0,0);
    transition: none;
    pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
    transition: transform .33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
    transition: clip-path .33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
    filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
    appearance: none;
    width: var(--f-thumb-width);
    height: 100%;
    margin: 0 -100% 0 -100%;
    padding: 0;
    border: 0;
    position: relative;
    border-radius: var(--f-thumb-border-radius);
    overflow: hidden;
    background: rgba(0,0,0,0);
    outline: none;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    opacity: var(--f-thumb-opacity);
    transition: opacity .2s ease;
}

.f-thumbs__slide__button:hover {
    opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
    outline: none;
}

.f-thumbs__slide__button:focus-visible {
    outline: none;
    opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
    --clip-path: inset(0 calc(( ( var(--f-thumb-width,0) - var(--f-thumb-clip-width,0) ) ) * ( 1 - var(--progress,0) ) * .5) round var(--f-thumb-border-radius,0));
    clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
    opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    bottom: 0;
    border: var(--f-thumb-outline,0) solid var(--f-thumb-outline-color,transparent);
    border-radius: var(--f-thumb-border-radius);
    animation: f-fadeIn .2s ease-out;
    z-index: 10;
}

.f-thumbs__slide__img {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: var(--f-thumb-offset);
    box-sizing: border-box;
    pointer-events: none;
    object-fit: cover;
    border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
    padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
    margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
    flex-wrap: wrap;
    padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
    margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-border-radius: 2px;
    --f-thumb-outline: 2px;
    --f-thumb-outline-color: #ededed;
    position: relative;
    opacity: var(--fancybox-opacity,1);
    transition: max-height .35s cubic-bezier(.23,1,.32,1);
}

.fancybox__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: .5;
    --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
    background-image: linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.05));
}

.fancybox__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 16px;
    --f-thumb-clip-width: 46px;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
    background-image: linear-gradient(rgba(255,255,255,.1),rgba(255,255,255,.05));
}

.fancybox__thumbs.is-horizontal {
    padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
    padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
    --f-thumb-width: 64px;
    --f-thumb-clip-width: 32px;
    --f-thumb-height: 48px;
    --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
    max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
    transition: none !important;
}

.fancybox__toolbar {
    --f-progress-color: var(--fancybox-color,rgba(255,255,255,.94));
    --f-button-width: 46px;
    --f-button-height: 46px;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: rgba(24,24,27,.65);
    --f-button-hover-bg: rgba(70,70,73,.65);
    --f-button-active-bg: rgba(90,90,93,.65);
    --f-button-border-radius: 0;
    --f-button-svg-width: 24px;
    --f-button-svg-height: 24px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24,24,27,.15));
    --f-button-svg-fill: none;
    --f-button-svg-disabled-opacity: .65;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;
    color: var(--fancybox-color,currentColor);
    opacity: var(--fancybox-opacity,1);
    text-shadow: var(--fancybox-toolbar-text-shadow,1px 1px 1px rgba(0,0,0,.5));
    pointer-events: none;
    z-index: 20;
}

.fancybox__toolbar :focus-visible {
    z-index: 1;
}

.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.is-idle .fancybox__toolbar {
    pointer-events: none;
    animation: .15s ease-out both f-fadeOut;
}

.fancybox__infobar {
    padding: 0 5px;
    line-height: var(--f-button-height);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
    cursor: default;
    user-select: none;
}

.fancybox__infobar span {
    padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
    background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
    position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
    height: 100%;
    opacity: .3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
    display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
    display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
    display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
    display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
    display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
    display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
    display: flex;
}

.f-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    background: var(--f-progress-color,var(--f-carousel-theme-color,#0091ff));
    z-index: 30;
    user-select: none;
    pointer-events: none;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-navicon:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}

/*about us*/
.pageTitleBox .sectionHead h1 {
    font-size: 52px;
    font-weight: bold;
    line-height: 70px;
    color: #000;
}

@media (max-width: 1600.98px) {
    .pageTitleBox .sectionHead h1 {
        font-size:38px;
        line-height: 52px;
    }
}

@media (max-width: 991.98px) {
    .pageTitleBox .sectionHead h1 {
        line-height:1.17;
    }
}

@media (max-width: 767.98px) {
    .pageTitleBox .sectionHead h1 {
        font-size:30px;
        margin-top:22px;
    }
}

.aboutTop .rightPan figure {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 0;
}

.aboutTop .rightPan figure img {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    -o-object-fit: cover;
    object-fit: cover;
}
.aboutTop {
    padding-left: 6%;
    margin-top: -57px !important;
}

@media (max-width: 1199.98px) {
    .aboutTop {
        padding:0 20px;
    }
}

.aboutTop .rightPan figure {
    padding-top: 75.4201680672%;
}

.aboutTop .leftPan {
    background-color: rgba(0,0,0,.9);
    color: #fff;
    position: relative;
    left: 5%;
}

@media (max-width: 1199.98px) {
    .aboutTop .leftPan {
        left:0;
    }
}

.aboutTop .leftPan .row {
    padding: 23px;
}

.aboutTop .leftPan .row .listItem {
    width: 50%;
    padding: 38px 38px 38px;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

@media (max-width: 767.98px) {
    .aboutTop .leftPan .row .listItem {
        padding:83px 10px;
    }
}

.aboutTop .leftPan .row .listItem:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.2);
}

.aboutTop .leftPan .row .listItem:last-child,.aboutTop .leftPan .row .listItem:nth-last-child(2) {
    border-bottom: none;
}

.aboutTop .leftPan .row .listItem .numberText {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .aboutTop .leftPan .row .listItem .numberText {
        font-size:28px;
    }
}

.aboutTop .leftPan .row .listItem .numberDesc {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0;
}

.aboutTop .leftPan .row .listItem .listInner {
    max-width: 135px;
}
.ourStorySec .leftPan .boxInner {
   /* padding-right: 10%;*/
}

.ourStorySec .leftPan .boxInner h2 {
    margin-bottom: 25px;
}

@media (max-width: 1199.98px) {
    .ourStorySec .leftPan .boxInner h2 {
        margin-bottom:15px;
    }
}

.ourStorySec .rightPan .boxInner {
    margin-bottom: -24px;
    margin-top:110px;
}

.ourStorySec .rightPan .boxInner .listItem {
    margin-bottom: 30px;
}

@media (max-width: 1199.98px) {
    .ourStorySec .rightPan .boxInner .listItem {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .ourStorySec .rightPan .boxInner .listItem {
        -ms-flex:0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.ourStorySec .rightPan .boxInner .listItem:nth-child(even) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ourStorySec .rightPan .boxInner .listItem:nth-child(1) img {
    height: 115px;
    width: auto;
}

.ourStorySec .rightPan .boxInner .listItem:nth-child(2) img {
    height: 100px;
    width: auto;
}

.ourStorySec .rightPan .boxInner .listItem:nth-child(3) img {
    height: 100px;
    width: auto;
}

.ourStorySec .rightPan .boxInner .listItem:nth-child(4) img {
    height: 100px;
    width: auto;
}

.ourStorySec .rightPan .boxInner .listItem:nth-child(5) img {
    height: 106px;
    width: auto;
}

.ourStorySec .rightPan .boxInner .listItem:nth-child(6) img {
    height: 74px;
    width: auto;
}
.aboutSec2 {
    overflow: hidden;
}

.aboutSec2 .sectionHead {
    margin-bottom: 40px;
}

@media (max-width: 1199.98px) {
    .aboutSec2 .sectionHead {
        margin-bottom:25px;
    }
}

.aboutSec2 .sectionMain {
    padding: 60px 0;
    position: relative;
    z-index: 0;
}

.aboutSec2 .sectionMain:after {
    content: "";
    position: absolute;
    top: 0;
    right: -60px;
    bottom: 0;
    left: -50vw;
    background-color: #000;
    z-index: -1;
}

.aboutSec2 .sectionMain .listWrap {
    margin-bottom: -50px;
}

.aboutSec2 .sectionMain .listWrap .listItem {
    margin-bottom: 50px;
}

.aboutSec2 .sectionMain .listWrap .listItem .listInner {
    border-left: 2px solid rgba(255,255,255,.19);
    padding-left: 25px;
}
