@font-face{
    font-family: 'primary-extrabold';
    src: url('/fonts/Figtree-ExtraBold.ttf') format('truetype');
}
@font-face{
    font-family: 'primary-bold';
    src: url('/fonts/Figtree-Bold.ttf') format('truetype');
}
@font-face{
    font-family: 'primary-semibold';
    src: url('/fonts/Figtree-SemiBold.ttf') format('truetype');
}
@font-face{
    font-family: 'primary-regular';
    src: url('/fonts/Figtree-Regular.ttf') format('truetype');
}
@font-face{
    font-family: 'primary-light';
    src: url('/fonts/Figtree-Light.ttf') format('truetype');
}

:root {
	--type-scale: 0.98;
    --color-lightblue: #349FFA;
    --color-white: #FFF;
    --color-black: #000;
    --color-grey: #333333;
    --color-orange: #FF8414;
    /* Font Families */
    --font-extrabold: 'primary-extrabold', sans-serif;
    --font-bold: 'primary-bold', sans-serif;
    --font-semibold: 'primary-semibold', sans-serif;
    --font-regular: 'primary-regular', sans-serif;
    --font-light: 'primary-light', sans-serif;
    /* Font-Size */
    --font-50: calc(50px * var(--type-scale));
    --font-40: calc(40px * var(--type-scale));
    --font-30: calc(30px * var(--type-scale));
    --font-26: calc(26px * var(--type-scale));
    --font-22: calc(22px * var(--type-scale));
    --font-20: calc(20px * var(--type-scale));
    --font-18: calc(18px * var(--type-scale));
    --font-16: calc(16px * var(--type-scale));
    /* Line-Height */
    --lh-30: calc(30px * var(--type-scale));
    --lh-60: calc(60px * var(--type-scale));
    --lh-40: calc(40px * var(--type-scale));
    --lh-70: calc(70px * var(--type-scale));
    /* Spacing */
    --space-100: 100px;
    --space-50: 50px;
    --space-30: 30px;
    --space-20: 20px;
    --space-10: 10px;
    /* Radius */
    --radius-10: 10px;
    --radius-5: 5px;
    /* shadow */
    --shadow-normal: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width:1399px) {
    :root {
        /* Font-Size */
        --font-50: calc(40px * var(--type-scale));
        --font-40: calc(35px * var(--type-scale));
        --font-30: calc(28px * var(--type-scale));
        --font-26: calc(24px * var(--type-scale));
        --font-22: calc(20px * var(--type-scale));
        --font-20: calc(18px * var(--type-scale));
        /* Line-Height */
        --lh-30: calc(28px * var(--type-scale));
        --lh-60: calc(50px * var(--type-scale));
        --lh-40: calc(35px * var(--type-scale));
        --lh-70: calc(60px * var(--type-scale));
        /* Spacing */
        --space-100: 70px;
        --space-50: 45px;
        --space-30: 25px;
    }
}
@media (max-width:992px) {
    :root {
        /* Font-Size */
        --font-50: calc(35px * var(--type-scale));
        --font-40: calc(30px * var(--type-scale));
        --font-30: calc(26px * var(--type-scale));
        --font-26: calc(22px * var(--type-scale));
        --font-22: calc(20px * var(--type-scale));
        --font-20: calc(18px * var(--type-scale));
        --font-18: calc(16px * var(--type-scale));
        /* Line-Height */
        --lh-30: calc(24px * var(--type-scale));
        --lh-60: calc(45px * var(--type-scale));
        --lh-40: calc(30px * var(--type-scale));
        --lh-70: calc(55px * var(--type-scale));
        /* Spacing */
        --space-100: 50px;
        --space-50: 30px;
        --space-30: 20px;
        --space-20: 15px;
    }
}

