.icons {
    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;
    color: var(--white);
    gap: 12px;
    margin: 0;
    padding: 0
}

.icons li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px
}

.icons li:first-child {
    margin-left: 0
}

.icons li a {
    display: inline-block;
    opacity: .8
}

.icons li a img,
.icons li a i {
    height: 24px;
    width: 24px;
    display: grid;
    place-items: center;
    -webkit-transition: all .5s;
    transition: all .5s
}

.icons li a:hover {
    opacity: 1
}

.icons li a:hover i,
.icons li a:hover img {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

.icons li a:hover .fa-facebook,
.icons li a:hover .fa-facebook-f {
    background: #3b5998
}

.icons li a:hover .fa-twitter {
    background: #00acee
}

.icons li a:hover .fa-youtube {
    background: red
}

.icons li a:hover .fa-linkedin,
.icons li a:hover .fa-linkedin-in {
    background: #0e76a8
}

.icons li a:hover .fa-pinterest,
.icons li a:hover .fa-pinterest-p {
    background: #e60023
}

.icons li a:hover .fa-instagram {
    background: #f09433;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f09433", endColorstr="#bc1888", GradientType=1)
}

.GetAQuotes .BuyBtnBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    max-width: 910px;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 1px solid rgb(var(--black-rgb)/0.1);
    border-radius: 6px;
    background: rgb(var(--black-rgb)/0.05);
    -webkit-transition: all .5s;
    transition: all .5s
}

.GetAQuotes .BuyBtnBox > div:first-child {
    width: calc(100% - 350px)
}

.GetAQuotes .BuyBtnBox p {
    text-align: left !important
}

.GetAQuotes .BuyBtnBox > div:last-child {
    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;
    gap: 15px
}

@media(min-width: 992px) {
    .GetAQuotes .BuyBtnBox > div:last-child {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

@media(max-width: 991px) {
    .GetAQuotes .BuyBtnBox {
        display: block;
        text-align: center
    }

    .GetAQuotes .BuyBtnBox > div:first-child {
        width: 100%
    }

    .GetAQuotes .BuyBtnBox p {
        text-align: center !important
    }

    .GetAQuotes .BuyBtnBox > div:last-child a {
        margin: 9px 0 0 !important
    }
}

.MyCarousel {
    overflow: hidden;
    overflow-x: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 0 0 12px;
    margin: 0 auto
}

@media(max-width: 992px) {
    .MyCarousel {
        -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory
    }
}

.MyCarousel .card {
    scroll-snap-align: start;
    border: none
}

.MyCarousel.Move {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.MyCarousel.Move a {
    pointer-events: none
}

.MyCarousel:hover ~ .PreNext .btn {
    opacity: 1
}

.MyCarousel ~ .PreNext .btnnp {
    position: absolute;
    height: 60px;
    width: 35px;
    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;
    text-align: center;
    -webkit-box-shadow: 3px 0 10px rgb(var(--black-rgb)/0.2);
    box-shadow: 3px 0 10px rgb(var(--black-rgb)/0.2);
    border-radius: 0;
    border: none;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    opacity: 0;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    -webkit-transition: all .5s;
    transition: all .5s
}

.MyCarousel ~ .PreNext .btnnp:after {
    border: none;
    border-bottom: 1px solid;
    border-left: 1px solid;
    height: 9px;
    width: 9px;
    content: "";
    display: inline-block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.MyCarousel ~ .PreNext .btnnp.next {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    left: auto;
    right: 0
}

.MyCarousel ~ .PreNext .btnnp:hover {
    background: var(--thm);
    opacity: 1
}

.MyCarousel ~ .PreNext .btnnp:hover:after {
    border-color: var(--white)
}

@media(min-width: 768px) {
    .MyCarousel ~ .PreNext {
        display: none
    }
}

@media(max-width: 768px) {
    .MyCarousel ~ .PreNext {
        width: 90px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 auto
    }

    .MyCarousel ~ .PreNext .btnnp {
        position: static;
        opacity: 1;
        height: 30px;
        width: 30px;
        display: grid;
        place-items: center;
        -webkit-box-shadow: 3px 0 10px rgb(var(--black-rgb)/0.2);
        box-shadow: 3px 0 10px rgb(var(--black-rgb)/0.2);
        border-radius: 50%;
        border: none;
        background: var(--thm);
        -webkit-transition: all .5s;
        transition: all .5s
    }

    .MyCarousel ~ .PreNext .btnnp:after {
        border: none;
        border-bottom: 1px solid var(--white);
        border-left: 1px solid var(--white);
        height: 8px;
        width: 8px;
        content: "";
        display: inline-block;
        -webkit-transform: rotate(45deg) translate(2px, -2px);
        transform: rotate(45deg) translate(2px, -2px)
    }

    .MyCarousel ~ .PreNext .btnnp.next {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }
}

.gallery {
    height: 250px
}

@media(max-width: 574px) {
    .gallery {
        height: 180px
    }
}

.gallery.card {
    border-radius: 9px;
    border: none;
    overflow: hidden
}

.gallery.card > div {
    border: none
}

.gallery.card .card-body img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0 !important
}

.gallery:after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" fill="none" stroke="%23fff" stroke-linecap="round"><line x1="9" y1="14" x2="9" y2="4"/><line x1="14" y1="9" x2="4" y2="9"/><circle cx="9" cy="9" r="8.5"/></svg>') center/3em auto no-repeat rgb(var(--black-rgb)/0.5);
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s
}

.gallery:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.gallery.Video {
    height: 350px
}

.gallery.Video:hover:after {
    display: none
}

@media(max-width: 574px) {
    .gallery.Video {
        height: 280px
    }
}

.sitemap .SiteMapMenu {
    margin: 0;
    padding: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem
}

.sitemap .SiteMapMenu > li.menu {
    position: relative;
    padding: .7rem 0 .7rem 1.5rem
}

.sitemap .SiteMapMenu > li.menu > a {
    font-size: 20px;
    font-weight: 600;
    color: var(--black)
}

.sitemap .SiteMapMenu > li.menu ul {
    padding-left: 2rem;
    margin-top: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem
}

.sitemap .SiteMapMenu > li.menu ul > li {
    color: var(--black);
    min-width: 220px;
    margin-left: 1rem;
    padding: 0
}

.sitemap .SiteMapMenu > li.menu ul > li.menu {
    width: 100%;
    font-weight: 600;
    border-bottom: 1px solid rgb(var(--black-rgb)/0.08)
}

.sitemap .SiteMapMenu > li.menu ul > li.menu > a {
    position: relative;
    padding: 2px 0;
    display: inline-block
}

.sitemap .SiteMapMenu > li.menu ul > li.menu > a:after {
    content: "";
    position: absolute;
    width: 80%;
    height: 100%;
    background: rgb(var(--thm1-rgb)/0.2);
    right: -25%;
    top: 0;
    z-index: -1;
    border-radius: 5px
}

.sitemap .SiteMapMenu > li.menu ul > li.menu > a:before {
    display: none
}

.sitemap .SiteMapMenu > li.menu ul > li:not(.menu) {
    min-width: 200px;
    margin: 0;
    font-size: 14px
}

.sitemap .SiteMapMenu > li.menu ul > li:not(.menu) a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.sitemap .SiteMapMenu > li.menu ul > li:not(.menu) a:before {
    content: "";
    border-top: 1px solid;
    border-right: 1px solid;
    height: 7px;
    width: 7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-right: 2px;
    display: inline-block
}

.sitemap .SiteMapMenu > li.menu:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 50px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(var(--thm-rgb)/0.4)), to(rgb(var(--thm-rgb)/0.2)));
    background: linear-gradient(0deg, rgb(var(--thm-rgb)/0.4), rgb(var(--thm-rgb)/0.2));
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 5px 0 5px 0
}

.CallTo {
    padding: 0
}

.CallTo:after {
    background: rgb(var(--black-rgb)/0.05);
    left: 0;
    bottom: 0;
    height: 50%;
    width: 100%
}

.CallToAc {
    padding: 20px;
    background: var(--gr);
    z-index: 1;
    position: relative;
    width: 100%;
    margin: 0 auto;
    color: var(--white)
}

@media(min-width: 575px) {
    .CallToAc {
        padding: 30px
    }
}

.CallToAc span.d-block {
    color: var(--white)
}

.CallToAc p {
    color: var(--white) !important;
    font-size: 15px
}

.FootTop form {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    position: relative
}

.FootTop form .form-control {
    font-size: 1em;
    height: 3.1rem;
    padding: 0 15px;
    -webkit-box-shadow: 0 0 50px rgb(var(--thm-rgb)/0.3);
    box-shadow: 0 0 50px rgb(var(--thm-rgb)/0.3);
    border-color: rgba(0, 0, 0, 0);
    border-radius: 15px
}

@media(min-width: 575px) {
    .FootTop form .form-control {
        padding: 0 155px 0 20px;
        height: 3.5rem
    }
}

@media(min-width: 1400px) {
    .FootTop form .form-control {
        padding: 0 165px 0 20px
    }
}

