/********** Template CSS **********/
:root {
    --primary: #00f1f1;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}

/* Fonts */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: Poppins, Roboto, "Noto Sans TC", sans-serif;
}
/*** 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;
}

body {
  font-family: Poppins, Roboto, "Noto Sans TC", sans-serif;
}

@-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: 500 !important;
}

h5,
h6,
.fw-medium {
	font-weight: 400 !important;
	line-height: 28px;
}


/*** Button ***/
.btn {
    font-family: 'Poppins', 'Roboto',  sans-serif;
    font-weight: 600;
    transition: .5s;
	border-radius: 50px;
}

.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-white {
	color: #00b3d2;
	box-shadow: inset 0 0 0 50px transparent;
	background-color: #FFF;
	border: 1px solid #00b3d2;
}

.btn-white: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: 'Poppins', 'Roboto',  sans-serif;
	position: relative;
	margin-left: 25px;
	color: #4d4d4d;
	font-size: 1.05rem;
	font-weight: 300;
	outline: none;
	transition: .5s;
	padding-top: 35px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
	padding-top: 50px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
	color: var(--dark);
	margin-bottom: 40px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: rgba(255, 255, 255, .5);
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
	position: fixed;
	background: rgba(255, 255, 255, .7);
    }

    .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);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .6);
    z-index: 1;
}

.carousel-caption_black {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .6);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
	
	    .carousel-caption_black h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption_black h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    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; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.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;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/partner/partnertit.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/*** video ***/
.videoWrapper {
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	z-index: -100;
}

  .custom-video,
  .news-detail-image {
    object-fit: fill;
    width: 100vw;
    height: auto;
  }
  .custom-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bg-grey {
    background-color: #f7f7f7 !important
}
.navbar-dark .navbar-nav .show>.nav-link {
	color: #00d1d1;
	}
	
	.text-blue {
    font-family: Poppins, Roboto, sans-serif;
    color: #00b3d2;
    font-size: 4.5vw;
}

	.text-blue-xs {
    font-family: Poppins, Roboto, sans-serif;
    color: #00b3d2;
    font-size: 4vw;
}

.text-grey {
    font-family: Poppins, Roboto, sans-serif;
    color: #363636;
    font-size: 2.2vw;
}

