@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    --border-color: #E8E8E8;
    --body: 1rem;
    --head-font: 'BentonSans';
  --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;
}

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);
}


/*--------------------------------------------------------------
# Hero Section 29.08.25
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  background-color: rgba(2, 15, 22, 1);
  background: url("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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;
}


.gold-sponser {
  padding-right: 15vw;

}

.gold-sponser h4 {
  font-size: 2.0vw;
  line-height: 1.6;
  color: #fbad26;
  text-transform: uppercase;
  text-align: center;
}

.gold-sponser img {
  width: 20vw;
  min-width: 120px;
  margin-bottom: 20px;
  border-radius: 15px;
  max-width: 350px;
}



@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;
}


/*--------------------------------------------------------------
# Hero Section 29.08.25
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Register_part Program Section 29.08.25
--------------------------------------------------------------*/
.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;
}

/*--------------------------------------------------------------
# Register_part Program Section 29.08.25
--------------------------------------------------------------*/

/*--------------------------------------------------------------
#  About Section 29.08.25
--------------------------------------------------------------*/
.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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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;
}

/*--------------------------------------------------------------
#  About Section 29.08.25
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Faq Section 29.08.25
--------------------------------------------------------------*/

.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;
}

/*--------------------------------------------------------------
# Faq Section 29.08.25
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Referral Program Section 29.08.25
--------------------------------------------------------------*/
.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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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;
}

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

/*--------------------------------------------------------------
# Register_part Program Section 29.08.25
--------------------------------------------------------------*/
.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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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;
}
/*--------------------------------------------------------------
# Register_part Program Section 29.08.25
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Scroll Top Button 29.08.25
--------------------------------------------------------------*/
.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;
}

/*--------------------------------------------------------------
# Scroll Top Button 29.08.25
--------------------------------------------------------------*/

@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("https://cdn6.godcstatic.com/virtual_tud2025/staticfiles/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;
  }

    .mob_col {
        display: flex;
        flex-direction: column !important;
        -webkit-flex-direction: column !important;
        align-items: flex-start !important;
        -webkit-align-items: flex-start !important;
        padding-bottom: 10px;
    }

}


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

  .gold-sponser h4 {
  font-size: 3vw;
  }

  .gold-sponser {
  margin-top: 0px;
  }

}

@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: 10px;
    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;
  }

}



.login_page_h {
    min-height: 100vh !important;
}

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

.welcome_left {
    width: 36%;
}

.welcome_center {
    width: 64%;
}

.welcome_center {
    padding: 2vw 3vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.welcome_center .axis_logo {
    margin-left: auto;
}

.axis_logo {
    max-width: 14vw;
    min-width: 200px;
}

.axis_mid {
    padding-top: 10vh;
    max-width: 100%;
    width: 100%;
}

.axis_mid img {
    max-width: 75%;
}

/*.form-control,
.form-select {
    border-color: var(--border-color);
    border: 4px solid var(--primary-color);
    border-radius: 40px;
    background-color: transparent;
    padding: 0.675rem 1.3rem;
    font-size: 22px;
    color: #6D6E71;
}*/

/*.form-control:focus,
.form-select:focus {
    color: var(--secondary-color);
    border-color: var(--border-color);
}

*/

.logi_steps {
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 20px 30px;
    color: #fff;
    text-align: left;
}

.logi_steps h5 {
    font-size: 23px;
    text-align: left;
}

.logi_steps ol {
    padding-left: 25px;
    margin: 0;
    font-size: 20px;
    font-weight: 300;
}

.dc-mw-400 {
    width: 100%;
    max-width: 75%;
    border-radius: 15px;
}

.dc-mw-600 {
    width: 100%;
    max-width: 600px;
}

.input-group-text {
    border-color: var(--border-color);
    background-color: var(--white);
}

::-webkit-input-placeholder {
    color: #252a2e !important;
    opacity: 1;
    text-transform: capitalize;
    border-left: 0;
    padding-left: 0px;
}

::-moz-placeholder {
    color: #252a2e !important;
    opacity: 1;
    text-transform: capitalize;
    border-left: 0;
    padding-left: 0px;
}

:-ms-input-placeholder {
    color: #252a2e !important;
    opacity: 1;
    text-transform: capitalize;
    border-left: 0;
    padding-left: 0px;
}

:-moz-placeholder {
    color: #252a2e !important;
    opacity: 1;
    text-transform: capitalize;
    border-left: 0;
    padding-left: 0px;
}

.form-control:focus {
    color: #252a2e;
    background-color: transparent;
    border-color: #000000;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background: transparent;
    background-color: transparent;
    /* -webkit-text-fill-color: var(--dark);
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    box-shadow: inset 0 0 4px var(--primary-color);
    -webkit-box-shadow: inset 0 0 4px var(--primary-color); */
    transition: background-color 5000s ease-in-out 0s;
}

@media only screen and (max-width: 991px) {

    .form-control,
    .form-select {
        border-width: 3px;
    }
}

.pd-l-r {
    padding: 0 70px 0 70px;
}


.about_part {
    overflow-x: hidden;
}

.yellow_line {
    background-color: #fbad26;
    width: 290px;
    height: 14px;
    border-radius: 0 3px 3px 0;
    margin: 25px 0;
}

.about_part_text_pad {
    padding-right: 3vw;
}

.about_part_text h3 {
    font-size: 3.7vw;
    font-weight: 500;
    margin-bottom: 2.0vw;
    margin-top: 1vw;
}

.about_part_text p,
.about_part_text ul.aboutul {
    font-size: 1.3vw;
    margin-bottom: 28px;
}

.about_part_text ul.aboutul {
    padding: 0;
    text-align: left;
}

.about_part_text ul.aboutul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.about_part_text ul.aboutul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #fbad26;
}

.about_part_text p span {
    color: #fbad26;
}

.about_part_text .table {
    color: #fff;
    font-size: 1.0vw;
    margin: 0;
}