.FootTop form button {
    background: var(--thm2);
    color: var(--white);
    border-radius: 12px;
    border: none;
    padding: 9px 18px;
    font-size: 1em;
    margin: 9px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media(min-width: 575px) {
    .FootTop form button {
        height: calc(100% - 10px);
        position: absolute;
        right: 5px;
        top: 5px;
        padding: 0 18px;
        margin: 0;
        background: var(--thm);
        color: var(--white);
        display: block
    }
}

.TopBar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

@media(max-width: 767px) {
    .TopBar {
        position: sticky;
        padding: 5px;
        top: 52px;
        z-index: 9;
        background: var(--white);
        margin: 0 -5px
    }

    .TopBar > div {
        width: auto !important
    }
}

@media(max-width: 574px) {
    .TopBar {
        min-height: 42px
    }
}

@media(max-width: 420px) {
    .TopBar {
        top: 50px
    }
}

.FAQs,
.FAQs > section {
    overflow: inherit !important
}

.FAQs .position-sticky {
    top: 65px
}

.FAQs .Rlink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 18px;
    padding: 4px !important
}

.FAQs .Rlink li {
    position: relative;
    font-size: 16px;
    font-weight: 500
}

.FAQs .Rlink li:after {
    height: 1px;
    width: 100%;
    content: "";
    background: rgb(var(--black-rgb)/0.1);
    left: 0;
    top: -9px;
    position: absolute
}

.FAQs .Rlink li:first-child:after {
    display: none
}

.FAQs .Rlink li a {
    position: relative;
    padding: 0;
    display: block;
    color: rgb(var(--black-rgb)/0.5)
}

.FAQs .Rlink li a:hover {
    color: var(--thm)
}

.FAQs .Rlink li.active a {
    color: var(--thm)
}

.FAQs .Rlink li.active a:after {
    width: 3px;
    height: 100%;
    content: "";
    background: var(--thm1);
    left: -12px;
    top: 0;
    position: absolute;
    border-radius: 2px
}

.FAQs .CmsPage > .mb-5:last-child {
    margin-bottom: 0 !important
}

.Contact .ConDetails {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin: 0
}

@media(max-width: 754px) {
    .Contact .ConDetails {
        gap: 12px
    }
}

.Contact .ConDetails.text-center .img {
    margin: 0 auto
}

.Contact .ConDetails li {
    width: calc(50% - 12px);
    border: 1px solid rgb(var(--black-rgb)/0.1);
    padding: 24px;
    border-radius: 5px;
    -webkit-transition: all .5s;
    transition: all .5s
}

@media(max-width: 754px) {
    .Contact .ConDetails li {
        width: 100%
    }
}

.Contact .ConDetails li .img {
    padding: 12px 10px;
    -webkit-box-shadow: 0 5px 9px rgb(var(--black-rgb)/0.2);
    box-shadow: 0 5px 9px rgb(var(--black-rgb)/0.2);
    margin-bottom: 20px !important;
    height: 75px;
    width: 75px;
    background: var(--white)
}

.Contact .ConDetails li .img img {
    height: 100%;
    width: 100%
}

.Contact .ConDetails li span {
    font-size: 15px;
    line-height: 150% !important
}

@media(min-width: 1600px) {
    .Contact .ConDetails li span {
        font-size: 16px
    }
}

.Contact .ConDetails li:hover {
    background: rgb(var(--thm-rgb)/0.1);
    border-color: rgb(var(--thm-rgb)/0.1)
}

.Contact .ContactD p {
    color: var(--white) !important
}

.Contact .ContactD .bgimg {
    position: absolute;
    width: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: .1;
    left: 0;
    top: 0;
    z-index: -1
}

.Goal ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0
}

.Goal ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(var(--thm-rgb)/0.1)), to(transparent));
    background: linear-gradient(0deg, rgb(var(--thm-rgb)/0.1), transparent);
    padding: 15px;
    border-radius: 15px
}

.Goal ul li .img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: rgb(var(--thm1-rgb)/0.2);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.Goal ul li .img img {
    height: 66px;
    width: 66px
}

.Goal ul li .text {
    width: calc(100% - 120px)
}

.Goal ul li .text h3 {
    font-weight: 500;
    font-size: 24px
}

.Goal ul li .text p {
    font-size: 16px
}

@media(max-width: 575px) {
    .Goal ul li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center
    }

    .Goal ul li .img {
        margin: 0 auto
    }

    .Goal ul li .text {
        width: 100%
    }
}

@media(min-width: 1200px) {
    .Team .row {
        margin: 0 -24px
    }

    .Team .row > div {
        padding: 0 24px
    }
}

.Team .card {
    border: none;
    display: grid;
    grid-template-rows: 260px .5fr;
    height: 100%;
    margin: 5px 0;
    border-radius: 0;
    background: rgba(0, 0, 0, 0)
}

.Team .card-header {
    width: 100%;
    padding: 0;
    border: none;
    -webkit-box-shadow: 0 0 9px rgb(var(--black-rgb)/0.1);
    box-shadow: 0 0 9px rgb(var(--black-rgb)/0.1);
    border-radius: 3px 90px;
    overflow: hidden;
    max-width: 300px;
    margin: 0 auto
}

.Team .card-header img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.Team .card-body {
    padding: 15px;
    margin-top: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
    background: var(--white);
    border-radius: 9px;
    width: calc(100% - 20px);
    margin: 0 auto
}

.Team .card-body .icons {
    height: 0;
    overflow: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
    margin: 0;
    gap: 20px
}

@media(max-width: 991px) {
    .Team .card-body .icons {
        height: auto
    }
}

.Team .card-body .icons img {
    height: 16px;
    width: 16px
}

.Team .card-body .otherInfo {
    overflow: hidden;
    height: 0;
    -webkit-transition: all .5s;
    transition: all .5s
}

@media(max-width: 991px) {
    .Team .card-body .otherInfo {
        height: auto
    }
}

.Team .card-body h3 {
    font-size: 18px
}

.Team .card-body h3 + small {
    display: -webkit-box !important;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1
}

@media(max-width: 767px) {
    .Team .card-body {
        padding: 15px
    }

    .Team .card-body h3 {
        font-size: 16px
    }
}

.Team .card-body .exp {
    font-size: 12px;
    font-weight: 500
}

.Team .card:hover .icons {
    height: 20px
}

@media(max-width: 991px) {
    .Team .card:hover .icons {
        height: auto
    }
}

.Team .card:hover .otherInfo {
    height: 28px
}

@media(max-width: 991px) {
    .Team .card:hover .otherInfo {
        height: auto
    }
}

.Team .card:hover .card-body {
    margin-top: -50px;
    -webkit-box-shadow: 0 0 9px rgb(var(--black-rgb)/0.2);
    box-shadow: 0 0 9px rgb(var(--black-rgb)/0.2)
}

@media(max-width: 991px) {
    .Team .card:hover .card-body {
        margin-top: 0
    }
}

.Gallery .nav-pills {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 12px rgb(var(--black-rgb)/0.3);
    box-shadow: 0 0 12px rgb(var(--black-rgb)/0.3);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 9px;
    gap: 20px
}

.Gallery .nav-pills img {
    height: 28px;
    width: 28px
}

.Gallery .nav-pills button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 9px;
    border-radius: 0;
    padding: 12px 20px;
    opacity: .5;
    font-weight: 500;
    color: var(--black);
    position: relative;
    border-radius: 9px
}

.Gallery .nav-pills button:after {
    position: absolute;
    bottom: -8px;
    border-left: 8px solid rgba(0, 0, 0, 0);
    border-right: 8px solid rgba(0, 0, 0, 0);
    border-top: 8px solid var(--thm);
    height: 0;
    width: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    content: "";
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: all .1s;
    transition: all .1s
}

.Gallery .nav-pills button.active {
    background: var(--thm);
    opacity: 1
}

.Gallery .nav-pills button.active img {
    -webkit-filter: brightness(8) grayscale(1);
    filter: brightness(8) grayscale(1)
}

.Gallery .nav-pills button.active:after {
    opacity: 1;
    visibility: visible
}

.Gallery .card {
    display: grid;
    overflow: hidden;
    border: none;
    background: rgba(0, 0, 0, 0);
    height: 200px
}

.Gallery .card.Video {
    height: 280px
}

.Gallery .card-body {
    padding: 0;
    -webkit-box-shadow: 0 0 5px rgb(var(--black-rgb)/0.2);
    box-shadow: 0 0 5px rgb(var(--black-rgb)/0.2);
    border-radius: 5px
}

.Gallery .card-body .youtube-player {
    border-radius: 5px;
    background: rgba(0, 0, 0, 0)
}

.Gallery .card-body .playVideo {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    color: var(--white)
}

.Gallery.InVideo {
    width: 100%
}

.Gallery.InVideo p {
    font-size: 15px
}

.CareerBox {
    border-color: rgb(var(--black-rgb)/0.1) !important;
    border-radius: 12px !important
}