/* Common */
body{font-family: var(--font-regular);font-size:var(--font-18);line-height: var(--lh-30);color: var(--color-black);}
h1{font-family: var(--font-bold);font-size:var(--font-50);line-height: var(--lh-70);}
h2{font-family: var(--font-bold);font-size:var(--font-40);line-height: var(--lh-60);}
h4{font-family: var(--font-semibold);font-size:var(--font-30);line-height: var(--lh-40);}
h5{font-family: var(--font-bold);font-size:var(--font-26);line-height: var(--lh-60);}
h6{font-family: var(--font-regular);font-size:var(--font-20);line-height: var(--lh-30);}
p{font-family: var(--font-regular);font-size:var(--font-18);line-height: var(--lh-30);padding: 0;margin: 0;margin-bottom: 0!important;color: var(--color-black);}
p a ,a{font-family: var(--font-regular);font-size:var(--font-18);line-height: var(--lh-30);text-decoration: unset!important;margin: 0;padding: 0;margin-bottom: 0!important;color: var(--color-black);transition: all 0.5s;}
p a:hover,a:hover{margin: 0;padding: 0;margin-bottom: 0!important;color: var(--color-lightblue);}
ul, ol{margin: 0;padding: 0;margin-bottom: 0!important;font-family: var(--font-regular);}
ul li, ol li{margin: 0;padding: 0;margin-bottom: 0!important;font-family: var(--font-regular);color: var(--color-grey);font-size: var(--font-18);}
/*  */
.fw-medium{font-weight: 500!important;}
/* Button */
.btn.btn{line-height: var(--lh-30);font-size:var(--font-18);border-radius: 0;border:unset;padding: 10px 20px;font-family: var(--font-semibold);transition: all 0.7s;}
.btn.btn-primary{background-color:var(--color-lightblue);line-height: var(--lh-30);font-size:var(--font-18);}
.btn.btn-primary:hover{background-color:var(--color-grey);}
.btn.btn-white{background-color:var(--color-white);line-height: var(--lh-30);font-size:var(--font-18);color: var(--color-grey);}
.btn.btn-white:hover{background-color:var(--color-grey);color: var(--color-white);}
/* Body Css */
#bodycontent h3, h3{font-family:var(--font-bold);font-size:var(--font-50);font-weight:bold;line-height:var(--lh-60);color:var(--color-grey);overflow-wrap:normal;word-break:normal;}
#bodycontent p , p{font-family:var(--font-regular);font-size:var(--font-20);font-weight:normal;line-height:var(--lh-30);color:var(--color-grey);}

.mono
{
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-style: normal;
	display: inline;
	line-height: inherit;

	overflow-wrap: normal;
	word-break: normal;

	padding: 0.06em 0.35em;

	color: rgb(28, 29, 31);

	background-color: #fbfcfd;
	border: 1px solid #b0b4ba;
/*
	background-color: rgb(246, 247, 250);
	border: 1px solid rgb(213, 217, 224);
*/
	border-radius: 6px;
}

#content .mono
{
	line-height: inherit;
}

.tacview-code.mono
{
	display: block;
	box-sizing: border-box;
	width: 100%;
	margin: 16px 0;
	padding: 0.6em 0.8em;
	white-space: pre-wrap;
	overflow-wrap: anywhere;

	padding-left: 2em;
	text-indent: -1em;
}

span.key
{
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-style: normal;
	display: inline-block;
	line-height: inherit;
	overflow-wrap: anywhere;
	padding: 0.0em 0.38em;

	color: rgb(28, 29, 31);

	background: linear-gradient(to bottom, #ffffff, #f3f5f7);
	border: 1px solid #aeb4bb;
	border-bottom-color: #8e959d;
	border-radius: 6px;

	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.85) inset,
		0 1px 0 rgba(0, 0, 0, 0.10);

	vertical-align: baseline;
	white-space: nowrap;
}

#content span.key
{
	line-height: inherit;
}

