@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary: #ed8e58;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #555555;
    background: #FFFFFF;
    line-height: 1.8;
}

[tooltip] {
    position: relative;
    cursor: pointer;
}

[tooltip]:before,
[tooltip]:after {
    position: absolute;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

[tooltip]:before {
    content: "";
    border: 5px solid transparent;
    border-top: 5px solid #2c2b2b;
    transform: translate(-50%, calc(-100% - 17px));
}

[tooltip]:after {
    content: attr(tooltip);
    background: #2c2b2b;
    padding: 5px 14px;
    border-radius: 2px;
    color: #F9F9F9;
    font-size: 10px;
    line-height: normal;
    white-space: nowrap;
    transform: translate(-50%, calc(-100% - 24px));
}

[tooltip]:hover:before,
[tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
}

[tooltip]:hover:before {
    transform: translate(-50%, calc(-100% - -2px));
}

[tooltip]:hover:after {
    transform: translate(-50%, calc(-100% - 8px));
}

/* anuj kumar gupta */

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

/*** Button ***/
.btn {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: "Inter", sans-serif;
    position: relative;
    margin-left: 26px;
    padding: 27px 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 27px 0;
    color: var(--dark);
}


.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    width: 70px;
}

.navbar-dark .navbar-brand h1 img {
    width: 100%;
}

.navbar-dark .navbar-brand {
    color: #fff;
    display: flex;
    align-items: center;
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
    background-color: #ffffff;
    padding: 12px 40px 12px 30px !important;
    position: absolute;
    left: 0px;
    top: 0px;
}

.navbar-dark .navbar-brand span {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    margin-left: 10px;
}

.navbar-dark .navbar-brand span b {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    display: block;
    line-height: 28px;
}

.navbar-dark .navbar-toggler {
    padding: 0px;
}

.navbar-dark .navbar-toggler button {
    padding: 3px;
    font-size: 16px;
    line-height: 1;
    outline: 0;
    background-color: #fff;
    box-shadow: none;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
}