.CareerBox > * {
    border: none;
    background: none;
    padding: 25px
}

.CareerBox > *:first-child {
    padding-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.CareerBox > *:last-child {
    padding-top: 15px
}

.CareerBox > * .Jobpost {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -webkit-column-gap: 18px;
    -moz-column-gap: 18px;
    column-gap: 18px;
    padding: 0;
    margin: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.CareerBox > * .Jobpost li {
    font-size: 15px;
    font-weight: 600;
    color: rgb(var(--black-rgb)/0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    white-space: nowrap
}

.CareerBox > * .Jobpost li img {
    width: 18px;
    height: 18px;
    -o-object-fit: contain;
    object-fit: contain
}

.CareerBox > * .Jobpost li:after {
    content: "";
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: rgb(var(--thm-rgb)/0.2);
    display: inline-block;
    margin: 0 0 0 15px
}

.CareerBox > * .Jobpost li:last-child:after {
    display: none
}

@media(max-width: 992px) {
    .CareerBox > * .Jobpost .Jobpost {
        -webkit-column-gap: 9px;
        -moz-column-gap: 9px;
        column-gap: 9px
    }

    .CareerBox > * .Jobpost .Jobpost li:after {
        margin: 0 0 0 9px;
        font-size: 14px
    }
}

.CareerBox:hover {
    -webkit-box-shadow: 2px 2px 0 2px var(--thm);
    box-shadow: 2px 2px 0 2px var(--thm);
    border-color: var(--thm) !important
}

.JobBox {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    text-align: left
}

.JobBox .Jobpost {
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -webkit-column-gap: 18px;
    -moz-column-gap: 18px;
    column-gap: 18px;
    padding: 0;
    margin: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.JobBox .Jobpost li {
    font-size: 16px;
    font-weight: 600;
    color: rgb(var(--black-rgb)/0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    white-space: nowrap
}

.JobBox .Jobpost li img {
    width: 18px;
    height: 18px;
    -o-object-fit: contain;
    object-fit: contain
}

.JobBox .Jobpost li:after {
    content: "";
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: rgb(var(--thm-rgb)/0.2);
    display: inline-block;
    margin: 0 0 0 15px
}

.JobBox .Jobpost li:last-child:after {
    display: none
}

.playVideo {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: none;
    border: none;
    -webkit-transition: all .5s;
    transition: all .5s
}

.playVideo:hover {
    background-color: rgb(var(--black-rgb)/0.3)
}

footer {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(95%, rgb(var(--black-rgb)/0.08)), to(rgb(var(--black-rgb)/0.18)));
    background: linear-gradient(0deg, rgb(var(--black-rgb)/0.08) 95%, rgb(var(--black-rgb)/0.18))
}

footer .footer {
    position: relative;
    color: var(--black);
    overflow: hidden;
    padding-top: 80px
}

footer .footer img {
    max-width: 380px;
    height: auto;
    width: 100%
}

footer .footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 40px 0 0;
    gap: 30px;
    row-gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

footer .footer ul li a {
    font-weight: 500;
    color: var(--black);
    font-size: 15px;
    opacity: .7
}

footer .footer ul li a:hover {
    opacity: 1
}

footer:after {
    height: 100%;
    background: var(--black);
    z-index: 0;
    content: "";
    opacity: .15
}

footer .fTop {
    font-size: 15px;
    border-radius: 20px;
    padding: 20px 30px;
    background: var(--gr);
    width: 85%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    -webkit-transform: translateY(50%);
    transform: translateY(50%)
}

footer .fTop .d-flex img {
    height: 48px;
    width: 48px;
    border-radius: 8px;
    padding: 9px;
    background: var(--black)
}

footer .fTop .d-flex > span {
    width: calc(100% - 64px)
}

footer .fTop .d-flex > span > * {
    display: block;
    color: var(--black);
    font-weight: 500
}

footer .fTop .d-flex > span > *:first-child {
    color: rgb(var(--black-rgb)/0.6);
    font-weight: 700
}

footer .fTop .d-flex > span > *:last-child {
    color: rgb(var(--black-rgb)/0.6);
    font-weight: 400
}

footer > div {
    z-index: 1;
    position: relative
}

footer ul.links {
    margin: 0;
    padding: 0
}

footer ul.links li {
    margin-bottom: 9px;
    font-size: 15px
}

footer ul.links li a {
    line-height: normal;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    font-weight: 500;
    color: rgb(var(--black-rgb)/0.7);
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 9px
}

footer ul.links li a:hover {
    margin-left: 9px
}

footer ul.links li a:before {
    border: 1px solid;
    border-right: none;
    border-top: none;
    content: "";
    height: 7px;
    width: 7px;
    -webkit-transform: rotate(-135deg) translateX(1px);
    transform: rotate(-135deg) translateX(1px);
    -webkit-transition: all .5s;
    transition: all .5s;
    display: inline-block
}

footer .icons {
    padding: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 15px
}

footer .icons li a {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    opacity: .5
}

footer .icons li a:hover {
    opacity: 1
}

footer p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    color: rgb(var(--black-rgb)/0.7) !important;
    font-weight: 500;
    font-size: 15px
}

footer p strong {
    font-weight: 600 !important
}

footer .ConInfo li {
    gap: 15px;
    font-size: 15px
}

footer .ConInfo li .icon {
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgb(var(--thm-rgb)/0.1);
    display: grid;
    place-items: center
}

footer .ConInfo li .icon img {
    height: 18px;
    max-width: 18px;
    margin: 0
}

footer .ConInfo span,
footer .ConInfo a {
    color: rgb(var(--black-rgb)/0.7)
}

footer .ConInfo a:hover {
    color: var(--black)
}

footer .form-floating label {
    color: rgb(var(--black-rgb)/0.2) !important
}

footer .form-floating .form-control {
    color: var(--black) !important;
    background: rgb(var(--white-rgb)/0.4)
}

footer .form-floating .form-control:focus {
    background: rgb(var(--white-rgb)/0.7)
}

footer .form-floating .form-control:focus::-webkit-input-placeholder {
    color: rgb(var(--black-rgb)/0.3) !important
}

footer .form-floating .form-control:focus::-moz-placeholder {
    color: rgb(var(--black-rgb)/0.3) !important
}

footer .form-floating .form-control:focus:-ms-input-placeholder {
    color: rgb(var(--black-rgb)/0.3) !important
}

footer .form-floating .form-control:focus::-ms-input-placeholder {
    color: rgb(var(--black-rgb)/0.3) !important
}

footer .form-floating .form-control:focus::placeholder {
    color: rgb(var(--black-rgb)/0.3) !important
}

footer .form-floating .form-control:not(:-moz-placeholder-shown) ~ label {
    color: rgb(var(--black-rgb)/0.9) !important
}

footer .form-floating .form-control:not(:-ms-input-placeholder) ~ label {
    color: rgb(var(--black-rgb)/0.9) !important
}

footer .form-floating .form-control:focus ~ label,
footer .form-floating .form-control:not(:placeholder-shown) ~ label {
    color: rgb(var(--black-rgb)/0.9) !important
}

@media(max-width: 991px) {
    footer h3 {
        margin-top: 30px !important
    }

    footer ul.links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px
    }

    footer ul.links li {
        width: calc(50% - 10px)
    }

    footer .text-end {
        text-align: center !important
    }

    footer .text-start ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    footer .Heading {
        margin-top: 40px
    }
}

footer .fbottom {
    padding: 20px 0;
    margin-top: 50px;
    width: 100%;
    border-top: 1px solid rgb(var(--black-rgb)/0.1);
    background: rgb(var(--thm-rgb)/0.1)
}

footer .fbottom p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 500;
    font-size: 14px
}

footer .fbottom p strong,
footer .fbottom p strong a {
    font-weight: 600 !important;
    color: #fff;
}

@media(max-width: 991px) {
    footer .fbottom p {
        font-size: 14px
    }
}

footer .fbottom .text-end p {
    text-align: right
}

@media(max-width: 767px) {
    footer .fbottom {
        padding: 30px 0
    }

    footer .fbottom,
    footer .fbottom .text-end p,
    footer .fbottom .text-start p {
        text-align: center !important;
        font-size: 14px
    }
}

.SearchInput {
    height: 43px !important;
    padding-left: 40px !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 61 60" stroke="%23000" stroke-width="3px" stroke-linecap="round" fill="none"><circle cx="25" cy="25" r="23"/><line x1="42" y1="41" x2="59" y2="58"/></svg>') var(--white) no-repeat 12px/18px;
    border-radius: 9px !important
}

.SearchInput::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 12px;
    width: 12px;
    display: inline-block;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45" fill="none" stroke="red" stroke-linecap="round" stroke-width="5px"><line x1="2.5" y1="42.5" x2="42.5" y2="2.5"/><line x1="42.5" y1="42.5" x2="2.5" y2="2.5"/></svg>') center/11px no-repeat
}