/* Spacing */
.my-100{margin-top: var(--space-100)!important;margin-bottom: var(--space-100)!important;}
.my-50{margin-top: var(--space-50)!important;margin-bottom: var(--space-50)!important;}
.my-30{margin-top: var(--space-30)!important;margin-bottom: var(--space-30)!important;}
.my-20{margin-top: var(--space-20)!important;margin-bottom: var(--space-20)!important;}
.my-10{margin-top: var(--space-10)!important;margin-bottom: var(--space-10)!important;}
.mt-100{margin-top: var(--space-100)!important;}
.mt-50{margin-top: var(--space-50)!important;}
.mt-30{margin-top: var(--space-30)!important;}
.mt-20{margin-top: var(--space-20)!important;}
.mt-10{margin-top: var(--space-10)!important;}
.mb-100{margin-bottom: var(--space-100)!important;}
.mb-50{margin-bottom: var(--space-50)!important;}
.mb-30{margin-bottom: var(--space-30)!important;}
.mb-20{margin-bottom: var(--space-20)!important;}
.mb-10{margin-bottom: var(--space-10)!important;}
/*  */
.py-100{padding-top: var(--space-100)!important;padding-bottom: var(--space-100)!important;}
.py-50{padding-top: var(--space-50)!important;padding-bottom: var(--space-50)!important;}
.py-30{padding-top: var(--space-30)!important;padding-bottom: var(--space-30)!important;}
.py-20{padding-top: var(--space-20)!important;padding-bottom: var(--space-20)!important;}
.px-20{padding-right: var(--space-20)!important;padding-left: var(--space-20)!important;}
.py-10{padding-top: var(--space-10)!important;padding-bottom: var(--space-10)!important;}
.pt-100{padding-top: var(--space-100)!important;}
.pt-50{padding-top: var(--space-50)!important;}
.pt-30{padding-top: var(--space-30)!important;}
.pt-20{padding-top: var(--space-20)!important;}
.pt-10{padding-top: var(--space-10)!important;}
.pb-100{padding-bottom: var(--space-100)!important;}
.pb-50{padding-bottom: var(--space-50)!important;}
.pb-30{padding-bottom: var(--space-30)!important;}
.pb-20{padding-bottom: var(--space-20)!important;}
.pb-10{padding-bottom: var(--space-10)!important;}
@media (max-width:768px) {
    .px-xs-24{padding-inline: 24px;}
}
/* Border Radius */
.border-radius-5{border-radius: var(--radius-5);}
/* BackGround Color */
.bg-f3f3f3{background-color: #f3f3f3!important;}
/* Header */
header .navbar{background-color: #ffffff6e;backdrop-filter: blur(10px);}
header .navbar .navbar-brand{padding: 0!important;}
header .navbar .navbar-brand img{width: 195px;height: 65.6px;object-fit: contain;}
header .navbar .navbar-nav .nav-link{font-family: var(--font-regular);font-size: var(--font-20);line-height: var(--lh-30);color: var(--color-grey);padding: 0 25px;position: relative;}
header .navbar .navbar-nav .nav-link.active{color: var(--color-black);}
header .navbar .navbar-nav .dropdown-menu {padding: 0;}
header .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item{
    padding: 5px 10px!important;
}
header .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover{
    padding: 5px 10px!important;
}
header .navbar .navbar-nav .nav-link.dropdown-toggle::after {content: "\F282"; font-family: "bootstrap-icons";position: absolute;right: 3px;top: 2px;font-size: 14px;color: var(--color-grey);font-weight: bold;border: unset;}

@media (max-width:1399px) {
    header .navbar .navbar-nav .nav-link{padding: 0 25px;}
    header .navbar .navbar-brand img{width: 140px;height: auto;}
}
@media (max-width:1199px) {
    header .navbar .navbar-nav .nav-link{padding: 0 20px;}
}
@media (max-width:991px) {
    header .navbar {justify-content: center;}
    header .navbar .navbar-nav {text-align: center;}
    header .navbar .navbar-nav .nav-item.dropdown{}
    header .navbar .navbar-nav .nav-link.dropdown-toggle::after{position: relative;right:0;}
    header .navbar .navbar-nav .nav-link{padding: 5px 20px;}
    .navbar-toggler{position: absolute;right: 20px;z-index: 999;}
}

/* ------ */
.top-bar{background-color: var(--color-white) ;color: var(--color-white);}
#language-list{height:28px;float:right;}
#language-list li{text-indent:-9999px;white-space:nowrap;line-height:16px;overflow:hidden;float:left;margin-top:6px;margin-left:8px}
#language-list li a{display:block;width:16px;height:16px}

#sale-message
{
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);

	line-height: 28px;
	white-space: nowrap;

	color: var(--color-grey);
	font-size: var(--font-16);
	font-family: var(--font-semibold);

	max-width: calc(100% - (var(--space-20) * 4)); /* keeps room for flags */
	overflow: hidden;
	text-overflow: ellipsis;
}

#sale-message .sale-highlight
{
	color: var(--color-orange);
	font-family: var(--font-bold);
}

#link-language-english{background:url(/img/button-flag-us-low.png) no-repeat 0 0}
#link-language-english a:hover{background:url(/img/button-flag-us.png) no-repeat 0 0}
#link-language-french{background:url(/img/button-flag-fr-low.png) no-repeat 0 0}
#link-language-french a:hover{background:url(/img/button-flag-fr.png) no-repeat 0 0}
/* Footer */
#pg-footer {background-color: var(--color-white);padding:35px 0;}
#pg-footer #footer-social-links ul{padding-left: 0!important;}
#pg-footer #footer-social-links ul li a{color: #919191;transition: all 0.7s;font-size: 26px;font-weight: normal;line-height: normal;}
#pg-footer #footer-social-links ul li a:hover{color: var(--color-black);}
/* Banner */
.hm-banner{background: url('../img/bk-banner.webp') no-repeat center center;background-size: cover;height: 1000px;display: flex;justify-content: center; align-items: center;text-align: center;  }
.hm-banner h1{padding-top: 250px;  }
.hm-banner h1 {
	text-shadow:
		0 2px 4px rgba(0, 0, 0, 0.5),
		0 8px 26px rgba(0, 0, 0, 0.4),
		0 18px 60px rgba(0, 0, 0, 0.35);
}
.hm-banner h6 {
	text-shadow:
		0 2px 4px rgba(0, 0, 0, 0.45),
		0 6px 22px rgba(0, 0, 0, 0.35),
		0 14px 48px rgba(0, 0, 0, 0.30);
}
@media (max-width:1399px) {
    .hm-banner{height: 710px; }
    .hm-banner h1{padding-top: 250px;  }
}
@media (max-width:991px) {
    .top-bar{margin-bottom: 0!important;}
    .fixed-top{position: relative;}
    .hm-banner{height: 500px;}
    .hm-banner h1{padding-top: 150px;}
	section.inner-banner { padding-top: 40px; }
}
@media (max-width:576px) {
    .hm-banner{height: 500px; }
    .hm-banner h1{padding-top: 100px;  }
}
#logo{margin-top:0px;font-family:Verdana,sans-serif;font-weight:lighter}
#logo h1 ,#logo .h1{background:url(/img/ico-tacview.png) no-repeat left 8px;background-size:auto 78%;margin-left:20px;padding-left:1.3em;padding-top:0.1em;line-height:1.2em;font-size:42px;letter-spacing:-2px;font-family: Verdana, "DejaVu Sans", "Bitstream Vera Sans", Geneva, Arial, Helvetica, sans-serif;color: var(--color-black);}
#logo p{text-align:center;font-size:14px;line-height:24px; font-family: Verdana, "DejaVu Sans", "Bitstream Vera Sans", Geneva, Arial, Helvetica, sans-serif;color: var(--color-black);}
@media (max-width:1399px) {
    #logo h1,#logo .h1{line-height:50px;font-size:38px;}
    #logo p{font-size:12px;line-height:22px;}
}
@media (max-width:1199px) {
    #logo h1,#logo .h1{line-height:44px;font-size:32px;} 
    #logo p{font-size:10px;line-height:20px;}  
}
@media (max-width:991px) {
   #logo h1,#logo .h1{line-height:44px;font-size:32px;} 
}
@media (max-width:768px) {
     #logo h1,#logo .h1{line-height:44px;font-size:32px;}     
}
@media (max-width:576px) {
    #logo h1,#logo .h1{line-height:40px;font-size:30px;}
}
/* Inner-Banner */
.inner-banner {padding-top: 140px;padding-bottom: 50px;background: #FF8414;background: linear-gradient(90deg, #FF8414 0%, #D06300 100%);background-size: 200% 200%;text-align: center;}
.inner-banner h2{color: var(--color-white);font-family: var(--font-bold);font-size:var(--font-50);line-height: var(--lh-70);}
.detail-content h2{color: var(--color-black);}
.detail-content h4{color: var(--color-grey);}
.detail-content h5{color: var(--color-black);font-family: var(--font-semibold);}
.detail-content h6{color: var(--color-grey);font-family: var(--font-semibold);}
.detail-content p{margin-bottom: var(--space-20)!important;}
.detail-content p:last-child{margin-bottom: 0!important;}

.detail-content a,
.accordion-body a
{font-weight: 500;color: var(--color-orange);}

.detail-content a:hover,
.accordion-body a:hover
{color: var(--color-black);}

.detail-content a[href^="http"]::after,
.accordion-body a[href^="http"]::after {
  content: "\00a0↗";
  font-size: 0.75em;
  position: relative;
  top: -0.2em;
  line-height: 0;
}

.detail-content .sm-card a[href^="http"]::after,
.detail-content .xs-card a[href^="http"]::after,
.detail-content .nicebutton[href^="http"]::after {
  content: none;
}

.detail-content h5 a{color: var(--color-orange);font-family: var(--font-bold);font-size:var(--font-26);line-height: var(--lh-60);}
.detail-content h5 a:hover{color: var(--color-black);}
.detail-content .bullet-list ul {list-style: none; padding-left: 0;}
.detail-content .bullet-list.bullet-list ul li strong {color: var(--color-grey)!important;}
.detail-content .bullet-list ul li {position: relative;padding-left: 25px;margin-bottom: 8px;}
.detail-content .bullet-list ul li::before {content: "\F138"; font-family: "bootstrap-icons";position: absolute;left: 0;top:1px;font-size: var(--font-16);color: var(--color-lightblue)}
.detail-content .bullet-list ul li:empty {display: none;}
.detail-content .bullet-list ul li b {font-family: var(--font-semibold);color:#222;}
.detail-content  li.real-life::marker {content: "\F280"; font-family: "bootstrap-icons";position: absolute;left: 0;top: 2px;font-size: 16px;color: var(--color-lightblue);font-weight: bold;}
.detail-content .intro-card {box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;border-radius: var(--radius-10);padding: var(--space-30);background-color: #f3f3f3;}

/* ---Home / About us---- */
#bodycontent .hm-about{background-color: var(--color-white);}
#bodycontent .hm-about p{margin-bottom: 30px!important;}
/* Home / Contact US */
.hm-contact-us .contact-bg{background-color: var(--color-orange);border-radius: var(--radius-10);color: var(--color-white);padding: var(--space-50) var(--space-100);}
.hm-contact-us .text-white a{color: var(--color-white);}
.hm-contact-us .text-white a:hover{color: var(--color-grey);}
/* Accordion */
#accordionFAQ .accordion-item{background-color: transparent;}
#accordionFAQ .accordion-button{background-color: transparent;color: var(--color-grey);font-size:var(--font-20);line-height: var(--lh-30);font-family: var(--font-semibold);box-shadow:unset!important;align-items: start;padding-inline: 0px;}
#accordionFAQ .accordion-button:not(.collapsed) {background-color: transparent;color: var(--color-orange);}
#accordionFAQ .accordion-button::after {  transition: transform 0.5s ease, color 0.5s ease;flex-shrink: 0;width: auto;height: auto;background-image: none !important;font-family: "Bootstrap-icons"; content: "\f282";font-size: 1.2rem;margin-left: auto;margin-top: 0;}
#accordionFAQ .accordion-button:not(.collapsed)::after {content: "\f286"; color: var(--color-orange);transform: rotate(0deg);}
#accordionFAQ .accordion-body{padding-inline: 0;}
.hm-download{background-color: #f3f3f3;padding-block: var(--space-100);}
.hm-download .download-card{background-color: var(--color-white);border-radius: var(--radius-10);border: 1px solid #d3d3d3;padding: var(--space-30) var(--space-30) 0 var(--space-30);box-shadow: var(--shadow-normal);overflow: hidden;}
.hm-download .download-card .head{padding-bottom:10px}
.hm-download .download-card .content{padding-bottom:45px}
.hm-download .download-card .content p{display: -webkit-box;-webkit-box-orient: vertical; overflow: hidden;text-overflow: ellipsis;-webkit-line-clamp: 6;}
.hm-download .download-card .content .btn{margin-top:20px}
.hm-download .download-card .img img{height: 160px;width: 100%;object-fit: cover;border-top-left-radius: 10px;border-top-right-radius: 10px;}
@media (max-width:1199px) {
    .hm-download .download-card .content p{-webkit-line-clamp: 3;}
    .hm-download .download-card .img img{height: 200px;}
}

/* want-to-buy */
.want-to-buy {padding-block: var(--space-100);}

.want-to-buy img
{
	display: block;
	width: 100%;
	height: auto;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

@media (min-width: 992px)
{
	.want-to-buy img
	{
		height: 100%;
		object-fit: cover;
	}
}

.want-to-buy .want-to-buy-content{padding: 0 0px 0 120px;width: 660px;}
@media (max-width:1399px) {
    .want-to-buy .want-to-buy-content{padding: 0 0px 0 60px;width: 530px;}
}
@media (max-width:1199px) {
    .want-to-buy .want-to-buy-content{padding: 0 0px 0 60px;width: 450px;}
}
@media (max-width:991px) {
    .want-to-buy img{border-radius: 0;}
    .want-to-buy .want-to-buy-content{padding: unset;width:100%;}
}
/* Latest News */
/* Swiper */
.swiper {width: 100%;height: 100%;}

.swiper-slide img {display: block;width: 100%;height: 100%;object-fit: cover;}
/* .NewsSwiper {position: unset;} */
.NewsSwiper {position: unset;}
.NewsSwiper .swiper-slide{border-radius: 16px;border:1px solid #919191;box-shadow: var(--shadow-normal);}
.NewsSwiper .swiper-slide .img img{border-top-left-radius: 16px;border-top-right-radius: 16px;height: 240px;object-fit: cover;}
.NewsSwiper .swiper-slide .news-card .video_wrapper{border-top-left-radius: 16px;border-top-right-radius: 16px;height: 240px;object-fit: cover;}
.NewsSwiper .swiper-slide .content {padding: 24px;}
.NewsSwiper .swiper-slide .content p{word-wrap: break-word;white-space: normal;overflow: hidden;}
.NewsSwiper .swiper-slide .content .link{font-family: var(--font-semibold);font-size: var(--font-18);color: var(--color-grey);}
.NewsSwiper .swiper-slide .content .link:hover{color: var(--color-lightblue);}
.NewsSwiper .swiper-button-next:after, .NewsSwiper .swiper-button-prev:after{font-size: 14px;border: 1px solid var(--color-grey);color: var(--color-grey);padding: 6px 9px;border-radius: 50%;    font-weight: bold;}
.NewsSwiper .swiper-pagination-bullets.swiper-pagination-horizontal{bottom: 0px;top: unset;}
.NewsSwiper .swiper-button-prev,.NewsSwiper .swiper-rtl .swiper-button-next{left:4%; right: auto;}
.NewsSwiper .swiper-button-next,.NewsSwiper .swiper-rtl .swiper-button-prev{right:4%;left: auto;}
@media (max-width:1920px) {
    .NewsSwiper .swiper-button-prev,.NewsSwiper .swiper-rtl .swiper-button-next{left:9%; }
    .NewsSwiper .swiper-button-next,.NewsSwiper .swiper-rtl .swiper-button-prev{right:9%}
}
@media (max-width:1699px) {
    .NewsSwiper .swiper-button-prev,.NewsSwiper .swiper-rtl .swiper-button-next{left:4%; }
    .NewsSwiper .swiper-button-next,.NewsSwiper .swiper-rtl .swiper-button-prev{right:4%}
}
@media (max-width:1499px) {
    .NewsSwiper .swiper-button-prev,.NewsSwiper .swiper-rtl .swiper-button-next{left:20px; }
    .NewsSwiper .swiper-button-next,.NewsSwiper .swiper-rtl .swiper-button-prev{right:20px}
}
@media (max-width:1299px) {
    .NewsSwiper .swiper-button-prev,.NewsSwiper .swiper-rtl .swiper-button-next{left:10px; }
    .NewsSwiper .swiper-button-next,.NewsSwiper .swiper-rtl .swiper-button-prev{right:10px}
}
@media (max-width:1024px) {
    .NewsSwiper .swiper-button-prev,.NewsSwiper .swiper-rtl .swiper-button-next{left:0px; }
    .NewsSwiper .swiper-button-next,.NewsSwiper .swiper-rtl .swiper-button-prev{right:0px}
}
@media (max-width:991px) {
    .NewsSwiper{padding-bottom: 20px;}
    .NewsSwiper .swiper-pagination-bullets.swiper-pagination-horizontal{bottom: 50px;top: unset;}
}
/* NEWS-LIST */
.news-list .news-card{border-radius: 16px;border:1px solid #919191;box-shadow: var(--shadow-normal);}
.news-list .news-card .img img{border-top-left-radius: 16px;border-top-right-radius: 16px;height: 240px;object-fit: cover;width: 100%;}
.news-list .news-card .video_wrapper{border-top-left-radius: 16px;border-top-right-radius: 16px;height: 240px;object-fit: cover;}
.news-list .news-card .content {padding: 24px;}
.news-list .news-card .content p{overflow: hidden;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;}
.news-list .news-card .content .link{font-family: var(--font-semibold);font-size: var(--font-18);color: var(--color-grey);}
.news-list .news-card .content .link:hover{color: var(--color-lightblue);}
/*  */
.feature-highlights{background: #FF8414;background: linear-gradient(118deg,rgba(255, 132, 20, 1) 0%, rgba(208, 99, 0, 1) 50%);color: var(--color-white);}
.feature-highlights .feature-card-1{ margin-bottom: 50px;}
.feature-highlights .img img{ position: absolute;height: 570px;object-fit: contain;left:20%;top:-15%}
@media (max-width:1399px) {
    .feature-highlights .feature-card-1{ margin-bottom: 25px;}
    .feature-highlights .img img{ position: absolute;height: 570px;object-fit: contain;left:10%;top:-15%}
}
@media (max-width:1199px) {
    .feature-highlights .feature-card-1,.feature-highlights .feature-card-2{ border: 1px dashed var(--color-white);padding: var(--space-30);border-radius: var(--radius-10);height: 190px;}
}
@media (max-width:768px) {
    .feature-highlights .feature-card-1,.feature-highlights .feature-card-2{ height: 240px;}
}
@media (max-width:576px) {
    .feature-highlights .feature-card-1,.feature-highlights .feature-card-2{ height: auto;}
    .feature-highlights .feature-card-1,.feature-highlights .feature-card-2{ margin-bottom: 20px;}
}
/* Download Option */
.detail-content .download-card{box-shadow: var(--shadow-normal);border-radius: var(--radius-10);padding:var(--space-50) 10px;max-height: 100vh;height: 100%;}
/*  */
.download-option .option-card {text-align: center;display: block;justify-items: center;box-shadow: var(--shadow-normal);padding: 10px;border-radius: var(--radius-10);}
.download-option .option-card span{color: var(--color-black);line-height: normal; font-weight: 600;transition: all 0.7s;font-size: var(--font-semibold);}
.download-option .option-card:hover span{color: var(--color-orange);}
.download-option .option-card img{height: 80px;object-fit: contain;display: block;margin:0 auto 10px auto;}
.download-option .option-card.card-1,.download-option .option-card.card-2 {margin-bottom: var(--space-30)!important;}
@media (max-width:575px) {
    .download-option .option-card.card-1,.download-option .option-card.card-2 ,.download-option .option-card.card-3{margin-bottom: var(--space-30)!important;}
}
.nicebutton{white-space:nowrap;display:inline;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:1px solid;box-shadow:2px 2px 8px #A8530D;text-align:center;text-transform:lowercase;text-decoration:none;text-shadow:1px 1px 0 #fff;min-width:196px;line-height:42px;padding:8px 42px}
.nicebutton:active{position:relative;top:1px}
.nicebutton.download-menu{font-family:"Times New Roman",Georgia,Serif;background:linear-gradient(#ededed,#dfdfdf);background-color:#ededed;border-color:#dcdcdc;color:#A8530D}
.nicebutton.download-menu:hover{background:linear-gradient(#dfdfdf,#ededed);background-color:#dfdfdf}
.nicebutton.download-file{border-radius: unset;font-size:36px;text-transform:none;text-align:left;padding: 8px 32px 8px 64px ;border-color:#56821A;text-shadow:-1px -1px 0 #3B5911;box-shadow:2px 2px 8px #111;color:#fff;background-color:#58871A;background:url(/img/ico-download.png) no-repeat 0 center,linear-gradient(#58871A,#4F7717);font-family: var(--font-semibold);}
.nicebutton.download-file:hover{background-color:#4F7717;background:url(/img/ico-download.png) no-repeat 0 center,linear-gradient(#4F7717,#58871A);color:#fff;}
.nicebutton.buy-now{font-size:36px;text-transform:none;text-align:left;padding: 8px 32px 8px 64px;border-color:#56821A;text-shadow:-1px -1px 0 #3B5911;box-shadow:2px 2px 8px #111;color:#fff;background-color:#58871A;background:url(/img/ico-cart.png) no-repeat 0 center;background:url(/img/ico-cart.png) no-repeat 0 center,linear-gradient(#58871A,#4F7717)}
.nicebutton.buy-now:hover{background-color:#4F7717;background:url(/img/ico-cart.png) no-repeat 0 center;background:url(/img/ico-cart.png) no-repeat 0 center,linear-gradient(#4F7717,#58871A);color:#fff;}
.nicebutton.buy-now.secondary{margin-left:1ex;padding-right:0}
.nicebutton.forums{font-size:36px;font-weight:normal;text-transform:none;text-align:left;padding: 8px 32px 8px 64px ;border-color:#56821A;text-shadow:-1px -1px 0 #3B5911;box-shadow:2px 2px 8px #111;color:#fff;background-color:#58871A;background:url(/img/ico-forums.png) no-repeat 4px center;background:url(/img/ico-forums.png) no-repeat 4px center,linear-gradient(#58871A,#4F7717)}
.nicebutton.forums:hover{background-color:#4F7717;background:url(/img/ico-forums.png) no-repeat 4px center;background:url(/img/ico-forums.png) no-repeat 4px center,linear-gradient(#4F7717,#58871A)}
.nicebutton.forums.secondary{margin-left:1ex;padding-right:0}
.nicebutton.download-file.small{font-size:12px;font-weight:700;min-width:92px;line-height:21px;padding:4px 24px;background-image:none;background-color:#58871A;background:linear-gradient(#58871A,#4F7717);box-shadow: none;}
.secondary-button-text{display:none}
.highlight{background:red}
@media (max-width:992px) {
    .nicebutton.download-file{font-size:30px;}
}
@media (max-width: 380px)
{
	.nicebutton.download-file
	{
		font-size: var(--font-30);
	}
}
.nicebutton.download-file
{
	display: inline-block;
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
	line-height: 1.2;
}

#content .nicebutton.download-file:hover{text-decoration:none}
#content .nicebutton.buy-now:hover{text-decoration:none}
/* TABLE */
table.table thead {background-color: var(--color-lightblue);color: var(--color-white);}
table.table th{font-size: var(--font-22);font-family: var(--font-semibold);color: var(--color-white);text-align: center;}
table.table thead th a {font: inherit;}
table.table td{font-size: var(--font-18);font-family: var(--font-regular);color: var(--color-black);text-align: center;}

thead.table-dark th
{
	background-color: rgb(70, 70, 70);
	color: #fff;
}

/*  */
.features{background-color:rgb(0 0 0 / 66%)}
.features th{color:var(--color-white)}
.features .mainheader th{color:var(--color-grey)}
.features .header th{background-color:var(--color-grey);text-align: left;color:var(--color-white)!important;font-size: var(--font-20);}
.features td{width:17%;color:#fff}
.features tr th a{color:#fff}
.features .starter{background-color:rgb(255 255 255 / 20%)}
.features .enterprise{background-color:#ff8414;color:#fff}
.features th.enterprise{color:#fff}
.features th.title{color:#fff}
.features .mainheader th a{color:var(--color-white)}
/*  */
.sm-card {box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;border-radius: var(--radius-10);padding: var(--space-20);background-color: #fff;}
.sm-card .img-card img{height: 65px;object-fit: contain;}
.xs-card {box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;border-radius: var(--radius-10);padding: var(--space-10) 5px;background-color: #fff;}
.xs-card .img-card img{height: 40px;object-fit: contain;}
.xs-card p {font-size: 16px!important;}
/*  */
.text-card-group .text-card{box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;border-radius: var(--radius-10);padding: var(--space-10);background-color: #fff;display: block;width: 100%;text-align: center;}
.text-card-group .text-card:hover{background-color: var(--color-lightblue);color: var(--color-white);}
/*  */
.host { width: 100%;}
.client { margin-left: unset;}
.network h5 {background-color: rgba(255, 132, 20, 0.75);font-weight: bold;color: var(--color-white); padding: 0.5em 1em;}
pre .integer, pre .constant.numeric{color: var(--color-orange);}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes waveMotion {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
img.img-soften
{
    filter: saturate(0.9) contrast(0.95);
}
img.img-muted
{
    filter: saturate(0.6) contrast(0.8) brightness(1.08);
}
.addons-img img
{
	opacity: 0.5;
}
.stats-wrapper .table td.value {
	text-align: right;
	font-variant-numeric: tabular-nums;
	padding-right: 32px;
}
#buyonsteam a {
	color: #6c757d;
	text-decoration: none;
	font-size: 0.9rem;
}
#buyonsteam a:hover {
	color: #495057;
	text-decoration: underline;
}