.text-lightgrey {
    font-family: Poppins, Roboto, sans-serif;
    color: #8e8e8e;
}
 .heroText {
  position: absolute;
  z-index: 9;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.btn-sm, .btn-group-sm>.btn {
    padding: .25rem .5rem;
    font-size: 1rem;
}
.dropdown-menu {
	position: absolute;
	font-size: 1rem;
	color: #6B6A75;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 2px;
	width: 8vw;
	padding: 15px;
	right: -5px;
	z-index: 99999;
}

.topicon-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.dropdown-item {
	text-align: center;
}
.btn-primary {
    color: #fff;
    background-color: #00b3d2; !important
    border-color: #00b3d2;
}

.bg-primary-top {
    background-color: #00d1d1;
}

.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}
.text-lightgrey{color:#b3b3b3}
.px-icon {
    background-color: #00d1d1;
	border-radius:30px;
}
.blog-item {
	height: 100%;
}

.icon {
	font-size: 32px;
}
.producttext {
	text-align: left;
	width: 100%;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.accordion-item {
            border: none;
            margin-bottom: 16px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .accordion-button {
            padding: 20px 25px;
            font-weight: 600;
            color: #333;
            background-color: #ffffff;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            color: #ffffff;
            background-color: #83d1ed;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0, 0, 0, .125);
        }

        .accordion-button::after {
            background-size: 20px;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            padding: 25px;
            background-color: #ffffff;
        }
		
		
		
		
		
.copy_right {
    font-size: 16px;
    color: #FFF;
    margin-bottom: 0;
    font-weight: 400;
}


.footer_logo {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.bg-lightgrey {
	border: 1px solid #DFDFDF;
	}
.product_icon {
	height: 70px;
	width: 70px;
	z-index: 100;
	position: relative;
}
.product_li {
	list-style-type: none;
	width: 160px;
}

.product_li p{
	font-size: 15px;
	padding-top: 8px;
	position: absolute;
	z-index: 9999;
	text-align: center;
	margin-left: -10px;
}

.product_li-1 {
	list-style-type: none;
	width: 160px;
}

.product_li-1 p{
	font-size: 15px;
	padding-top: 8px;
	position: absolute;
	z-index: 9999;
	text-align: center;
	margin-left: -25px;
}

.product_bg {
	width: 100%;
	margin-left: 25px;
	margin-bottom: 80px;
}
.bg-img {
	background-image: url("../../../assets/css/assets/img/banner.jpg");
}
.products-h { 
	height:80vh;
}
 .productsText {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.whiteblock {
	background-color: rgba(255,255,255,.8);
	height: 280px;
	}
	.border-bottom-1 {
    border-bottom: 1px solid #4D4D4D !important;
}
.productsText-1 {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 20%;
    transform: translate(-10%, -50%);
    width: 100%;
    text-align: left;
}
	.text-blue-products {
    color: #00b3d2;
    font-size: 3.5vw;
}
.text-p {
	color: #333333;
	font-size: 16px;
	line-height: 28px;
}
.text-lineh {
	line-height: 32px;
}

.iconimg {
	height: 65px;
	width: 65px;
}
.iconimg-1 {
	height: 30px;
}
/* phones */
@media (max-width: 576px) {
	.d-lg-block {
        display: block !important;
    }
.heroText {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.product_bg {
	width: 100%;
	margin-left: 10px;
	margin-bottom: 80px;
}


.product_li p{
	font-size: 13px;
	padding-top: 8px;
	position: absolute;
	z-index: 9999;
	text-align: center;
	margin-left: -5px;
}



.product_li-1 p{
	font-size: 13px;
	padding-top: 8px;
	position: absolute;
	z-index: 9999;
	text-align: center;
	margin-left: -18px;
}
.xstext {
    font-size: 2.8vw;
}
.mdtext {
    font-size: 3.5vw;
}
.mdtext-1 {
    font-size: 5vw;
}
.text-grey {
	font-size: 3.5vw;

}
.text-lightgrey {
    font-size: 3.5vw;
	margin-bottom: 30px;
}
.proimg {
	width: 100%;
}
	h3 {
		font-size: 1.2em;
	}

	.text-blue {
    font-size: 3.1vw;
}
}


/* tablets */
@media (max-width: 768px) {
	.d-lg-block {
        display: block !important;
    }
.xstext {
    font-size: 2.8vw;
}
.mdtext {
    font-size: 3.5vw;
}
.mdtext-1 {
    font-size: 5vw;
}
	h3 {
		font-size: 1.2em;
	}

	.text-blue {
    font-size: 3.1vw;
}
	}
	
	
/* desktops */
@media (max-width: 992px) {
		.d-lg-block {
        display: block !important;
    }
	h3 {
		font-size: 1.2em;
	}

	.text-blue {
    font-size: 3.1vw;
}
.mdtext {
    font-size: 3.5vw;
}
	}

.progress-table-wrap {
  overflow-x: scroll;
}

.progress-table {
  background: #FFF;
  padding: 15px 0px 30px 0px;
  min-width: 800px;
}

.progress-table .serial {
	width: 40%;
	padding-left: 30px;
}

.progress-table .country {
	width: 15%;
	padding-left: 30px;
}

.progress-table .visit {
	width: 15%;
	padding-left: 30px;
}

.progress-table .percentage {
	width: 15%;
	padding-left: 30px;
	padding-right: 30px;
}

.progress-table .table-head {
  display: flex;
}

.progress-table .table-head .serial,
.progress-table .table-head .country,
.progress-table .table-head .visit,
.progress-table .table-head .percentage {
	color: #FFF;
	line-height: 20px;
	font-weight: 500;
	padding-top: 20px;
	padding-bottom: 20px;
}

.progress-table .table-row {
  padding: 15px 0;
  border-top: 1px solid #cfcfcf;
  display: flex;
}

.progress-table .table-row .serial,
.progress-table .table-row .country,
.progress-table .table-row .visit,
.progress-table .table-row .percentage {
  display: flex;
  align-items: center;
}

.progress-table .table-row .country img {
  margin-right: 15px;
}

.progress-table .table-row .percentage .progress {
  width: 80%;
  border-radius: 0px;
  background: transparent;
}

.progress-table .table-row .percentage .progress .progress-bar {
  height: 5px;
  line-height: 5px;
}

.progress-table .table-row .percentage .progress .progress-bar.color-1 {
  background-color: #6382e6;
}

.progress-table .table-row .percentage .progress .progress-bar.color-2 {
  background-color: #e66686;
}

.progress-table .table-row .percentage .progress .progress-bar.color-3 {
  background-color: #f09359;
}

.progress-table .table-row .percentage .progress .progress-bar.color-4 {
  background-color: #73fbaf;
}

.progress-table .table-row .percentage .progress .progress-bar.color-5 {
  background-color: #73fbaf;
}

.progress-table .table-row .percentage .progress .progress-bar.color-6 {
  background-color: #6382e6;
}

.progress-table .table-row .percentage .progress .progress-bar.color-7 {
  background-color: #a367e7;
}

.progress-table .table-row .percentage .progress .progress-bar.color-8 {
  background-color: #e66686;
}
.table-head {
    background-color: #7de3e9;
    color: #FFF;
}

.card img {
	cursor: pointer;
	overflow: hidden;
	display: inline-block;
	padding: 5px;
}
.text {
	line-height: 30px;
	color: #333;
}

.fancybox__container {
    --fancybox-color: #222;
    --fancybox-backdrop-bg: rgba(255, 255, 255, .97);
    --f-toolbar-color: var(--fancybox-color, #222);
    --f-toolbar-text-shadow: none;
    --f-toolbar-font-weight: 400;
    --f-html-color: var(--fancybox-color, #222);
    --f-html-bg: #fff;
    --f-error-color: #555;
    --f-error-bg: #fff;
    --f-video-bg: #fff;
    --f-caption-color: #333;
    --f-spinner-color-1: rgba(0, 0, 0, .2);
    --f-spinner-color-2: rgba(0, 0, 0, .8);
    --f-spinner-border-width: 3.5px;
    --f-progressbar-color: rgba(111, 111, 116);
    --f-button-color: #333;
    --f-button-hover-color: #000;
    --f-button-outline-color: rgba(0, 0, 0, .85);
    --f-button-bg: rgba(255, 255, 255, .85);
    --f-button-svg-stroke-width: 1.3;
    --f-button-svg-filter: none;
    --f-arrow-bg: rgba(255, 255, 255, .85);
    --f-arrow-color: #333;
    --f-arrow-hover-color: #000;
    --f-arrow-svg-stroke-width: 1.3;
    --f-close-button-color: #555;
    --f-close-button-hover-color: #000;
    --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
    --f-thumb-focus-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #888;
    --f-thumb-selected-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #000
}

.genric-btn.success {
    color: #fff;
    background: #4cd3e3;
    border: 1px solid transparent;
}
.genric-btn.circle {
    border-radius: 20px;
}
.genric-btn {
    outline: none;
    line-height: 40px;
    padding: 0 30px;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s 
ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s 
ease 0s;
}
.genric-btn.success:hover {
  color: #4cd3e3;
  border: 1px solid #4cd3e3;
  background: #fff;
}
.bg-header {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(245, 250, 255, .7)), url(../img/partner/partnertit.jpg) center center no-repeat;
    background-size: cover;
}
.orange {
    color: #F60;
}
.text-lightgrey-1 {
    color: #b3b3b3;
}
.error-page {
    min-height: 100vh;
    background: linear-gradient(165deg, #00c1d2 0%, #056edc 100%);
}
.error-code {
    font-size: 12rem;
    font-weight: 900;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}
.error-message {
    color: rgba(255, 255, 255, 0.9);
}