.BackTop {
    position: fixed;
    bottom: 20px;
    right: 15px;
    display: none;
    color: var(--white);
    height: 40px;
    width: 40px;
    background: var(--thm);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 15px rgb(var(--white-rgb)/0.3) !important;
    box-shadow: 0 0 15px rgb(var(--white-rgb)/0.3) !important;
    z-index: 9;
    -webkit-transition: all .9s;
    transition: all .9s
}

.BackTop span {
    display: grid;
    place-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
    margin: 3px auto 0
}

.BackTop span i {
    width: 16px;
    height: 16px;
    border-left: 2px solid var(--white);
    border-top: 2px solid var(--white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0 auto
}

.BackTop span span {
    font-size: 8px;
    margin-top: -3px;
    line-height: 8px
}

.BackTop:hover {
    color: var(--white)
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        will-change: transform;
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.08);
        will-change: transform;
        transform: scale(1.08)
    }

    100% {
        -webkit-transform: scale(1);
        will-change: transform;
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        will-change: transform;
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.08);
        will-change: transform;
        transform: scale(1.08)
    }

    100% {
        -webkit-transform: scale(1);
        will-change: transform;
        transform: scale(1)
    }
}

.whatsappIcon {
    bottom: 70px;
    right: 12px;
    position: fixed !important;
    z-index: 999 !important;
    width: 50px;
    height: 50px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    -webkit-box-shadow: rgb(var(--black-rgb)/0.4) 2px 2px 6px;
    box-shadow: rgb(var(--black-rgb)/0.4) 2px 2px 6px;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    position: relative;
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 0px;
    background: #4dc247 !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.whatsappIcon svg {
    width: 65%;
    height: 65%;
    fill: none;
    stroke: var(--white);
    stroke-linejoin: round
}

@media only screen and (max-width: 767px) {
    .whatsappblock {
        bottom: 55px;
        left: 12px
    }
}

.owl-stage {
    margin: 0 auto
}

.card {
    -webkit-transition: all .5s;
    transition: all .5s
}

.star {
    color: var(--black);
    font-size: 18px;
    line-height: normal;
    display: inline;
    margin: 0 auto;
    position: relative
}

.star:before {
    content: "★★★★★";
    opacity: .9;
    color: rgb(var(--black-rgb)/0.5)
}

body.bg-dark .star:before {
    color: var(--white)
}

.star[data-title="0"]:after {
    width: 0%
}

.star[data-title="1"]:after {
    width: 20%
}

.star[data-title="2"]:after {
    width: 40%
}

.star[data-title="3"]:after {
    width: 60%
}

.star[data-title="4"]:after {
    width: 80%
}

.star[data-title="5"]:after {
    width: 100%
}

.star:after {
    color: #e6af19;
    content: "★★★★★";
    position: absolute;
    z-index: 0;
    height: 100%;
    left: 0;
    overflow: hidden
}

.nav-tabs {
    padding: 0;
    border: none;
    margin: 0 auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    width: 100%;
    gap: 20px
}

.nav-tabs .nav-link {
    position: relative;
    border: none;
    border-radius: 9px;
    font-size: 16px;
    color: var(--black);
    background: none;
    padding: 8px 18px;
    font-weight: 500;
    min-width: 70px
}

.nav-tabs .nav-link > * {
    z-index: 1;
    position: relative
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--thm1) 0%, var(--thm) 100%);
    color: var(--white);
    font-weight: 400
}

@media(max-width: 767px) {
    .nav-tabs .nav-link > span {
        padding: 0
    }
}

@media(max-width: 767px)and (max-width: 450px) {
    .nav-tabs .nav-link img {
        height: 18px;
        width: 18px
    }
}

.tab-content .tab-pane {
    padding: 25px
}

.youtube-player {
    position: relative;
    height: 100%;
    overflow: hidden;
    max-width: 100%;
    background: #000
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0)
}

.youtube-player img {
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    left: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-transition: .4s all;
    transition: .4s all
}

.youtube-player img:hover {
    -webkit-filter: brightness(75%);
    filter: brightness(75%)
}

.youtube-player .play {
    height: 72px;
    width: 72px;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translatey(-50%);
    transform: translateX(-50%) translatey(-50%);
    position: absolute;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 368.8 260.88"><path fill="%23f51c0d" d="M0,187.84V78.08S1.28.08,77.93.08,222.14,0,294.93,0,368.8,77.53,368.8,77.53l-.15,109.83s-2.07,73.44-74.56,73.44-142.83.1-216.06.1C1.09,260.88,0,187.84,0,187.84Zm133.85-10.22c0,6.4,2.25,7.84,8,5.12l96.3-45.92c4.82-1.76,5.09-6.51,0-9.62L142,78.5c-5.83-3-8.1-1.51-8.1,5.14C133.84,99.36,133.84,162,133.85,177.62Z"/><path fill="%23fff" d="M133.84,177.62c0,6.4,2.24,7.84,8,5.12l96.3-45.92c4.82-1.76,5.08-6.51,0-9.62L142,78.5c-5.83-3-8.1-1.51-8.1,5.14C133.83,99.36,133.83,162,133.84,177.62Z"/></svg>') center/4em auto no-repeat;
    cursor: pointer;
    z-index: 2;
    -webkit-filter: drop-shadow(2px 3px 0 rgb(var(--black-rgb)/0.2));
    filter: drop-shadow(2px 3px 0 rgb(var(--black-rgb)/0.2))
}

.playVideo {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0
}

.CmsPage h1.Heading {
    margin-top: 0 !important
}

.CmsPage h2,
.CmsPage .h2 {
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 500
}

.CmsPage h3,
.CmsPage .h3 {
    font-size: 1.5rem;
    color: var(--thm);
    margin-top: 24px !important;
    font-weight: 500
}

.CmsPage h4,
.CmsPage .h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 24px !important
}

.CmsPage h5,
.CmsPage .h5 {
    font-size: 1.1rem;
    color: var(--thm);
    font-weight: 600;
    margin-top: 20px !important
}

.CmsPage h6,
.CmsPage .h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px !important
}

.CmsPage .Leftpanel ul:not(.browser-default) > li {
    list-style-type: none
}

.CmsPage ul:not(.browser-default) > li {
    list-style-type: disc
}

.CmsPage h2.m-0,
.CmsPage h3.m-0,
.CmsPage h4.m-0,
.CmsPage h5.m-0,
.CmsPage h6.m-0 {
    margin: 0 !important
}

.CmsPage h2.mt-0,
.CmsPage h3.mt-0,
.CmsPage h4.mt-0,
.CmsPage h5.mt-0,
.CmsPage h6.mt-0 {
    margin-top: 0 !important
}

.CmsPage h2.mb-0,
.CmsPage h3.mb-0,
.CmsPage h4.mb-0,
.CmsPage h5.mb-0,
.CmsPage h6.mb-0 {
    margin-bottom: 0 !important
}

.CmsPage ol li::marker,
.CmsPage ul li::marker {
    font-weight: 600
}

.CmsPage ol ul {
    margin: 9px 0 15px
}

.CmsPage ol li {
    margin-bottom: 9px
}

.CmsPage ul {
    padding-left: 5px;
    margin-bottom: 0
}

.CmsPage ul li {
    margin-bottom: 9px;
    gap: 15px;
    list-style-type: none !important;
    position: relative;
    padding-left: 30px
}

.CmsPage ul li:before {
    content: "";
    top: 7px;
    position: absolute;
    left: 0;
    background: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" fill="none" stroke="black" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="9" r="8"/><polyline points="5 9 7 12 13 7"/></svg>') right/100% auto no-repeat;
    min-width: 16px;
    height: 16px
}

input.SearchBox {
    padding-left: 50px !important;
    height: 48px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 364.86 366.21" fill="none" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="12px"><line x1="251.12" y1="251.94" x2="358.86" y2="360.21"/><circle cx="148.95" cy="148.95" r="142.95"/></svg>') no-repeat 20px center/20px auto var(--white);
    margin-bottom: 9px;
    border-radius: 30px;
    border: none;
    -webkit-box-shadow: 0 9px 20px -8px rgb(var(--black-rgb)/0.3) !important;
    box-shadow: 0 9px 20px -8px rgb(var(--black-rgb)/0.3) !important;
    max-width: 600px;
    width: 100%;
    margin: 0;
    -webkit-transition: all .5s;
    transition: all .5s
}

input.SearchBox:focus {
    -webkit-box-shadow: 0 9px 20px -8px rgb(var(--black-rgb)/0.6) !important;
    box-shadow: 0 9px 20px -8px rgb(var(--black-rgb)/0.6) !important
}

#PostQuery .form-control {
    border-radius: 1.2rem;
    padding: .6rem .75rem;
    font-size: 15px;
    border-color: rgb(var(--black-rgb)/0.2) !important;
    height: calc(2.5rem + 2px)
}

#PostQuery textarea.form-control {
    height: 99px;
    resize: none
}

.accordion-item {
    overflow: hidden;
    border-radius: 15px !important;
    border: none;
    margin-bottom: 15px;
    border: 1px solid rgb(var(--black-rgb)/0.1) !important
}

