/*
  Theme Name: GCAR Research
  Theme URI: https://research.gcaresearch.org
  Version: 1.0 / 2025

  Colors
  ------
  #353841
  #808285
  #BCBEC0
  #e6e7e8
  #eb7825

  Webfonts
  --------
  "poppins"  400/700 i

*/



/* #region -------------------------------------- Layout */

* {
  position: relative;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  background-color: #FFF;
}

.wrap {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* -----[ Columns ]----- */

.columns {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 50px;
  min-height: 600px;
  padding: 50px 0;
}

.columns .col:nth-child(1) {
  flex: 1 1 35%;
}

.columns .col:nth-child(2) {
  flex: 1 1 65%;
}

@media only screen and (max-width: 760px) {
  .columns {
    display: block;
  }
  .columns .col:nth-child(1) {
    margin-bottom: 30px;
  }
}

/* #endregion */

/* #region -------------------------------------- Type */

body,
html {
  color: #353841;
  font-family: "poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

a:link,
a:visited,
a:active {
  color: #eb7825;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  color: #353841;
  text-decoration: none;
}

p {
  margin: 0 0 18px 0;
}

/* -----[ Headers ]----- */

h1 {
  margin: 0 0 30px 0;
  font-size: 28px;
  line-height: 36px; 
  font-weight: 400;
}

h2 {
  margin: 0 0 30px 0;
  font-size: 22px;
  line-height: 30px; 
  font-weight: 400;
}

h3 {
  margin: 0 0 30px 0;
  font-size: 18px;
  line-height: 24px; 
  font-weight: 400;
}

h4 {
  font-size: 15px;
  line-height: 20px; 
  font-weight: 400;
}

.columns ul,
.columns ol {
  margin: 0 0 30px 0px;
}

.columns ul li,
.columns ol li {
  margin: 0 0 14px 18px;
}

/* #endregion */

/* #region -------------------------------------- Buttons */

#page .lost-pass .ur-reset-password-btn,
#account .user-registration-Button,
#page .user-registration-Button,
#page .ur-submit-button,
#account .logout a.button-logout {
  display: inline-block;
  width: auto;
  margin-top: 5px;
  padding: 13px 20px 15px 20px !important;
  border: none;
  background: #eb7825 !important;
  color: #FFF !important;
  font-size: 18px !important;
  line-height: 18px !important;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}

#page .lost-pass .ur-reset-password-btn:hover,
#account .user-registration-Button:hover,
#page .user-registration-Button:hover,
#page .ur-submit-button:hover,
#account .logout a.button-logout:hover {
  background: #353841 !important;
}

/* #endregion */

/* #region -------------------------------------- Images */

.columns img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* #endregion */

/* #region -------------------------------------- Video */

#video-wrap {
  overflow: hidden;
  width: 99%; 
  line-height: 0;
}

#video-wrap .video {
  width: 98%; 
  height: auto;
  border: 1px solid #BCBEC0;
}

/* #endregion */

/* #region -------------------------------------- Scroll To Top */

a.scroll-to-top { 
  display: none; 
  position: fixed; 
  right: 1%; 
  bottom: 15px; 
  z-index: 900;
  width: 48px; 
  height: 48px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.50);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background-image: url(images/icons/arrow-up-black.svg);
  background-repeat: no-repeat;
  background-position: center center;
	background-size: 24px 24px;
}

/* #endregion */




/* #region -------------------------------------- Header */

#header {
  display: flex;
  height: 65px;
  margin: auto;
  padding: 30px 0 25px 0;
  justify-content: start;
  align-items: center;
  border-bottom: 1px solid #BCBEC0;
}

#header img.logo {
  width: auto;
  max-width: none;
  height: 70px;
}

#header .nav-header {
  margin-left: auto;
}

#header .nav-header ul {
  margin-top: 25px;
  list-style: none;
}

#header .nav-header li {
  display: inline-block;
  margin: 0 0 0 25px;
}

#header .nav-header a {
  color: #808285;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
}

#header .nav-header a:hover,
#header .nav-header li.current-menu-item a {
  color: #eb7825;
}

#click-menu {
  display: none;
}

.menu ul {
  list-style: none;
}

@media only screen and (max-width: 1100px) {
  #header img.logo {
    height: 50px;
  }
  #header .nav-header ul {
    margin-top: 20px;
  }
  #header .nav-header li {
    display: inline-block;
    margin: 0 0 0 15px;
  }
  #header .nav-header a {
    font-size: 13px;
  }
}

