@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --default-font: "Open Sans", sans-serif;
  --heading-font: "Open Sans", sans-serif;
  --nav-font: "Open Sans", sans-serif,
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #003054;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #E2E2E2;
  /* The default color of the main navmenu links */
  --nav-hover-color: #003054;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3a3939;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #003054;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f4f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: #252a2e;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(2, 15, 22, 1);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 5%;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid #434141;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 62px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.table_custome {
  border-top: 3px dotted rgb(0, 0, 0);
  border-bottom: 3px dotted rgb(0, 0, 0);
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(2, 15, 22, 1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu a,
.navmenu a:focus {
  padding: 18px 15px;
  font-size: 18px;
}

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffffff;
  background-color: #072131;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 70px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 64px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 16px;
  font-weight: 400;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 26px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
  color: #ffffff;
}

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

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

.footer .addredss li p {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  font-size: 16px;
  font-weight: 400;
}


.footer .footer-links ul i {
  padding-right: 10px;
  font-size: 20px;
  line-height: 1.2;
}

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

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

.footer a {
  color: #ffffff;
  display: inline-block;
  line-height: 1;
}

.footer a:hover {
  color: #ffffff;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  font-size: 13px;
}

.footer .credits a {
  color: #ffffff;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader img {
  max-width: 30px;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 3px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 40px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  border-radius: 50%;
}

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Register Top Button
--------------------------------------------------------------*/
.register_modal .modal-header {
  background-color: #F4F3F7;
  border-bottom: 0;
  align-items: flex-start;
  color: #595C5C;
  font-size: 14px;
}

.register_modal .modal-header .modal-title {
  color: #131517;
  font-weight: 600;
  font-size: 18px;
}