.accordion-item .accordion-header {
    overflow: hidden;
    background: none
}

.accordion-item .accordion-header .accordion-button {
    border: none !important;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 20px;
    border-radius: 15px !important;
    background: linear-gradient(45deg, rgb(var(--thm1-rgb)/0.2), rgb(var(--thm-rgb)/0.2));
    font-family: var(--font1)
}

.accordion-item .accordion-header .accordion-button img {
    height: 30px;
    width: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 15px
}

.accordion-item .accordion-header .accordion-button:hover {
    background: rgb(var(--thm-rgb)/0.3)
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background: var(--white);
    border-radius: 15px 15px 0 0 !important;
    color: var(--black);
    -webkit-box-shadow: none;
    box-shadow: none
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) img {
    -webkit-filter: inherit !important;
    filter: inherit !important
}

.accordion-item .accordion-header .accordion-button:not(.collapsed):after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" fill="none" stroke="black" stroke-linecap="round" stroke-width=".6"><line x1="13" y1="9" x2="5" y2="9"/><circle cx="9" cy="9" r="8"/></svg>') 0 3px/28px no-repeat
}

.accordion-item .accordion-header .accordion-button:after {
    width: 28px;
    height: 28px;
    background-size: 28px;
    background-position: center !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" fill="none" stroke="black" stroke-linecap="round" stroke-width=".6"><line x1="9" y1="13" x2="9" y2="5"/><line x1="13" y1="9" x2="5" y2="9"/><circle cx="9" cy="9" r="8"/></svg>') 0 3px/28px no-repeat
}

@media(max-width: 767px) {
    .accordion-item .accordion-header .accordion-button {
        padding-left: 20px;
        font-weight: 400;
        font-size: 16px;
        padding: 12px 20px;
        height: auto;
        min-height: 40px
    }

    .accordion-item .accordion-header .accordion-button:after {
        height: 22px;
        width: 22px;
        background-size: 22px !important
    }

    .accordion-item .accordion-header .accordion-button img {
        height: 24px;
        width: 24px;
        margin-right: 9px
    }
}

.accordion-item .accordion-header.thm {
    background: rgb(var(--thm-rgb)/0.5)
}

.accordion-item:last-child {
    margin-bottom: 0
}

.accordion-item .accordion-collapse .accordion-body {
    border-radius: 0 0 15px 15px !important
}

.accordion-item .accordion-collapse .accordion-body p {
    font-size: 15px
}

.accordion-body {
    background: var(--white)
}

.form-check.form-switch .form-check-input:checked {
    background-color: var(--thm);
    border-color: var(--thm)
}

.fa-eye:before,
.fa-eye-slash:before {
    content: "" !important;
    font-size: 17px;
    display: inline-block;
    height: 17px;
    width: 17px
}

.fa-eye:before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 11.5" stroke-linecap="round" stroke-linejoin="round"><path fill="none" stroke="%23000" d="M9,11C3,11,.5,6,.5,6S3.3.5,9,.5s8.5,5,8.5,5S15,11,9,11Z"/><path d="M9,2.3a3,3,0,0,0-1.4,.3A1,1,0,0,1,8,4h0a1,1,0,0,1-1.8-0A3.4,3.4,0,1,0,9,2.3Z"/></svg>') 0 center/17px no-repeat
}

.fa-eye-slash:before {
    background: url('data:image/svg+xml, viewBox="0 0 18 13.5" fill="none" stroke="%23000" stroke-linecap="round" stroke-linejoin="round"><path d="M5,2.4A9,9,0,0,1,9,1.4c6,0,8.5,5,8.5,5a11,11,0,0,1-4,4"/><path d="M11,11.7A9,9,0,0,1,9,12C3,12,.5,7,.5,7A11,11,0,0,1,3,4"/><path d="M7,4.6a3,3,0,0,1,5,2,3,3,0,0,1-1,2"/><path d="M9,9.5A3,3,0,0,1,6,7h0"/><line x1="3" y1=".5" x2="15" y2="13"/></svg>') 0 center/17px no-repeat
}

#scroll-top {
    position: fixed;
    right: 15px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background: rgb(var(--white-rgb)/0.1);
    color: var(--thm);
    -webkit-box-shadow: 0 5px 5px rgb(var(--black-rgb)/0.4);
    box-shadow: 0 5px 5px rgb(var(--black-rgb)/0.4);
    font-size: 24px;
    z-index: 99;
    line-height: 33px;
    text-align: center;
    display: none;
    border-radius: 100%;
    cursor: pointer
}

.modal .modal-header .btn-close {
    position: absolute;
    right: -8px;
    top: -8px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #eee;
    opacity: 1;
    z-index: 2
}

@media(max-width: 768px) {
    .modal .modal-header .btn-close {
        right: 9px;
        top: 9px;
        background-color: rgba(0, 0, 0, 0)
    }
}

.SendInquiry .modal-header {
    border: none;
    padding: 0
}

.SendInquiry .modal-body form {
    border: none
}

.SendInquiry .modal-body form .form-floating .form-control {
    font-size: 14px;
    background-color: rgb(var(--thm-rgb)/0.05) !important
}

.SendInquiry .modal-body form .form-floating > label {
    color: rgb(var(--black-rgb)/0.7);
    background: none
}

@media(max-width: 1590px) {
    .SendInquiry .modal-body form .form-floating > label:after {
        top: -1px !important
    }
}

.SendInquiry .modal-body form .form-floating > label.active:after {
    position: absolute;
    content: "";
    left: 0 !important;
    top: -6px !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: auto !important;
    z-index: -1;
    width: 100%;
    height: 6px !important;
    background: var(--white);
    opacity: 1;
    -webkit-transition: all .5s;
    transition: all .5s;
    border-radius: 0 !important
}

.SendInquiry .modal-body form .form-check .form-check-input[type=checkbox] {
    margin-top: 0 !important
}

.CountryCode a,
.CountryCode button {
    border: 1px solid rgb(var(--black-rgb)/0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: normal !important;
    padding: 9px;
    height: 100%;
    background-color: rgb(var(--thm-rgb)/0.05) !important
}

.CountryCode a:hover,
.CountryCode a.show,
.CountryCode a:focus,
.CountryCode button:hover,
.CountryCode button.show,
.CountryCode button:focus {
    -webkit-box-shadow: 0 0 0 .25rem rgb(var(--thm-rgb)/0.25);
    box-shadow: 0 0 0 .25rem rgb(var(--thm-rgb)/0.25);
    border-color: var(--thm) !important
}

.CountryCode a span,
.CountryCode button span {
    max-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-size: 14px;
    text-transform: uppercase
}

.CountryCode a span:after,
.CountryCode button span:after {
    display: none
}

.CountryCode > a,
.CountryCode > button {
    height: auto
}

.CountryCode a {
    border-right-color: rgba(0, 0, 0, 0) !important
}

.CountryCode .form-control,
.CountryCode .CustomerInfo .form-control {
    margin-left: -1px !important
}

.CountryCode .countrylist {
    padding: 0;
    max-height: 200px;
    min-width: 250px;
    overflow: auto;
    background: var(--white);
    -webkit-box-shadow: 0 0 25px rgb(var(--black-rgb)/0.2);
    box-shadow: 0 0 25px rgb(var(--black-rgb)/0.2);
    border-color: rgb(var(--black-rgb)/0.05);
    border-radius: 0;
    margin-top: 0 !important;
    border: none
}

.CountryCode .countrylist li {
    padding: 5px 12px;
    cursor: pointer;
    font-size: 14px;
    padding-right: 70px;
    white-space: nowrap
}

.CountryCode .countrylist li:first-child {
    padding: 5px 12px !important;
    background: var(--thm) !important;
    position: sticky;
    top: 0;
    z-index: 2
}

.CountryCode .countrylist li:first-child .form-control {
    height: calc(2rem + 2px);
    border-radius: 0 !important;
    font-size: 14px;
    padding: 0 9px;
    background: var(--white)
}

.CountryCode .countrylist li i {
    margin-right: 5px
}

.CountryCode .countrylist li span {
    font-size: 12px;
    color: rgb(var(--black-rgb)/0.5);
    position: absolute;
    right: 12px;
    font-weight: 600
}

.CountryCode .countrylist li:hover {
    background: rgb(var(--black-rgb)/0.08)
}

.form-select {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='.8' d='m2 5 6 6 6-6'/></svg>");
    background-size: 20px 20px;
    background-position: right 1rem center
}

select option:disabled {
    display: none
}

.form-check:not(.form-switch) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0
}

.form-check:not(.form-switch) .form-check-input {
    margin: 4px 8px 0 0 !important;
    position: relative
}

.form-check:not(.form-switch) .form-check-input:checked[type=checkbox] {
    background-image: none;
    background-color: initial;
    border-color: var(--thm)
}