/*.table-bordered>:not(caption)>*>* {
    border-width: 0 0px;
    border: 1px solid #fff;
    color: #fff;
    border-left: 2px solid #000 !important;
    border-right: 2px solid #000 !important;
}

.table th {
    background-color: #ef9f20;
    color: #000;
    border: 2px solid #000;
    font-size: 1.5vw;
}
*/
.border-bottom {
    border-bottom: 2px solid #000 !important;
}






/*========== NEW CSS =============*/

@font-face {
    font-family: 'BentonSans';
    src: url('../fonts/BentonSans-Bold.woff2') format('woff2'),
        url('../fonts/BentonSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BentonSans';
    src: url('../fonts/BentonSans-Regular.woff2') format('woff2'),
        url('../fonts/BentonSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


p strong {
    font-weight: bold;
}

h1 {
    font-weight: bold;
}

.form-label {
    margin-bottom: 0.2rem;
    font-size: 1.71vw;
    color: #fff;
    width: 22vw;
    font-size: 18px;
}

.form-control,
.form-select {
background-color: #fff;
    border: 0;
    min-height: 54px;
       color: #252a2e;
    font-size: 18px;
    border-radius: 15px;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: rgb(190 190 196 / 50%);
    color: #fff;
}


select.form-select {
    color: #fff !important;
    background-image: url(../img/arrow-down.png);
}

select.form-select option{
    color: #000000!important;
}

.form-control:focus,
.form-select:focus {
    color: var(--secondary-color);
    border-color: var(--border-color);
}



.dc-mw-400 {
    width: 100%;
    max-width: 400px;
}

/*.dc-mw-600 {
    width: 100%;
    max-width: 600px;
}*/

.loginTitle{
  font-size: 1.2vw;
  font-weight: 600;
  line-height: 1.0;
  color: #ffffff;
}

.input-group-text {
    border-color: var(--border-color);
    background-color: var(--white);
}


/* header css */

/*Header*/
.template_header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    /* height: 100px; */
    z-index: 999;
    align-items: center;
    display: flex;
    transition: all 250ms linear;
}

.template_header.sticky {
    background: rgba(0, 99, 163, 1);
    position: fixed;
    height: 80px;
    box-shadow: 0px 3px 7px rgb(0 0 0 / 10%);
}

.template-logo {
    display: block;
}

.template-sticky-logo {
    display: none;
}

.template_header.sticky .template-sticky-logo {
    display: block;
}

.template_header .img-fluid {
    transition-duration: 500ms;
    max-width: 35vw;
}

/* .template_header.sticky .template-header-logo{
    display: none;
} */
.template-nav {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.template-nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0px 0;
}

.template-nav ul li {
    margin: 0 13px;
}


.template-nav ul li a {
    font-size: 1.51vw;
    line-height: 20px;
    color: #FFFFFF;
    font-family: var(--head-font);
    position: relative;
    font-weight: normal;
}

.template-nav ul li:first-child a:after {
    display: none;
}



.template-menu-icon {
    display: none;
}

.login-process-pages .template_header {
    position: static;
    background: #fff;
}

.login-process-pages .template_header .template-nav ul li a {
    color: #000;
}

.login-process-pages .template_header .template-nav ul li a:after {
    background: #000;
}

.login-process-pages .template-header-logo {
    display: none;
}

.login-process-pages .template-sticky-logo {
    display: block;
}

.template_header.sticky .template-nav .register-btn:hover {
    color: var(--theme-color);
}

.login-process-pages .template-nav .register-btn:hover {
    color: var(--theme-color);
}


.template_header.sticky .template-header-logo {
    max-width: 190px;
    transform: translate(0, -33%);
}

/* header css end */


.homeSection {
    position: relative;
}

.homeSection .container {
    max-width: 90%;
}

.template_header {
    padding-top: 40px;
}

.backgroundVideoHome {
    width: 100%;
    position: relative;
    top: 0;
}

.homeContent {
    position: relative;
    padding-top: 12vw;
    padding-bottom: 10vw;
    min-height: 100vh;
    background: url(../img/home-banner-bg.jpg) no-repeat bottom center;
    background-size: 100%;
}

.homeConteInner {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    left: auto;
    right: auto;
}



.comanTitle {
    color: #fff;
    font-size: 3.48vw;
    font-weight: 400;
    line-height: 4.1vw;
    margin: 0 0 15px 0;
    text-align: center;
}

p.homePara {
    font-size: 2.2vw;
    color: #fff;
    line-height: 2.23vw;
    margin-top: 2.2vw;
    font-weight: 700;
}


p.homePara .typewrite {
    color: #fbad26;
}

.notes .note_list {
  position: relative;
}

.notes .note_list li {
  display: none;
}

.notes .note_list li.active {
  display: block;
}

.notes {
    display: inline-flex;
    font-size: 2.1vw;
    color: #fff;
    line-height:1.4;
    margin-top: 6.5vw;
    font-weight: 700;
    flex-wrap: wrap;
}

.notes .note_list {
    color: #fbad26;
}

.eventDateTime {
    color: #fff;
    font-size: 2.0vw;
    font-weight: bold;
    line-height: 1.4;
    margin: 1vw 0 0 0;
}

.eventDateTime sup{
    font-size: 1.5vw;
}

.eventTime {
    font-size: 2.2vw;
    line-height: 1.2;
    display: block;
    margin-top: 5px;
    font-weight: 600;
}

.registerNowBtn {
    color: #002856 !important;
    font-size: 1.8vw;
    font-weight: bold;
    line-height: 1.8vw;
    margin: 2vw 0 0 0;
    background-color: #fcbb56;
    display: inline-flex;
    padding: 12px 20px 14px 20px;
    border-radius: 8px;
}


/* about section start */

.aboutSection {
    position: relative;
    background: url(../img/about-bg.png) no-repeat center center;
    background-size: cover;
}

.backgroundVideoAbout {
    width: 100%;
    position: relative;
    top: 0;
}

.aboutConteInner {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    left: auto;
    right: auto;
}

.aboutSection .container-main {
    color: #fff;
    font-size: 1.30vw;
    font-weight: normal;
    font-family: var(--head-font);
}

.aboutSection .container-main p {
    margin-bottom: 1.5vw;
}

.languageChange {
    padding-left: 8vw !important;
}

.aboutSection .containerSection {
    padding-top: 2vw;
}

.aboutSection .containerSection .container-main {
    color: #fff;
    font-size: 1.25vw;
    font-weight: normal;
    font-family: var(--head-font);
    padding-right: 36vw;
}

.teklaUserParagarph {
    margin-top: 2.6vw;
    margin-bottom: 2.1vw;
    /* font-size: 1.56vw; */
}


/* throught back section */

.throughBackSection {
    background: url(../img/throwback-background.jpg) no-repeat;
    background-size: cover;
    position: relative;
    background-color: #000;

}

.throughBackInner {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    left: auto;
    right: auto;
    position: relative;
    z-index: 1;
}

.throughBackSection .container-main {
    color: #fff;
    font-size: 1.30vw;
    text-align: center;
}


.throughBackSection .mainWrapper {
    padding-top: 5vw;
}

.throughBackSection .comanTitle {
    text-align: center;
}

.throughBackSection .videoSection {
    padding-top: 4vw;
    max-width: 52vw;
    margin: 0 auto;
    padding-bottom: 12vw;
}

.throughBackSection p.secondPara {
    font-size: 1.71vw;
}


/* register section first */

.registerSectionFirst {
    background: url(../img/Register-first-background.jpg) no-repeat;
    background-size: cover;
    position: relative;
}

.registerSectionFirstConteInner {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    left: auto;
    right: auto;
    padding-top: 3.5vw;
    padding-bottom: 17.5vw;
    position: relative;
    z-index: 1;
}

.registerSectionFirst .container-main {
    color: #fff;
    font-size: 1.30vw;
    text-align: left;
    padding-right: 39vw;
}

.registerSectionFirst .container-main p {
    margin-bottom: 1.8vw;
}

.registerSectionFirst .container-main .subtitle {
    font-size: 1.71vw;
}

/* register second page */


.registerSectionSecond {
    background: url(../img/register-bg.jpg) no-repeat bottom center;
    background-size: 100%;
    min-height: 98.5vw;
    position: relative;
}


.registerSectionSecondInner {
    width: 100%;
    max-width: 57%;
    margin: 0 auto;
    padding-top: 2.5vw;
    position: relative;
    z-index: 1;
}

.text-danger {
    width: 100%;
    position: absolute;
    top: calc(100% + 3px);
    font-size: 12px;
    padding-left: 18.8vw;
    left: 0;
    color: #fff !important;
/*    text-align: center;*/
}

.form-label {
    margin-bottom: 0rem;
    font-size: 1.3vw;
    color: #fff;
    width: 26vw;
}

.registerSectionSecondInner .eventDate {
    font-size: 1.7vw;
    font-weight: 400;
}

.inputGrup {
    margin-bottom: 20px;
    display: flex;
    position: relative;
    align-items: center;
}


.eventDate {
    text-align: center;
    color: #fff;
    margin-bottom: 3vw;
}


.submitingchickbox .form-check {
    padding-left:17.8vw;
    text-align: left;
}

.submitingchickbox .form-check-label {
    color: #fff;
    font-size: 1.0vw;
    margin-bottom: 0;
    font-style: italic;
}

.regiterBtnWrapper {
    text-align: center;
    padding-bottom: 3.4vw;
    padding-top: 0.7vw;
}

.regiterBtnWrapper .btn {
    color: #002856;
    font-size: 1.6vw !important;
    background-color: #fbad26;
    font-weight: bold;
    padding: 4px 25px;
    line-height: 1.97vw;
    border-radius: 8px;
    min-width: auto;
}



.generate_otp_wrapper .btn{
    color: #002856;
    font-size: 20px;
    background-color: #fbad26;
    font-weight: bold;
    padding: 5px 15px !important;
    line-height: 1.4;
    border-radius: 8px;
    min-width: auto;
    text-transform: capitalize;
}

.contactDetailWrapper {
    text-align: center;
    color: #fff;
    font-size: 1.10vw;
    padding-bottom: 32.41vw;
}

.contactLstInfo {
    display: block;
    margin-top: 6px;
}

.contactDetailWrapper a {
    color: #fff !important;
    text-decoration: underline;
}

.languageRightForm {
    width: 100%;
    background: rgba(37, 49, 85, 0.7);
    border-radius: 15px;
    min-height: 58px;
    padding: 0.375rem 0.75rem;
    display: flex;
    justify-content: center;
    color: #fff;
    align-items: center;
    font-family: var(--head-font);
    font-size: 18px;
}

.languageRightForm input {
    width: 17px;
    height: 17px;
    margin-right: 10px;
}

.languageSelectBlock {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.languageSelectBlock.leftLang::after {
    content: "";
    position: absolute;
    width: 1px;
    background-color: #fff;
    left: 100%;
    height: 100%;

}

/* agenda section start */

.agendaSection {
    background: url(../img/agenda-bg.jpg) no-repeat;
    background-size: cover;
    min-height: 68vw;
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.agendaSection .agendaMaincontainer {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 1.5vw;
    padding-bottom: 3vw;
    position: relative;
    z-index: 1;
}

.agendaListWrapper {
    list-style: none;
    padding: 0 2.6vw;
    margin: 0;
    font-size: 1.30vw;
    color: #fff;
    padding-top: 25px;
    padding-bottom: 20px;
}

.agendaListWrapper {
    position: relative;
}

.agendaListWrapper::before {
    content: "";
    position: absolute;
    left: 62px;
    width: 1px;
    background: #d1d2d4;
    height: 100%;
    top: 0;
    display: none;
}


.agendaMaincontainer .nav-tabs .nav-item::after,
.agendaMaincontainer .agendaList::after {
    display: none !important;
}

.agendaListWrapper .agendaList {
    display: flex;
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.agendaListWrapper .userimageBlock {
    width: 100px;
    padding-top: 14px;
    padding-bottom: 10px;

}

.agendaListWrapper .userimage {
    width: 46px;
    height: 46px;
    background: #d1d2d4;
    border-radius: 50%;
    overflow: hidden;
}

.agendaListWrapper .rightContent {
    flex: 1;
    border-bottom: solid 2px #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
}

.agendaListWrapper .agendaList:last-child .rightContent {
    border-bottom: 0;
}

.showmore {
    width: 22px;
    height: 17px;
    background: url(../img/agenda-arrow.png) no-repeat;
    background-size: 1.14vw auto;
    margin-top: 30px;
    background-position: 100% 0;
    cursor: default;
}

.agendaListWrapper .rightToleft {
    flex: 1;
}

.agendaListWrapper .agendatime {
    color: #fcbb56;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.agendaListWrapper .agendatime img {
    margin-right: 6px;
}

.agendaSection .agendaparagraph {
    line-height: 2.05vw;
    font-size: 1.71vw;
    color: #fff;
    text-align: center;
}

.agendaSection .comanTitle {
    text-align: center;
    margin-top: 1vw;
}

.agendaMaincontainer .nav-tabs .nav-item {
    flex: 1;
}

.agendaMaincontainer .nav-link {
    width: 100%;
    background: #f3f3f4;
    border: 0;
    font-size: 2.29vw;
    line-height: 2vw;
    color: #005f9e;
}

.agendaMaincontainer .nav-link.active {
    background: #005f9e;
    color: #fff;
}

.agendaMaincontainer .tabDate {
    font-size: 1.51vw;
}

.nav.nav-tabs {
    margin-top: 3vw;
}

.tab-content {
    background-color: rgba(16, 89, 138, 0.5);
}

.subjectMessage {
    font-size: 1.30vw;
    color: #fff;
    width: 100%;
    text-align: center;
    position: relative;
    bottom: -15px;
}

/* agenda section end */


/* thank you page */

.thankyoupage {
    background: url(../img/thank-you-background.jpg) no-repeat;
    background-size: 100% auto;
    padding-bottom: 11vw;
    position: relative;
}

.thankyoupage .container {
    max-width: 90%;
}

.thankyoupage .template_header {
    position: initial;
}

.thankyoupage .homeContent {
    position: initial;
    padding-top: 4vw;
}


.thankyoupage .mainTitle {
    color: #fcbb56;
    font-size: 1.8vw;
    margin-top: 5vw;
    margin-bottom: 1.5vw
}




.thankyoupage .paragraphContent {
    color: #fff;
    font-weight: normal;
    font-size: 1.77vw;
}

.thankyoupage .paragraphContent p {
    margin-bottom: 2vw;
}


.socialWrapper {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 5;
    display: flex;
    flex-direction: column;
}

.socialWrapper a {
    margin-bottom: 3px;
}

.socialWrapper a img {
    max-width: 2.5vw;
}

.whiteColor {
    color: #fff !important;
    text-decoration: underline !important;
}

.thankyoupage .paragraphContent p a {
    color: #fff !important;
    text-decoration: underline !important;
}

.agendaMaincontainer .nav-link {
    border-radius: 0;
}

.template_header .container {
    max-width: calc(100% - 3.5vw);
}




/* throung back video css */

.throughBackSection .backgroundVideoHome {
    position: absolute;
    z-index: 0;
    height: 100%;
}

/* throung back video css */

.throughBackSection .backgroundVideoHome .mobileHome {
    height: 100%;
}

.throughBackSection .backgroundVideoHome .mobileHome video {
    object-fit: cover;
}


.agendaSection .backgroundVideoHome {
    position: absolute;
    z-index: 0;
    height: 100%;
}

.agendaSection .backgroundVideoHome .mobileHome {
    height: 100%;
}


.agendaSection .backgroundVideoHome .mobileHome video {
    object-fit: cover;
}

.registerSectionFirst .backgroundVideoHome,
.registerSectionSecond .backgroundVideoHome {
    position: absolute;
    z-index: 0;
    height: 100%;
}


.registerSectionSecond .backgroundVideoHome .mobileHome {
    height: 100%;
}

.registerSectionSecond .backgroundVideoHome .mobileHome video {
    object-fit: cover;
}

.registerSectionFirst .backgroundVideoHome .mobileHome {
    height: 100%;
}

.registerSectionFirst .backgroundVideoHome .mobileHome video {
    object-fit: cover;
}



.template_header.arabicLanguage {
    direction: rtl;
}

.template_header.arabicLanguage .languageChange {
    padding-left: 0 !important;
    padding-right: 8vw;
}

.template_header.arabicLanguage .template-nav ul li a:after {
    right: -12px
}

.homeSection .comanTitle {
    max-width: 700px;
}

.socialWrapper.arabicLanguage {
    left: 25px;
    right: initial;
}


.arabicLanguage.homeSection::before,
.arabicLanguage.aboutSection::before,
.arabicLanguage.thankyoupage::before,
.arabicLanguage.agendaSection::before,
.arabicLanguage.registerSectionFirst::before,
.arabicLanguage.throughBackSection::before,
.arabicLanguage.registerSectionSecond::before {
    right: 4.8vw;
    left: initial;
    background-image: url(../img/bottom-star-design-ar.png);
}

/* arabic lagnuage css */

.arabicLanguage .backgroundVideoHome,
.arabicLanguage .backgroundVideoAbout {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
}

.homeSection.arabicLanguage .homeConteInner {
    direction: rtl;
}


.aboutSection.arabicLanguage {
    direction: rtl;
}

.aboutSection .containerSection .container-main {
    /* padding-left: 36vw; */
    padding-right: 0;
}


/* throwback css */

.throughBackSection.arabicLanguage {
    direction: rtl;
}



/* agenda section  start */
.agendaSection.arabicLanguage {
    direction: rtl;
}

.agendaSection.arabicLanguage .agendaListWrapper .agendatime img {
    margin-left: 6px;
    margin-right: 0;
}

.agendaSection.arabicLanguage .agendaDetail {
    text-align: right;
}

.agendaSection.arabicLanguage .agendaListWrapper::before {
    right: 62px;
    left: initial;
}


/* register section first start */

.registerSectionFirst.arabicLanguage {
    direction: rtl;
}

.arabicLanguage.registerSectionFirst .container-main {
    padding-left: 39vw;
    text-align: right;
    padding-right: 0;
}


/* register section second start */

.registerSectionSecond.arabicLanguage {
    direction: rtl;
}

.registerSectionSecond.arabicLanguage .text-danger {
    padding-right: 18.8vw;
    padding-left: initial
}

.registerSectionSecond.arabicLanguage .languageSelectBlock.leftLang::after {
    right: 100%;
    left: initial;
}

.registerSectionSecond.arabicLanguage .languageRightForm input {
    margin-right: 0;
    margin-left: 10px
}

.registerSectionSecond.arabicLanguage .form-select {
    background-position: left 0.75rem center;
    padding: 0.375rem 0.75rem 0.375rem 2.25rem;
}

.registerSectionSecond.arabicLanguage .text-end {
    text-align: left !important;
}

.registerSectionSecond.arabicLanguage .submitingchickbox .form-check {
    padding-right: 18.3vw;
    padding-left: initial;
}

.registerSectionSecond.arabicLanguage .regiterBtnWrapper {   
    
    padding-left: 0;
}

.registerSectionSecond.arabicLanguage .registerSectionFirst .comanTitle {
    padding-right: 30vw;
}


.arabicLanguage .typewrite>.wrap {
    border-right: 0 !important;
    border-left: 1px solid #fff !important
}

.thankyoupage.arabicLanguage {
    overflow: hidden;
    direction: rtl;
}

.thankyoupage.arabicLanguage .backgroundImageWrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
}

.thankyoupage.arabicLanguage .template_header,
.thankyoupage.arabicLanguage .homeContent {
    z-index: 2;
    position: relative;
}

.thankyoupage.arabicLanguage .comanTitle {
    max-width: 560px;
}

.thankyoupage.arabicLanguage .backgroundImageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}


.loginFormWrapper {
    padding-top: 50px;
    max-width: 48%;
}

.loginFormWrapper .form-control {
    min-height: 48px;
    background: #fdbc56;
    color: #231f20;
    padding-left: 20px;
    padding-right: 20px;
    max-width: calc(100% - 150px);
    border-radius: 10px;
}

.loginFormWrapper .form-control:focus {
    color: #231f20 !important;
}

.loginFormWrapper .form-control {
    font-family: 'BentonSans';
}

.loginFormWrapper form {
    position: relative;
}

.loginFormWrapper .form-control::placeholder {
    color: #231f20 !important;
    border-left: 0 !important;
}

.loginBtnWrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: initial;
}

.loginBtnWrapper .btn {
    border-radius: 50px;
    color: #231f20;
    background: #fdbc56;
    font-family: 'BentonSans';
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 11px;
    font-size: 18px;
    border: solid 3px #005ea0;
    margin-top: -2px;
}

.rigisterPagelink {
    color: #fff;
    font-family: 'BentonSans';
}

.rigisterPagelink a {
    font-weight: bold;
    color: #fff !important;
}

.loginPage::before {
    width: 50vw;
    height: 5vw;
}

.loginPage .text-danger {
    position: initial;
    padding-left: 0;
}


.loginPage.arabicLanguage .backgroundImageWrapper {
    bottom: initial;
}

.loginPage.arabicLanguage .template-nav ul li a:after {
    left: initial;
    right: -12px;
}

.loginPage.arabicLanguage .loginBtnWrapper {
    left: 0;
    right: initial;
}


.thanks_homeContent{
    padding-top: 17vw;
    padding-bottom: 30vw;
}

.thanks_notes{
    text-align: center;
    justify-content: center;
    align-items: center;
}

.mainTitle{
    font-size: 2.7vw;
    color: #fbad26;
}

.agendaDetail, .agendaDetail .accordion-button{
    font-size: 1.30vw;
}   

.accordion-body{
    font-size: 1.1vw;
} 

.accordion-item {
    background-color: transparent;
    border: 0;
}

.accordion-button {    
    padding: 1rem 0rem;
    font-size: initial;
    color: #ffffff;
    background-color: transparent; 
    font-weight: normal;   
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: transparent;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.125);
}

.accordion-body {
    padding: 1rem 0;
}

.accordion-button::after {
    width: 1.8rem;
    height: 1.8rem;
    background: url(../img/agenda-arrow.png) no-repeat;
    background-size:1.4rem auto;
    background-position: 100% 0;
}

.accordion-button:not(.collapsed)::after{
    background: url(../img/agenda-arrow.png) no-repeat;
    margin-top: -25px;
}


@media (min-width: 992px) {
    .aboutSection .containerSection .container-main {
        padding-right: 36vw;
    }

    .aboutSection.arabicLanguage .containerSection .container-main {
        padding-right: 0;
        padding-left: 36vw;
    }

    .loginPage {
        padding-bottom: 8vw;
        min-height: 100vh;
    }


}


@media (min-width: 1601px) {
    .agendaListWrapper::before {
        left: 72px;
    }

    .agendaListWrapper::before {
        left: 72px;
    }

    .agendaSection.arabicLanguage .agendaListWrapper::before {
        right: 72px;
        left: initial;
    }
}

@media (max-width: 1600px) {
    .generate_otp_wrapper .btn {
        font-size: 16px;
    }

    .notes {
        margin-top:8.2vw;
    }


    
}


@media (max-width: 1366px) {
    .agendaListWrapper::before {
        left: 59px;
    }
    .agendaDetail, .agendaDetail .accordion-button{
        font-size: 20px;
    }   
    
    .accordion-body{
        font-size: 16px;
    } 
}

@media (max-width: 1366px) {  

    .agendaListWrapper::before {
        left: 50px;
    }

    .agendaSection.arabicLanguage .agendaListWrapper::before {
        right: 59px;
    }
    .mainTitle {
        font-size: 2.8vw;
    }
}

@media (min-width: 1300px) {

    .homeSection .comanTitle {
        font-size: 3.28vw;
        line-height: 3.6vw;
    }

    .eventDateTime {
        font-size: 1.9vw;
        line-height: 1.2;
        margin-top: 2vw;
    }

    .eventDateTimeThanks{
        font-size: 2.1vw;
    }

    .registerNowBtn {
        font-size: 1.4vw;
        line-height: 1.4;
        margin: 2vw 0 0 0;
        padding: 7px 30px 8px 30px;
    }

    .homeSection .backgroundVideoHome .mobileHome {
        height: 100vh;
    }

    .homeSection .backgroundVideoHome .mobileHome video {
        object-fit: cover;
        object-position: bottom;
    }
}


@media (max-width : 1024px) and (orientation : landscape) {

    .aboutSection .ratio-16x9 video,
    .throughBackSection .backgroundVideoHome .mobileHome video {
        object-position: right;
    }

    .agendaSection .backgroundVideoHome .mobileHome video {
        object-position: right !important;
    }


    .registerSectionFirst .backgroundVideoHome .mobileHome video {
        object-fit: cover;
        object-position: right;
    }

    .agendaSection.arabicLanguage .agendaListWrapper::before {
        right: 51px;
    }
}

@media (max-width : 991px) and (orientation : landscape) {
    .homeSection.arabicLanguage .homeConteInner {
        padding-left: 42vw;
    }

}


@media (min-width: 991px) {
    .homeSection .eventDateTime br {
        display: none;
    }
    

   
}


@media (max-width: 991px) {

  .loginTitle{
  font-size: 2vw;
  }

    .mainTitle {
        font-size: 4.8vw;
    }
    .agendaDetail, .agendaDetail .accordion-button{
        font-size: 18px;
    }   
    
    .accordion-body{
        font-size: 14px;
    } 
    .accordion-button::after, .accordion-button:not(.collapsed)::after {
        background-size: 1.0rem auto;
    }

    body.body-scroll,
    html.body-scroll {
        overflow: hidden;
    }

    .generate_otp_wrapper .btn {
        font-size: 13px;
    }

    .registerSectionSecondInner {
        max-width: 85%;
    }

    .agendaSection .agendaMaincontainer {
        max-width: 100%;
    }


    .body-scroll {
        position: fixed;
    }

    .template_header {
        height: 60px;
        padding-top: 2px;
        background: #104f8a;
        position: sticky;
    }

    .template_header.sticky {
        height: 60px;
        position: sticky;
        top: 0;
    }

    .mbfs {
        font-size: 13px;
    }

    .template-menu-icon {
        display: block;
        width: 32px;
        height: 32px;
        text-align: center;
        line-height: 33px;
        color: #fff;
        margin-left: 40px;
    }

    .login-process-pages .template-menu-icon {
        color: #000;
    }

    .template-menu-icon i {
        font-size: 20px;
    }

    .template_header.sticky .template-menu-icon {
        color: #fff;
    }

    .template-menu {
        position: fixed;
        height: 100%;
        width: 100%;
        top: 60px;
        left: 0;
        transform: translateX(-100%);
        background: #104f8a;
        overflow-y: auto;
        padding-top: 0;
        transition: transform .5s cubic-bezier(0.22, 0.61, 0.36, 1);
        z-index: 999;
    }

    .template-menu.openMenu {
        transform: translateX(0%);
    }

    .template-logo .img-fluid {
        width: 130px;
        max-width: inherit;
    }

    .template-nav ul {
        flex-wrap: wrap;
        flex-direction: column;
        padding-left: 0 !important;
    }

    .template_header.arabicLanguage .languageChange {
        padding-right: 0 !important;
    }

    .template-nav ul li {
        margin: 10px 15px;
    }

    .template-nav ul li a {
        font-size: 22px;
        color: #fff;
        text-align: center;
        display: flex;
        padding: 6px 0;
        width: 100%;
        justify-content: center;
    }

    .template-nav .register-btn {
        font-size: 13px;
        padding: 3px 10px;
        line-height: 20px;
        min-width: 100px;
        height: 30px;
    }

    .template-nav ul li a:after {
        display: none;
    }

    .languageChange {
        padding-left: 0;
    }

    .homeContent {
        padding-top: 5vw;
        padding-bottom: 20vw;
    }

    .thanks_homeContent{
        padding-top: 6vw;
        padding-bottom: 40vw
    }
    

    .aboutSection .container-main p {
        font-size: 14px;
        text-align: justify;
    }

    .thankyoupage .template_header {
        background: none;
    }


    .comanTitle {
        font-size: 22px;
        line-height: 27px;
        margin: 0 0 20px 0;
    }

    .thankyoupage.arabicLanguage .comanTitle {
        max-width: 300px;
    }

    p.homePara {
        font-size: 2.7vw;
        line-height: 20px;
        margin-top: 2.2vw;
    }

    .notes {
        font-size: 2.7vw;
        line-height: 20px;
        margin-top: 2.2vw;
    }

    .thankyoupage .mainTitle {
        font-size: 16px;
        margin-top: 5vw;
        margin-bottom: 1.5vw;
    }

    .thankyoupage .paragraphContent p {
        margin-bottom: 15px;
    }

    .paragraphContent{
        font-size: 16px;
    }

    .registerNowBtn {
        font-size: 16px;
        line-height: 18px;
        padding: 9px 15px 9px 14px;
    }

    .eventDateTime {
        font-size: 3.2vw;
    }

    .eventTime {
        font-size: 3.2vw;
    }

    .about_left {
        max-width: 50%;
    }

    .about_part_text_pad {
        padding-right: 30px;
        padding-left: 30px;
    }

    .about_part_text p,
    .about_part_text ul.aboutul {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .about_part_text .table {
        color: #fff;
        font-size: 16px;
        margin: 0;
    }

    .table th {
   /*     background-color: #ef9f20;
        color: #000;
        border: 2px solid #000;
        font-size: 21px;*/
    }

    .agenda_part .row {
        padding: 0 30px;
    }

    .thankyoupage .paragraphContent {
        font-size: 16px;
    }

    .thankyoupage {
        background-size: cover;
    }

    .template-menu.seprateBtn {
        position: initial;
        height: initial;
        width: initial;
        top: initial;
        transform: translate(0, 0);
        background: none;
    }

    .template_header.sticky .template-header-logo {
        transform: translate(0, -3%);
    }

    .socialWrapper {
        bottom: 30px;
    }

    .aboutSection .ratio-16x9 {
        height: 92vw;
    }

    .aboutSection .ratio-16x9 video {
        object-fit: cover;
    }

    .throughBackSection p.secondPara {
        font-size: 18px;
    }

    .throughBackSection .container-main {
        font-size: 16px;
        max-width: 90%;
        margin: 0 auto;
    }

    .throughBackSection .videoSection {
        padding-bottom: 12vw;
    }

    .throughBackSection .videoSection {
        max-width: 100%;
    }

    .agendaSection .agendaparagraph {
        line-height: 20px;
        font-size: 16px;
    }

    .agendaListWrapper {
        font-size: 14px;
    }

    .agendaListWrapper .userimageBlock {
        width: 75px;
    }

    .agendaListWrapper .rightContent {
        border-width: 1px;
    }

    .agendaListWrapper::before {
        left: 43px;
    }

    .agendaSection.arabicLanguage .agendaListWrapper::before {
        right: 43px;
        left: initial;
    }

    .agendaMaincontainer .tabDate {
        font-size: 14px;
    }

    .agendaMaincontainer .nav-link {
        font-size: 18px;
        line-height: 20px;
    }

    .showmore {
        background-size: 11px;
    }

    .subjectMessage {
        font-size: 14px;
    }

    .registerSectionFirst .container-main .subtitle {
        font-size: 18px;
    }

    .registerSectionFirst .container-main {
        font-size: 16px;
        padding-right: 20px;
        padding-left: 0;
    }

    .registerSectionFirst .container-main p {
        margin-bottom: 20px;
    }

    .registerSectionSecondInner .comanTitle {
        font-size: 30px;
    }

    .registerSectionSecondInner .eventDate {
        font-size: 18px;
        margin-bottom: 0;
    }

    .yellow_line {
        width: 13vw;
        height: 8px;
    }

    .inputGrup {
        margin-bottom: 20px;
        flex-direction: column;
    }

    .form-label {
        margin-bottom: 3px;
        font-size: 16px;
        width: 100%;
    }

    .languageRightForm {
        border-radius: 5px;
        min-height: 45px;
    }

    .form-control,
    .form-select {
          border: 0;
        min-height: 40px;
        font-size: 16px;
        border-radius: 5px;
    }

    .submitingchickbox .form-check {
        padding-left: 0;
    }

    .submitingchickbox .form-check-label {
        font-size: 12px;
    }

    .regiterBtnWrapper {
        padding-left: 0;
        padding-top: 10px;
    }

    .about_part_text ul.aboutul li::after {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #fbad26;
        top: 11px;
    }

    .regiterBtnWrapper .btn {
        font-size: 18px !important;
        border-radius: 5px;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .contactDetailWrapper {
        font-size: 14px;
    }

    .text-danger {
        padding-left: 0;
    }
    .eventDateTime sup {
        font-size: 16px;
    }

    .registerSectionSecond.arabicLanguage .text-danger {
        padding-right: 0;
    }

    .template_header .container {
        max-width: calc(90% + 30px);
    }

    .aboutSection .backgroundVideoAbout {
        position: absolute;
        height: 100%;
    }

    .aboutSection .backgroundVideoAbout .ratio-16x9 {
        height: 100%;
    }

    .aboutSection .backgroundVideoAbout .ratio-16x9 video {
        object-fit: cover;
    }

    .aboutSection .containerSection {
        position: relative;
        padding-bottom: 4vw
    }

    .aboutSection .containerSection .container-main {
        padding-right: 30px;
    }

    .arabicLanguage.aboutSection .containerSection .container-main {
        padding-right: 0;
        padding-left: 40px;
    }

    .arabicLanguage.template_header .template-menu-icon {
        margin-left: 0 !important;
    }

    .registerSectionSecond.arabicLanguage .submitingchickbox .form-check {
        padding-right: 0;
    }

    .registerSectionSecond.arabicLanguage .regiterBtnWrapper {
        padding-right: 0;
    }

    .loginFormWrapper {
        padding-top: 30px;
        max-width: 54%;
    }

    .loginBtnWrapper .btn {
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 14px;
    }

    .loginFormWrapper .form-control {
        font-family: 'BentonSans';
        padding-left: 15px;
        padding-right: 15px;
        font-size: 15px;
        max-width: calc(100% - 125px);
        min-height: 40px;
    }

    .homeContent {
        min-height: 320px;
    }
}




@media (max-width: 736px) {
    .aboutSection .ratio-16x9 {
        height: 100vw;
    }
}

@media (max-width: 667px) {
    .aboutSection .ratio-16x9 {
        height: 120vw;
    }
}

@media (max-width: 568px) {
    .aboutSection .ratio-16x9 {
        height: 160vw;
    }
}


@media (min-width: 481px) {
    .thankyoupage.arabicLanguage {
        background: #084c7d;
    }
}

@media (max-width: 480px) {
    .mainTitle {
        font-size: 5.5vw;
    }

    .thankyoupage .homeConteInner {
        padding-right: 0;
    }

    .aboutSection .containerSection {
        padding-top: 20px;
    }

    .registerSectionFirst .container-main {
        padding-left: 0 !important;
    }

    .thankyoupage {
        min-height: 100vh;
        background-size: cover;
    }

    .thankyoupage .template-logo .img-fluid {
        width: 150px;
    }

    .homeSection .registerNowBtn {
        margin-top: 20px;
        font-size: 16px;
    }

    .homeSection .homeContent {
        padding-top: 6vw;
    }

    .homeSection .mobileHome {
        height: 100vw;
    }


    .homeSection .comanTitle {
        font-size: 18px;
        line-height: 21px;
    }

    .homeSection p.homePara {
        font-size: 14px;
        line-height: 20px;
    }

    

    .homeSection .eventDateTime {
        font-size: 14px;
        line-height: 16px;
    }



    .homeSection .mobileHome video {
        object-fit: cover;
        object-position: 71%;
    }

    .socialWrapper {
        top: 53vw;
        right: 15px;
    }

    .socialWrapper a img {
        min-width: 23px;
    }

    .aboutSection .containerSection .container-main {
        padding-right: 30px;
        padding-left: 0;
    }

    .aboutSection .ratio-16x9 {
        height: 173vw;
    }

    .nav.nav-tabs {
        margin-top: 20px;
    }



    .agendaListWrapper .userimageBlock {
        width: 52px;
    }

    .agendaListWrapper .userimage {
        width: 36px;
        height: 36px;
    }

    .agendaListWrapper .agendatime {
        align-items: flex-start;
    }

    .agendaListWrapper .agendatime img {
        margin-top: 4px;
    }

    .agendaMaincontainer .nav-link {
        padding-top: 5px;
        padding-bottom: 5px;
        border-radius: 0;
    }

    .agendaListWrapper::before {
        left: 28px;
    }

    .agendaSection.arabicLanguage .agendaListWrapper::before {
        right: 28px;
    }

    .agendaSection.arabicLanguage .agendaListWrapper .agendatime {
        text-align: right;
    }

    .agendaSection .comanTitle {
        margin-top: 15px;
    }

    .registerSectionFirstConteInner .comanTitle {
        margin-top: 10px;
    }


    .registerSectionSecondInner {
        max-width: 90%;
    }

    /* .template_header.sticky+.backgroundVideoHome .mobileHome{
        height: 113vw;
    } */

    .throughBackSection .videoSection {
        padding-bottom: 20vw;
    }

    .throughBackSection .backgroundVideoHome .mobileHome video {
        object-position: right;
    }

    /* .homeConteInner {
        padding-right: 39vw;
    } */

    .registerSectionFirstConteInner {
        padding-bottom: 31.5vw;
    }

    .homeSection.arabicLanguage .homeConteInner {
        padding-right: 0;
        padding-left: 37vw;
    }

    .thankyoupage.arabicLanguage .homeConteInner {
        padding-left: 0;
        padding-right: 0;
    }

    .thankyoupage.arabicLanguage .backgroundImageWrapper {
        display: none;
    }

    .socialWrapper.arabicLanguage {
        left: 15px;
    }

    .loginPage::before {
        width: 90vw;
        height: 13vw;
    }

    .loginFormWrapper {
        max-width: 100%;
    }

    .loginPage.arabicLanguage .loginFormWrapper {
        padding-left: 20px;
    }
}


.sm_center_label {
    font-size: 16px !important;
    font-weight: 600;
}

@media (max-width:575px) {
    p.homePara {
        font-size: 4.4vw;
        line-height: 20px;
        margin-top: 2.2vw;
        min-height: 45px;
    }
    .notes {
        font-size: 4.4vw;
        line-height: 20px;
        margin-top: 2.2vw;
        min-height: 45px;
    }

    .about_part_text ul.aboutul li {
        padding: 10px 0 10px 20px;
    }

    .eventDateTime {
        font-size: 4.4vw;
    }

    .eventTime {
        font-size: 4.4vw;
    }

    .about_part_text h3 {
        font-size: 24px;
        font-weight: 500;
    }

  /*  .table th {
        font-size: 17px;
    }*/

    .agenda_part .row {
        padding: 0 15px;
    }

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





@media (max-width: 410px) {
    .about_part_text_pad {
        padding-right: 20px;
        padding-left: 20px;
    }
}


@media (max-width :991px) and (orientation : portrait) {
    .login_page_h {
        min-height: calc(100vh - 60px) !important;
    }
}



.form-check-label a {
    color: #fff !important;
    text-decoration: underline;
}

/* Change Autocomplete styles in Chrome*/
.form-control:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
/*    -webkit-text-fill-color: white !important;*/
    /* -webkit-box-shadow: 0 0 0px 1000px rgba(37,49,85,0.7) inset!important; */
    transition: background-color 5000s ease-in-out 0s !important;
    background-color: rgba(37, 49, 85, 0.7) !important;
}


.agendaListing {
    padding-left: 20px;
    list-style: disc;
}


.loginFormWrapper .form-control:focus,
.loginFormWrapper input:-webkit-autofill,
.loginFormWrapper input:-webkit-autofill:hover,
.loginFormWrapper input:-webkit-autofill:focus {
    -webkit-text-fill-color: #231f20 !important;
}

.custm_code {
    width: 100%;
    display: flex;
}

.custm_code_left {
    width: 150px;
}

.custm_code_right {
    margin-left: 15px;
}

.login_error{
    position: relative;
}

.login_error .text-danger{
 padding: 0!important;
 top: calc(100% + 1px)!important;
}

.generate_otp_wrapper{
    padding-left: 17.6vw;
    display: flex;
    align-items: center;  
}

.generate_otp_wrapper a{
    min-width: 150px!important;
}

.generate_otp_wrapper em{
    font-size: 13px;
    margin-left: 15px;
}


@media (max-width: 991px) {
    .generate_otp_wrapper {
        padding-left: 0;
    }

  .dc-mw-600 {
  width: 100%;
  max-width: 400px;
  }

.hero {
    padding-right: 4.3vw;
}

}

@media (max-width: 574px) {
    .generate_otp_wrapper {
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .generate_otp_wrapper em {
        margin-left: 0px;
        margin-top: 10px;
    }
}


@media (max-width:767px) {

    .sm_center_label,
    .sm_center {
        font-size: 13px !important;
    }

  .loginMobile {
  flex-direction: column;
  }

      .dc-mw-600 {
        margin-top: 2rem;
         max-width: 100%;
    }

    .loginTitle {
        font-size: 4vw;
    }
}