.ticket-option {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.register_modal .modal-body .form-check {
  font-weight: 600;
  font-size: 16px;
  color: #333333;
}

.register_modal .modal-body .bg-body-tertiary {
  background-color: #F4F3F7 !important;
  border-color: #F4F3F7 !important;
}

.register_modal .modal-body .ticket-option.border-dark {
  border-color: #333333 !important;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 80px;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  background-color: rgba(2, 15, 22, 1);
  background: url("../img/home-bg.jpg") no-repeat center center;
  background-size: 100% 100%;
  z-index: 1;
  padding-bottom: 10px;
  padding-top: 4.3vw;
  padding-left: 5.5vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.hero::before {
  content: "";
  position: absolute;
  background: url("../img/left-bg-hero.png") no-repeat left top;
  background-size: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 48%;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  background: url("../img/right-bg-hero.png") no-repeat right top;
  background-size: contain;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tekla_user_logo {
  width: 34vw;
  min-width: 180px;
}

.trimble_logo {
  width: 21.5vw;
  min-width: 80px;
}

.header_part {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}


.header_text {
  padding-top: 6vw;
}

.hero .badge-wrapper .d-inline-flex {
  padding: 0.5rem 0.75rem;
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .badge-wrapper .d-inline-flex .icon-circle {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .badge-wrapper .d-inline-flex .icon-circle i {
  font-size: 0.875rem;
  color: var(--heading-color);
}

.hero .badge-wrapper .d-inline-flex .badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--heading-color);
}

@media (max-width: 767.98px) {
  .hero .badge-wrapper .d-inline-flex .badge-text {
    font-size: 0.75rem;
  }
}

.hero .hero-title {
  font-size: 3.0vw;
  font-weight: 500;
  line-height: 1.0;
  color: #ffffff;
}

.hero-title span {
  color: #fbad26;
}

@media (max-width: 991.98px) {
  .hero .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero .hero-title {
    font-size: 1.75rem;
  }
}

.hero .hero-description {
  font-size: 1.4vw;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero .hero-description span {
  color: #fbad26;
}

.hero .hero-description h3 {
  font-size: 2.0vw;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 500;
  margin-top: 20px;
}

.hero .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero .cta-wrapper .btn-primary {
  padding: 0.7rem 2.0rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  font-size: 18px;
  border-radius: 30px;
}

.hero .cta-wrapper .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  /* transform: translateY(-3px); */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .cta-wrapper .btn-rounded {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: transparent;
  border-color: 0;
  color: #fff;
  font-size: 18px;
  border-radius: 100%;
  background: -webkit-linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  background: -moz-linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  background: -o-linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
  background: linear-gradient(93.15deg, #72742F 2.39%, #385A73 97.73%);
}

.home_circle {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  text-align: right;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 3.8%;
}

.home_circle img {
  max-width: 14%;
}


.hero .feature-boxes {
  margin-top: 3rem;
}

.hero .feature-boxes .feature-box {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero .feature-boxes .feature-box .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background-color: #000;
  overflow: hidden;
  border-radius: 23px;
}

.hero .feature-boxes .feature-box .video-thumbnail,
.hero .feature-boxes .feature-box .video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .feature-boxes .feature-box .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  padding: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.hero .feature-boxes .feature-box .play-button::after {
  content: "";
  position: absolute;
  left: -15px;
  top: -15px;
  right: -15px;
  bottom: -15px;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 100%;
}

.hero .feature-boxes .feature-box .play-button .play-icon {
  padding-left: 10px;
}

.hero .feature-boxes .feature-box .video-player {
  display: none;
}

/*--------------------------------------------------------------
# Register Section
--------------------------------------------------------------*/



.registeriframe {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.iframeField {
  text-align: center;
}

.iframeField iframe {
  max-width: 620px;
  width: 100%;
  height: 761px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about_part {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding: 30px;
  min-height: 100vh;
  display: flex;
}


.about_inner {
  width: 100%;
  padding: 3vw 16vw;
  background: url("../img/about-bg.jpg") no-repeat center center;
  background-size: cover;
  color: #252a2e;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about_inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url("../img/about-left.png") no-repeat left center;
  background-size: 12vw;
  opacity: 1;
  animation: mainzoomsmall 5s;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}

.about_inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url("../img/about-footer.png") no-repeat right bottom;
  background-size: 34vw;
  opacity: 1;
  animation: mainzoomlarge 5s;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}

@keyframes mainzoomsmall {
  from {
    background-size: 8%;
  }

  to {
    background-size: 12%;
  }
}


.about_zindex {
  position: relative;
  z-index: 3;
}

.about_inner h3 {
  text-align: center;
  color: #252a2e;
  font-size: 2.85vw;
  margin-bottom: 30px;
  line-height: 1.0;
  font-weight: 550;
}

.about_inner p {
  font-size: 1.2vw;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 500;
  color: #252a2e;

}

.about_inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about_inner ul li {
  font-size: 1.2vw;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 500;
  padding-left: 34px;
  background: url("../img/list.png") no-repeat left 4px;
  background-size: 20px;

}

.agenda_part {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding: 30px;
  min-height: 100vh;
  display: flex;
}

.agenda_inner {
  width: 100%;
  padding: 3vw 4vw;
  background: url("../img/agenda-bg.jpg") no-repeat center center;
  background-size: cover;
  color: #252a2e;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.agenda_inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url("../img/agenda-circle.png") no-repeat right center;
  background-size: 12vw;
  opacity: 1;
  animation: mainzoomsmall2 5s;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}

@keyframes mainzoomsmall2 {
  from {
    background-size: 10%;
  }

  to {
    background-size: 12%;
  }
}

.agenda_inner h2 {
  text-align: center;
  color: #252a2e;
  font-size: 2.85vw;
  margin-bottom: 30px;
  line-height: 1.0;
  font-weight: 550;
}

.agenda_inner p {
  font-size: 1.2vw;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.agenda_inner p.subject_changes {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 550;
  color: #252a2e;
  margin-top: 8vw;
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-accordion {
  padding-top: 40px;
}

.faq .faq-item {
  background-color: transparent;
  border-top: 3px dotted rgb(0, 0, 0);
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
  border-bottom: 3px dotted rgb(0, 0, 0);
}



.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3vw 7vw;
  cursor: pointer;
  position: relative;
}

.faq .faq-item .faq-header h3 {
  font-size: 32px;
  font-weight: 500;
  color: #252a2e;
  margin: 0;
  flex: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle {
  font-size: 46px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  background: #ffa335;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 50%;
  line-height: 1;
  padding: 3px;
}

.faq .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq .faq-item .faq-content p {
  padding: 0 30px 20px;
  margin: 0;
  line-height: 1.4;
  color: #2F383E;
  font-size: 20px;
  font-weight: 400;
}

.faq .faq-item.faq-active .faq-header h3 {
  color: #170F49;
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  transform: rotate(180deg);
  background: #ffa335;
  color: #000;
  border-color: #000000;
}

.faq .faq-item.faq-active .faq-content {
  max-height: inherit;
  overflow: auto;
  padding: 0 5vw;
}

.faq .faq-contact-card {
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  color: var(--contrast-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq .faq-contact-card .card-icon {
  margin-bottom: 20px;
}

.faq .faq-contact-card .card-icon i {
  font-size: 48px;
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.faq .faq-contact-card .card-content h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq .faq-contact-card .card-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.faq .faq-contact-card .contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: auto;
}

.faq .faq-contact-card .contact-options .contact-option {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 8px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.faq .faq-contact-card .contact-options .contact-option:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
}

.faq .faq-contact-card .contact-options .contact-option i {
  font-size: 20px;
  margin-right: 12px;
}

.faq .faq-contact-card .contact-options .contact-option span {
  font-weight: 500;
  font-size: 16px;
}

.table {
  font-size: 24px;
}

.table> :not(caption)>*>* {
  padding: 1rem 1rem;
  background-color: transparent;
  border-bottom: 3px solid #BDC5CC;
}

.table tr:last-child td {
  border-bottom: 0 !important;
}

.table tr:last-child td.border_top {
  border-top: 3px dotted rgb(0, 0, 0) !important;
}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
  font-weight: bold !important
}

.header_part_2 {
  text-align: center;
}

.header_part_2 img {
  width: 30%;
  max-width: 500px;
  min-width: 180px;
  padding-top: 20px;
}


/*--------------------------------------------------------------
# Referral Program Section
--------------------------------------------------------------*/

.referral_part {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding: 30px;
  min-height: 100vh;
  display: flex;
}


.referral_inner {
  width: 100%;
  min-height: 100%;
  padding: 3vw 2.5vw;
  background: url("../img/referral-bg.jpg") no-repeat center center;
  background-size: cover;
  color: #252a2e;
  z-index: 1;
  position: relative;
  padding-right: 44vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.referral_inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url("../img/referral-program.png") no-repeat top right;
  background-size: 45vw;
  opacity: 1;
}

.referral_inner h3 {
  text-align: left;
  color: #252a2e;
  font-size: 3.8vw;
  margin-bottom: 4vw;
  font-weight: 700;
}

.referral_inner p {
  font-size: 1.2vw;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 500;
  color: #171c1e;
}

.register_now {
  font-size: 1.4vw;
  padding: 10px 35px 13px;
  background-color: #FBAD26;
  color: #000000;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
  margin-top: 10px;

}

.register_now:hover {
  background-color: #ffffff;
  color: #000000;
}

.referral_inner .btn {
  font-size: 1.4vw;
  padding: 10px 35px 13px;
  background-color: #003054;
  color: #ffffff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 40px;
}

.referral_inner .btn:hover {
  background-color: rgb(251, 173, 38);
  ;
  color: #003054;
}


/*--------------------------------------------------------------
# Register_part Program Section
--------------------------------------------------------------*/
.register_part {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding: 30px;
  min-height: 100vh;
  display: flex;
  text-align: center;
}


.register_inner {
  width: 100%;
  min-height: 100%;
  padding: 3vw 2.5vw;
  background: #e0e1e9 url("../img/register-bg.png") no-repeat top center;
  background-size: cover;
  color: #003054;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0;
}

.register_inner h3 {
  text-align: center;
  color: #252a2e;
  font-size: 2.85vw;
  margin-bottom: 30px;
  line-height: 1.0;
  font-weight: 550;
}

.register_inner p {
  font-size: 1.2vw;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 500;
  color: #252a2e;
}

.register_inner p.queries {
  font-size: 1.3vw;
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: 650;
}

.registration_now {
  padding-top: 40px;
}

.registration_now h2 {
  font-size: 2.6vw;
  color: #252a2e;
  font-weight: bold;
  margin-bottom: 20px;
}

.register_inner .btn {
  font-size: 1.4vw;
  padding: 10px 35px 13px;
  background-color: #003054;
  color: #ffffff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 40px;
}

.register_inner .btn:hover {
  background-color: rgb(251, 173, 38);
  ;
  color: #003054;
}

.footer_circle {
  width: 100%;
  text-align: center;
  /* padding-top: 50px; */
  margin-bottom: -30px;
}

.footer_circle img {
  width: 35%;
  opacity: 1;
}


.Referral_Program_page p {
  font-size: 1.2vw;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: left;
}

.Referral_Program_page ul li {
  font-size: 1.2vw;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: left;
}

.Referral_Program_page h2 {
  color: #252a2e;
  font-size: 2.2vw;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 1.0;
  font-weight: 700;
}

.Referral_Program_page h3 {
  text-align: left;
  color: #252a2e;
  font-size: 2.0vw;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 1.0;
  font-weight: 550;
}


.Terms_part {
  font-size: 1vw;
  color: #252a2e;
  text-decoration: underline;
  font-weight: 700;
  margin-top: 30px;
}

.Terms_part:hover {
  color: #252a2e;
}


.table thead tr th {
  vertical-align: top;
}

.Referral_Program_page a {
  color: blue;
}


@media (min-width: 0px) and (max-width:1600px) {
  .about_inner p {
    font-size: 1.4vw;
  }

  .faq .faq-item .faq-header h3 {
    font-size: 26px;
  }

  .table {
    font-size: 20px;
  }
}

@media (min-width: 0px) and (max-width:1360px) {
  .faq .faq-item .faq-header h3 {
    font-size: 24px;
  }

  .table {
    font-size: 16px;
  }
}

@media (min-width: 0px) and (max-width:1200px) {
  .faq .faq-item .faq-header h3 {
    font-size: 20px;
  }

  .table {
    font-size: 14px;
  }
}

@media (min-width: 0px) and (max-width:991px) {

  .hero {
    background: url("../img/home-bg.jpg") no-repeat center center;
    background-size: cover;
  }

  .about_part,
  .agenda_part,
  .referral_part,
  .register_part {
    padding: 0;
  }

  .hero {
    background-position: center center;
  }

  .hero .hero-title {
    font-size: 5vw;
  }

  .hero .hero-description h3 {
    font-size: 3.5vw;
  }

  .footer_circle {
    margin-bottom: 0;
  }

  .hero .hero-description {
    font-size: 3vw;
  }

  .about_inner h3,
  .register_inner h3 {
    font-size: 3.5vw
  }

  .faq .faq-item .faq-header h3 {
    font-size: 17px;
  }

  .about_inner p {
    font-size: 1.8vw;
  }

  .faq .faq-item .faq-header .faq-toggle {
    font-size: 30px;
  }

  .agenda_inner p.subject_changes {
    font-size: 14px;
  }

  .about_inner ul li {
    font-size: 1.8vw;
  }

  .agenda_inner h2 {
    font-size: 3.5vw
  }

  .agenda_inner p,
  .referral_inner p,
  .register_inner p,
  .Referral_Program_page ul li {
    font-size: 1.8vw;
  }

  .referral_inner .btn {
    font-size: 2.0vw;
    margin-top: 20px;
  }

  .register_now {
    font-size: 2.0vw;
    margin-top: 20px;
  }

  .header_text {
    padding-top: 20vw;
  }

  .register_inner p.queries {
    font-size: 1.6vw;
  }

  .Terms_part {
    font-size: 13px;
  }

  .Referral_Program_page h2 {
    font-size: 3.0vw;
  }

  .Referral_Program_page h3 {
    font-size: 3.0vw;
  }

  .about_inner {
    padding-bottom: 10vw;
  }
}

@media only screen and (min-device-width: 0px) and (max-device-width: 767px) and (orientation:portrait) {


  .hero {
    padding-bottom: 40px;
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    min-height: auto;
  }

  .tekla_user_logo {
    width: 36vw;
    min-width: 126px;
    margin-bottom: 30px;
  }

  .hero .hero-description h3 {
    font-size: 5.0vw;
    margin-top: 20px;
  }

  .hero .hero-title {
    font-size: 7vw;
    margin-top: 17vw !important;
  }

  .hero .hero-description {
    font-size: 4vw;
  }

  .about_inner h3 {
    font-size: 4.3vw;
    font-weight: bold;
  }

  .about_inner {
    padding: 3vw 6vw;
  }

  .about_inner p,
  .about_inner ul li {
    font-size: 3.5vw;
  }

  .about_inner ul li {
    padding-left: 23px;
    background-size: 12px;
  }

  .agenda_inner h2 {
    font-size: 4.3vw;
    font-weight: bold;
  }

  .agenda_inner p,
  .referral_inner p,
  .register_inner p,
  .Referral_Program_page ul li {
    font-size: 3.6vw;
  }

  .faq .faq-item .faq-header h3 {
    font-size: 16px;
  }

  .about_part,
  .agenda_part,
  .referral_part,
  .register_part {
    min-height: auto;
  }

  .about_inner,
  .agenda_inner,
  .referral_inner,
  .register_inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .referral_inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .referral_inner h3 {
    font-size: 5.5vw;
    /* text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff; */
    margin-top: 5vw;
  }

  .referral_inner .btn {
    font-size: 14px;
    margin-top: 20px;
  }

  .register_now {
    font-size: 14px;
    margin-top: 20px;
    padding: 7px 24px 9px;
  }

  .registration_now h2 {
    font-size: 5.4vw;
  }

  .register_inner .btn {
    font-size: 3.4vw;
    margin-top: 0;
  }

  .register_inner {
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .register_inner h3 {
    font-size: 4.3vw;
    font-weight: bold;
  }

  .table> :not(caption)>*>* {
    padding: 0.5rem 0.2rem !important;
  }

  .register_inner p br {
    display: none;
  }


  /* .hero .hero-title{
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  } */



  .faq .faq-item .faq-header .faq-toggle {
    font-size: 22px;
  }



  @keyframes mainzoomsmall {
    from {
      background-size: 6%;
    }

    to {
      background-size: 8%;
    }
  }

  .register_inner p.queries {
    font-size: 14px;
  }

  .Terms_part {
    font-size: 12px;
  }

  .Referral_Program_page h2 {
    font-size: 5.0vw;
  }

  .Referral_Program_page h3 {
    font-size: 5.0vw;
  }

}

@media (min-width: 0px) and (max-width:574px) {
  .header_text {
    padding-top: 150px;
  }

  .register_inner p.queries {
    font-size: 12px;
  }

  .register_now {
    margin-top: 0;
  }

  .Referral_Program_page h3 {
    font-size: 5.0vw;
  }

  .header_part_2 img {
    margin-bottom: 15px;
  }

}