.form-check:not(.form-switch) .form-check-input:checked[type=checkbox]:after {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.form-check:not(.form-switch) .form-check-input:focus {
    -webkit-box-shadow: 0 0 0 .25rem rgb(var(--thm-rgb)/0.2);
    box-shadow: 0 0 0 .25rem rgb(var(--thm-rgb)/0.2)
}

.form-check:not(.form-switch) .form-check-input[type=checkbox] {
    min-width: 1em
}

.form-check:not(.form-switch) .form-check-input[type=checkbox]:after {
    content: "";
    position: absolute;
    left: 0;
    top: -3px;
    height: 18px;
    width: 18px;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='%23062f75' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 9l4 4l11-12'/></svg>");
    -webkit-transition: all .2s;
    transition: all .2s
}

.form-check:not(.form-switch) .form-check-input[type=radio] {
    min-width: 1rem;
    min-height: 1rem;
    background-color: rgb(var(--white-rgb)/0.4)
}

.form-check:not(.form-switch) .form-check-input:checked[type=radio] {
    min-width: 1rem;
    min-height: 1rem;
    background-color: rgb(var(--white-rgb)/0.9);
    border-color: var(--thm1);
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-1.45 -1.45 3 3'><circle r='1' fill='%23000'/></svg>")
}

.form-check:not(.form-switch) > label {
    line-height: 150%;
    width: calc(100% - 1rem);
    font-size: 14px
}

.input-group > .form-control:focus,
.input-group > .form-floating:focus-within,
.input-group > .form-select:focus {
    z-index: 3
}

.form-floating {
    color: rgb(var(--black-rgb)/0.5)
}

.form-floating > .form-control::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0) !important
}

.form-floating > .form-control::-moz-placeholder {
    color: rgba(0, 0, 0, 0) !important
}

.form-floating > .form-control:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0) !important
}

.form-floating > .form-control::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0) !important
}

.form-floating > .form-control::placeholder {
    color: rgba(0, 0, 0, 0) !important
}

.form-floating > .form-control:not(:-moz-placeholder-shown) {
    padding-top: .8rem;
    padding-bottom: .8rem
}

.form-floating > .form-control:not(:-ms-input-placeholder) {
    padding-top: .8rem;
    padding-bottom: .8rem
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: .8rem;
    padding-bottom: .8rem
}

.form-floating > .form-control[type=file]:not(:-moz-placeholder-shown) {
    padding-top: 0;
    line-height: 44px;
    padding: 0 .75rem !important
}

.form-floating > .form-control[type=file]:not(:-ms-input-placeholder) {
    padding-top: 0;
    line-height: 44px;
    padding: 0 .75rem !important
}

.form-floating > .form-control[type=file]:not(:placeholder-shown) {
    padding-top: 0;
    line-height: 44px;
    padding: 0 .75rem !important
}

.form-floating > .form-control[type=file]:not(:-moz-placeholder-shown)::file-selector-button {
    color: var(--white);
    background: var(--black)
}

.form-floating > .form-control[type=file]:not(:-ms-input-placeholder)::file-selector-button {
    color: var(--white);
    background: var(--black)
}

.form-floating > .form-control[type=file]:not(:placeholder-shown)::-webkit-file-upload-button {
    color: var(--white);
    background: var(--black)
}

.form-floating > .form-control[type=file]:not(:placeholder-shown)::file-selector-button {
    color: var(--white);
    background: var(--black)
}

.form-floating > .form-control[type=file]:not(:-moz-placeholder-shown) ~ label {
    transform: none;
    background: var(--thm);
    height: 100%;
    left: auto;
    right: 0;
    color: var(--white);
    opacity: 1;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    padding: 0 12px !important
}

.form-floating > .form-control[type=file]:not(:-ms-input-placeholder) ~ label {
    transform: none;
    background: var(--thm);
    height: 100%;
    left: auto;
    right: 0;
    color: var(--white);
    opacity: 1;
    border-radius: 0 5px 5px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 12px !important
}

.form-floating > .form-control[type=file]:not(:placeholder-shown) ~ label {
    -webkit-transform: none;
    transform: none;
    background: var(--thm);
    height: 100%;
    left: auto;
    right: 0;
    color: var(--white);
    opacity: 1;
    border-radius: 0 5px 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 12px !important
}

.form-floating > .form-control ~ label:after {
    position: absolute;
    content: "";
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 1px !important;
    border-radius: 0 !important;
    margin: auto;
    z-index: -1;
    width: 100%;
    height: 6px !important;
    opacity: 1;
    -webkit-transition: all .5s;
    transition: all .5s;
    display: none
}

@media(min-width: 1590px) {
    .form-floating > .form-control ~ label:after {
        bottom: 4px !important
    }
}

.form-floating > .form-control:focus::-webkit-input-placeholder {
    color: rgb(var(--black-rgb)/0.4) !important
}

.form-floating > .form-control:focus::-moz-placeholder {
    color: rgb(var(--black-rgb)/0.4) !important
}

.form-floating > .form-control:focus:-ms-input-placeholder {
    color: rgb(var(--black-rgb)/0.4) !important
}

.form-floating > .form-control:focus::-ms-input-placeholder {
    color: rgb(var(--black-rgb)/0.4) !important
}

.form-floating > .form-control:focus::placeholder {
    color: rgb(var(--black-rgb)/0.4) !important
}

.form-floating > .form-control,
.form-floating > .form-select,
.form-floating .form-control.selectize-control > .selectize-input {
    padding: 1rem 1rem .2rem !important;
    height: 2.8rem;
    min-height: 2.8rem;
    border-color: rgb(var(--black-rgb)/0.1);
    color: var(--black)
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    transform: scale(0.7) translateY(0) translateX(1.2rem);
    padding: 0 .2rem;
    margin: 0;
    height: auto;
    opacity: 1;
    color: rgb(var(--black-rgb)/0.8);
    z-index: 3
}

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
    transform: scale(0.7) translateY(0) translateX(1.2rem);
    padding: 0 .2rem;
    margin: 0;
    height: auto;
    opacity: 1;
    color: rgb(var(--black-rgb)/0.8);
    z-index: 3
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label,
.form-floating > .form-select ~ label,
.form-floating > label.active {
    -webkit-transform: scale(0.7) translateY(0) translateX(1.2rem);
    transform: scale(0.7) translateY(0) translateX(1.2rem);
    padding: 0 .2rem;
    margin: 0;
    height: auto;
    opacity: 1;
    color: rgb(var(--black-rgb)/0.8);
    z-index: 3
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label:after {
    opacity: 1
}

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label:after {
    opacity: 1
}

.form-floating > .form-control:focus ~ label:after,
.form-floating > .form-control:not(:placeholder-shown) ~ label:after,
.form-floating > .form-select ~ label:after {
    opacity: 1
}

.form-floating > label {
    padding: .6rem 1rem;
    -webkit-transition: all .3s;
    transition: all .3s;
    color: rgb(var(--black-rgb)/0.7);
    font-size: 16px
}

.form-floating > textarea.form-control {
    min-height: 120px !important
}

.flatpickr,
[type=date]::-webkit-calendar-picker-indicator {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33 33" fill="none" stroke="%23000" stroke-linecap="round" stroke-width="1.5px"><rect x="1" y="3" width="31" height="29" rx="4"/><line x1="24" y1="1" x2="24" y2="5"/><line x1="8" y1="1" x2="8" y2="5"/><line x1="1" y1="9" x2="32" y2="9"/></svg>') right 1rem center/18px auto no-repeat
}

[type=date]::-webkit-calendar-picker-indicator {
    width: 40px;
    height: 20px
}

input[type=date]::-webkit-datetime-edit,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-clear-button {
    position: relative;
    color: rgba(0, 0, 0, 0)
}

input[type=date]::-webkit-datetime-edit-text {
    text-transform: uppercase
}

input[type=date]::-webkit-datetime-edit-year-field {
    position: absolute !important;
    left: 57px;
    text-transform: uppercase;
    padding-left: 5px;
    color: rgb(var(--black-rgb)/0.8)
}

input[type=date]::-webkit-datetime-edit-month-field {
    position: absolute !important;
    left: 24px;
    text-transform: uppercase;
    padding-left: 5px;
    text-align: center;
    color: rgb(var(--black-rgb)/0.8)
}

input[type=date]::-webkit-datetime-edit-day-field {
    position: absolute !important;
    left: 0;
    text-transform: uppercase;
    color: rgb(var(--black-rgb)/0.8)
}

.flatpickr-day.selected {
    border-color: var(--thm) !important;
    background: var(--thm) !important
}

.select2-container--default .select2-selection--single {
    border: 1px solid rgb(var(--black-rgb)/0.1) !important;
    height: auto !important
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    width: 30px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: .5rem .75rem .5rem
}

.chosen-container .chosen-single {
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    height: 34px !important;
    padding: 5px !important;
    color: var(--black) !important;
    background: none !important
}

.chosen-container .chosen-single span {
    font-size: 14px !important;
    margin-right: 15px !important;
    line-height: normal !important
}

.chosen-container .chosen-single div b {
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/></svg>") no-repeat right .3rem center !important;
    background-size: 16px 12px !important
}

.chosen-container .chosen-drop {
    border-radius: 0 !important;
    border: 1px solid #ddd !important;
    border-top: none !important;
    margin: 0 !important
}

.chosen-container .chosen-search input[type=text] {
    border: 1px solid #ddd !important;
    padding: 7px 25px 7px 9px !important;
    background: no-repeat right .2rem center url('data:image/svg+xml,<svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.9 19.7" fill="none" stroke="%23555"><path stroke-linecap="square" d="M18.5 18.3l-5.4-5.4"/><circle cx="8" cy="8" r="7"/></svg>') !important;
    background-size: 18px !important
}

.chosen-container .chosen-results {
    padding: 0 !important;
    margin: 0 !important
}

.chosen-container .chosen-results li {
    padding: 2px 8px !important;
    font-size: 13px
}

.chosen-container .chosen-results li.highlighted {
    background: var(--thm1) !important;
    color: var(--white) !important
}

.chosen-container .chosen-results .active-result:first-child {
    display: none !important
}

.chosen-container-multi .chosen-choices {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    padding: 1px 5px;
    background-image: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    min-height: 34px !important;
    border: 1px solid #ddd !important
}

.chosen-container-multi .chosen-choices li {
    border: none !important;
    background: none !important;
    padding: 0 !important
}

.chosen-container-multi .chosen-choices li span {
    line-height: 120% !important;
    background: var(--thm1) !important;
    border: none !important;
    border-radius: 15px !important;
    color: var(--white) !important;
    padding: 4px 9px;
    font-size: 13px;
    padding-right: 25px
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    background: rgba(0, 0, 0, 0) url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>") center no-repeat !important;
    background-size: 8px !important;
    opacity: .5 !important;
    top: 6px !important;
    right: 6px !important
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
    opacity: 1 !important
}

.chosen-container-multi .chosen-drop .result-selected {
    background: rgb(var(--thm1-rgb)/0.1) !important
}

.chosen-container-multi .chosen-drop .group-result {
    background: var(--thm) !important;
    color: var(--white) !important
}

.ck.ck-editor__main > .ck-editor__editable:not(.ck-focused) {
    border-color: #ddd !important
}

.form-floating .chosen-container .chosen-single {
    border-radius: 4px !important;
    height: 46px !important
}

.form-floating .chosen-container .chosen-single span {
    margin-right: 20px !important;
    margin: 6px 20px 0 9px !important;
    line-height: 35px !important;
    font-size: 16px !important
}

.ConInfo ul,
footer .ConInfo {
    margin: 0;
    padding: 0
}

.Contact {
    background: rgb(245 196 69 / 20%)
}

.Contact .ContactD {
    border-radius: 0;
    width: 100% !important;
    background: rgb(var(--blackrgb)/0.8);
    overflow: hidden;
    position: relative;
    z-index: 3
}

.Contact .ContactD form {
    padding: 60px 0;
    position: relative;
    z-index: 1
}

@media(max-width: 991px) {
    .Contact .ContactD form {
        padding: 50px 0
    }
}

.Contact .ConInfo {
    height: 100%;
    padding: 60px;
    padding-right: 0 !important;
    position: relative;
    z-index: 1
}

.Contact .ConInfo:after {
    height: 100%;
    width: 45vw;
    left: 0;
    top: 0;
    position: absolute;
    content: "";
    background: var(--gr1);
    border-radius: 30px 0 0 30px;
    z-index: -1
}

@media(max-width: 767px) {
    .Contact .ConInfo:after {
        width: 98vw
    }
}

@media(max-width: 991px) {
    .Contact .ConInfo {
        padding: 50px 30px
    }
}

.Contact .ConInfo ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 500px;
    width: 100%
}

