:root {
  --utcc-blue: #003087;
  --utcc-cyan: #29b6d8;
  --utcc-gold: #f5c518;
  --utcc-dark: #1a2855;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("../img/bg-2.webp");
  background-size: cover;
  background-attachment: fixed;
  background-color: #ffffff;
}

.main_wrapper {
  width: 100%;
  height: 100vh;
}
.main_wrapper .menu_back {
  width: 100%;
  height: 40px;
  background-color: #2D388D;
  position: absolute;
  z-index: 99;
}
.main_wrapper .menu_back .menu_back_item {
  width: 1140px;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.main_wrapper .menu_back .menu_back_item .text_home_utcc {
  font-family: 'DB Heavent';
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.main_wrapper .menu_back .menu_back_item .text_home_utcc:hover {
  color: #f5c518;
}
@media screen and (max-width: 1140px) {
  .main_wrapper .menu_back .menu_back_item {
    width: 90%;
    margin: 0 auto;
  }
}
.main_wrapper .main_content_wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
  position: relative;
}
.main_wrapper .main_content_wrapper .content_wrapper_right {
  width: 50%;
  height: auto;
  display: flex;
  position: relative;
}
.main_wrapper .main_content_wrapper .content_wrapper_right .content_wrapper_right_box_in {
  width: 100%;
  height: 100%;
  position: relative;
}
.main_wrapper .main_content_wrapper .content_wrapper_right .content_wrapper_right_box_in .content_wrapper_right_box_bg {
  background-image: url("../img/bg-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.main_wrapper .main_content_wrapper .content_wrapper_right .content_wrapper_right_box_in .content_wrapper_right_box_bg .img_president {
  position: absolute;
  left: 50%;
  bottom: 0;
  top: auto;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
.main_wrapper .main_content_wrapper .content_wrapper_right .content_wrapper_right_box_in .content_wrapper_right_box_bg .img_president img {
  width: 350px;
  height: 80vh;
  max-height: 800px;
  object-fit: cover;
  object-position: center top;
}
.main_wrapper .main_content_wrapper .content_wrapper_right .content_wrapper_right_box_in .text_graphic_utcc {
  width: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: end;
}
.main_wrapper .main_content_wrapper .content_wrapper_left {
  width: 50%;
  height: 100%;
}

.text_top_3 {
  width: 240px;
  filter: invert(69%) sepia(83%) saturate(410%) hue-rotate(2deg) brightness(98%) contrast(86%);
  margin-top: 100px;
}

.form-section {
  width: 100%;
  position: relative;
}

.form-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 40px 28px 0;
  position: relative;
  z-index: 1;
  height: 100vh;
}

.form-card {
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 48, 135, 0.08);
  overflow: hidden;
}

.form-card-header {
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, #003087 0%, #0056b3 100%);
  display: flex;
  align-items: center;
  padding-left: 24px;
}

.form-card-header-icon {
  color: var(--utcc-gold);
  font-size: 1.3rem;
}

.form-card-body {
  padding: 24px 24px 0 24px;
}

.form-label-utcc {
  font-family: 'DB Heavent';
  font-size: 20px;
  color: #374151;
  margin-bottom: 2px;
  display: block;
}

.req {
  color: #dc3545;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1rem;
  pointer-events: none;
}

.input-icon-ta {
  top: 13px;
  transform: none;
}

.form-control-utcc:focus {
  outline: none;
  border-color: var(--utcc-cyan);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(41, 182, 216, 0.15);
}

.form-control-utcc.is-invalid {
  border-color: #dc3545;
}

textarea.form-control-utcc {
  resize: vertical;
  padding-top: 10px;
}

.char-hint {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 2px;
  text-align: left;
}

.captcha-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.captcha-img {
  height: 48px;
  border: 1.5px solid #e2e6ea;
  border-radius: 8px;
  cursor: pointer;
}

.btn-captcha-refresh {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1.5px solid #e2e6ea;
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
  color: var(--utcc-cyan);
  transition: border-color .2s, color .2s;
  font-family: 'DB Heavent';
  font-size: 17px;
}

.btn-captcha-refresh:hover {
  border-color: var(--utcc-cyan);
  color: var(--utcc-blue);
}

.captcha-hint {
  font-family: 'DB Heavent';
  font-size: 17px;
  color: #9ca3af;
  margin-top: 4px;
  position: relative;
}

.form-card-footer {
  padding: 14px 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  color: #6b7280;
}

.privacy-note i {
  color: var(--utcc-blue);
  font-size: 1rem;
}

.btn-send {
  width: 100%;
  gap: 8px;
  background: var(--utcc-blue);
  border: none;
  border-radius: 8px;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  transition: background .2s, transform .1s;
  font-family: 'DB Heavent';
  font-size: 20px;
  text-align: center;
  margin-top: auto;
  flex-shrink: 0;
}

.btn-send:hover {
  background: #0041a8;
  transform: translateY(-1px);
}

.btn-send i {
  font-size: 1.05rem;
}

@media (max-width: 700px) {
  .form-card-body {
    padding: 18px 16px 4px;
  }

  .form-card-footer {
    padding: 12px 16px 18px;
  }
}
.main_wrapper_try {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.main_wrapper_try .menu_back {
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.697);
  box-shadow: 0 4px 24px rgba(0, 48, 135, 0.08);
  position: fixed;
  z-index: 99;
}
.main_wrapper_try .menu_back .menu_back_item {
  width: 1140px;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.main_wrapper_try .menu_back .menu_back_item .text_home_utcc {
  font-family: 'DB Heavent';
  color: #2D388D;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.main_wrapper_try .menu_back .menu_back_item .text_home_utcc:hover {
  color: #2D388D;
}
@media screen and (max-width: 1140px) {
  .main_wrapper_try .menu_back .menu_back_item {
    width: 90%;
    margin: 0 auto;
  }
}
.main_wrapper_try .main_content_wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .main_wrapper_try .main_content_wrapper {
    flex-direction: column;
    height: auto;
  }
}
.main_wrapper_try .main_content_wrapper .content_wrapper_right {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 0px 60px 0px 60px;
  overflow: hidden;
}
@media screen and (max-width: 1140px) {
  .main_wrapper_try .main_content_wrapper .content_wrapper_right {
    padding: 0px 60px 0px 60px;
  }
}
@media screen and (max-width: 840px) {
  .main_wrapper_try .main_content_wrapper .content_wrapper_right {
    padding: 80px 0px 32px 0px;
    height: auto;
    overflow: visible;
  }
}
.main_wrapper_try .main_content_wrapper .content_wrapper_right .content_wrapper_right_in {
  width: 100%;
  height: 100vh;
  padding-left: 24px;
  padding-top: 66px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .main_wrapper_try .main_content_wrapper .content_wrapper_right .content_wrapper_right_in {
    width: 90%;
    margin: 0 auto;
    padding-left: 0px;
    padding-top: 16px;
    height: auto;
  }
}
.main_wrapper_try .main_content_wrapper .content_wrapper_right .content_wrapper_right_in_box {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 8px;
  border: 1px solid #e5e9f0;
  box-shadow: 0 4px 24px rgba(0, 48, 135, 0.08);
  padding: 12px;
  margin-top: 8px;
  background-color: #ffffff;
}

#contactForm {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.message-form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.message-form-field .input-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

#message {
  flex: 1;
  min-height: 60px;
  max-height: none;
  resize: none;
  height: auto;
}
.main_wrapper_try .main_content_wrapper .content_wrapper_right .president_img_responsive {
  width: 100%;
  height: 45vw;
  display: none;
  background-image: url("../img/bg_right_new.svg");
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .main_wrapper_try .main_content_wrapper .content_wrapper_right .president_img_responsive {
    display: flex;
  }
}
.main_wrapper_try .main_content_wrapper .content_wrapper_left {
  background-image: url("../img/bg_right_new.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 80%;
  height: 100vh;
}
@media screen and (max-width: 840px) {
  .main_wrapper_try .main_content_wrapper .content_wrapper_left {
    display: none;
  }
}

.form-card-title {
  font-family: 'DB Heavent Med';
  color: #2D388D;
  font-size: 24px;
  line-height: 24px;
}

.box_form_field {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.box_form_field_2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.form-field {
  width: 100%;
  margin-bottom: 4px;
}

.form-control-utcc {
  width: 100%;
  border: 1.5px solid #e2e6ea;
  border-radius: 4px;
  padding: 5px 36px 5px 36px;
  font-family: 'DB Heavent';
  font-size: 20px;
  color: #374151;
  background: #f8fafc;
  transition: border-color .2s, box-shadow .2s;
}

.form-control-utcc_2 {
  width: 200px;
  border: 1.5px solid #e2e6ea;
  border-radius: 4px;
  padding: 6px 16px 6px 16px;
  font-family: 'DB Heavent';
  font-size: 18px;
  color: #374151;
  background: #f8fafc;
  transition: border-color .2s, box-shadow .2s;
}