.btn-primary {
    border-color: #ED8E58;
    background-color: #FFA26D;
    background: linear-gradient(157deg, #ED8E58 39%, #FB83CB 80%);
}

.btn-primary:hover {
    color: #ffffff;
    border-color: rgb(213 134 90);
    background-color: #FFA26D;
    background: linear-gradient(157deg, #d5865a 39%, #db60aa 80%);
}

.btn-primary-animated {
    position: relative;
    border-color: #ED8E58;
    background-color: #FFA26D;
    background: linear-gradient(157deg, #ED8E58 39%, #FB83CB 80%);
    display: inline-block;
    padding: 12px 40px;
    color: #fff;
    border-radius: 100px;
    font-size: 16px;
    padding-right: 55px;
    transition: 0.1s ease-in-out;
}

.btn-primary-animated:hover {
    color: #ffffff;
    transform: scale(1.2);
}

.btn-primary-animated span {
    position: absolute;
    transition: 0.1s ease-in-out;
    font-size: 16px;
    right: 8px;
    top: 9px;
    background-color: #fff;
    color: #000;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.btn-primary-animated:hover span {
    transform: scale(1.2);
}


.btn-gray-animated {
    position: relative;
    border-color: #EBEBEB;
    background-color: #EBEBEB;
    display: inline-block;
    padding: 8px 30px;
    color: #000000;
    border-radius: 100px;
    font-size: 14px;
    padding-right: 51px;
    transition: 0.1s ease-in-out;
}

.btn-gray-animated:hover {
    background-color: #e2e2e2;
    color: #000000;
}

.btn-gray-animated span {
    position: absolute;
    transition: 0.1s ease-in-out;
    font-size: 14px;
    right: 6px;
    top: 6px;
    background-color: #fff;
    color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.btn-gray-animated:hover span {
    transform: scale(1.2);
}

.Benefits {
    background: url(../img/Portalbenefitbg.jpg) center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.app-grid {
    background: url(../img/uppcbmabg.jpg) center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.importantLinks {
    background: url(../img/implinklogo/bg.jpg) center center no-repeat;
    background-size: cover;
    overflow: hidden;
    padding-bottom: 5rem !important;
    padding-top: 5rem !important;
}

.about {
    background: url(../img/about/Aboutusbg.png) center center no-repeat;
    background-size: cover;
    overflow: hidden;
}


.navbar-expand-lg .navbar-collapse a i {
    font-size: 13px;
    margin-right: 3px;
}

.border-primary {
    border-color: rgb(185 185 185 / 55%) !important;
}






@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        /* background-color: rgb(2 2 42 / 76%); */
        height: 80px;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }


    .sticky-top .border-primary-login {
        color: rgb(0 0 0);
        border: 1px solid rgb(104 104 104 / 45%);
        font-weight: 400;
        font-size: 14px;
    }

    .sticky-top .border-primary-login:hover {
        color: #ffffff;
        border: 1px solid #33338b;
        background-color: #33338b;
    }


    .sticky-top.navbar-dark .navbar-brand {
        color: #fff;
        display: flex;
        align-items: center;
        clip-path: none;
        background-color: #ffffff;
        padding: 0px !important;
        position: relative;
        left: 0px;
        top: 0px;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

.vts-news {
    background: #ccc;
    padding: 0rem 0rem;
    position: relative;
    margin-top: 0px;
    z-index: 99;
    padding-right: 0px;
}


.marquee-title {
    position: absolute;
    z-index: 2;
    width: 100%;
    right: 0px;
    align-items: center;
    display: flex;
    margin-top: -28px;
    background: #fff;
    color: #000000;
    padding: 0px 0px;
    border-radius: 6px;
    /* border: 1px solid #e9e9e9; */
    box-shadow: 0px 7px 18px rgb(0 0 0 / 18%);
    z-index: 99;
    overflow: hidden;
    height: 60px;
}

.marquee-title>span {
    color: #ffffff;
    padding: 0px 15px 0px 0px;
    font-size: 14px;
    font-weight: 500;
    width: 200px;
    border-right: 1px solid #ccc;
    margin-right: 0rem;
    background-color: #FFA26D;
    background: linear-gradient(157deg, #ED8E58 39%, #FB83CB 80%);
    text-align: center;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 0% 100%);
}

.btn {
    border-radius: 5px;
}

/*** Carousel ***/



.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
    background: linear-gradient(180deg, rgb(0 0 0 / 53%) 15%, rgb(251 131 203 / 0%) 40%);
}

.carousel-caption h1 {
    font-size: 60px;
}

.carousel-caption h5 {
    font-size: 18px;
    font-weight: 400 !important;
}

.carousel-fade .carousel-item {
    height: 100vh;
}

.border-primary-signup {
    font-size: 14px;
}

.border-primary-login {
    color: rgb(255 255 255);
    border: 1px solid rgb(255 255 255 / 45%);
    font-weight: 400;
    font-size: 14px;
}

.border-primary-login:hover {
    color: #000;
    border: 1px solid #000;
    background-color: #fff;
}

.dropdown-item {
    font-size: 14px;
}

/*** Section Title ***/

.text-primary {
    color: #33328b !important;
}

.mobileApp-btn {
    display: block;
    width: 330px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mapview {
    position: relative;
    overflow: hidden;
}

.video-big {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 0rem;
    padding-bottom: 0px;

    position: absolute;
    height: 100%;
    width: 100%;
}

.video-big video {
    filter: sepia(1);
}

.video-big::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(44 8 8 / 85%);
    right: 0px;
    bottom: 0px;
}

.section-title h1 {
    font-size: 32px;
}

.section-title p {
    font-size: 18px;
    color: #333;
}

.section-title h5 {
    color: #656161;
    font-size: 16px;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background-color: #FFA26D;
    background: linear-gradient(157deg, #ED8E58 39%, #FB83CB 80%);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}

.owl-carousel.owl-drag .owl-item {
    padding: 20px 10px;
    padding-top: 50px;
    position: relative;
}

.vendor-carousel {}

.vendor-carousel a {
    background-color: #fff;
    text-align: center;
    display: block;
    box-shadow: 0px 0px 10px rgb(204 204 204 / 42%);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
    border-left: 3px solid #35348c;
}

.vendor-carousel a img {
    width: auto !important;
    display: inline-block !important
}

/*** Service ***/
.service-item {
    position: relative;
    padding: 16px;
    transition: .5s;
    background-color: #F4F4F4;
    height: 130px;
    padding-top: 4rem;
    border-radius: 5px;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.service-item:hover {
    background-color: #FFA26D;
    background: linear-gradient(157deg, #ED8E58 39%, #FB83CB 80%);
    background-position: 100% 0;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.service-item h4 {
    font-size: 14px;
    font-weight: 500 !important;
    color: #000000;
    transition: .1s;
}

.service-item .service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    position: absolute;
    top: -24px;
    background-color: #FFA26D;
    background: linear-gradient(157deg, #ED8E58 39%, #FB83CB 80%);
    padding: 11px;
    left: 1rem;
    transition: .5s;
}

.service-item:hover h4 {
    color: #ffffff;
}

.service-item:hover .service-icon {
    color: #ffffff;
    background: linear-gradient(157deg, #33338B 39%, #33338B 80%);
    border-radius: 100px;
}

.service-item .service-icon img {
    width: 100%;
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
    width: 100%;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

.blog-item {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 30px rgb(175 170 170 / 42%);
}

.blog-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.blog-item a {
    font-size: 14px;
    font-weight: 600;
    color: #ED8E58;
}



.facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 70px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgb(30 30 30 / 70%), rgb(72 72 72 / 30%)), url(../img/about-bg.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumbs h1 {
    font-size: 3rem;
}

.link-animated a {
    transition: .5s;
    font-weight: 300;
}

.section-title-sm {
    font-weight: 300;
}

.link-animated a i {
    color: #ed8e58;
}

.footer-grid .bi {
    color: #ed8e58;
}

.link-animated a:hover {
    padding-left: 10px;
}

.footer-about a {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-about p {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
}

.ui-logo img {
    height: 70px;
    margin-bottom: 0px;
}

.ui-logo span {
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: normal;
    font-weight: 600;
    text-align: left;
    margin-left: 9px;
}

.ui-logo span b {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
}

.footer-grid h3 {
    font-size: 18px;
    font-weight: 500 !important;
}

.footer-about {
    margin-top: -40px;
    background-color: #FFA26D;
    background: linear-gradient(157deg, #dd8655 39%, #dd73b3 80%);
    position: relative;
    z-index: 1;
}

.footer-about::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 4px 0 14px;
    border-color: transparent transparent transparent #724246;
    position: absolute;
    top: 0px;
    right: -18px;
    z-index: 0;
}

.copyright-grid p {
    font-size: 13px;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}


/* anuj kumar gupta */
@media (max-width: 1024px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 7px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        width: 60px;
    }

    .dropdown-item {
        font-size: 12px;
        padding: 5px 18px;
    }

    .border-primary-signup {
        font-size: 12px;
        margin: 0px !important;
    }

    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
        margin-bottom: 1.5rem !important;
    }

    .carousel-caption h1 {
        font-size: 20px;
        font-weight: 600 !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1rem;
        height: 1rem;
    }

    .navbar-dark .navbar-brand {
        clip-path: none;
        padding: 0px !important;
        position: relative;
        max-width: 210px;
        margin-right: 0rem;
    }

    .navbar-top .px-5 {
        padding: 12px !important;
    }

    .navbar-dark .navbar-brand span {
        font-size: 12px;
        display: inline-block;
        white-space: normal;
        margin-right: 5px;
        margin-left: 5px;
    }

    .navbar-dark .navbar-brand span b {
        font-size: 8px;
        display: block;
        line-height: 16px;
    }


    .navbar-dark .navbar-nav .nav-link {
        margin-left: 5px;
        font-size: 12px;
        font-weight: 500;
    }

    .btn-primary-animated {
        padding: 9px 20px;
        font-size: 13px;
        padding-right: 50px;
        transition: 0.1s ease-in-out;
        max-width: 260px;
        white-space: nowrap;
    }

    .btn-primary-animated span {
        font-size: 14px;
        right: 7px;
        top: 5px;
        width: 32px;
        height: 32px;
    }

    .carousel-fade .carousel-item,
    .carousel-fade .carousel-item .h-100 {
        height: 60vh;
    }

    .marquee-title>span {
        display: none;
    }

    .marquee-title {
        padding: 0px 10px;
        height: 40px;
    }

    .section-title h1 {
        font-size: 24px;
    }

    .service-item {
        height: auto;
        padding-top: 3rem;
        margin-bottom: 2rem;
    }

    .about {
        padding: 0rem !important;
    }

    .Benefits {
        padding: 0rem !important;
    }

    .app-grid {
        padding: 0rem !important;
    }



    .importantLinks {
        padding-top: 3rem !important;
    }

    .owl-carousel.owl-drag .owl-item {
        padding: 10px 10px;
    }

    .footer-about {
        padding: 20px;
        margin-bottom: 2rem;
    }

    .footer-link .ps-5,
    .footer-link .ps-0 {
        padding-left: 1.5rem !important;
    }

    .footer-link .pt-5 {
        padding-top: 1rem !important;
    }


    .copyright-grid {
        padding: 10px 0px;
    }

    .copyrightfooter {
        display: block !important;
        height: auto !important;
        font-size: 10px;
    }

    .copyright-grid p {
        font-size: 12px;
    }

    .back-to-top {
        right: 25px;
        bottom: 100px;
        z-index: 99;
        width: 35px;
        height: 35px;
        padding: 6px;
        font-size: 14px;
        opacity: 0.6;
    }

    .ui-logo span {
        font-size: 15px;
    }

    .ui-logo span b {
        font-size: 12px;
    }

    .ui-logo img {
        height: 60px;
    }

    .footer-about p {
        font-size: 12px;
        line-height: 18px;
    }

    .footer-grid h3 {
        font-size: 16px;
    }

    .video-big {
        width: auto;
    }

    .video-big video {
        filter: sepia(1);
        object-fit: fill;
        height: 100%;
        max-width: none;
    }

    .footer-about::before {
        display: none;
    }

    .breadcrumbs h1 {
        font-size: 1.5rem;
    }

    .breadcrumbs a,
    .breadcrumbs i {
        font-size: 0.7rem;
    }
}