@media(max-width: 574px) {
    .Contact .ConInfo ul {
        gap: 20px
    }
}

.Contact .ConInfo ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%
}

.Contact .ConInfo ul li span.icon {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    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;
    border: 1px solid rgb(var(--black-rgb)/0.1);
    position: relative;
    background: rgba(0, 0, 0, 0);
    -webkit-transition: all .5s;
    transition: all .5s;
    margin-top: -6px
}

.Contact .ConInfo ul li span.icon svg {
    height: 22px;
    width: 22px;
    fill: none;
    stroke: var(--thm);
    z-index: 1;
    -webkit-transition: all .5s;
    transition: all .5s;
    stroke-width: 1.3px
}

.Contact .ConInfo ul li span.icon:after {
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    -webkit-transform: scale(0.92);
    transform: scale(0.92);
    border-radius: 50%;
    background: var(--white);
    -webkit-transition: all .5s;
    transition: all .5s
}

.Contact .ConInfo ul li span:last-child {
    width: calc(100% - 75px);
    line-height: 150%;
    color: var(--black)
}

.Contact .ConInfo ul li span:last-child * {
    color: var(--black)
}

.Contact .ConInfo ul li span:last-child .h6 {
    font-size: 18px
}

.Contact .ConInfo ul li:hover span.icon {
    background: var(--white);
    border: rgba(0, 0, 0, 0)
}

.Contact .ConInfo ul li:hover span.icon svg {
    stroke: var(--white)
}

.Contact .ConInfo ul li:hover span.icon:after {
    background: var(--thm);
    border: rgba(0, 0, 0, 0)
}

.form-control:not(textarea),
.form-select {
    height: calc(2.6rem + 2px)
}

.form-select:focus,
.form-control:focus,
.form .selectize-control .selectize-input:focus,
.form .selectize-control .selectize-input.focus {
    -webkit-box-shadow: 0 0 0 .25rem rgb(var(--thm1-rgb)/0.25) !important;
    box-shadow: 0 0 0 .25rem rgb(var(--thm1-rgb)/0.25) !important;
    border-color: var(--thm1) !important
}

.modal .form-control:not(textarea),
.modal .form-select {
    height: calc(2.2rem + 2px)
}

textarea.form-control {
    min-height: 9rem !important;
    resize: none
}

.SearchBox {
    padding-right: 45px;
    height: 48px;
    font-size: 18px;
    margin: 0;
    width: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 61 60" stroke="%230088CB" stroke-width="4px" stroke-linecap="round" fill="none"><circle cx="25" cy="25" r="23"/><line x1="42" y1="41" x2="59" y2="58"/></svg>') no-repeat center right 15px/20px;
    margin-bottom: 9px
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus {
    -webkit-transition: background-color 600000s 0s, color 600000s 0s;
    transition: background-color 600000s 0s, color 600000s 0s
}

input[data-autocompleted],
textarea[data-autocompleted] {
    background-color: rgba(0, 0, 0, 0) !important
}

[class*=sws-] {
    position: relative;
    display: inline-block
}

[class*=sws-]:before,
[class*=sws-]:after {
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms
}

[class*=sws-]:before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0);
    border: 6px solid rgba(0, 0, 0, 0);
    z-index: 1000001
}

[class*=sws-]:after {
    background: var(--thm);
    color: var(--white);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 300;
    font-family: var(--font1);
    line-height: 12px;
    white-space: nowrap;
    -webkit-box-shadow: 4px 4px 8px rgb(var(--black-rgb)/0.3);
    box-shadow: 4px 4px 8px rgb(var(--black-rgb)/0.3);
    border-radius: 3px
}

[class*=sws-]:hover:before,
[class*=sws-]:hover:after {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms
}

[class*=sws-][title]:after {
    content: attr(title)
}

[class*=sws-][data-title]:after {
    content: attr(data-title)
}

[class*=sws-][title=""]:before,
[class*=sws-][title=""]:after,
[class*=sws-][data-title=""]:before,
[class*=sws-][data-title=""]:after,
[class*=sws-][title=""]:before,
[class*=sws-][title=""]:after,
[class*=sws-][data-title=""]:before,
[class*=sws-][data-title=""]:after {
    display: none !important
}

.sws-top:after {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.sws-top:before,
.sws-top:after,
.sws-top-left:before,
.sws-top-left:after,
.sws-top-right:before,
.sws-top-right:after {
    bottom: 100%;
    left: 50%
}

.sws-top:before,
.sws-top-left:before,
.sws-top-right:before {
    border-top-color: var(--thm);
    left: calc(50% - 6px);
    margin-bottom: -11px
}

.sws-top-left:after {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    margin-left: 12px
}

.sws-top-left:hover:before {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px)
}

.sws-top-left:hover:after {
    -webkit-transform: translateX(-100%) translateY(-8px);
    transform: translateX(-100%) translateY(-8px)
}

.sws-top-right:after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-left: -12px
}

.sws-top-right:hover:before {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px)
}

.sws-top-right:hover:after {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px)
}

.sws-top:hover:before {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px)
}

.sws-top:hover:after {
    -webkit-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px)
}