@media only screen and (max-width: 940px) {
  #header .nav-header {
    display: none;
  }
  #click-menu {
    display: block;
    top: 18px;
    margin-left: auto;
  }
  #click-menu .menu-link {
    display: inline-block;
    width: 20px;
    content: url("images/icons/menu.svg");
  }
  .mobile-menu-panel {
    display: block;
    position: absolute;
    right: -100%;
    z-index: 200;
    width: 220px;
    max-width: 220px;
    height: 100vh;
    overflow-y: auto;
    margin-top: 0;
    padding: 30px 40px 100px 40px;
    background: #353841;
  }
  .mobile-menu-panel li.menu-item-1581 {
    padding-bottom: 200px;
  }
  .mobile-menu-panel .menu-close {
    float: right;
    z-index: 100;
    width: 24px;
    height: auto;
    content: url("images/icons/menu-close.svg");
  }
  .mobile-menu-panel ul {
    line-height: 18px; 
    font-weight: 400;
    letter-spacing: 0.48px;
    list-style-type: none;
  }
  .mobile-menu-panel ul li {
    margin-top: 20px;
  }
  .mobile-menu-panel li.menu-item-1581 {
    padding-bottom: 200px;
  }
  .mobile-menu-panel ul li:first-child,
  .mobile-menu-panel ul li li {
    margin-top: 0;
  }
  .mobile-menu-panel ul li a {
    color: #949698;
    font-size: 14px;
    text-transform: uppercase;
  }
  .mobile-menu-panel ul li a:hover {
    color: #eb7825;
  }
  .mobile-menu-panel ul li li a {
    font-size: 11px;
    text-transform: inherit;
  }
}

/* #endregion */



/* #region -------------------------------------- Content */

/* -----[ Home ]----- */

#home {
  padding: 100px 0;
  color: #808285;
  text-align: center;
}

#home img {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin-bottom: 30px;
}

/* -----[ Pages ]----- */

#page .level1 {
  margin-top: 5px;
}

#page .level2 {
  margin-left: 30px;
}

#page .level3 {
  margin-left: 60px;
}

#page .level-video {
  margin-bottom: 60px;
}

#page .level h2 {
  margin: 0 0 20px 0;
}

#page .level h3 {
  margin: 0 0 15px 0;
}

#page .level-video h3 {
  margin: 20px 0 3px 0;
}

#page .level-video h4 {
  margin: 0 0 20px 0;
}

#page .level li {
  list-style: none;
}

#page .level li a {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  text-decoration: none;
}

#page .level li a img {
  flex-shrink: 0;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin: 2px 8px 0 0;
}

#page .level li h4 {
  display: inline;
}

#page hr.level-break {
  width: 100%;
  margin: 40px 0;
  border: none;
  border-top: 1px solid #BCBEC0;
}

.level.level1 .level-video:last-child::after {
  display: block;
  width: 97%;
  margin: 80px 0;
  border-top: 1px solid #BCBEC0;
  content: "";
}

.level.level1:last-of-type .level-video:last-child::after {
  margin: 40px 0;
  border: none;
}

#page ul.jump-links {
  list-style-type: none;
}

#page ul.jump-links li {
  margin: 0 0 20px 0;
}

#page ul.jump-links li a {
  color: #eb7825;
  font-size: 14px;
}

#page ul.jump-links li a:hover {
  color: #353841;
}

ul.jump-links li a:before {
  margin-right: 10px;
  border-right: 3px solid #353841;
  content: "";
}

ul.jump-links li a:hover:before {
  border-right: 3px solid #eb7825;
}

@media only screen and (max-width: 760px) {
  #page .level2 {
    margin-left: 15px;
  }
  
  #page .level3 {
    margin-left: 30px;
  }
  ul.jump-links {
    display: none;
  }
}

/* #endregion */



/* #region -------------------------------------- Account */

/* -----[ Menus ]----- */

body.logged-in .menu-logged-out,
body.logged-in .button-logged-out {
  visibility: hidden;
  position: absolute;
}

body.logged-out .menu-logged-in,
body.logged-out .button-logged-in {
  visibility: hidden;
  position: absolute;
}

body.logged-in #header .nav-header li.account-button a {
  color: #eb7825;
}

body.logged-in #header .nav-header li.account-button a::before {
  position: relative;
  top: 4px;
  right: 3px;
  content: url("images/icons/menu-account.svg");
}

/* -----[ UR Forms ]----- */

#account .user-registration,
#account .ur-frontend-form.login,
#account .ur-frontend-form,
#page .user-registration,
#page .user-registration-page .user-registration,
#page .user-registration.ur-frontend-form,
#page .ur-frontend-form.login,
#page .ur-frontend-form {
  max-width: none !important;
  margin: 0 0 30px 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

#account #user-registration .ur-form-grid div, 
#page #user-registration .ur-form-grid div {
  flex-direction: inherit !important;
  margin-top: 0 !important;
}

#account #user-registration h1,
#page #user-registration h1,
#page #user-registration .user-registration-profile-fields h2 {
  display: none !important;
}

