 @font-face {
     font-family: Poppins-Regular;
     src: url('../fonts/Poppins/Poppins-Regular.ttf');
 }

 @font-face {
     font-family: Poppins-Bold;
     src: url('../fonts/Poppins/Poppins-Bold.ttf');
 }

 @font-face {
     font-family: Lato-Regular;
     src: url('../fonts/Lato/Lato-Regular.ttf');
 }

 @font-face {
     font-family: Lato-Light;
     src: url('../fonts/Lato/Lato-Light.ttf');
 }

 @font-face {
     font-family: Lato-Bold;
     src: url('../fonts/Lato/Lato-Bold.ttf');
 }


 :root {
     --white: #FFF;
     --gold: #CC9900;
     --gray: #333;
     --lightgray: #dadada;
     --gray-dark: #222;
     --enfont: 'Poppins', sans-serif;
     --thfont: 'IBM Plex Sans Thai', sans-serif;
 }

 body {
     -webkit-font-smoothing: antialiased;
     /*    -moz-osx-font-smoothing: grayscale;*/
     scroll-behavior: smooth;
     text-rendering: optimizeLegibility;
 }

 *,
 *:before,
 *:after {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
 }

 a {
     color: var(--gold);
     text-decoration: none;
     outline: none;
 }

 a:hover,
 a:focus {
     color: var(--gold) !important;
     text-decoration: none
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p,
 td {
     font-family: var(--enfont);
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
 }

 #preloader {
     position: fixed;
     inset: 0;
     z-index: 9999;
     overflow: hidden;
     background: var(--white);
     background-size: cover;
     transition: all 0.6s ease-out;
     width: 100%;
     height: 100vh
 }

 #preloader:before,
 #preloader:after {
     content: "";
     position: absolute;
     border: 4px solid var(--gold);
     border-radius: 50%;
     -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
     animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite
 }

 #preloader:after {
     -webkit-animation-delay: -1s;
     animation-delay: -1s;
     background: url('../img/navetechlogo.svg') no-repeat 50% 50%;
     background-size: 30px 30px
 }

 @-webkit-keyframes animate-preloader {
     0% {
         width: 20px;
         height: 20px;
         top: calc(50% - 10px);
         left: calc(50% - 10px);
         opacity: 1
     }

     100% {
         width: 80px;
         height: 80px;
         top: calc(50% - 40px);
         left: calc(50% - 40px);
         opacity: 0
     }

 }

 @keyframes animate-preloader {
     0% {
         width: 20px;
         height: 20px;
         top: calc(50% - 10px);
         left: calc(50% - 10px);
         opacity: 1
     }

     100% {
         width: 80px;
         height: 80px;
         top: calc(50% - 40px);
         left: calc(50% - 40px);
         opacity: 0
     }

 }


 /*  product menu */
 .prodbox {
     position: relative;
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     border-bottom: 1px solid #dadada !important;
     padding: 40px 30px;
     box-shadow: 0 0 5px 1px rgba(0, 0, 0, .1);
 }

 .prodbox:hover,
 .prodbox:focus {
     color: var(--gold);
     border-bottom: 1px solid var(--gold) !important;
 }

 .prodbox span {
     width: 50%;
     display: flex;
     flex-direction: column;
     text-align: left;
 }

 .prodbox span h3 {
     font-size: 1rem;
 }

 .prodbox span p {
     font-family: var(--thfont);
     font-size: 1rem;
 }

 /**/
 .prodboxbg {
     width: 100% !important;
     height: auto;
     min-height: 130px;
     position: relative;
     overflow: hidden;
     opacity: .8;
 }

 .prodboxbg:hover {
     opacity: 1;
 }

 .prodboxbg img {
     width: 100% !important;
     height: auto;
     min-height: 130px;
     position: absolute;
     left: 0;
     right: 0;
     top: 0;
     bottom: 0;
 }

 .prodboxbg span {

     /* Title  */
     position: absolute !important;
     left: 0 !important;
     top: 50% !important;
     transform: translateY(-50%) !important;
     padding: 20px;
     color: #FFF !important;
     text-align: left !important;
     z-index: 2 !important;
 }

 .prodboxbg span h3 {
     font-size: 1rem;
 }

 .prodboxbg span p {
     font-family: var(--thfont);
     font-size: .9rem;
     width: 90%;
     max-width: 200px;
     white-space: normal;
 }

 @media(max-width:992px) {

     .prodboxbg,
     .prodboxbg:hover {
         background-size: cover;
     }

     .prodboxbg:hover {
         background-position: center left;
     }

     .prodboxbg span p {
         width: 100%;
         max-width: 480px;
     }

 }

 @media(max-width:480px) {
     .prodbox {
         padding: 20px 30px 10px 30px !important;
     }

     .prodbox:hover {
         border-bottom: 1px solid var(--gold) !important;
     }

     .prodbox span {
         width: 100%;
         text-align: left;
         display: block;
     }

     .prodbox img {
         display: none;
     }

 }

 section {
     padding: 60px 0;
     overflow: hidden
 }

 @media(max-width:480px) {

     section,
     .products {
         padding: 20px 0 !important;
     }
 }

 .section-header {
     text-align: center;
     padding-bottom: 40px
 }

 .section-header span,
 .section-header h3 {
     font-family: var(--thfont);
     font-size: 3rem;
     font-weight: 300;
     margin-bottom: 20px;
     color: var(--gray);
 }

 .section-header span img {
     width: 200px;
     height: auto;
     display: flex;
 }

 .section-header p {
     font-family: var(--thfont);
     font-size: 1.3rem;
     margin: 0 auto;
     color: var(--gray-light)
 }

 @media (min-width:1280px) {
     .section-header p {
         max-width: 80%
     }

 }

 .breadcrumbs {
     padding: 0;
     min-height: initial;
 }

 .breadcrumbs ol {
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     padding: 0;
     margin: 0;
     font-size: 1em;
     text-align: center;
     flex-direction: row;
     justify-content: center;
 }

 .breadcrumbs ol li {
     color: var(--gold);
 }

 .breadcrumbs a {
     color: var(--gold);
     border-bottom: 1px dashed var(--gold);
 }

 .breadcrumbs ol li+li {
     padding-left: 10px
 }

 .breadcrumbs ol li+li::before {
     font-family: bootstrap-icons;
     display: inline-block;
     font-size: 1em;
     padding-right: 10px;
     color: var(--gold);
     content: "\F138";
     vertical-align: text-bottom;
 }

 @media (max-width:992px) {
     .breadcrumbs .d-flex {
         display: block !important
     }

     .breadcrumbs h2 {
         margin-bottom: 10px;
         font-size: 24px
     }

     .breadcrumbs ol {
         display: block
     }

     .breadcrumbs ol li {
         display: inline-block
     }

 }

 .scroll-top {
     position: fixed;
     visibility: hidden;
     opacity: 0;
     right: 15px;
     bottom: 15px;
     z-index: 995;
     background: var(--gold);
     width: 40px;
     height: 40px;
     border-radius: 4px;
     transition: all 0.4s
 }

 .scroll-top i {
     font-size: 24px;
     color: var(--white);
     line-height: 0
 }

 .scroll-top:hover {
     background: rgba(var(--white), 0.85);
     color: var(--white)
 }

 .scroll-top.active {
     visibility: visible;
     opacity: 1
 }

 @media (max-width:640px) {
     .hero-animated h2 {
         font-size: 32px
     }

     .hero-animated p {
         font-size: 18px;
         margin-bottom: 30px
     }

     .hero-animated .btn-get-started,
     .hero-animated .btn-watch-video {
         font-size: 14px
     }

 }

 @-webkit-keyframes up-down {
     0% {
         transform: translateY(10px)
     }

     100% {
         transform: translateY(-10px)
     }

 }

 @keyframes up-down {
     0% {
         transform: translateY(10px)
     }

     100% {
         transform: translateY(-10px)
     }

 }

 /* banner img */
 .hero {
     width: 100%;
     height: 100%;
     overflow: hidden;
     position: relative;
 }

 .hero .carousel-item {
     overflow: hidden;
     width: 100%;
 }

 .carousel-inner::after {
     content: ''
 }

 .carousel-control-next,
 .carousel-control-prev {
     width: auto;
 }



 .hero h1,
 .hero h2,
 .hero h3,
 .hero h4,
 .hero h5 {

     /* Hero titile */
     font-family: var(--thfont);
     color: var(--gray);
     margin-bottom: 25px;
     font-size: 1.8rem;
     font-weight: 600;
     -webkit-animation: fadeInDown 1s both 0.2s;
     animation: fadeInDown 1s both 0.2s
 }

 .imgbgAnimate {

     /* Animation slider */
     width: 100%;
     min-height: 600px;
     position: relative;
     margin: 80px 0 0 0;
     z-index: 1;
     background-repeat: no-repeat;
     background-position: 50% 50%;
 }

 .imgbgslider {

     /* Background slider */
     width: 100%;
     min-height: 600px;
     position: absolute;
     z-index: 1;
     background-repeat: no-repeat;
     background-position: 50% 50%;
 }

 .heroContainer .imginstance {
     width: 100%;
     max-width: 640px;
 }

 .imginstance {

     /* Release image */
     position: absolute;
     width: 100%;
     max-width: 800px;
     height: auto;
     z-index: 9;
     background-size: auto 100%;
     background-repeat: no-repeat;
     background-position: 0 0;
 }

 /* Banner image  */
 .imgbgsliderOnly {

     /* background  */
     position: relative;
     width: 100%;
 }

 .imgbgsliderOnly img {
     width: 100vw !important;
     height: auto;
 }

 /*  */
 .imgbgAnimate.bgPT {
     background-repeat: repeat !important;
     background-size: 28px auto;
 }

 .imgbgAnimate.gbFB {
     background-repeat: no-repeat !important;
     background-size: cover;
 }

 .imginstance.CC {

     /* ตำแหน่งรูป HERO กึ่งกลาง*/
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .imginstance.LC,
 .imginstance.CL {

     /* ตำแหน่งรูป HERO กลางซ้าย*/
     top: 50%;
     left: 5%;
     transform: translate(0, -50%);
 }

 .imginstance.RC,
 .imginstance.CR {

     /* ตำแหน่งรูป HERO กลางขวา */
     top: 50%;
     right: 0;
     transform: translate(0, -50%);
 }

 .imginstance img {
     position: relative;
     width: 100%;
     max-width: 700px;
     padding: 30px;
 }

 .herotextbox {

     /* กล่องข้อความ */
     position: absolute;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     justify-content: center;
     width: 100%;
     max-width: 640px;
     z-index: 10;
     padding: 0 5%;
     user-select: none;
     -webkit-user-select: none;
     -khtml-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
 }

 .herotextbox h1,
 .herotextbox h2,
 .herotextbox h3,
 .herotextbox h4,
 .herotextbox p {
     font-size: 2rem;
     letter-spacing: .5px;
     margin-bottom: 20px;
     width: 100%;
 }

 .herotextbox p {
     font-family: var(--thfont);
     font-size: 1.2rem;
     color: #333;
     width: 100%;
 }

 .herotextbox.bright * {
     color: #FFF !important;
     text-shadow: 0 0 1px #000;
 }

 .herotextbox.dark *:not(a) {
     color: #333 !important;
     font-weight: 600 !important;
     text-shadow: none
 }

 .herotextbox.LT,
 .herotextbox.TL {
     left: 0;
     top: 100px;
     text-align: left;
 }

 .herotextbox.LB,
 .herotextbox.BL {
     left: 0;
     bottom: 100px;
     text-align: left;
 }

 .herotextbox.RT,
 .herotextbox.TR {
     right: 0;
     top: 100px;
     text-align: right;
 }

 .herotextbox.RB,
 .herotextbox.BR {
     right: 0;
     bottom: 100px;
     text-align: right;
 }

 .herotextbox.RB .btn-get-started,
 .herotextbox.BR .btn-get-started,
 .herotextbox.RT .btn-get-started,
 .herotextbox.TR .btn-get-started {
     margin: 0 0 0 auto;
 }

 .herotextbox.CC {
     top: calc(50% + 20px);
     left: 50%;
     transform: translate(-50%, -50%);
     text-align: center;
 }

 .herotextbox.CC .btn-get-started {
     margin: 0 auto !important;
 }

 .herotextbox.CT,
 .herotextbox.TC {
     top: 100px;
     left: 50%;
     transform: translate(-50%, 0);
     text-align: center;
 }

 .herotextbox.TC .btn-get-started,
 .herotextbox.CT .btn-get-started,
 .herotextbox.BC .btn-get-started,
 .herotextbox.CB .btn-get-started {
     margin: 0 auto !important;
 }

 .herotextbox.CB,
 .herotextbox.BC {
     bottom: 0;
     left: 50%;
     transform: translate(-50%, 0);
     text-align: center;
 }

 .herotextbox.CL,
 .herotextbox.LC {
     top: calc(50% + 20px);
     left: 0;
     transform: translate(0, -50%);
 }

 .herotextbox.CR,
 .herotextbox.RC {
     top: calc(50% + 20px);
     right: 0;
     transform: translate(0, -50%);
 }

 /* Only one hero */
 .heroContainer {
     width: 100%;
     min-height: 600px;
     margin: 80px 0 0 0;
     position: relative;
 }

 .heroContainer .imginstance img {

     /* 1 x 1  */
     left: 0;
     right: 0;
     top: 0;
     width: 100%;
     /*  position: absolute;*/
 }

 /**/
 @media(max-width:992px) {

     .imgbgAnimate,
     .imginstance {
         position: relative;
     }

     .imginstance {

         /* Force all to center */
         position: absolute !important;
         width: 100% !important;
         height: auto;
         max-width: 480px !important;
         left: 50% !important;
         top: 0 !important;
         transform: translate(-50%, 0) !important;
         background-position: 50% 0 !important;
     }

     .herotextbox {
         position: absolute !important;
         left: 50% !important;
         top: auto !important;
         bottom: 50px !important;
         transform: translate(-50%, 0) !important;
         padding: 0 10%;
     }

     .herotextbox * {
         text-align: center !important;
     }

     .herotextbox a,
     .herotextbox button {
         margin: 0 auto !important;
     }

     .heroContainer .imgbgslider {
         min-height: 700px;
     }

 }

 .nopad {
     padding: 0 !important;
     margin: 0 !important;
 }

 @media (max-width:768px) {
     .hero h2 {
         font-size: 30px
     }

 }

 .hero p {
     color: var(--gray-light);
     -webkit-animation: fadeInDown 1s both 0.4s;
     animation: fadeInDown 1s both 0.4s;
     font-weight: 500;
     margin-bottom: 30px
 }

 .hero .img {
     margin-bottom: 40px;
     -webkit-animation: fadeInDownLite 1s both;
     animation: fadeInDownLite 1s both
 }

 .hero .btn-get-started {
     font-family: var(--font-secondary);
     font-weight: 400;
     font-size: 16px;
     letter-spacing: 1px;
     display: inline-block;
     padding: 8px 32px;
     border-radius: 5px;
     transition: 0.5s;
     -webkit-animation: fadeInUp 1s both 0.6s;
     animation: fadeInUp 1s both 0.6s;
     /*  color: var(--gold);
        border: 2px solid var(--gold)*/
     background: var(--gold);
     color: var(--white) !important
 }

 .hero .btn-get-started:hover {
     background: var(--gold);
     color: var(--white) !important
 }

 .hero .carousel-control-prev {
     justify-content: start
 }

 @media (min-width:640px) {
     .hero .carousel-control-prev {
         padding-left: 15px
     }

 }

 .hero .carousel-control-next {
     justify-content: end
 }

 @media (min-width:640px) {
     .hero .carousel-control-next {
         padding-right: 15px
     }

 }

 .hero .carousel-control-next-icon,
 .hero .carousel-control-prev-icon {
     background: none;
     font-size: 26px;
     line-height: 0;
     background: rgba(var(--gray), 0.4);
     color: rgba(var(--white), 0.98);
     border-radius: 50px;
     width: 54px;
     height: 54px;
     display: flex;
     align-items: center;
     justify-content: center
 }

 .hero .carousel-control-next-icon {
     padding-left: 3px
 }

 .hero .carousel-control-prev-icon {
     padding-right: 3px
 }

 .hero .carousel-control-prev,
 .hero .carousel-control-next {
     transition: 0.3s
 }

 .hero .carousel-control-prev:focus,
 .hero .carousel-control-next:focus {
     opacity: 0.5
 }

 .hero .carousel-control-prev:hover,
 .hero .carousel-control-next:hover {
     opacity: 0.9
 }

 .hero .carousel-indicators li {
     cursor: pointer;
     background: rgba(0, 0, 0, 1);
     overflow: hidden;
     border: 0;
     width: 24px;
     height: 10px;
     border-radius: 5px;
     opacity: 0.6;
     transition: 0.3s
 }

 .hero .carousel-indicators li.active {
     opacity: 1;
     background: var(--gold)
 }

 @-webkit-keyframes fadeIn {
     from {
         opacity: 0
     }

     to {
         opacity: 1
     }

 }

 @keyframes fadeIn {
     from {
         opacity: 0
     }

     to {
         opacity: 1
     }

 }

 @-webkit-keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translate3d(0, 100%, 0)
     }

     to {
         opacity: 1;
         transform: translate3d(0, 0, 0)
     }

 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translate3d(0, 100%, 0)
     }

     to {
         opacity: 1;
         transform: translate3d(0, 0, 0)
     }

 }

 @-webkit-keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translate3d(0, -100%, 0)
     }

     to {
         opacity: 1;
         transform: translate3d(0, 0, 0)
     }

 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translate3d(0, -100%, 0)
     }

     to {
         opacity: 1;
         transform: translate3d(0, 0, 0)
     }

 }

 @-webkit-keyframes fadeInDownLite {
     from {
         opacity: 0;
         transform: translate3d(0, -10%, 0)
     }

     to {
         opacity: 1;
         transform: translate3d(0, 0, 0)
     }

 }

 @keyframes fadeInDownLite {
     from {
         opacity: 0;
         transform: translate3d(0, -10%, 0)
     }

     to {
         opacity: 1;
         transform: translate3d(0, 0, 0)
     }

 }

 .hero-static {
     width: 100%;
     background-repeat: no-repeat;
     background-position: 50% 50%;
     background-size: cover;
     position: relative;
     padding: 0;
     overflow: hidden;
 }

 .blurry {
     backdrop-filter: blur(8px);
 }

 .boxposition {
     position: absolute !important;
     top: 60% !important;
     right: 0 !important;
     transform: translateY(-50%);
     width: 90%;
     max-width: 480px;
     z-index: 99;
 }

 .boxposition h1,
 .boxposition h2,
 .boxposition h3,
 .boxposition h4,
 .boxposition p {
     color: #FFF !important;
     text-shadow: 0 0 3px rgba(0, 0, 0, .2);
 }

 @media(max-width:1200px) {
     .hero-static {
         background-position: 50% 0;
         background-size: cover;
     }

 }

 @media (max-width:640px) {

     .hero-static .btn-get-started,
     .hero-static .btn-watch-video {
         font-size: 14px;
         white-space: nowrap;
         text-align: center;
         overflow: hidden;
         text-overflow: ellipsis;
     }

 }

 @media(max-width:480px) {
     .boxposition {
         left: 20px !important;
         right: 20px !important;
     }

     .boxposition h1,
     .boxposition h2,
     .boxposition h3,
     .boxposition h4 {
         font-size: 1.5rem;
     }

 }

 .hero-static h1,
 .hero-static h2,
 .hero-static h3 {
     margin: 0 0 10px 0;
     font-size: 2rem;
     line-height: 2rem;
     width: 100%;
     font-weight: 600;
     font-family: 'IBM Plex Sans Thai', sans-serif;
     letter-spacing: 1px;
 }

 .hero-static h1 span,
 .hero-static h2 span,
 .hero-static h3 span {
     color: var(--gold)
 }

 .heroDefault {

     /*Default background Hero */
     background: url('../img/hero1.jpg') #dadada no-repeat 50% 50%;
     background-size: cover;
 }

 .hero-static p {
     font-family: var(--thfont) !important;
     color: rgba(0, 0, 0, .8);
     margin: 0 0 30px 0;
     font-size: 20px;
     font-weight: 400;
     width: 100%;
 }

 .hero-static .btn-get-started {
     font-size: 1.1rem;
     font-weight: 400;
     display: inline-block;
     padding: 10px 28px;
     border-radius: 4px;
     transition: 0.5s;
     color: var(--white);
     background: var(--gold);
     font-family: var(--font-secondary);
 }

 .hero-static .btn-get-started:hover {
     background: var(--gold) !important;
     color: var(--white) !important;
 }

 .hero-static .btn-watch-video {
     font-size: 16px;
     transition: 0.5s;
     margin-left: 25px;
     font-family: var(--font-secondary);
     color: var(--gray);
     font-weight: 600
 }

 .hero-static .btn-watch-video i {
     color: var(--gold);
     font-size: 32px;
     transition: 0.3s;
     line-height: 0;
     margin-right: 8px
 }

 .hero-static .btn-watch-video:hover {
     color: var(--gold)
 }

 .hero-static .btn-watch-video:hover i {
     color: rgba(255, 255, 255, .8)
 }

 /**/
 .featured-services .service-item {
     padding: 30px;
     transition: all ease-in-out 0.4s;
     background: var(--white);
     height: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .featured-services .service-item .icon {
     margin-bottom: 10px
 }

 .featured-services .service-item .icon i {
     color: var(--gold);
     font-size: 36px;
     transition: 0.3s
 }

 .brandlogo {
     width: 120px;
     height: auto;
 }

 /* icon image */
 .service-item .icon img {
     width: 80px;
     height: auto;
     margin: 0 auto;
 }

 .featured-services .service-item h4 {
     font-weight: 600;
     margin-bottom: 15px;
     font-size: 24px;
     text-align: left;
 }

 .featured-services .service-item h4 a {
     color: var(--gray);
     transition: ease-in-out 0.3s
 }

 .featured-services .service-item p {
     font-family: var(--thfont) !important;
     line-height: 24px !important;
     font-weight: 500 !important;
     font-size: 1.2rem !important;
     text-align: left !important;
     margin-bottom: 0 !important;
     color: #333 !important;
     text-align: center !important;
 }

 .featured-services .service-item:hover {
     transform: translateY(-10px);
     box-shadow: 0px 0 60px 0 rgba(var(--gray), 0.1)
 }

 .featured-services .service-item:hover h4 a {
     color: var(--gold)
 }

 .about .about-img {
     position: relative;
     margin: 60px 0 0 60px
 }

 .about .about-img:before {
     position: absolute;
     inset: -60px 0 0 -60px;
     z-index: -1;
     content: "";
     background: url("../img/about-bg.png") top left;
     background-repeat: no-repeat
 }

 @media (max-width:575px) {
     .about .about-img {
         margin: 30px 0 0 30px
     }

     .about .about-img:before {
         inset: -30px 0 0 -30px
     }

 }

 .about h3 {
     color: var(--gray);
     font-family: var(--font-secondary);
     font-weight: 300;
     font-size: 2em;
     margin-bottom: 0
 }

 @media (max-width:768px) {
     .about h3 {
         font-size: 28px
     }

 }

 .about .nav-pills {
     border-bottom: 1px solid rgba(var(--gray), 0.2);
 }

 .about .nav-pills li+li {
     margin-left: 40px
 }

 .about .nav-link {
     background: none;
     font-size: 18px;
     font-weight: 400;
     color: var(--gray);
     padding: 12px 0;
     margin-bottom: -2px;
     border-radius: 0;
     font-family: var(--font-secondary)
 }

 .about .nav-link.active {
     color: var(--gold);
     background: none;
     font-weight: 600;
 }

 @media (max-width:575px) {
     .about .nav-link {
         font-size: 16px
     }

 }

 @media(max-width:480px) {
     .about .nav-pills li+li {
         margin: 0;

     }

     .about .nav-pills {
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
     }

     .about .nav-link.active {
         color: var(--gold);
         background: none;
         font-weight: 600;
     }

 }

 .about .tab-content h1,
 .about .tab-content h2,
 .about .tab-content h3,
 .about .tab-content h4 {
     font-family: var(--thfont);
     font-size: 1.3rem;
     margin: 20px 0;
     font-weight: 700;
     color: var(--gray);
 }

 .about .tab-content p {
     font-family: var(--thfont);
     font-size: 1rem;
     color: var(--gray)
 }

 .about .tab-content p.fst-italic {
     font-size: 1.3rem;
     color: var(--gold);
 }

 .about .tab-content i {
     font-size: 1.3rem;
     color: var(--gold);
     margin: 30px 0 0 0;
 }

 /**/
 .products {
     padding: 60px 0
 }

 .products a * {
     color: var(--gray);
 }

 .productView {
     position: relative;
 }

 .productView img {

     /* img hover */
     width: 100%;
     opacity: 1;
     transition: opacity ease-in-out .35s
 }

 .productView img:first-child {
     position: absolute;
     left: 0;
     right: 0;
     top: 0;
     bottom: 0;
 }

 .productView img:first-child:hover {
     filter: none;
     opacity: 0;
     /* hide element */
 }

 .productView .proCap {
     padding: 20px;
 }

 .productView .proCap h3 {
     font-size: 1.2rem;
     font-family: var(--thfont);
     font-weight: 600;
 }

 .productView .proCap p {
     font-size: 1rem;
     font-family: var(--thfont);
 }

 .productView .linksbox {
     color: var(--gold);
 }

 .productView .linksbox:after {
     font-family: bootstrap-icons !important;
     content: "\F138";
     font-weight: normal;
     vertical-align: middle;
     margin-left: 5px;
     transition: all ease-in-out .35s;
 }

 .productView:hover .linksbox:after {
     color: var(--gold);
     margin-left: 30px;
 }

 /**/
 .cta {
     padding: 0;
     margin-bottom: 60px
 }

 .cta .container {
     padding: 80px;
     background: rgba(var(--gray), 0.1);
     border-radius: 15px
 }

 @media (max-width:992px) {
     .cta .container {
         padding: 60px
     }

 }

 .cta .content h3 {
     color: var(--gray);
     font-size: 48px;
     font-weight: 700
 }

 .cta .content h3 em {
     font-style: normal;
     position: relative
 }

 .cta .content h3 em:after {
     content: "";
     position: absolute;
     left: 0;
     right: 0;
     bottom: 10px;
     height: 10px;
     background: var(--white);
     z-index: -1
 }

 .cta .content p {
     color: var(--gray);
     font-size: 18px
 }

 .cta .content .cta-btn {
     color: var(--white);
     font-weight: 500;
     font-size: 16px;
     display: inline-block;
     padding: 12px 40px;
     border-radius: 5px;
     transition: 0.5s;
     margin-top: 10px;
     background: rgba(var(--gold), 0.9)
 }

 .cta .content .cta-btn:hover {
     background: var(--gold)
 }

 .cta .img {
     position: relative
 }

 .cta .img:before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(var(--white), 0.5);
     border-radius: 15px;
     transform: rotate(12deg)
 }

 .cta .img:after {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(var(--white), 0.9);
     border-radius: 15px;
     transform: rotate(6deg)
 }

 .cta .img img {
     position: relative;
     z-index: 3;
     border-radius: 15px
 }

 .onfocus {
     padding: 0
 }

 .onfocus .video-play {
     min-height: 400px;
     background: linear-gradient(rgba(var(--color-black-rgb), 0.4), rgba(var(--color-black-rgb), 0.7)), url("../img/onfocus-video-bg.jpg") center center;
     background-size: cover
 }

 .onfocus .content {
     background: linear-gradient(rgba(var(--gray), 0.5), rgba(var(--gray), 0.8)), url("../img/onfocus-content-bg.jpg") center center;
     background-size: cover;
     color: rgba(255, 255, 255, .8);
     padding: 40px
 }

 @media (min-width:768px) {
     .onfocus .content {
         padding: 80px
     }

 }

 .onfocus .content h3 {
     font-size: 32px;
     color: var(--white)
 }

 .onfocus .content ul {
     list-style: none;
     padding: 0
 }

 .onfocus .content ul li {
     padding-bottom: 10px
 }

 .onfocus .content ul i {
     font-size: 20px;
     padding-right: 4px;
     color: var(--gold)
 }

 .onfocus .content p:last-child {
     margin-bottom: 0
 }

 .onfocus .play-btn {
     width: 94px;
     height: 94px;
     background: radial-gradient(var(--gold) 50%, rgba(var(--white), 0.4) 52%);
     border-radius: 50%;
     display: block;
     position: absolute;
     left: calc(50% - 47px);
     top: calc(50% - 47px);
     overflow: hidden
 }

 .onfocus .play-btn:before {
     content: "";
     position: absolute;
     width: 120px;
     height: 120px;
     -webkit-animation-delay: 0s;
     animation-delay: 0s;
     -webkit-animation: pulsate-btn 2s;
     animation: pulsate-btn 2s;
     -webkit-animation-direction: forwards;
     animation-direction: forwards;
     -webkit-animation-iteration-count: infinite;
     animation-iteration-count: infinite;
     -webkit-animation-timing-function: steps;
     animation-timing-function: steps;
     opacity: 1;
     border-radius: 50%;
     border: 5px solid rgba(var(--white), 0.7);
     top: -15%;
     left: -15%;
     background: rgba(198, 16, 0, 0)
 }

 .onfocus .play-btn:after {
     content: "";
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translateX(-40%) translateY(-50%);
     width: 0;
     height: 0;
     border-top: 10px solid transparent;
     border-bottom: 10px solid transparent;
     border-left: 15px solid var(--white);
     z-index: 100;
     transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19)
 }

 .onfocus .play-btn:hover:before {
     content: "";
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translateX(-40%) translateY(-50%);
     width: 0;
     height: 0;
     border: none;
     border-top: 10px solid transparent;
     border-bottom: 10px solid transparent;
     border-left: 15px solid var(--white);
     z-index: 200;
     -webkit-animation: none;
     animation: none;
     border-radius: 0
 }

 .onfocus .play-btn:hover:after {
     border-left: 15px solid var(--gold);
     transform: scale(20)
 }

 @-webkit-keyframes pulsate-btn {
     0% {
         transform: scale(0.6, 0.6);
         opacity: 1
     }

     100% {
         transform: scale(1, 1);
         opacity: 0
     }

 }

 @keyframes pulsate-btn {
     0% {
         transform: scale(0.6, 0.6);
         opacity: 1
     }

     100% {
         transform: scale(1, 1);
         opacity: 0
     }

 }


 @keyframes fadeIn {
     0% {
         opacity: 0
     }

     100% {
         opacity: 1
     }

 }

 .portfolio .portfolio-flters {
     padding: 0;
     margin: 0 auto 30px auto;
     list-style: none;
     text-align: center
 }

 .portfolio .portfolio-flters li {
     cursor: pointer;
     display: inline-block;
     padding: 0;
     font-size: 18px;
     font-weight: 300;
     margin: 0 10px;
     line-height: 1;
     margin-bottom: 5px;
     transition: all 0.3s ease-in-out
 }

 .portfolio .portfolio-flters li:hover,
 .portfolio .portfolio-flters li.filter-active {
     color: var(--gold)
 }

 .portfolio .portfolio-flters li:first-child {
     margin-left: 0
 }

 .portfolio .portfolio-flters li:last-child {
     margin-right: 0
 }

 @media (max-width:575px) {
     .portfolio .portfolio-flters li {
         font-size: 14px;
         margin: 0 5px
     }

 }

 .portfolio .portfolio-item {
     position: relative;
     border: 1px solid var(--white);
     overflow: hidden;
     z-index: 1
 }

 .portfolio .portfolio-item img {
     transition: all 0.3s
 }

 .portfolio .portfolio-item:before {
     content: "";
     inset: 0;
     position: absolute;
     background: rgba(0, 0, 0, .8);
     z-index: 2;
     transition: 0.5s;
     visibility: hidden;
     opacity: 0
 }

 .portfolio .portfolio-item .portfolio-info {
     opacity: 0;
     position: absolute;
     inset: auto 40px 40px 40px;
     z-index: 3;
     transition: all ease-in-out 0.3s;
     padding: 20px
 }

 .portfolio .portfolio-item .portfolio-info h4 {
     font-size: 18px;
     color: var(--white);
     padding-right: 50px
 }

 .portfolio .portfolio-item .portfolio-info .preview-link,
 .portfolio .portfolio-item .portfolio-info .details-link {
     position: absolute;
     right: 50px;
     font-size: 24px;
     top: calc(50% - 14px);
     color: rgba(var(--white), 0.7);
     transition: 0.3s;
     line-height: 0
 }

 .portfolio .portfolio-item .portfolio-info .preview-link:hover,
 .portfolio .portfolio-item .portfolio-info .details-link:hover {
     color: var(--white)
 }

 .portfolio .portfolio-item .portfolio-info .details-link {
     right: 14px;
     font-size: 28px
 }

 .portfolio .portfolio-item:hover:before {
     visibility: visible;
     opacity: 1
 }

 .portfolio .portfolio-item:hover img {
     transform: scale(1.2)
 }

 .portfolio .portfolio-item:hover .portfolio-info {
     opacity: 1;
     inset: auto 10px 0 10px
 }

 .team .team-member .member-img {
     border-radius: 8px;
     overflow: hidden
 }

 .team .team-member .social {
     position: absolute;
     left: 0;
     top: -18px;
     right: 0;
     opacity: 0;
     transition: ease-in-out 0.3s;
     display: flex;
     align-items: center;
     justify-content: center
 }

 .team .team-member .social a {
     transition: color 0.3s;
     color: var(--white);
     background: var(--gold);
     margin: 0 5px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 36px;
     height: 36px;
     border-radius: 50%;
     transition: 0.3s
 }

 .team .team-member .social a i {
     line-height: 0;
     font-size: 16px
 }

 .team .team-member .social a:hover {
     background: var(--gold-light)
 }

 .team .team-member .social i {
     font-size: 18px;
     margin: 0 2px
 }

 .team .team-member .member-info {
     padding: 30px 15px;
     text-align: center;
     box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
     background: var(--white);
     margin: -50px 20px 0 20px;
     position: relative;
     border-radius: 8px
 }

 .team .team-member .member-info h4 {
     font-weight: 400;
     margin-bottom: 5px;
     font-size: 24px;
     color: var(--gray)
 }

 .team .team-member .member-info span {
     display: block;
     font-size: 16px;
     font-weight: 400;
     color: var(--color-gray)
 }

 .team .team-member .member-info p {
     font-style: italic;
     font-size: 14px;
     line-height: 26px;
     color: var(--color-gray)
 }

 .team .team-member:hover .social {
     opacity: 1
 }

 .recent-blog-posts .post-box {
     transition: 0.3s;
     height: 100%;
     overflow: hidden;
     position: relative;
     display: flex;
     flex-direction: column
 }

 .recent-blog-posts .post-box .post-img {
     overflow: hidden;
     position: relative;
     border-radius: 10px
 }

 .recent-blog-posts .post-box .post-img img {
     transition: 0.5s
 }

 .recent-blog-posts .post-box .meta {
     margin-top: 15px
 }

 .recent-blog-posts .post-box .meta .post-date {
     font-size: 15px;
     font-weight: 400;
     color: var(--gold)
 }

 .recent-blog-posts .post-box .meta .post-author {
     font-size: 15px;
     font-weight: 400;
     color: var(--gray)
 }

 .recent-blog-posts .post-box .post-title {
     font-size: 24px;
     color: var(--gray);
     font-weight: 700;
     margin: 15px 0 0 0;
     position: relative;
     transition: 0.3s
 }

 .recent-blog-posts .post-box p {
     margin: 15px 0 0 0;
     color: rgba(var(--gray-dark-rgb), 0.7)
 }

 .recent-blog-posts .post-box .readmore {
     display: flex;
     align-items: center;
     line-height: 1;
     transition: 0.3s;
     margin-top: 15px
 }

 .recent-blog-posts .post-box .readmore i {
     line-height: 0;
     margin-left: 4px;
     font-size: 18px
 }

 .recent-blog-posts .post-box:hover .post-title {
     color: var(--gold)
 }

 .recent-blog-posts .post-box:hover .post-img img {
     transform: scale(1.1)
 }

 .contact .map {
     margin-bottom: 40px
 }

 .contact .map iframe {
     border: 0;
     width: 100%;
     height: 400px
 }

 .contact .info {
     padding: 40px;
     box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
     overflow: hidden
 }

 .contact .info h3 {
     font-size: 24px
 }

 .contact .info p {
     color: var(--gray-light);
     margin-bottom: 30px;
     font-size: 15px
 }

 .contact .info-item+.info-item {
     padding-top: 20px;
     margin-top: 20px;
     border-top: 1px solid rgba(var(--gray), 0.15)
 }

 .contact .info-item i {
     font-size: 24px;
     color: var(--gold);
     transition: all 0.3s ease-in-out;
     margin-right: 20px
 }

 .contact .info-item h4 {
     padding: 0;
     font-size: 18px;
     margin-bottom: 5px;
     color: var(--gray)
 }

 .contact .info-item p {
     padding: 0;
     margin-bottom: 0;
     font-size: 14px;
     color: var(--gray-light)
 }

 .contact .php-email-form {
     width: 100%;
     background: var(--white)
 }

 .contact .php-email-form .form-group {
     padding-bottom: 8px
 }

 .contact .php-email-form .error-message {
     display: none;
     color: var(--white);
     background: var(--color-red);
     text-align: left;
     padding: 15px;
     font-weight: 600
 }

 .contact .php-email-form .error-message br+br {
     margin-top: 25px
 }

 .contact .php-email-form .sent-message {
     display: none;
     color: var(--white);
     background: var(--color-green);
     text-align: center;
     padding: 15px;
     font-weight: 600
 }

 .contact .php-email-form .loading {
     display: none;
     background: var(--white);
     text-align: center;
     padding: 15px
 }

 .contact .php-email-form .loading:before {
     content: "";
     display: inline-block;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     margin: 0 10px -6px 0;
     border: 5px solid var(--color-green);
     border-top-color: var(--white);
     -webkit-animation: animate-loading 1s linear infinite;
     animation: animate-loading 1s linear infinite
 }

 .contact .php-email-form input[type=text],
 .contact .php-email-form input[type=email],
 .contact .php-email-form textarea {
     border-radius: 0px;
     box-shadow: none;
     font-size: 14px
 }

 .contact .php-email-form input[type=text]:focus,
 .contact .php-email-form input[type=email]:focus,
 .contact .php-email-form textarea:focus {
     border-color: var(--gray-light)
 }

 .contact .php-email-form input[type=text],
 .contact .php-email-form input[type=email] {
     height: 48px;
     padding: 10px 15px
 }

 .contact .php-email-form textarea {
     padding: 10px 12px;
     height: 290px
 }

 .contact .php-email-form button[type=submit] {
     background: var(--gold);
     border: 0;
     padding: 13px 50px;
     color: var(--white);
     transition: 0.4s;
     border-radius: 0
 }

 .contact .php-email-form button[type=submit]:hover {
     background: rgba(var(--white), 0.85)
 }

 @-webkit-keyframes animate-loading {
     0% {
         transform: rotate(0deg)
     }

     100% {
         transform: rotate(360deg)
     }

 }

 @keyframes animate-loading {
     0% {
         transform: rotate(0deg)
     }

     100% {
         transform: rotate(360deg)
     }

 }

 .portfolio-details {
     padding-top: 40px
 }

 .portfolio-details .portfolio-details-slider img {
     width: 100%
 }

 .portfolio-details .portfolio-details-slider .swiper-pagination {
     margin-top: 20px;
     position: relative
 }

 .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
     width: 12px;
     height: 12px;
     background-color: var(--white);
     opacity: 1;
     border: 1px solid var(--gold)
 }

 .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
     background-color: var(--gold)
 }

 .portfolio-details .portfolio-info {
     padding: 30px;
     box-shadow: 0px 0 30px rgba(var(--gray), 0.15)
 }

 .portfolio-details .portfolio-info h3 {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 20px;
     padding-bottom: 20px;
     border-bottom: 1px solid var(--gray-light)
 }

 .portfolio-details .portfolio-info ul {
     list-style: none;
     padding: 0;
     font-size: 15px
 }

 .portfolio-details .portfolio-info ul li+li {
     margin-top: 10px
 }

 .portfolio-details .portfolio-description {
     padding-top: 30px
 }

 .portfolio-details .portfolio-description h2 {
     font-size: 26px;
     font-weight: 700;
     margin-bottom: 20px
 }

 .portfolio-details .portfolio-description p {
     padding: 0
 }

 /*  */
 .event .posts-list article {
     box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
     padding: 30px;
     height: 100%
 }

 .event .posts-list article+article {
     margin-top: 60px
 }

 .event .posts-list .post-img {
     max-height: 240px;
     margin: -30px -30px 0 -30px;
     overflow: hidden
 }

 .event .posts-list .title {
     font-size: 1.5em;
     font-family: var(--thfont);
     font-weight: 700;
     padding: 0;
     margin: 30px 0 0 0;
     min-height: 3.5em;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .event .posts-list .title a {
     color: var(--gray);
     transition: 0.3s
 }

 .event .posts-list .title a:hover {
     color: var(--gold)
 }

 .event .posts-list .meta-top {
     margin: 10px 0;
     padding: 10px 0;
     color: var(--gray);
     border-top: 1px dotted var(--gold);
     border-bottom: 1px dotted var(--gold);
 }

 .event .posts-list .meta-top ul {
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     align-items: center;
     padding: 0;
     margin: 0;
     justify-content: space-between;
 }

 .event .posts-list .meta-top ul li+li {
     padding-left: 20px
 }

 .event .posts-list .meta-top i {
     font-size: 16px;
     margin-right: 8px;
     line-height: 0;
     color: rgba(255, 255, 255, .8)
 }

 .event .posts-list .meta-top li {
     color: var(--gray);
     font-size: 1em !important;
     display: inline-block;
 }

 .event .posts-list .content {
     margin: 10px 0 30px 0
 }

 .read-more a {
     display: flex;
     flex-direction: row;
     align-items: center;
     background: var(--lightgray);
     color: var(--gray);
     padding: 8px 30px;
     transition: 0.3s;
     font-size: 1em;
     border-radius: 4px;
 }

 .read-more a:hover {
     background: var(--gold) !important;
     color: var(--white) !important;
 }

 .event .event-details {
     box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
     padding: 30px
 }

 .event .event-details .post-img {
     margin: -30px -30px 20px -30px;
     overflow: hidden
 }

 .event .event-details .title {
     font-size: 28px;
     font-weight: 700;
     padding: 0;
     margin: 20px 0 0 0;
     color: var(--gray)
 }

 .event .event-details .content {
     margin-top: 20px
 }

 .event .event-details .content h3 {
     font-size: 1.5rem;
     margin-top: 30px;
     font-weight: bold
 }

 .event .event-details .content blockquote {
     overflow: hidden;
     background-color: rgba(var(--gray), 0.06);
     padding: 60px;
     position: relative;
     text-align: center;
     margin: 20px 0
 }

 .event .event-details .content blockquote p {
     color: var(--color-default);
     line-height: 1.6;
     margin-bottom: 0;
     font-style: italic;
     font-weight: 500;
     font-size: 22px
 }

 .event .event-details .content blockquote:after {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 3px;
     background-color: var(--gray);
     margin-top: 20px;
     margin-bottom: 20px
 }

 .meta-top {
     margin-top: 20px;
     color: var(--gray);
 }

 .meta-top ul {
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     align-items: center;
     padding: 0;
     margin: 0;
     justify-content: space-between;
 }

 .meta-top ul li+li {
     padding-left: 20px;
     font-family: var(--enfont);
 }

 .meta-top i {
     font-size: 16px;
     margin-right: 8px;
     line-height: 0;
     color: rgba(255, 255, 255, .8)
 }

 .meta-top a {
     color: var(--gray);
     font-size: 14px;
     display: inline-block;
     line-height: 1
 }

 .event .event-details .meta-bottom {
     padding-top: 10px;
     border-top: 1px solid rgba(var(--gray), 0.15)
 }

 .event .event-details .meta-bottom i {
     color: var(--gray-light);
     display: inline
 }

 .event .event-details .meta-bottom a {
     color: rgba(0, 0, 0, .8);
     transition: 0.3s
 }

 .event .event-details .meta-bottom a:hover {
     color: var(--gold)
 }

 .event .event-details .meta-bottom .cats {
     list-style: none;
     display: inline;
     padding: 0 20px 0 0;
     font-size: 14px
 }

 .event .event-details .meta-bottom .cats li {
     display: inline-block
 }

 .event .event-details .meta-bottom .tags {
     list-style: none;
     display: inline;
     padding: 0;
     font-size: 14px
 }

 .event .event-details .meta-bottom .tags li {
     display: inline-block
 }

 .event .event-details .meta-bottom .tags li+li::before {
     padding-right: 6px;
     color: var(--color-default);
     content: ","
 }

 .event .event-details .meta-bottom .share {
     font-size: 16px
 }

 .event .event-details .meta-bottom .share i {
     padding-left: 5px
 }

 .event .post-author {
     padding: 20px;
     margin-top: 30px;
     box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1)
 }

 .event .post-author img {
     max-width: 120px;
     margin-right: 20px
 }

 .event .post-author h4 {
     font-size: 1.5rem;
     margin-bottom: 0px;
     padding: 0;
     color: var(--gray)
 }

 .event .post-author .social-links {
     margin: 0 10px 10px 0
 }

 .event .post-author .social-links a {
     color: rgba(var(--gray), 0.5);
     margin-right: 5px
 }

 .event .post-author p {
     font-style: italic;
     color: rgba(var(--color-gray-rgb), 0.8);
     margin-bottom: 0
 }

 .event .sidebar {}

 .event .sidebar .sidebar-title {
     font-size: 20px;
     font-weight: 700;
     padding: 0;
     margin: 0;
     color: var(--gray)
 }

 .event .sidebar .sidebar-item+.sidebar-item {
     margin-top: 40px
 }

 .event .sidebar .search-form form {
     background: var(--white);
     border: 1px solid var(--gold);
     padding: 3px 10px;
     position: relative
 }

 .event .sidebar .search-form form input[type=text] {
     border: 0;
     padding: 4px;
     border-radius: 4px;
     width: calc(100% - 40px)
 }

 .event .sidebar .search-form form input[type=text]:focus {
     outline: none
 }

 .event .sidebar .search-form form button {
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     border: 0;
     background: none;
     font-size: 16px;
     padding: 0 15px;
     margin: -1px;
     background: var(--gold);
     color: var(--white);
     transition: 0.3s;
     border-radius: 0 4px 4px 0;
     line-height: 0
 }

 .event .sidebar .search-form form button i {
     line-height: 0
 }

 .event .sidebar .search-form form button:hover,
 .event .sidebar .search-form form button:focus {}

 .event .sidebar .categories ul {
     list-style: none;
     padding: 0
 }

 .event .sidebar .categories ul li+li {
     padding-top: 10px
 }

 .event .sidebar .categories ul a {
     color: var(--gray);
     transition: 0.3s
 }

 .event .sidebar .categories ul a:hover {
     color: var(--color-default)
 }

 .event .sidebar .categories ul a span {
     padding-left: 5px;
     color: rgba(var(--color-default-rgb), 0.4);
     font-size: 14px
 }

 .event .sidebar .recent-posts .post-item {
     display: flex
 }

 .event .sidebar .recent-posts .post-item+.post-item {
     margin-top: 15px
 }

 .event .sidebar .recent-posts img {
     width: 80px;
     margin-right: 15px
 }

 .event .sidebar .recent-posts h4 {
     font-size: 18px;
     font-weight: 400
 }

 .event .sidebar .recent-posts h4 a {
     color: var(--gray);
     transition: 0.3s
 }

 .event .sidebar .recent-posts h4 a:hover {
     color: var(--gold)
 }

 .event .sidebar .recent-posts time {
     display: block;
     font-style: italic;
     font-size: 14px;
     color: rgba(var(--color-default-rgb), 0.4)
 }

 .event .sidebar .tags {
     margin-bottom: -10px
 }

 .event .sidebar .tags ul {
     list-style: none;
     padding: 0
 }

 .event .sidebar .tags ul li {
     display: inline-block
 }

 .event .sidebar .tags ul a {
     color: var(--gray-light);
     font-size: 14px;
     padding: 6px 14px;
     margin: 0 6px 8px 0;
     border: 1px solid rgba(var(--gray-light-rgb), 0.8);
     display: inline-block;
     transition: 0.3s
 }

 .event .sidebar .tags ul a:hover {
     color: var(--white);
     border: 1px solid var(--gold);
     background: var(--gold)
 }

 .event .sidebar .tags ul a span {
     padding-left: 5px;
     color: rgba(var(--gray-light-rgb), 0.8);
     font-size: 14px
 }

 .event .comments {
     margin-top: 30px
 }

 .event .comments .comments-count {
     font-weight: bold
 }

 .event .comments .comment {
     margin-top: 30px;
     position: relative
 }

 .event .comments .comment .comment-img {
     margin-right: 14px
 }

 .event .comments .comment .comment-img img {
     width: 60px
 }

 .event .comments .comment h5 {
     font-size: 16px;
     margin-bottom: 2px
 }

 .event .comments .comment h5 a {
     font-weight: bold;
     color: var(--color-default);
     transition: 0.3s
 }

 .event .comments .comment h5 a:hover {
     color: var(--gold)
 }

 .event .comments .comment h5 .reply {
     padding-left: 10px;
     color: var(--gray)
 }

 .event .comments .comment h5 .reply i {
     font-size: 20px
 }

 .event .comments .comment time {
     display: block;
     font-size: 14px;
     color: rgba(0, 0, 0, .8);
     margin-bottom: 5px
 }

 .event .comments .comment.comment-reply {
     padding-left: 40px
 }

 .event .comments .reply-form {
     margin-top: 30px;
     padding: 30px;
     box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1)
 }

 .event .comments .reply-form h4 {
     font-weight: bold;
     font-size: 22px
 }

 .event .comments .reply-form p {
     font-size: 14px
 }

 .event .comments .reply-form input {
     border-radius: 4px;
     padding: 10px 10px;
     font-size: 14px
 }

 .event .comments .reply-form input:focus {
     box-shadow: none;
     border-color: rgba(255, 255, 255, .8)
 }

 .event .comments .reply-form textarea {
     border-radius: 4px;
     padding: 10px 10px;
     font-size: 14px
 }

 .event .comments .reply-form textarea:focus {
     box-shadow: none;
     border-color: rgba(255, 255, 255, .8)
 }

 .event .comments .reply-form .form-group {
     margin-bottom: 25px
 }

 .event .comments .reply-form .btn-primary {
     border-radius: 4px;
     padding: 10px 20px;
     border: 0;
     background-color: var(--gray)
 }

 .event .comments .reply-form .btn-primary:hover {
     background-color: rgba(var(--gray), 0.8)
 }

 .event .event-pagination {
     margin-top: 30px;
     color: var(--gray-light)
 }

 .event .event-pagination ul {
     display: flex;
     padding: 0;
     margin: 0;
     list-style: none
 }

 .event .event-pagination li {
     margin: 0 5px;
     transition: 0.3s
 }

 .event .event-pagination li a {
     color: var(--gray);
     padding: 7px 16px;
     display: flex;
     align-items: center;
     justify-content: center
 }

 .event .event-pagination li.active,
 .event .event-pagination li:hover {
     background: var(--gold);
 }

 .event .event-pagination li.active a,
 .event .event-pagination li:hover a {
     color: var(--white) !important
 }

 /**/
 .footer {
     color: var(--white);
     font-size: 14px
 }

 .footer .footer-content {
     background: var(--gray);
     padding: 60px 0 30px 0
 }

 .footer .footer-content .footer-info {
     margin-bottom: 30px
 }

 .footer .footer-content .footer-info h3 {

     /*  font-size: 28px;
                margin: 0 0 20px 0;
                padding: 2px 0 2px 0;
                line-height: 1;
                font-weight: 700;
                text-transform: uppercase*/
 }

 .footer .footer-content .footer-info h3 span {
     color: var(--gold)
 }

 .footer .footer-content .footer-info p {
     font-size: 14px;
     line-height: 24px;
     margin-bottom: 0;
     font-family: var(--font-primary);
     color: var(--white)
 }

 .footer .footer-content h4 {
     font-size: 16px;
     color: var(--white);
     position: relative;
     padding-bottom: 12px;
     margin-bottom: 15px
 }

 .footer .footer-content h4::after {
     content: "";
     position: absolute;
     display: block;
     width: 20px;
     height: 2px;
     background: var(--gold);
     bottom: 0;
     left: 0
 }

 .footer .footer-content .footer-links {
     margin-bottom: 30px
 }

 .footer .footer-content .footer-links ul {
     list-style: none;
     padding: 0;
     margin: 0
 }

 .footer .footer-content .footer-links ul i {
     padding-right: 2px;
     color: var(--white);
     font-size: 12px;
     line-height: 1
 }

 .footer .footer-content .footer-links ul li {
     padding: 10px 0;
     display: flex;
     align-items: center
 }

 .footer .footer-content .footer-links ul li:first-child {
     padding-top: 0
 }

 .footer .footer-content .footer-links ul a {
     color: rgba(var(--white), 0.7);
     transition: 0.3s;
     display: inline-block;
     line-height: 1
 }

 .footer .footer-content .footer-links ul a:hover {
     color: var(--white)
 }

 @media(max-width:480px) {
     .footer-links {
         display: none;
     }

 }

 .footer .footer-content .footer-location form {
     margin-top: 30px;
     background: var(--white);
     padding: 6px 10px;
     position: relative;
     border-radius: 4px
 }

 .footer .footer-content .footer-location form input[type=text] {
     border: 0;
     padding: 4px;
     outline: none;
     appearance: none;
     width: calc(100% - 110px)
 }

 .footer .footer-content .footer-location form input[type=text]:focus-visible {
     outline: none
 }

 .footer .footer-content .footer-location form input[type=submit] {
     position: absolute;
     top: 0;
     right: -2px;
     bottom: 0;
     border: 0;
     background: none;
     font-size: 16px;
     padding: 0 20px;
     background: var(--gold);
     color: var(--white);
     transition: 0.3s;
     border-radius: 0 4px 4px 0
 }

 .footer .footer-content .footer-location form input[type=submit]:hover {

     /*  background: rgba(var(--white), 0.85)*/
 }

 .footer .footer-legal {
     padding: 30px 0;
     background: var(--gray-dark)
 }

 .footer .footer-legal .credits {
     padding: 5px 0;
     font-size: 13px;
     color: var(--white)
 }

 .footer .footer-legal .credits a {
     color: var(--gold-light)
 }

 .footer .footer-legal .social-links a {
     font-size: 18px;
     display: inline-block;
     background: rgba(var(--white), 0.1);
     color: var(--white);
     line-height: 1;
     padding: 8px 0;
     margin-right: 4px;
     border-radius: 50%;
     text-align: center;
     width: 36px;
     height: 36px;
     transition: 0.3s
 }

 .footer .footer-legal .social-links a:hover,
 .footer .footer-legal .social-links a:focus {
     background: var(--gold) !important;
     color: #FFF !important;
     text-decoration: none
 }

 /**/
 .heroblind {
     width: 100%;
     height: 0;
     padding-top: 50%;
     background: url("../img/NT_intro.gif") transparent 50% 50% no-repeat;
     overflow: hidden;
     /*  border: 1px solid #333;*/
 }

 .stretched-link::after {
     content: "";
 }

 .logomenu {
     display: flex;
     flex-direction: row;
     padding: 20px;
 }

 .logomenu img {
     width: 30px;
     height: auto;
     margin-right: 10px;
     vertical-align: middle;
 }

 .logomenu h1 {
     display: flex;
     color: #FFF;
     margin: 0;
     padding: 0;
     font-size: 1.2rem;
     vertical-align: middle;
     align-items: center;
 }

 .en {
     font-family: var(--enfont) !important;
 }

 .th {
     font-family: var(--thfont) !important;
 }

 .headSection {
     font-family: var(--thfont);
     display: flex;
     flex-direction: column;
     border-left: 5px solid var(--gold);
     padding-left: 10px;
     margin-left: 5px;
 }

 .headSection span {
     font-family: var(--enfont);
     font-weight: 600;
     display: block;
 }

 /* -----------------------------------------------------  */
 .headLoad {
     width: 100%;
     height: 400px;
     display: flex;
     /*    margin-top: 99px;*/
     flex-direction: column;
     justify-content: center;
     align-items: center;
     background: rgba(0, 0, 0, .5);
     overflow: hidden;
     position: relative;
     cursor: default;
 }

 .headLoad .txSwap {
     z-index: 99;
     text-transform: uppercase;
 }

 .headLoad .txSwap h2 {
     font-family: var(--enfont);
     font-size: 3em;
     color: #FFF !important;
     text-align: center;
     letter-spacing: 1px;
 }

 .headLoad>img {
     width: 100%;
     height: auto;
     position: absolute;
     transform: translate(-50%, -50%) scale(1.0);
     left: 50%;
     top: 50%;
     z-index: 1;
     opacity: 1 !important;
     mix-blend-mode: overlay;
     -webkit-transition-property: -webkit-transform;
     -webkit-transition-duration: 1.5s;
     -webkit-animation-name: zoomout;
     -webkit-animation-iteration-count: 1;
     -webkit-animation-timing-function: linear;
     -moz-transition-property: -moz-transform;
     -moz-animation-name: zoomout;
     -moz-animation-duration: 1.5s;
     -moz-animation-iteration-count: 1;
     -moz-animation-timing-function: linear;
     transition-property: transform;
     animation-name: zoomout;
     animation-duration: 1.5s;
     animation-iteration-count: 1;
     animation-timing-function: linear;
     transform-origin: center bottom;
 }

 .bganimate {
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, .5);
     position: relative;
     opacity: 1;
 }

 .bganimate #bgImg {
     width: 100%;
     height: 100%;
     position: absolute;
     transform: translate(-50%, -50%) scale(1.0);
     left: 50%;
     top: 50%;
     z-index: 1;
     mix-blend-mode: overlay;
     -webkit-transition-property: -webkit-transform;
     -webkit-transition-duration: 1.5s;
     -webkit-animation-name: zoomout;
     -webkit-animation-iteration-count: 1;
     -webkit-animation-timing-function: linear;
     -moz-transition-property: -moz-transform;
     -moz-animation-name: zoomout;
     -moz-animation-duration: 1.5s;
     -moz-animation-iteration-count: 1;
     -moz-animation-timing-function: linear;
     transition-property: transform;
     animation-name: zoomout;
     animation-duration: 1.5s;
     animation-iteration-count: 1;
     animation-timing-function: linear;
     transform-origin: center bottom;
 }

 @media(max-width:766px) {
     .headLoad {
         margin-top: 60px;
     }

     .headLoad>img {
         height: 100%;
         width: 100%;
         object-fit: cover;
     }

     .headLoad .txSwap h2 {
         font-size: 2em;
     }

 }

 @media(max-width:320px) {
     .breadcrumbs ol {
         display: flex;
         flex-direction: column;
     }

     .breadcrumbs ol li+li::before {
         display: none;
     }

     .breadcrumbs ol li+li {
         padding: 0;
     }

 }

 @-webkit-keyframes zoomout {
     from {
         -webkit-transform: translate(-50%, -50%) scale(1.6);
     }

     to {
         -webkit-transform: translate(-50%, -50%) scale(1.0);
     }

 }

 @-moz-keyframes zoomout {
     from {
         -webkit-transform: translate(-50%, -50%) scale(1.6);
     }

     to {
         -webkit-transform: translate(-50%, -50%) scale(1.0);
     }

 }

 @keyframes zoomout {
     from {
         -webkit-transform: translate(-50%, -50%) scale(1.6);
     }

     to {
         -webkit-transform: translate(-50%, -50%) scale(1.0);
     }

 }

 @-webkit-keyframes zoomin {
     from {
         -webkit-transform: translate(-50%, -50%) scale(.2);
     }

     to {
         -webkit-transform: translateY(0) scale(1);
     }

 }

 @-moz-keyframes zoomin {
     from {
         -webkit-transform: translateY(100%) scale(.2);
     }

     to {
         -webkit-transform: translateY(0) scale(1);
     }

 }

 @keyframes zoomin {
     from {
         -webkit-transform: translateY(100%) scale(.2);
     }

     to {
         -webkit-transform: translateY(0) scale(1);
     }

 }

 /**/
 ::selection {
     background: transparent;
 }

 ::-moz-selection {
     background: transparent;
 }

 /**/
 .products-view {
     margin: 0;
     padding: 0;
 }

 .products-view h2 {

     /* code name */
     font-family: var(--enfont);
     font-size: 2.5em;
     text-transform: capitalize;
     font-weight: 600;
 }

 .products-info {
     padding: 0 20px;
 }

 .products-info h1,
 .products-info h2,
 .products-info h3,
 .products-info h4,
 .products-info h5 {
     font-family: var(--thfont) !important;
 }

 .products-info h2 {
     font-size: 2em;
     margin-bottom: 20px;
     font-weight: 900;
 }

 .products-info h3 {

     /* subhead */
     font-weight: 900;
     font-size: 1.3em;
     margin: 0;
     padding: 0;
     display: block;
 }

 .products-info h4 {
     font-weight: 800
 }

 .products-info ul {
     margin: 0 0 20px 0;
     padding: 0;
 }

 .products-info ul li {
     font-family: var(--enfont);
     list-style: none;
     font-size: 1em;
     border-bottom: 1px dotted rgba(0, 0, 0, .2);
     padding: 10px 0;
     color: var(--gray);
     display: flex;
     flex-direction: row;
 }

 .products-info ul.icon li {
     align-items: center;
 }

 .products-info ul li:last-child {
     border-bottom: none;
     margin: 0;
 }

 .products-info ul li ul {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .products-info ul li ul li {
     border-bottom: none;
     padding: 0;
     margin-bottom: 10px;
 }

 /**/
 .accordion-item .accordion-button,
 .accordion-button:not(.collapsed) {
     background-color: var(--lightgray);
     color: #333;
     font-family: var(--thfont);
     font-weight: 800;
     font-size: .5em !important;
 }

 .accordion-body.products-info li strong {
     width: 50%;
     font-size: 1em;
     font-weight: 400;
 }

 .accordion-body.products-info li span {
     width: 50%;
     font-size: 1em;
     font-weight: 400;
 }

 .accordion {
     --bs-accordion-color: #212529;
     --bs-accordion-bg: #fff;
     --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
     --bs-accordion-border-color: var(--bs-border-color);
     --bs-accordion-border-width: 1px;
     --bs-accordion-border-radius: 0.375rem;
     --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
     --bs-accordion-btn-padding-x: 1.25rem;
     --bs-accordion-btn-padding-y: 1rem;
     --bs-accordion-btn-color: #212529;
     --bs-accordion-btn-bg: var(--bs-accordion-bg);
     --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns=!string!viewBox=!string!fill=!string!%3e%3cpath fill-rule=!string!d=!string!/%3e%3c/svg%3e");
     --bs-accordion-btn-icon-width: 1.25rem;
     --bs-accordion-btn-icon-transform: rotate(-180deg);
     --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
     --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns=!string!viewBox=!string!fill=!string!%3e%3cpath fill-rule=!string!d=!string!/%3e%3c/svg%3e");
     --bs-accordion-btn-focus-border-color: #86b7fe;
     --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
     --bs-accordion-body-padding-x: 1.25rem;
     --bs-accordion-body-padding-y: 1rem;
     --bs-accordion-active-color: #0c63e4;
     --bs-accordion-active-bg: #e7f1ff;
 }

 /**/
 .prop i {
     font-size: 1.5em !important;
     margin: 0 10px 0 0 !important;
 }

 .products-info hr {
     margin: 20px 0;
     color: var(--gold);
     border-width: 2px;
 }

 .swiper_main img {
     width: 100%;
     height: auto;
 }

 .swiper_thumbnail img {
     width: 100%;
     transition: all ease-in-out .35s;
 }

 .swiper-button-next:after,
 .swiper-button-prev:after {
     color: var(--gold);
 }

 .swiper_thumbnail .swiper-slide {
     cursor: pointer;
 }

 .swiper_thumbnail .swiper-slide img {
     transition: all ease-in-out .35s;
     opacity: .5;
 }

 .swiper_thumbnail .swiper-slide-thumb-active img {
     opacity: 1;
 }

 .swiper_thumbnail img {
     vertical-align: bottom;
 }

 /**/
 .fullview {
     width: 100%;
     height: 70vh;
     position: relative;
     overflow: hidden;
     background: #000;
 }

 .fullview img {
     position: absolute;
     left: 50%;
     top: 50%;
     width: 100%;
     height: auto;
     object-fit: fill;
     mix-blend-mode: screen;
     transform: translate(-50%, -50%);
     opacity: .5;
     z-index: 1;
 }

 .fullview .txSwap {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     position: absolute;
     margin: 30px;
     left: 0;
     top: 0;
     right: 0;
     bottom: 0;
     z-index: 2;
 }

 .fullview .txSwap h3 {
     color: #FFF;
     font-size: 2em;
     text-align: center;
     margin-bottom: 30px;
     max-width: 650px;
     font-weight: 600;
     letter-spacing: 1px;
 }

 .fullview .txSwap p {
     font-family: var(--thfont);
     color: #FFF;
     font-size: 1.2em;
     max-width: 650px;
     margin: 0 auto;
     font-weight: 400;
     text-align: center;
 }

 .btnNormal {
     display: inline-block;
     color: #FFF;
     background: var(--gold);
     font-family: var(--thfont);
     padding: 10px 30px;
     margin: 30px 0;
     z-index: 9;
     border: none;
     white-space: nowrap;
     border-radius: 5px;
     width: max-content;
     transition: all ease-in-out .35s;
 }

 .btnNormal:hover,
 .btnNormal:focus {
     color: #FFF !important;
     background: #e6b215 !important;
 }

 .maskround {
     width: 100%;
     height: 100%;
     border-radius: 20px;
     overflow: hidden;
     opacity: 1;
     transition: all ease-in-out .35s;
 }

 .maskround img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .fullybackground {
     width: 100%;
     height: auto;
     background-color: #CCC;
     background-repeat: no-repeat;
     background-size: cover;
     background-position: 50% 50%;
 }

 .bgFix {
     background-attachment: fixed;
 }

 .flexcenter {
     display: flex;
     flex-direction: column;
     justify-content: center;
     width: 100%;
     height: 100%;
     padding: 0 30px;
 }

 .flexcenter h2,
 .flexcenter h3 {
     margin: 0 !important;
     padding: 0 !important;
     font-family: var(--thfont);
 }

 .flexcenter h3 {
     font-size: 1.2em;
 }

 .flexcenter small {
     margin-top: 20px !important;
     font-size: 1em !important;
     font-weight: 400 !important;
     font-family: var(--thfont);
     color: var(--gold) !important;
 }

 .wtext * {
     color: #FFF !important;
 }

 .dtext {
     color: #333 !important;
 }

 .flexcenter h2 {
     font-family: var(--thfont);
     margin-bottom: 30px;
     font-weight: 600;
     font-size: 2.2em;
 }

 .flexcenter p {
     font-family: var(--thfont);
     text-align: left;
     font-size: 1.1em;
     letter-spacing: 0;
 }

 /**/
 .dflexbox {
     display: flex;
     flex-direction: row;
     align-items: flex-start;
 }

 @media(max-width:480px) {
     .dflexbox {
         display: flex;
         flex-direction: column;
         align-items: center;
     }

 }

 .whitecard {
     background: #FFF;
     width: 100%;
     height: 100%;
     border-radius: 10px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: 30px;
     margin: 10px;
     overflow: hidden;
     z-index: 8;
     box-shadow: inset 0 0 5px rgba(0, 0, 0, .3);
 }

 .bigicon {
     font-size: 2.5em;
 }

 .modelbox {
     background: #FFF;
     width: 100%;
     height: 100%;
     border-radius: 20px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: 30px;
     overflow: hidden;
 }

 .whitecard h3,
 .modelbox h3 {
     font-family: var(--thfont);
     font-size: 1.4em;
     font-weight: 800 !important;
     margin-bottom: 10px;
     text-align: center;
 }

 .whitecard>img,
 .modelbox>img {

     /* Logo */
     width: 100px;
 }

 .whitecard i {
     font-size: 3em;
     color: var(--gold);
 }

 .swiper-thumbs .swiper-slide {
     height: 200px;
     overflow: hidden;
 }

 .box404 {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: 30px;
 }

 .box404 h2,
 .box404 h3 {
     font-family: var(--thfont);
     font-size: 1.2em;
     font-weight: bold;
 }

 .box404 p {
     font-size: 1.2em;
 }

 .wtext {
     color: var(--white);
 }

 /**/
 .relationElm {
     padding: 0;
     margin: 30px auto;
 }

 .relationElm h2 {
     font-family: var(--thfont);
     font-size: 2rem;
     font-weight: 600;
     text-align: center;
 }

 .relationElm h3 {
     font-family: var(--enfont);
     font-size: 1.2rem;
     font-weight: 400;
     text-align: center;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .relationElm .swiper-slide {
     border-bottom-right-radius: 30px;
     border-top-left-radius: 30px;
     overflow: hidden;
     box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
 }

 .productrelation {
     margin: 30px 0;
     padding: 20px;
 }

 .relationElm img {
     width: 100%;
     height: auto;
 }

 /**/
 .textBox {
     display: flex;
     flex-direction: row;
 }

 .textBox ul {
     list-style: none;
     margin: 0;
     padding: 0;
     width: 100%;
 }

 .textBox li {
     border: 1px solid #CCC;
     padding: 10px;
     display: flex;
     flex-direction: column;
     text-align: center;
     width: calc(100% / 4);
 }

 .textBox li b {
     display: block;
 }

 .mt10 {
     margin: 10px 0 0 0 !important;
 }

 .mt20 {
     margin: 20px 0 0 0 !important;
 }

 .mt30 {
     margin: 30px 0 0 0 !important;
 }

 .mt40 {
     margin: 40px 0 0 0 !important;
 }

 .mt50 {
     margin: 50px 0 0 0 !important;
 }

 .mt60 {
     margin: 60px 0 0 0 !important;
 }

 .mt70 {
     margin: 70px 0 0 0 !important;
 }

 .mt80 {
     margin: 80px 0 0 0 !important;
 }

 .mt90 {
     margin: 90px 0 0 0 !important;
 }

 .mt100 {
     margin: 100px 0 0 0 !important;
 }

 .prop,
 .accordionItem {
     width: 100%;
     display: flex;
     flex-direction: column;
     margin: 0 0 5px 0;
     padding: 0;
 }

 .prop li,
 .accordionItem li {
     width: 100%;
     display: flex;
     flex-direction: row;
 }

 .prop li h3,
 .accordionItem li h3 {
     font-family: var(--thfont);
     font-size: 1.2em;
     font-weight: 600;
 }

 .prop li strong,
 .prop li span,
 .accordionItem li strong,
 .accordionItem li span {
     width: 50%;
     font-weight: 400 !important;
     position: relative;
 }

 .prop li span:before,
 .accordionItem li span:before {
     content: ":";
     position: absolute;
     left: -20px;
     top: 0;
 }

 .accordionWrapper {
     box-sizing: border-box;
 }

 .accordionItem {
     width: 100%;
     display: flex;
     flex-direction: column;
     margin: 0 0 1px 0;
     box-sizing: border-box;
 }

 .accordionItemHeading {
     font-family: var(--thfont);
     cursor: pointer;
     font-weight: 900;
     color: var(--gray-dark);
     margin: 0;
     padding: 10px 20px;
     background: var(--lightgray);
     box-sizing: border-box;
     width: 100%;
 }

 .open .accordionItemHeading {
     transition: all ease-in-out .35s;
     background: var(--gray);
     color: var(--white);
     transform-origin: bottom;
 }

 .close .accordionItemContent {
     transform: translateY(-5%);
     height: 0;
     overflow: hidden;
     display: block;
 }

 .open .accordionItemContent {
     height: auto;
     transform: translateY(0);
     transition: all ease-in-out .35s;
 }

 /**/
 .txSwap404 {
     margin: 0;
     height: 100vh;
 }

 .elmHeight {
     height: 50vh !important;
     margin-top: 99px;
 }

 .txSwap404 img {
     height: 100%;
     width: 100%;
     object-fit: fill;
 }

 .txSwap404 h1,
 .txSwap404 h2,
 .txSwap404 h3,
 .txSwap404 h4,
 .txSwap404 i {
     color: #FFF
 }

 .txSwap404 h1 {
     font-size: 8em;
     font-weight: 600;
     margin: 0;
     padding: 0;
     text-align: center;
 }

 .txSwap404 h2 {
     font-size: 3em;
     font-weight: 400;
     margin: 0 0 20px 0;
     padding: 0;
     text-align: center;
 }

 .txSwap404 h3 {
     font-size: 1.8em;
     font-family: var(--thfont);
     font-weight: 600;
     margin: 0;
     padding: 0;
     text-align: center;
     letter-spacing: 1px;
 }

 .txSwap404 h4 {
     font-size: 1.8em;
     font-weight: 600;
     margin: 0;
     padding: 0;
     text-align: center;
     letter-spacing: 1px;
 }

 .txSwap404>i {
     width: 100%;
     display: block;
     text-align: center;
     font-size: 3em;
     color: var(--gold);
     opacity: 1;
     z-index: 99;
 }

 .txSwap404 .btnNormal,
 .txSwap404 .btnNormal:hover {
     text-decoration: none !important;
 }

 /**/
 .downloadbox {
     width: 100%;
     height: 50vh !important;
     position: relative;
     overflow: hidden;
     background-color: #333;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0;
     padding: 0;
 }

 .downloadbox>img {
     width: 100%;
     height: auto;
     object-fit: cover;
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     z-index: 1;
     mix-blend-mode: overlay;
 }

 @media(max-width:480px) {
     .downloadbox>img {
         height: 100%;
         width: auto;
     }

 }

 .downloadbox .txSwap {
     width: 100%;
     max-width: 550px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     z-index: 5;
 }

 .downloadbox .txSwap h3 {
     font-size: 1.2em;
 }

 .downloadbox .txSwap h4 {
     font-weight: 600;
 }

 .downloadbox .txSwap h3,
 .downloadbox .txSwap h4,
 .downloadbox .txSwap p {
     color: #FFF;
     text-align: center;
     font-family: var(--thfont);
 }

 .downloadbox a {
     font-weight: 600;
     margin: 0 auto !important;
     letter-spacing: 0;
 }

 /**/
 .pagenav {
     display: flex;
     text-align: center;
     width: 100%;
     position: relative;
     flex-direction: row;
     justify-content: center;
     background: #eaeaea !important;
     z-index: 9;
 }

 .pagenav.active {
     position: fixed;
     left: 0;
     right: 0;
 }

 .pagenav ul {
     margin: 0;
     padding: 0;
     display: flex;
 }

 .pagenav li {
     font-family: var(--thfont);
     list-style: none;
     font-size: 1em;
     margin: 15px 30px;
     white-space: nowrap;
 }

 .pagenav li a {
     transition: all ease-in-out .35s;
     color: var(--gray);
     border-bottom: 5px solid transparent;
     font-weight: 800;
     padding: 15px 0;
 }

 .pagenav li a.active {
     color: var(--gold);
     border-bottom: 5px solid var(--gold);
 }

 .pagenav li i {
     vertical-align: middle !important;
     padding: 10px;
     font-size: 1.5em;
 }

 .products-view p a,
 .products-view p a:hover {
     font-size: 1.2em !important;
     color: var(--gray) !important;
     font-weight: 600 !important;
     text-transform: uppercase;
 }

 @media(max-width:480px) {
     .pagenav li {
         margin: 10px;
     }

     .pagenav li i {
         display: none;
     }

 }

 /**/
 .swiper-slide span.caption {
     position: absolute;
     left: 10px;
     bottom: 0;
     right: 0;
     background: #333;
     color: var(--white);
     padding: 10px 20px;
     font-size: 1.1em;
     letter-spacing: 1px;
     font-weight: 600;
     font-family: var(--enfont);
     white-space: nowrap;
     border-top-left-radius: 20px;
     box-shadow: 0 1px 5px rgba(0, 0, 0, .4);
     cursor: pointer;
     overflow: hidden;
     /*    
    text-overflow: ellipsis;
    */
 }

 @media(max-width:1200px) {
     .pagenav.active {
         position: fixed
     }

 }

 @media(max-width:992px) {
     .swiper-slide span.caption {
         font-size: .9em;
     }

 }

 @media(max-width:480px) {
     .pagenav li {
         font-size: .9em;
         white-space: nowrap;
         margin: 20px;
     }

     .txSwap404 h3 {
         font-size: 1.1em;
     }

     .txSwap404 h4 {
         font-size: 1.2em;
     }

 }

 .coloroption {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     flex-direction: row;
     align-items: center;
 }

 .coloroption h3 {
     font-size: 1.2em;
 }

 .coloroption button {
     width: 100px;
     height: 100px;
     overflow: hidden;
     background: #FFF;
     border: 5px solid transparent;
     margin: 20px;
 }

 .coloroption button.active {
     border: 5px solid var(--gold);
 }

 .coloroption button img {
     width: 100%;
     object-fit: cover;
 }

 .lessMargin {
     margin: 10px auto 0 auto !important;
     width: 100%;
     max-width: 480px;
     text-align: center;
     font-family: var(--enfont);
     transition: all ease-in-out .2s;
 }

 /*overwrite glightbox*/
 .gslide-inline {
     background-color: transparent !important;
 }

 .glightbox-clean .gslide-media {
     box-shadow: none !important;
 }

 /**/
 .bgfacebook {
     background-color: #4267B2 !important;
     color: #FFF !important;
 }

 .bgfacebook:hover,
 .bgfacebook:focus {
     background-color: #0066ff !important;
 }

 .bgIG {
     background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%) !important;
     color: #FFF !important;
 }

 .bgIG:hover,
 .bgIG:focus {
     background: radial-gradient(circle farthest-corner at 70% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%) !important;
 }

 .bgMap {

     /*    border: 2px solid #4285F4 !important;*/
     background: #333 !important;
     color: var(--gold) !important;
 }

 .bgMap:hover,
 .bgMap:focus {

     /*    border: 2px solid #115cd8 !important;*/
     background: #333 !important;
     color: var(--gold) !important;
 }

 .bgMap i {
     font-size: 1em !important;
     color: var(--gold);
 }

 .bgMap:hover i,
 .bgMap:focus i {
     font-size: 1em !important;
     color: var(--gold);
 }

 /* Events  */
 .avata {
     position: relative;
     display: inline-block;
     width: 50px !important;
     height: 50px !important;
     border-radius: 50%;
     overflow: hidden;
 }

 .avata img {
     width: 100%;
     object-fit: cover;
 }

 .maxheight {
     overflow: hidden;
     position: relative;
 }

 .maxheight p {
     font-size: 1em;
     line-height: 1.5em;
     display: -webkit-box;
     -webkit-line-clamp: 6;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .contact_us {
     margin: 0;
     padding: 0;
 }

 .contact_us iframe {
     width: 100%;
     height: 100%;
     min-height: 60vh;
     border: none;
 }

 .contactdata {
     padding: 30px !important;
     text-align: center !important;
 }

 .contactdata img {

     /* Logo  */
     width: 60px;
     height: auto;
     margin: 0 auto 30px auto;
 }

 .contactdata p {
     font-size: 1.2em;
 }

 .contactdata p b {
     font-size: 1.2em;
     font-weight: 600;
     margin: 5px 0 0 0;
     display: block;
 }

 /**/
 .nevlogo {
     display: block;
     width: 60px;
     height: auto;
     margin: 0 auto;
 }

 .nevlogo img {
     width: 100%;
     height: auto;
 }

 /* responsive table */
 .tbcontainer {
     display: block;
     margin: 2em auto;
     width: 100%;
 }

 .flag-icon {
     margin-right: 0.1em;
 }

 .flex-table {
     display: flex;
     flex-flow: row wrap;
     border-left: solid 1px var(--gold);
     transition: 0.5s;
 }

 .flex-table:first-of-type {
     background: var(--gold);
     border-color: var(--gold);
 }

 .flex-row.th {
     font-weight: 600;
 }

 .flex-table.row:nth-child(odd) .flex-row {

     /* background: #f4f2f1;*/
 }

 .flex-row {
     width: calc(100% / 4);
     text-align: left;
     font-size: 1.1em;
     padding: 0.5em 0.5em;
     border-right: solid 1px var(--gold);
     border-bottom: solid 1px var(--gold);
     box-sizing: border-box;
     font-family: var(--thfont);
     font-weight: 600;
 }

 .rowspan {
     display: flex;
     flex-flow: row wrap;
     align-items: flex-start;
     justify-content: center;
 }

 .column {
     display: flex;
     flex-flow: column wrap;
     width: 75%;
     padding: 0;
 }

 .column .flex-row {
     display: flex;
     flex-flow: row wrap;
     width: 100%;
     padding: 0;
     border: 0;
     border-bottom: solid 1px var(--gold);
 }

 .flex-row a {
     padding: 10px 20px !important;
     display: inline-block !important;
     background: var(--white) !important;
     border: 2px solid var(--gold);
     border-radius: 5px !important;
     color: var(--gold) !important;
     transition: all ease-in-out .35s;
 }

 .flex-row a:hover,
 .flex-row a:focus {
     background: var(--gold) !important;
     border-radius: 5px !important;
     color: var(--white) !important;
 }

 .flex-cell {
     width: calc(100% / 3);
     text-align: center;
     padding: 0.5em 0.5em;
     border-right: solid 1px var(--gold);
 }

 @media all and (max-width:767px) {
     .flex-row {
         width: calc(100% / 3);
     }

     .flex-row.first {
         width: 100%;
     }

     .column {
         width: 100%;
     }

 }

 @media all and (max-width:430px) {
     .flex-table .flex-row {
         border-bottom: 0;
     }

     .flex-table .flex-row:last-of-type {
         border-bottom: solid 1px var(--gold);
     }

     .theader .flex-row {
         border-bottom: solid 1px;
     }

     .flex-row {
         width: 100%;
     }

     .flex-row.first {
         width: 100%;
         border-bottom: solid 1px var(--gold);
     }

     .column {
         width: 100%;
     }

     .column .flex-row {
         border-bottom: solid 1px var(--gold);
     }

     .flex-cell {
         width: 100%;
     }

 }

 /* Event */
 .eventcontent h3 {
     font-family: var(--thfont);
     font-weight: 800;
     font-size: 2.2em;
     line-height: 1.5em;
     margin: 0 0 20px 0;
 }

 @media(max-width:480px) {
     .eventcontent h3 {
         font-size: 2em;
     }

 }

 .eventcontent .meta-top i {
     color: #333;
     margin: 0;
 }

 .eventcontent p {
     font-family: var(--thfont);
     font-weight: 500;
     font-size: 1.3em;
     line-height: 1.5em;
     margin: 40px 0;
 }

 .eventcontent img {
     margin: 30px 0;
 }

 .eventcontent .facebook-responsive {
     aspect-ratio: 4 / 3;
     padding-bottom: 100%;
     position: relative;
     height: 0;
     width: 100%;
     margin: 0 auto;
 }

 .eventcontent .facebook-responsive iframe {
     left: 0;
     top: 0;
     bottom: 0;
     right: 0;
     height: 100%;
     width: 100%;
     position: absolute;
 }

 /**/
 .p10 {
     padding: 10px 0 !important;
 }

 .p20 {
     padding: 20px 0 !important;
 }

 .p30 {
     padding: 30px 0 !important;
 }

 .p40 {
     padding: 40px 0 !important;
 }

 .p50 {
     padding: 50px 0 !important;
 }

 .p60 {
     padding: 60px 0 !important;
 }

 .p70 {
     padding: 70px 0 !important;
 }

 .p80 {
     padding: 80px 0 !important;
 }

 .p90 {
     padding: 90px 0 !important;
 }

 .p100 {
     padding: 100px 0 !important;
 }

 /**/
 .pagecontrol {
     display: flex;
     flex-direction: row;
     margin: 20px 0;
     justify-content: space-between;
     align-items: center;
 }

 .btnborder,
 .btnborder:hover {
     font-family: var(--thfont);
     border: 3px solid var(--gold);
     padding: 5px 30px;
     font-size: 1.2em;
     font-weight: 600;
     color: var(--gold);
     background-color: #FFF;
 }

 /* Download page */
 .cloadbox {
     width: 100%;
     height: 100%;
     box-sizing: border-box;

 }

 .cloadbox h3 {
     font-size: 1.1em;
     text-align: center;
     margin: 20px auto;
     color: var(--gray);
     white-space: nowrap;
     text-overflow: ellipsis;
     overflow: hidden;
 }

 .cbox {
     width: 100%;
     height: 0;
     padding-top: 100%;
     border-radius: 50%;
     overflow: hidden;
     position: relative;
     background: #333;
     border: 5px solid transparent;
     box-sizing: border-box;

 }

 .cbox * {
     transition: all ease-in-out .35s;

 }

 .cbox:hover {
     border: 5px solid var(--gold);
 }

 .cbox img {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%) scale(1.2);
     transition: all ease-in-out .35s;
     width: 100%;
     height: auto;
     z-index: 2;
     mix-blend-mode: overlay;
     opacity: .5;
 }

 .cbox:hover img {
     transform: translate(-50%, -50%) scale(1);
     mix-blend-mode: normal;
     opacity: 1;
 }

 .cbox span {
     position: absolute;
     left: 50%;
     top: 50%;
     font-size: 1.2em;
     font-family: var(--enfont);
     text-transform: uppercase;
     transform: translate(-50%, -50%);
     z-index: 9;
     opacity: 1;
 }

 .cbox:hover span {
     font-size: 1.5em;
     opacity: 0;
 }

 @media(max-width:480px) {
     .cbox span {
         font-size: 1em;
         opacity: 1;
     }
 }

 .center-v li {
     display: flex !important;
     flex-direction: row !important;
     align-items: center !important;

 }

 .full100 {
     width: 100%;
     display: block;

 }

 select {
     /* styling */
     background-color: white;
     border: thin solid var(--gold);
     border-radius: 4px;
     display: inline-block;
     font: inherit;
     line-height: 1.5em;
     padding: 0.5em 3.5em 0.5em 1em;
     margin: 0;
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
     -webkit-appearance: none;
     -moz-appearance: none;
 }

 select.minimal {
     background-image:
         linear-gradient(45deg, transparent 50%, gray 50%),
         linear-gradient(135deg, gray 50%, transparent 50%),
         linear-gradient(to right, #ccc, #ccc);
     background-position:
         calc(100% - 20px) calc(1em + 2px),
         calc(100% - 15px) calc(1em + 2px),
         calc(100% - 2.5em) 0.5em;
     background-size:
         5px 5px,
         5px 5px,
         1px 1.5em;
     background-repeat: no-repeat;
 }

 select.minimal:focus {
     background-image:
         linear-gradient(45deg, var(--gold) 50%, transparent 50%),
         linear-gradient(135deg, transparent 50%, var(--gold) 50%),
         linear-gradient(to right, #ccc, #ccc);
     background-position:
         calc(100% - 15px) 1em,
         calc(100% - 20px) 1em,
         calc(100% - 2.5em) 0.5em;
     background-size:
         5px 5px,
         5px 5px,
         1px 1.5em;
     background-repeat: no-repeat;
     border-color: var(--gold);
     outline: 0;
 }


 select:-moz-focusring {
     color: transparent;
     text-shadow: 0 0 0 #000;
 }


 /**/
 .texteditor {
     margin: 50px 0 !important;
     width: 100% !important;
     box-sizing: border-box !important;
 }

 .texteditor p {
     font-size: 1.2em !important;
     font-family: var(--thfont) !important;
     margin: 50px 0 !important;
     display: block !important;
     width: 100% !important;
     color: #333 !important;
 }

 .texteditor img {
     width: 100% !important;
 }

 .swiper-button-next,
 .swiper-rtl .swiper-button-prev {
     right: 0 !important;
 }

 .swiper-button-prev,
 .swiper-rtl .swiper-button-next {
     left: 0 !important;
 }

 /**/
 .upper {
     text-transform: uppercase !important;
 }

 .accordion-button::after {
     content: "";
 }

 .prop.icon li {
     padding-left: 30px !important;
     position: relative;
 }

 .prop.icon li:before {
     position: absolute;
     left: 0;
     top: 10px;
     content: "\F26B" !important;
     font-family: bootstrap-icons !important;
 }

 /**/
 nav ul,
 nav li {
     list-style: none;
     padding: 0;
     margin: 0;

 }

 @media(max-width:480px) {

     nav ul,
     nav li {
         overflow-y: initial;
     }
 }

 nav a {
     display: block;
     text-decoration: none;
 }

 nav a:hover,
 nav a:visited {
     text-decoration: none;
 }

 .menu-bar {
     background: rgba(255, 255, 255, 1);
     display: flex;
     justify-content: flex-start;
 }

 @media(min-width:1200px) {
     .menu-bar {
         justify-content: flex-end;
     }

 }

 @media(max-width:480px) {
     .menu-bar {
         overflow-y: auto;
         overflow-x: hidden;
     }
 }

 .menu-link {
     padding: 20px 25px;
     background: rgba(255, 255, 255, 1);
     color: var(--gray);
     transition: all 0.2s, color 0.2s;
     position: relative;
     z-index: 1;
     font-size: 1rem;
     white-space: nowrap;
 }

 @media(max-width:1200px) {
     .menu-link {
         padding: 20px 10px;
     }
 }

 @media(max-width:995px) {
     .menu-link {
         font-size: .9em;
         padding: 20px 5px;
     }
 }

 .menu-link:hover {
     background: rgba(0, 0, 0, .05);
 }

 .menu-link>img {
     /* Brand Logo */
     width: 200px;
     height: auto;
     opacity: 1;
     transition: all 0.2s, color 0.2s;
 }

 @media(max-width:992px) {
     .menu-link>img {
         width: 120px;

     }

 }

 .menu-link:hover>img {
     opacity: 1;
 }

 .menu-link[aria-haspopup="true"] {
     padding-right: 40px;
 }

 .menu-link[aria-haspopup="true"]:after {
     content: "";
     position: absolute;
     right: 10px;
     top: 50%;
     background-size: 100% auto;
     width: 16px;
     height: 16px;
     transform: translateY(-50%);
 }

 .mega-menu-header {
     font-size: 1.1em;
     text-transform: uppercase;
     font-weight: bold;
     color: #136a73;
 }

 .mega-menu {
     z-index: 10;
 }

 .mega-menu--multiLevel {
     flex-direction: column;
 }

 .headerclass {
     display: flex;
     justify-content: space-between;
     padding: 20px 30px;
     font-size: 1rem;
     font-weight: 700;
     letter-spacing: 0;
     background: #FFF;
 }

 .headerclass a {

     /*all*/
     color: var(--gold);
     font-size: .9rem !important;
     font-weight: normal;
     border-bottom: 1px solid var(--gold);
 }

 .desclass {
     font-family: var(--thfont);
     padding: 0 30px 20px 30px;
     font-size: 1rem;
     text-align: left;
 }

 .mega-menu {
     width: 30vw;
 }

 @media all and (min-width:951px) {
     .nav {
         background: #ffffff;
     }

     .nav>nav {
         max-width: 900px;
         margin: 0 auto;
     }

     .menu [aria-haspopup="true"]~ul {
         display: none;
         min-height: calc(100vh - 80px);
         padding-bottom: 80px;

     }

     .menu-bar {
         /*        position: relative;*/
     }

     .menu-bar>li>[aria-haspopup="true"] {

         /*      border-bottom: 4px solid transparent;*/
     }

     .menu-bar>li>[aria-haspopup="true"]:after {
         background-image: url("../img/arrowBottom.svg");
     }

     .menu-bar>li>[aria-haspopup="true"]:hover:after {
         background-image: url("../img/arrowBottom.svg");
     }

     .menu-bar>li>[aria-haspopup="true"]:focus~ul {
         display: flex;
         transform-origin: top;
         animation: dropdown 0.2s ease-out;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul:hover {
         display: flex;
     }

     .menu-bar>li:focus-within>[aria-haspopup="true"]~ul {
         display: flex;

     }

     .menu-bar>li>[aria-haspopup="true"]:focus,
     .menu-bar>li:focus-within>[aria-haspopup="true"],
     .menu-bar>li:hover>a {
         color: var(--gold);
     }

     .menu-bar>li>[aria-haspopup="true"]:focus:after,
     .menu-bar>li:focus-within>[aria-haspopup="true"]:after,
     .menu-bar>li:hover>a:after {}

     /* main */
     .mega-menu {
         position: fixed;
         top: 70px;
         left: 0 !important;
         right: auto;
         width: 30vw;
         background: #FFF;
         z-index: 2;
         box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
     }

     .mega-menu:hover {
         display: flex;
     }

     .mega-menu a:hover,
     .mega-menu a:focus {
         color: var(--gold);
     }

     /**/
     .mega-menu.mega-menu--multiLevel .menu-link.mega-menu-link:after {
         content: '';
         position: absolute;
         left: 50%;
         height: 20px;
         width: 50%;
         display: block;
         text-align: center;
         opacity: 0;
         transform: scaleX(0) translateX(-50%);
         transition: all ease-in-out .35s;
     }

     .mega-menu.mega-menu--multiLevel .menu-link.mega-menu-link:hover:after {
         transform: scaleX(1) translateX(-50%);
         opacity: 1;
     }

     /**/
     .mega-menu--multiLevel>li {
         width: 100%;
         text-align: center;
         border-bottom: 2px solid rgba(0, 0, 0, .1);
     }

     .mega-menu--multiLevel>li a {
         font-size: 1.2rem;
         /*    padding-right: 0 !important ;*/
     }

     .mega-menu--multiLevel>li>[aria-haspopup="true"]~ul {}

     .mega-menu--multiLevel>li>[aria-haspopup="true"]~ul ul {
         width: 100%;
         left: 100%;
     }

     .mega-menu--multiLevel li:hover>[aria-haspopup="true"]~ul {
         display: block;
         transform-origin: left;
         animation: flyout .8s ease-in-out;
     }

     .mega-menu--multiLevel li:focus-within>[aria-haspopup="true"]~ul {
         display: block;
     }

     .mega-menu--multiLevel li:hover>[aria-haspopup="true"],
     .mega-menu--multiLevel li:focus-within>[aria-haspopup="true"],
     .mega-menu--multiLevel li:hover>a,
     .mega-menu--multiLevel li:focus-within>a {

         /*    background: var(--white);*/
         color: var(--gray);
     }

     /**/
     .mega-menu--multiLevel [aria-haspopup="true"]~ul,
     .mega-menu--multiLevel [aria-haspopup="true"] {
         border-left: 1px solid #f0f0f0;
         overflow-y: auto;
     }

     .mega-menu--multiLevel [aria-haspopup="true"]~ul:hover,
     .mega-menu--multiLevel [aria-haspopup="true"]:hover {
         display: block;
     }

     .mega-menu--multiLevel [aria-haspopup="true"]~ul {
         /* submenu */
         position: fixed;
         top: 70px;
         left: 30vw;
         height: calc(100vh - 100px);
         width: 30vw;
         background: #FFF;
         z-index: 8;
         box-shadow: inset 0 2px 5px rgba(0, 0, 0, .1);
     }

     .mega-menu--flat>* {
         flex: 1;
     }

     .mobile-menu-trigger,
     .mobile-menu-header,
     .mobile-menu-back-item {
         display: none;
     }
 }

 .menu-bar li i {
     font-size: 1.3em;
 }

 .menu-bar>li.dropdown a img {
     width: 20px;
 }

 /**/
 .menu-close {
     position: absolute;
     right: 25px;
     top: 18px;
     background: transparent;
     border: none;
     z-index: 88;
     display: none;
 }

 .menu-close i {
     color: #333;
     font-size: 1.8rem;
     font-weight: 900 !important;
 }

 /**/
 @media all and (max-width:950px) {
     .nav {
         padding: 0;
     }

     .menu-close {
         display: block;
     }

     .mobile-menu-trigger,
     .mobile-menu-header,
     .mobile-menu-back-item {
         display: block;
     }

     .mobile-menu-trigger {
         color: #333;
         border: 0;
         padding: 10px 0;
         font-size: 2em;
         border-radius: 4px;
     }

     .mobile-menu-trigger:focus,
     .mobile-menu-trigger.active {
         color: var(--gold);
     }

     .mobile-menu-header {
         order: -1;
         display: flex;
         align-items: center;
         padding: 20px;
     }

     .mobile-menu-header img {
         /* logo 2  */
         width: 50px;
         height: auto;
     }

     .mobile-menu-header h1 {
         font-size: 1.5rem;
         font-weight: 600;
         color: var(--gray);
         font-family: var(--font-secondary);
         margin: 0;
         padding: 0;
     }

     .mobile-menu-header a {
         padding: 20px 25px;
         color: #ffffff;
         visibility: visible;
     }

     .menu-bar {
         flex-direction: column;
         position: fixed;
         top: 0;
         left: -100%;
         height: 100vh;
         width: 100%;
         overflow-x: hidden;
         transition: left 0.3s;
         box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.25);
         background: #FFF url('../img/navbg.jpg') no-repeat left bottom;
         background-size: 100% auto;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul {
         /* submenu  */
         display: flex;
         flex-direction: column;
         background: #FFF;
         left: 100%;
         top: 0;
         bottom: 0;
         max-height: 100vh;
         width: 100%;
         transition: left 0.3s;
     }

     .menu-bar>li>a.menu-link {
         /* L1 */
         text-align: center !important;
         font-size: 1.1em !important;
         font-weight: 600 !important;
     }

     /* L2 */
     .menu-bar>li>[aria-haspopup="true"]~ul>li>[aria-haspopup="true"] {
         font-size: 1rem;
         text-align: center;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul>li>[aria-haspopup="true"]~ul a {}

     .menu-bar>li>[aria-haspopup="true"]~ul>li>[aria-haspopup="true"]~ul>li>[aria-haspopup="true"]~ul a {
         padding-left: 80px;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"] {
         color: #2a2a2a;
         background: #eaeaea;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]:after {
         content: "+";
         color: rgba(0, 0, 0, .4);
         background: none;
         font-size: 1.5em;
         font-weight: normal;
         height: 20px;
         line-height: 1;
         margin: 0 20px 0 0;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]~ul {
         max-height: 0px;
         transform-origin: top;
         transform: scaleY(0);
         transition: max-height 0.1s;
     }

     .mega-menu-content {
         padding: 20px 25px;
     }

     .mobile-menu-back-item {
         order: -1;
     }

     .mobile-menu-back-item a {
         color: #2a2a2a;
         max-height: calc(1.4em + 70px);
         margin-top: -70px;
         pointer-events: none;
         font-size: 1rem;
     }

     .mobile-menu-back-item a:before {
         content: "";
         width: 14px;
         height: 12px;
         background-image: url("../img/arrowLeft.svg#default");
         background-size: 14px;
         margin-right: 10px;
         display: inline-block;
     }

     .mobile-menu-trigger:focus~ul {
         left: 0;
     }

     .menu-bar:hover,
     .menu-bar:focus-within {
         left: 0;
     }

     .menu-bar>li>[aria-haspopup="true"]:focus~ul {
         left: 0;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul {
         margin-top: 80px;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul:hover,
     .menu-bar>li>[aria-haspopup="true"]~ul:focus-within {
         left: 0;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]:focus~ul {
         max-height: 500px;
         animation: dropdown 0.3s forwards;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul li:focus-within>[aria-haspopup="true"]~ul {
         max-height: 500px;
         transform: scaleY(1);
     }

     .menu-bar>li:focus-within~.mobile-menu-header a {
         visibility: hidden;
     }

 }

 @media all and (max-width:950px) and (hover:none) {
     .mobile-menu-trigger:hover~ul {
         left: 0;
     }

     .menu-bar>li>[aria-haspopup="true"]:hover~ul {
         left: 0;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul:hover {
         left: 0;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]:hover~ul {
         animation: dropdown 0.3s forwards;
         overflow-y: auto;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]:hover~ul::-webkit-scrollbar {
         width: 1px;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]:hover~ul::-webkit-scrollbar-track {
         background: #f1f1f1;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]:hover~ul::-webkit-scrollbar-thumb {
         background: #999;
         border-radius: 20px;
     }

     .menu-bar>li>[aria-haspopup="true"]~ul [aria-haspopup="true"]~ul:hover {
         max-height: 500px;
         transform: scaleY(1);
     }

     .menu-bar>li:hover~.mobile-menu-header a {
         visibility: hidden;
     }

 }

 @keyframes dropdown {
     0% {
         opacity: 0;
         transform: scaleY(0);
     }

     50% {
         opacity: 1;
     }

     100% {
         transform: scaleY(1);
     }

 }

 @keyframes flyout {
     0% {
         opacity: 0;
         /*    transform: scaleX(-1);*/
     }

     100% {
         opacity: 1;
         /*    transform: scaleX(1);*/
     }

 }


 .header {
     background: var(--white);
     transition: all 0.5s;
     z-index: 997
 }

 @media screen and (max-width:768px) {
     .header {
         padding: 0 15px !important;
     }

 }

 .header.sticked {
     background: var(--white);
     box-shadow: 0px 2px 20px rgba(var(--gray), 0.1)
 }

 .header .logo img {
     max-height: 40px;
     margin-right: 10px;
     vertical-align: middle;
 }

 .header .logo h1 {
     font-size: 1.5rem;
     color: var(--gray);
     font-weight: 600;
     margin: 0;
     padding: 0;
 }

 .header .logo h1 span {
     color: var(--gold);
     font-weight: 500
 }

 .header .btn-getstarted,
 .header .btn-getstarted:focus {
     font-size: 16px;
     color: var(--white);
     background: var(--gold);
     padding: 8px 23px;
     border-radius: 4px;
     transition: 0.3s;
     font-family: var(--font-secondary);
 }

 .header .btn-getstarted:hover,
 .header .btn-getstarted:focus:hover {
     color: var(--white);
     /*  background: rgba(var(--white), 0.85)*/
 }

 @media (max-width:1279px) {

     .header .btn-getstarted,
     .header .btn-getstarted:focus {
         margin-right: 50px
     }

 }

 @media (min-width:1280px) {
     .navbar {
         padding: 0;
         position: relative
     }

     .navbar ul {
         margin: 0;
         padding: 0;
         display: flex;
         list-style: none;
         align-items: center
     }

     .navbar li {
         position: relative
     }

     .navbar>ul>li {
         white-space: nowrap
     }

     .navbar a,
     .navbar a:focus {
         display: flex;
         align-items: center;
         justify-content: space-between;
         padding: 14px 20px;
         font-family: var(--font-secondary);
         font-size: 1.1rem;
         font-weight: 400;
         color: rgba(var(--gray-dark-rgb), 0.7);
         white-space: nowrap;
         transition: 0.3s;
         position: relative
     }

     .navbar a i,
     .navbar a:focus i {
         font-size: 12px;
         line-height: 0;
         margin-left: 5px
     }

     .navbar>ul>li>a:before {
         content: "";
         position: absolute;
         width: 100%;
         height: 2px;
         bottom: 0;
         left: 0;
         background-color: var(--gold);
         visibility: hidden;
         transition: all 0.3s ease-in-out 0s;
         transform: scaleX(0);
         transition: all 0.3s ease-in-out 0s
     }

     .navbar a:hover:before,
     .navbar li:hover>a:before,
     .navbar .active:before {
         visibility: visible;
         transform: scaleX(0.7)
     }

     .navbar a:hover,
     .navbar .active,
     .navbar .active:focus,
     .navbar li:hover>a {
         color: var(--gold)
     }

     .navbar .dropdown a:hover:before,
     .navbar .dropdown:hover>a:before,
     .navbar .dropdown .active:before {
         visibility: hidden
     }

     .navbar .dropdown a:hover,
     .navbar .dropdown .active,
     .navbar .dropdown .active:focus,
     .navbar .dropdown:hover>a {
         color: var(--gray);
         /*      background: var(--lightgray)*/
     }

     .navbar .dropdown ul {

         /* mega pop */
         display: flex;
         align-items: flex-start;
         justify-content: flex-start;
         flex-direction: column;
         position: absolute;
         left: 0;
         right: 0;
         /*      height: 50vh;*/
         margin: 20px 0 0 0;
         padding: 0 0 10px 0;
         z-index: 99;
         opacity: 0;
         visibility: hidden;
         background: var(--white);
         transition: 0.3s;
         box-shadow: 0 0 5px 1px rgba(0, 0, 0, .2);
     }

     .navbar .dropdown ul li {
         min-width: 300px;
     }

     .navbar .dropdown ul a {
         padding: 10px 20px;
         font-size: 1rem;
         text-transform: none;
         font-weight: 400;
         color: rgba(var(--white), 0.5)
     }

     .navbar .dropdown ul a i {
         font-size: 12px
     }

     .navbar .dropdown ul a:hover,
     .navbar .dropdown ul .active,
     .navbar .dropdown ul .active:hover,
     .navbar .dropdown ul li:hover>a {
         color: var(--gray);
         background-color: transparent;
     }

     .navbar .dropdown:hover>ul {
         opacity: 1;
         visibility: visible;
     }

     .navbar .megamenu {
         position: static
     }

     .navbar .megamenu ul {
         right: 0;
         padding: 20px;
         display: flex;
         align-items: flex-start;
         justify-content: flex-start;
         flex-direction: column;
         position: fixed;
         left: 0;
         right: 0;
         min-height: 50vh;
         margin: 20px 0 0 0;
     }

     .navbar .megamenu ul li {
         flex: 1;
     }

     .navbar .megamenu ul li a,
     .navbar .megamenu ul li:hover>a {
         color: rgba(var(--white), 0.5);
         background: none;
     }

     .navbar .megamenu ul li a:hover,
     .navbar .megamenu ul li .active,
     .navbar .megamenu ul li .active:hover {
         color: var(--gold);
     }

     .navbar .dropdown .dropdown ul {
         top: 0;
         left: calc(100% - 30px);
         visibility: hidden
     }

     .navbar .dropdown .dropdown:hover>ul {
         opacity: 1;
         top: 0;
         left: 100%;
         visibility: visible
     }

 }

 @media (min-width:1280px) and (max-width:1366px) {
     .navbar .dropdown .dropdown ul {
         left: -90%
     }

     .navbar .dropdown .dropdown:hover>ul {
         left: -100%
     }

 }

 @media (max-width:1279px) {
     .navbar {
         position: fixed;
         top: 0;
         left: -100%;
         width: calc(100% - 70px);
         bottom: 0;
         transition: 0.3s;
         z-index: 9997;
     }

     .navbar ul {
         position: absolute;
         inset: 0;
         padding: 10px 0;
         margin: 0;
         background: rgba(0, 0, 0, .9);
         overflow-y: auto;
         transition: 0.3s;
         z-index: 9998
     }

     .navbar a,
     .navbar a:focus {
         display: flex;
         align-items: center;
         justify-content: space-between;
         padding: 12px 20px;
         font-size: 16px;
         font-weight: 500;
         color: rgba(225, 225, 225, .9);
         white-space: nowrap;
         transition: 0.3s
     }

     .navbar a i,
     .navbar a:focus i {
         font-size: 12px;
         line-height: 0;
         margin-left: 5px
     }

     .navbar a:hover,
     .navbar .active,
     .navbar .active:focus,
     .navbar li:hover>a {
         color: var(--white)
     }

     .navbar .dropdown ul,
     .navbar .dropdown .dropdown ul {
         position: static;
         display: none;
         padding: 10px 0;
         margin: 10px 0;
         transition: all 0.5s ease-in-out;
         /*      border: 1px solid rgba(0, 0, 0, .3);*/
     }

     .navbar .dropdown>.dropdown-active,
     .navbar .dropdown .dropdown>.dropdown-active {
         display: block
     }

     .mobile-nav-toggle {
         display: block !important;
         color: var(--gray);
         font-size: 28px;
         cursor: pointer;
         line-height: 0;
         transition: 0.5s;
         position: fixed;
         top: 20px;
         z-index: 9999;
         right: 20px
     }

     .mobile-nav-toggle.bi-x {
         color: var(--white)
     }

     .mobile-nav-active {
         overflow: hidden;
         z-index: 9995;
         position: relative
     }

     .mobile-nav-active .navbar {
         left: 0
     }

     .mobile-nav-active .navbar:before {
         content: "";
         position: fixed;
         inset: 0;
         background: rgba(0, 0, 0, .8);
         z-index: 9996
     }

 }

 /**/