.sws-bottom:after {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.sws-bottom:before,
.sws-bottom:after,
.sws-bottom-left:before,
.sws-bottom-left:after,
.sws-bottom-right:before,
.sws-bottom-right:after {
    top: 100%;
    left: 50%
}

.sws-bottom:before,
.sws-bottom-left:before,
.sws-bottom-right:before {
    left: calc(50% - 6px);
    margin-top: -11px;
    border-bottom-color: var(--thm)
}

.sws-bottom-left:after {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    margin-left: 12px
}

.sws-bottom-left:hover:before {
    -webkit-transform: translateY(8px);
    transform: translateY(8px)
}

.sws-bottom-left:hover:after {
    -webkit-transform: translateX(-100%) translateY(8px);
    transform: translateX(-100%) translateY(8px)
}

.sws-bottom-right:after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-left: -12px
}

.sws-bottom-right:hover:before {
    -webkit-transform: translateY(8px);
    transform: translateY(8px)
}

.sws-bottom-right:hover:after {
    -webkit-transform: translateY(8px);
    transform: translateY(8px)
}

.sws-bottom:hover:before {
    -webkit-transform: translateY(8px);
    transform: translateY(8px)
}

.sws-bottom:hover:after {
    -webkit-transform: translateX(-50%) translateY(8px);
    transform: translateX(-50%) translateY(8px)
}

.sws-right:before,
.sws-right:after {
    left: 100%;
    bottom: 50%
}

.sws-right:before {
    margin-left: -11px;
    margin-bottom: -6px;
    border-right-color: var(--thm)
}

.sws-right:after {
    margin-bottom: -14px
}

.sws-right:hover:before {
    -webkit-transform: translateX(8px);
    transform: translateX(8px)
}

.sws-right:hover:after {
    -webkit-transform: translateX(8px);
    transform: translateX(8px)
}

.sws-left:before,
.sws-left:after {
    right: 100%;
    bottom: 50%
}

.sws-left:before {
    margin-right: -11px;
    margin-bottom: -6px;
    border-left-color: var(--thm)
}

.sws-left:after {
    margin-bottom: -14px
}

.sws-left:hover:before {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px)
}

.sws-left:hover:after {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px)
}

.sws-small:after,
.sws-medium:after,
.sws-large:after {
    white-space: normal;
    line-height: 1.4em;
    word-wrap: break-word
}

.sws-always:after,
.sws-always:before {
    opacity: 1;
    visibility: visible
}

.sws-always.sws-top:after {
    -webkit-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px)
}

.sws-always.sws-top:before,
.sws-always.sws-top-left:before,
.sws-always.sws-top-right:before {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px)
}

.sws-always.sws-top-left:after {
    -webkit-transform: translateX(-100%) translateY(-8px);
    transform: translateX(-100%) translateY(-8px)
}

.sws-always.sws-top-right:after {
    -webkit-transform: translateX(-100%) translateY(-8px);
    transform: translateX(-100%) translateY(-8px)
}

.sws-always.sws-bottom:after {
    -webkit-transform: translateX(-50%) translateY(8px);
    transform: translateX(-50%) translateY(8px)
}

.sws-always.sws-bottom:before,
.sws-always.sws-bottom-left:before,
.sws-always.sws-bottom-right:before {
    -webkit-transform: translateY(8px);
    transform: translateY(8px)
}

.sws-always.sws-bottom-left:after {
    -webkit-transform: translateX(-100%) translateY(8px);
    transform: translateX(-100%) translateY(8px)
}

.sws-always.sws-bottom-right:after {
    -webkit-transform: translateX(-100%) translateY(8px);
    transform: translateX(-100%) translateY(8px)
}

.sws-always.sws-left:before,
.sws-always.sws-left:after {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px)
}

.sws-always.sws-right:before,
.sws-always.sws-right:after {
    -webkit-transform: translateX(8px);
    transform: translateX(8px)
}

.sws-rounded:after {
    border-radius: 4px
}

.sws-small:after {
    width: 80px
}

.sws-medium:after {
    width: 150px
}

.sws-large:after {
    width: 300px
}

.sws-no-animate:before,
.sws-no-animate:after {
    -webkit-transition-duration: 0ms;
    transition-duration: 0ms
}

.sws-bounce:before,
.sws-bounce:after {
    -webkit-transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(0.71, 1.7, 0.77, 1.24), -webkit-transform .3s cubic-bezier(0.71, 1.7, 0.77, 1.24)
}

.sws-primary:after {
    background-color: var(--bs-primary);
    font-weight: 500
}

.sws-primary.sws-top:before,
.sws-primary.sws-top-left:before,
.sws-primary.sws-top-right:before {
    border-top-color: var(--bs-primary)
}

.sws-primary.sws-bottom:before,
.sws-primary.sws-bottom-left:before,
.sws-primary.sws-bottom-right:before {
    border-bottom-color: var(--bs-primary)
}

.sws-primary.sws-left:before {
    border-left-color: var(--bs-primary)
}

.sws-primary.sws-right:before {
    border-right-color: var(--bs-primary)
}

.sws-secondary:after {
    background-color: var(--bs-secondary);
    font-weight: 500
}

.sws-secondary.sws-top:before,
.sws-secondary.sws-top-left:before,
.sws-secondary.sws-top-right:before {
    border-top-color: var(--bs-secondary)
}

.sws-secondary.sws-bottom:before,
.sws-secondary.sws-bottom-left:before,
.sws-secondary.sws-bottom-right:before {
    border-bottom-color: var(--bs-secondary)
}

.sws-secondary.sws-left:before {
    border-left-color: var(--bs-secondary)
}

.sws-secondary.sws-right:before {
    border-right-color: var(--bs-secondary)
}

.sws-success:after {
    background-color: var(--bs-success);
    font-weight: 500
}

.sws-success.sws-top:before,
.sws-success.sws-top-left:before,
.sws-success.sws-top-right:before {
    border-top-color: var(--bs-success)
}

.sws-success.sws-bottom:before,
.sws-success.sws-bottom-left:before,
.sws-success.sws-bottom-right:before {
    border-bottom-color: var(--bs-success)
}

.sws-success.sws-left:before {
    border-left-color: var(--bs-success)
}

.sws-success.sws-right:before {
    border-right-color: var(--bs-success)
}

.sws-info:after {
    background-color: var(--bs-info);
    font-weight: 500
}

.sws-info.sws-top:before,
.sws-info.sws-top-left:before,
.sws-info.sws-top-right:before {
    border-top-color: var(--bs-info)
}

.sws-info.sws-bottom:before,
.sws-info.sws-bottom-left:before,
.sws-info.sws-bottom-right:before {
    border-bottom-color: var(--bs-info)
}

.sws-info.sws-left:before {
    border-left-color: var(--bs-info)
}

.sws-info.sws-right:before {
    border-right-color: var(--bs-info)
}

.sws-warning:after {
    background-color: var(--bs-warning);
    color: var(--black);
    font-weight: 500
}

.sws-warning.sws-top:before,
.sws-warning.sws-top-left:before,
.sws-warning.sws-top-right:before {
    border-top-color: var(--bs-warning)
}

.sws-warning.sws-bottom:before,
.sws-warning.sws-bottom-left:before,
.sws-warning.sws-bottom-right:before {
    border-bottom-color: var(--bs-warning)
}

.sws-warning.sws-left:before {
    border-left-color: var(--bs-warning)
}

.sws-warning.sws-right:before {
    border-right-color: var(--bs-warning)
}

.sws-danger:after {
    background-color: var(--bs-danger);
    font-weight: 500
}

.sws-danger.sws-top:before,
.sws-danger.sws-top-left:before,
.sws-danger.sws-top-right:before {
    border-top-color: var(--bs-danger)
}

.sws-danger.sws-bottom:before,
.sws-danger.sws-bottom-left:before,
.sws-danger.sws-bottom-right:before {
    border-bottom-color: var(--bs-danger)
}

.sws-danger.sws-left:before {
    border-left-color: var(--bs-danger)
}

.sws-danger.sws-right:before {
    border-right-color: var(--bs-danger)
}

.sws-light:after {
    background-color: var(--bs-light);
    color: var(--black);
    font-weight: 500
}

.sws-light.sws-top:before,
.sws-light.sws-top-left:before,
.sws-light.sws-top-right:before {
    border-top-color: var(--bs-light)
}

.sws-light.sws-bottom:before,
.sws-light.sws-bottom-left:before,
.sws-light.sws-bottom-right:before {
    border-bottom-color: var(--bs-light)
}

.sws-light.sws-left:before {
    border-left-color: var(--bs-light)
}

.sws-light.sws-right:before {
    border-right-color: var(--bs-light)
}

.sws-dark:after {
    background-color: var(--bs-dark);
    font-weight: 500
}

.sws-dark.sws-top:before,
.sws-dark.sws-top-left:before,
.sws-dark.sws-top-right:before {
    border-top-color: var(--bs-dark)
}

.sws-dark.sws-bottom:before,
.sws-dark.sws-bottom-left:before,
.sws-dark.sws-bottom-right:before {
    border-bottom-color: var(--bs-dark)
}

.sws-dark.sws-left:before {
    border-left-color: var(--bs-dark)
}

.sws-dark.sws-right:before {
    border-right-color: var(--bs-dark)
}

/*# sourceMappingURL=style.min.css.map */