#account .ur-form-grid,
#account .ur-button-container
#page .ur-form-grid,
#page .ur-button-container {
  padding: 0 !important;
}

#account .user-registration .ur-frontend-form .ur-form-row .ur-form-grid,
#page .user-registration .ur-frontend-form .ur-form-row .ur-form-grid,
#page .ur-frontend-form .ur-form-row .ur-form-grid {
  padding: 0 !important;
}

#account .user-registration .ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item,
#page .user-registration .ur-frontend-form .ur-form-row .ur-form-grid .ur-field-item {
  margin-bottom: 25px !important;
}

#account .user-registration label.ur-label,
#page .user-registration label.ur-label,
#page .ur-frontend-form .ur-form-row .ur-form-grid label, 
#page .ur-frontend-form .ur-form-row .ur-form-grid legend {
  margin-bottom: 0 !important;
  color: #000 !important;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

#account .user-registration .description,
#page .user-registration .description {
  display: block;
  margin-top: 3px;
  color: #353841;
  font-size: 11px;
  line-height: 14px;
}

#account .user-registration .field-checkbox ul,
#page .user-registration .field-checkbox ul {
  margin: 5px 0 0 20px !important;
}

#account .user-registration .field-checkbox ul li label.ur-checkbox-label,
#page .user-registration .field-checkbox ul li label.ur-checkbox-label {
  font-size: 15px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
}

#page .lost-pass input.user-registration-Input,
#account .user-registration .input-wrapper input,
#page .user-registration .input-wrapper input {
  width: 100% !important;
  margin-top: 3px !important;
  padding: 8px 16px !important;
  font-size: 20px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  border: none !important;
  background-color: #e6e7e8;
  color: #000 !important;
  border: none !important;
}

#page .lost-pass input.ur-email-field {
  margin: 20px 0;
}

.ur-frontend-form .ur-form-row .ur-form-grid label .required, 
.ur-frontend-form .ur-form-row .ur-form-grid legend .required,
#page .user-registration .user-registration-before-login-btn a {
  color: #eb7825 !important;
}

#page .user-registration-form__label .user-registration-form__input-checkbox {
  top: -1px;
}

#page .user-registration-form__label span {
  font-size: 14px !important;
}

#page .user-registration-LostPassword {
  display: inline-block; 
}

#page .lost-pass .ur-frontend-form.login {
  padding: 0 !important;
  border: none !important;
}

#page .lost-pass #page .user-registration {
  margin: 10px 0 0 0 !important;
}

#page form.user-registration-ResetPassword .ur-lost-password-content-container,
#page form.user-registration-ResetPassword .user-registration-form-row--first label abbr {
  display: none;
}

#page form.user-registration-ResetPassword .user-registration-form-row--first label {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0.36px;
}

#account #user-registration .ur-frontend-form input[type="submit"],
#page #user-registration .ur-frontend-form input[type="submit"] {
  float: none !important;
}

#page .register-message {
  margin: 0 0 20px 0;
  color: #353841;
  font-size: 14px;
  line-height: 18px; 
  font-weight: 400;
}

#page .lost-pass ul.user-registration-error {
  margin: 0 !important;
  padding: 0 0 10px 0 !important;
  border: none !important;
  background-color: #FFF !important;
  list-style-type: none !important;
  color: #eb7825 !important;
  font-size: 18px !important;
  font-weight: 400 !important;
}

#page .lost-pass ul.user-registration-error::before {
  display: none !important;
}

#page ul.user-registration-error {
  margin: 0 0 20px 0 !important;
}

#page .user-registration-myaccount-notice-box {
	display: none !important;
}

/* #endregion */



/* #region -------------------------------------- Footer */

#footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: 1200px;
  margin: auto;
  padding: 25px 0;
  border-top: 1px solid #BCBEC0; 
}

#footer .copyright {
  display: inline-block;
  top: 3px;
  color: #808285;
  font-size: 11px;
  text-align: left;
  margin-left: 0;
}

#footer .nav-footer {
  margin-left: auto;
  text-align: right;
}

#footer .nav-footer ul {
  list-style: none;
}

#footer .nav-footer li {
  display: inline-block;
  margin-left: 30px;
}

#footer .nav-footer li:first-child {
  margin-left: 0;
}

#footer a,
#footer .nav-footer a {
  color: #808285;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  text-decoration: none;
}

#footer a:hover,
#footer .nav-footer a:hover,
#footer .nav-footer li.current-menu-item a {
  color: #eb7825;
}

@media only screen and (max-width: 940px) {
  #footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #footer .copyright,
  #footer .nav-footer {
    margin-left: 0;
    text-align: center;
  }
  #footer .nav-footer li {
    margin: 10px;
  }
}

/* #endregion */


