/*Reset CSS*/
/*--reset-css--*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  letter-spacing: -0.006em;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body,
input,
textarea,
button,
select {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

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

/*--end-reset-css--*/
/*--flex--*/
.t_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.t_inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.t_flex-row {
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

.t_flex-column {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.t_flex-row-reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.t_flex-column-reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

.t_flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.t_flex-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.t_flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.t_justify-c-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.t_justify-c-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.t_justify-c-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.t_justify-c-between {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.t_align-i-left {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.t_align-i-right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.t_align-i-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.t_align-c-left {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.t_align-c-right {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.t_align-c-center {
  -ms-flex-line-pack: center;
  align-content: center;
}

@media (max-width: 1200px) {
  .t_flex-lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .t_flex-lg-row {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }

  .t_flex-lg-column {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .t_flex-lg-row-reverse {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }

  .t_flex-lg-column-reverse {
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }

  .t_flex-lg-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .t_flex-lg-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .t_flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }

  .t_flex-lg-fill {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
  }

  .t_flex-lg-grow-0 {
    -ms-flex-positive: 0;
    -webkit-box-flex: 0;
    flex-grow: 0;
  }

  .t_flex-lg-grow-1 {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
  }

  .t_flex-lg-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .t_flex-lg-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .t_justify-c-lg-left {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }

  .t_justify-c-lg-right {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
  }

  .t_justify-c-lg-center {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
  }

  .t_justify-c-lg-between {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .t_justify-c-lg-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .t_align-i-lg-left {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .t_align-i-lg-right {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .t_align-i-lg-center {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .t_align-i-lg-baseline {
    -ms-flex-align: baseline;
    -webkit-box-align: baseline;
    align-items: baseline;
  }

  .t_align-i-lg-stretch {
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
  }

  .t_align-c-lg-left {
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }

  .t_align-c-lg-right {
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }

  .t_align-c-lg-center {
    -ms-flex-line-pack: center;
    align-content: center;
  }

  .t_align-c-lg-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }

  .t_align-c-lg-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }

  .t_align-c-lg-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }

  .t_align-s-lg-auto {
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }

  .t_align-s-lg-left {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .t_align-s-lg-right {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .t_align-s-lg-center {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .t_align-s-lg-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }

  .t_align-s-lg-stretch {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
}

@media (max-width: 992px) {
  .t_flex-md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .t_flex-md-row {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }

  .t_flex-md-column {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .t_flex-md-row-reverse {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }

  .t_flex-md-column-reverse {
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }

  .t_flex-md-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .t_flex-md-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .t_flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }

  .t_flex-md-fill {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
  }

  .t_flex-md-grow-0 {
    -ms-flex-positive: 0;
    -webkit-box-flex: 0;
    flex-grow: 0;
  }

  .t_flex-md-grow-1 {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
  }

  .t_flex-md-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .t_flex-md-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .t_justify-c-md-left {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }

  .t_justify-c-md-right {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
  }

  .t_justify-c-md-center {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
  }

  .t_justify-c-md-between {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .t_justify-c-md-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .t_align-i-md-left {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .t_align-i-md-right {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .t_align-i-md-center {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .t_align-i-md-baseline {
    -ms-flex-align: baseline;
    -webkit-box-align: baseline;
    align-items: baseline;
  }

  .t_align-i-md-stretch {
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
  }

  .t_align-c-md-left {
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }

  .t_align-c-md-right {
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }

  .t_align-c-md-center {
    -ms-flex-line-pack: center;
    align-content: center;
  }

  .t_align-c-md-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }

  .t_align-c-md-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }

  .t_align-c-md-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }

  .t_align-s-md-auto {
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }

  .t_align-s-md-left {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .t_align-s-md-right {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .t_align-s-md-center {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .t_align-s-md-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }

  .t_align-s-md-stretch {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
}

@media (max-width: 768px) {
  .t_flex-sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .t_flex-sm-row {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }

  .t_flex-sm-column {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .t_flex-sm-row-reverse {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }

  .t_flex-sm-column-reverse {
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }

  .t_flex-sm-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .t_flex-sm-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .t_flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }

  .t_flex-sm-fill {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
  }

  .t_flex-sm-grow-0 {
    -ms-flex-positive: 0;
    -webkit-box-flex: 0;
    flex-grow: 0;
  }

  .t_flex-sm-grow-1 {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
  }

  .flt_flexex-sm-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .t_flex-sm-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .t_justify-c-sm-left {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }

  .t_justify-c-sm-right {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
  }

  .t_justify-c-sm-center {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
  }

  .t_justify-c-sm-between {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .t_justify-c-sm-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .t_align-i-sm-left {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .t_align-i-sm-right {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .t_align-i-sm-center {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .t_align-i-sm-baseline {
    -ms-flex-align: baseline;
    -webkit-box-align: baseline;
    align-items: baseline;
  }

  .t_align-i-sm-stretch {
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
  }

  .t_align-c-sm-left {
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }

  .t_align-c-sm-right {
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }

  .t_align-c-sm-center {
    -ms-flex-line-pack: center;
    align-content: center;
  }

  .t_align-c-sm-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }

  .t_align-c-sm-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }

  .t_align-c-sm-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }

  .t_align-s-sm-auto {
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }

  .t_align-s-sm-left {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .t_align-s-sm-right {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .t_align-s-sm-center {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .t_align-s-sm-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }

  .t_align-s-sm-stretch {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
}

@media (max-width: 576px) {
  .t_flex-xs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .t_flex-xs-row {
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }

  .t_flex-xs-column {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .t_flex-xs-row-reverse {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }

  .t_flex-xs-column-reverse {
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }

  .t_flex-xs-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .t_flex-xs-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .t_flex-xs-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }

  .t_justify-c-xs-left {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }

  .t_justify-c-xs-right {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
  }

  .t_justify-c-xs-center {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
  }

  .t_justify-c-xs-between {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .t_justify-c-xs-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .t_align-i-xs-left {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .t_align-i-xs-right {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .t_align-i-xs-center {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .t_align-i-xs-baseline {
    -ms-flex-align: baseline;
    -webkit-box-align: baseline;
    align-items: baseline;
  }

  .t_align-i-xs-stretch {
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
    align-items: stretch;
  }

  .t_align-c-xs-left {
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }

  .t_align-c-xs-right {
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }

  .t_align-c-xs-center {
    -ms-flex-line-pack: center;
    align-content: center;
  }

  .t_align-c-xs-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }

  .t_align-c-xs-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }

  .t_align-c-xs-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }

  .t_align-s-xs-auto {
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }

  .t_align-s-xs-left {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .t_align-s-xs-right {
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .t_align-s-xs-center {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .t_align-s-xs-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
  }

  .t_align-s-xs-stretch {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
}

/*--end-flex--*/
img {
  display: block;
  max-width: 100%;
  border: 0;
}

input,
.input,
textarea,
.textarea {
  display: block;
  width: 100%;
  border: none;
  color: #333333;
  padding: 13px 12px;
  background: transparent;
  border-style: solid;
  border-width: 1px;
  border-color: #929292;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

input:focus,
.input:focus,
textarea:focus,
.textarea:focus,
.input--focus {
  border: none;
  color: #333333;
  background: transparent;
  border-style: solid;
  border-width: 1px;
  border-color: #333333;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

button,
.button {
  border: none;
  cursor: pointer;
  border-style: none;
  border-width: 1;
  opacity: 1;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

button:hover,
.button:hover,
.button--hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

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

/*Global Style*/
html {
  scroll-behavior: smooth;
}

.t_container {
  width: 1200px;
  margin: 0px auto;
  padding: 0px 16px;
}

@media (max-width: 1200px) {
  .t_container {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .t_container {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .t_container {
    width: 100%;
    max-width: 100%;
  }
}

.t_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.t_button {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  border-radius: 12px;
  color: #fff;
  background: #1D3F92;
  border: 1px solid #1D3F92;
}

.t_button:hover {
  background: #1D3F92E5;
  border: 1px solid #1D3F92E5;
}

.t_button:focus,
.t_button:active {
  background: #1D3F92E5;
  border: 1px solid #1D3F92E5;
}

.t_button_secondary {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  border-radius: 12px;
  color: #1D3F9299;
  background: transparent;
  border: 2px solid #1D3F9299;
}

.t_button_secondary:hover {
  color: #1D3F92;
  border: 2px solid #1D3F92;
}

.t_button_secondary:focus,
.t_button_secondary:active {
  color: #0C2152;
  border: 2px solid #0C2152;
}

.t_button_third {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 144%;
  border-radius: 12px;
  color: #fff;
  background: #FF5E34;
  border: 1px solid #FF5E34;
}

.t_button_third:hover {
  background: #FF5E34CC;
  border: 1px solid #FF5E34CC;
}

.t_button_third:focus,
.t_button_third:active {
  background: #DE360A;
  border: 1px solid #DE360A;
}

@font-face {
  font-family: 'DM Serif Display';
  src: url('./font/DMSerifDisplay-Regular.ttf') format("truetype");
}

@font-face {
  font-family: 'Work Sans';
  src: url('./font/WorkSans-Regular.ttf') format("truetype");
}

html,
body {
  font-family: 'Work Sans';
  background: #000000;
}

/*1.Homepage*/
/*Header*/
.header.header_transparent {
  background: #353530;
}

.header_wrapper {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 32px 16px;
}

.logo_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo_header a {
  display: block;
}

.logo_header img {
  width: 100%;
  height: 100%;
}

.menu_wrapper .t_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu_wrapper .t_nav ul.sub_menu {
  position: absolute;
  background: #fff;
  top: 100%;
  visibility: hidden;
  -webkit-transition: opacity 0.15s ease-in, -webkit-transform 0.15s ease-in;
  transition: opacity 0.15s ease-in, -webkit-transform 0.15s ease-in;
  transition: transform 0.15s ease-in, opacity 0.15s ease-in;
  transition: transform 0.15s ease-in, opacity 0.15s ease-in, -webkit-transform 0.15s ease-in;
  opacity: 1;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  min-width: 100%;
  width: auto;
  max-width: 300px;
  left: 50%;
  -webkit-transform: scale(1) translateX(-50%);
  transform: scale(1) translateX(-50%);
  display: none;
  z-index: 99;
  padding: 5px 0;
}

.menu_wrapper .t_nav ul.sub_menu li {
  text-align: center;
  padding: 0;
}

.menu_wrapper .t_nav ul.sub_menu li a {
  width: 100%;
  display: block;
  padding: 3px 0;
}

.menu_wrapper .t_nav ul.sub_menu li:hover a {
  color: #1D3F92;
}

.menu_wrapper .t_nav a {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.menu_wrapper .t_nav li.level1 {
  position: relative;
  padding: 12px 15px;
}

.menu_wrapper .t_nav li.level1 .icon {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.menu_wrapper .t_nav li.level1 .icon svg path {
  color: #1D3F9299;
}

.menu_wrapper .t_nav li.level1.has_submenu:hover {}

.menu_wrapper .t_nav li.level1.has_submenu:hover .icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.menu_wrapper .t_nav li.level1:hover ul.sub_menu {
  display: block;
  visibility: visible;
  border-radius: 8px;
  -webkit-box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 40px 40px rgba(0, 0, 0, 0.12);
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  min-width: 100%;
  padding: 0;
  overflow: hidden;
}

.menu_wrapper .t_nav li.level1:hover ul.sub_menu li {
  text-align: left;
  padding: 3px 15px;
}

.menu_wrapper .t_nav li.level1:hover ul.sub_menu li:hover {
  background: #DCE4ED;
}

.menu_wrapper .t_nav li.level1:hover a.link_lv1 {
  color: #fcd462;
}

.menu_wrapper .t_nav li.level1:hover .icon path {
  fill: #1D3F92;
}

.menu_wrapper .t_nav li.level1 .sub_menu_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu_wrapper .t_nav li.level1 .sub_menu_title .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 6px;
}

.menu_wrapper .t_nav li.level1.active .sub_menu_title .icon path {
  fill: #1D3F92;
}

.menu_desk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu_mobile {
  display: none;
}

.menu_mobile .nav_open_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: 150;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.5s, opacity 0.5s;
  transition: visibility 0.5s, opacity 0.5s;
}

.menu_mobile .nav_open_menu .nav_open_menu_content {
  background: #353530;
  width: 90%;
  height: 100%;
  position: absolute;
  right: -100%;
  -webkit-transition: left 0.52s;
  transition: right 0.52s;
  padding: 0px;
}

.menu_mobile .nav_open_menu.active {
  visibility: visible;
  opacity: 1;
}

.menu_mobile .nav_open_menu.active .nav_open_menu_content {
  right: 0;
}

.menu_mobile .nav_open_menu .menu_bar {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: end;
  padding: 16px;
  margin-bottom: 0px;
}

.menu_mobile .nav_open_menu .menu_bar .logo_menu_bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
}

.menu_mobile .nav_open_menu .menu_body ul li {
  border-bottom: 1px solid #eaeaea;
}


.menu_mobile .nav_open_menu .menu_body ul li.level1 {
  padding: 10px 20px;
}

.menu_mobile .nav_open_menu .menu_body ul li.level1 .sub_menutitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid #1D3F9299;
}

.menu_mobile .nav_open_menu .menu_body ul li.level1 .sub_menutitle a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.menu_mobile .nav_open_menu .menu_body ul li.level1 .sub_menutitle .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 10px;
}

.menu_mobile .nav_open_menu .menu_body ul li.level1 .sub_menu {
  display: block;
}


.menu_mobile .nav_open_menu .menu_body ul li.level1.active .sub_menutitle .arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.menu_mobile .nav_open_menu .menu_body ul li.level1.active .sub_menutitle .arrow svg path {
  fill: #1D3F92;
}

.menu_mobile .nav_open_menu .menu_body ul li.level2 {
  padding: 8px 16px;
}

.menu_mobile .nav_open_menu .menu_body ul li.level2:first-child {
  border-bottom: 1px solid #1D3F9299;
}

@media (max-width: 992px) {
  .menu_mobile {
    display: block;
  }

  .menu_wrapper .t_nav.menu_desk {
    display: none;
  }

  .header_wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 16px;
  }

  .header_wrapper .logo_header {
    height: 40px;
    margin-left: 16px;
    margin-right: auto;
  }

  body {
    -webkit-transition: left 0.5s;
    transition: left 0.5s;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.active-header-no-scroll {
    left: 300px;
    overflow-x: hidden;
    overflow-y: hidden;
  }
}

/*Hero banner*/
.hero_banner {
  padding: 80px 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hero_banner .banner_content {
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero_banner .banner_content .heading {
  font-size: 55px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px !important;
  font-weight: 600;
}

.hero_banner .banner_content .message {
  font-size: 15px;
  font-family: 'Work Sans';
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.hero_banner .banner_content .button_banner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
}

.hero_banner .banner_content .text {
  margin-right: 13px;
}

.hero_banner .banner_content .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero_banner .banner_image {
  width: 50%;
}

.hero_banner .banner_image img {
  width: 100%;
}

@media (max-width: 768px) {
  .hero_banner {
    padding: 16px 16px 48px 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .hero_banner .banner_content,
  .hero_banner .banner_image {
    width: 100%;
  }

  .hero_banner .banner_image {
    padding: 0 10px;
    margin-bottom: 0px;
  }

  .hero_banner .banner_content .hero_banner .banner_image {
    margin-top: 0;
  }

  .hero_banner .banner_content .heading {
    font-size: 52px;
  }

  .hero_banner .banner_content .message {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .hero_banner .banner_content .button_banner {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero_banner {
    padding: 0px 16px 70px 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .hero_banner .banner_content,
  .hero_banner .banner_image {
    width: 100%;
    text-align: center;
  }

  .hero_banner .banner_image {
    padding: 0 10px;
    margin-bottom: 0px;
  }

  .hero_banner .banner_content .hero_banner .banner_image {
    margin-top: 0;
  }

  .hero_banner .banner_content .heading {
    font-size: 43px;
  }

  .hero_banner .banner_content .message {
    font-size: 17px;
    margin-bottom: 0px;
  }

  .hero_banner .banner_content .button_banner {
    font-size: 16px;
  }
}

/*Featured List*/

.featuared_list {
  padding: 80px 0;
}

.featuared_list_wrraper {
  text-align: left;
}

.featuared_list_wrraper .heading {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

.highlight {

  display: inline-block;

  margin-right: -0.5rem;

  margin-bottom: -0.5rem;

  margin-left: -0.5rem;

  padding-right: 0.5rem;

  padding-bottom: 0.5rem;

  padding-left: 0.5rem;

  border-radius: 0.5rem;

  background-color: #d3c08c;

}

.featuared_list_wrraper .message {

  font-size: 18px;

  line-height: 144%;

  color: #000;

  margin-bottom: 32px;

}



.featuared_list_wrraper .featured_list_content {

  /* -ms-flex-wrap: wrap;

  flex-wrap: wrap; */

  display: grid;

  justify-items: start;

  -webkit-box-align: start;

  -webkit-align-items: start;

  -ms-flex-align: start;

  align-items: start;

  grid-auto-columns: 1fr;

  grid-column-gap: 3rem;

  grid-row-gap: 4rem;

  -ms-grid-columns: 1fr 1fr 1fr;

  grid-template-columns: 1fr 1fr;

  -ms-grid-rows: auto;

  grid-template-rows: auto;

}

.featuared_list_wrraper .featured_list_content .item_wrapper {

  height: 100%;

}

.featuared_list_wrraper .featured_list_content .item_content {
  height: 100%;

  width: 100%;

  padding: 3rem 2rem;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -webkit-flex-direction: column;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-box-align: center;

  -webkit-align-items: center;

  -ms-flex-align: center;

  align-items: center;

  border-radius: 1rem;

  background-color: #f4f4f4;

}

.featuared_list_wrraper .featured_list_content .item_content .icon {

  margin-bottom: 16px;

  width: 50px;

  height: 50px;

}

.featuared_list_wrraper .featured_list_content .item_content .icon img {

  width: 100%;

  height: 100%;

}



.featuared_list_wrraper .featured_list_content .title {

  color: #000;

  font-size: 28px;

  line-height: 1.2;

  font-weight: 500;

  margin-bottom: 16px;

}



.featuared_list_wrraper .featured_list_content .message {

  font-size: 16px;

  line-height: 1.5;

  padding-right: 10px;

  color: #000;

}

.featuared_list_wrraper .featured_list_content .img1,

.featuared_list_wrraper .featured_list_content .img2,

.featuared_list_wrraper .featured_list_content .img3 {

  background-color: #fff;

}



@media (max-width: 992px) {

  .featuared_list_wrraper .heading {

    margin-bottom: 40px;

  }

}

@media (max-width: 768px) {

  .featuared_list_wrraper .featured_list_content {

    grid-column-gap: 2rem;

    grid-row-gap: 2rem;

    -ms-grid-columns: 1fr;

    grid-template-columns: 1fr;
  }

  .featuared_list_wrraper .heading {
    margin-bottom: 40px;
  }

  .featuared_list_wrraper .featured_list_content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .featuared_list_wrraper .featured_list_content .title {
    font-size: 24px;
  }

}

@media (max-width: 576px) {
  .featuared_list {
    padding: 48px 0;
  }

  .featuared_list_wrraper .featured_list_heading {
    padding: 0;
  }

  .featuared_list_wrraper .featured_list_content .item_wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .featuared_list_wrraper .featured_list_content .item_wrapper:last-child {
    margin-bottom: 0;
  }

  .featuared_list_wrraper .featured_list_content .item .title {
    font-size: 24px;
  }

  .featuared_list_wrraper .featured_list_content .item .message {
    margin-bottom: 16px;
    padding-right: 0;
  }

  .featuared_list_wrraper .heading {
    font-size: 32px;
  }

  .featuared_list_wrraper .heading .t_br {
    display: none;
  }

  .featuared_list_wrraper .message {
    font-size: 17px;
  }
}

/*contact us*/
.contact_us_wrapper {
  padding-bottom: 10px;
}

.contact_us {
  flex-direction: row-reverse;
  padding: 104px 0 80px 0;
}

.contact_us .content_left,
.contact_us .content_right {
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 3%;
}

@media (max-width: 768px) {
  .contact_us {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 48px 16px;
  }

  .contact_us .content_left {
    width: 100%;
  }
}

/*footer*/
.footer_wrapper {
  background: #353530;
  color: #fff;
  padding: 80px 0;
  font-family: 'Work Sans';
}

.footer_wrapper .footer_content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer_wrapper .footer_content .footer_above {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer_wrapper .footer_content .footer_below {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer_wrapper .footer_content .social_media {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer_wrapper .footer_content .menu_footer {
  gap: 50%;
  width: 50%;
  justify-content: end;
}

.footer_wrapper .footer_content .box_menu {
  display: flex;
  flex-direction: column;
}

.footer_wrapper .footer_content .box_menu .title {
  font-weight: bold;
  font-size: 22px;
  line-height: 144%;
  margin-bottom: 27px;
}

.footer_wrapper .footer_content .box_menu ul.menu_nav li a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 144%;
}

.footer_wrapper .footer_content .box_menu ul.menu_nav li a .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 7px;
}

.footer_wrapper .footer_content .box_menu ul.menu_nav li:hover a {
  color: #fcd462;
}

@media (max-width: 768px) {
  .footer_wrapper {
    padding: 48px 0;
  }

  .footer_wrapper .footer_above {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer_wrapper .footer_content .menu_footer {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .footer_wrapper .footer_content .box_menu {
    width: auto;
    margin-bottom: 16px;
  }

  .footer_wrapper .footer_content .box_menu .title {
    margin-bottom: 20px;
  }

  .footer_wrapper .footer_content .social_media {
    width: 100%;
    margin-top: 32px;
    margin-bottom: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: start;
  }

  .footer_wrapper .footer_content .social_media .social_icon_content {
    margin-right: 60px;
  }

  .footer_wrapper .footer_content .social_media .social_icon {
    margin-bottom: 0;
  }

  .footer_wrapper .footer_content .social_media .trustbadge_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 576px) {
  .footer_wrapper .footer_content .menu_footer {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer_wrapper .footer_content .box_menu {
    width: 100%;
    margin-bottom: 16px;
  }

  .footer_wrapper .footer_content .box_menu .title {
    margin-bottom: 20px;
  }

  .footer_wrapper .footer_content .social_media {
    width: 100%;
    margin-top: 32px;
    margin-bottom: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
  }

  .footer_wrapper .footer_content .social_media .social_icon_content {
    width: 50%;
  }

  .footer_wrapper .footer_content .social_media .social_icon {
    margin-bottom: 0;
  }

  .footer_wrapper .footer_content .social_media .trustbadge_img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

/*Banner*/

.banner {

  padding: 69px 0;

  background: url(./images/cpa-course.png) no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  background-attachment: fixed;

}

.banner .banner_wrapper {

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -ms-flex-line-pack: center;

  align-content: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  text-align: center;

  color: #fff;
  z-index: 2;
  position: relative;

}

.banner:after {
  content: '';
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0px;
  background: #000;
  opacity: .7;
}


.banner .banner_wrapper .heading {

  font-weight: bold;

  font-size: 48px;

  line-height: 124%;

  margin-bottom: 10px;

}

.banner .banner_wrapper .message {

  text-align: left;

}



.banner .banner_wrapper .message p {

  font-size: 17px;

  line-height: 1.5;

  margin-bottom: 16px;

}

.banner .button_banner {

  color: #fff;

  border: 2px solid #fcd462;

  padding: 10px 15px;

  background: #fcd462;

  margin: 32px auto 0 auto;

  border-radius: 10px;

  font-size: 15px;

  font-weight: 700;

  text-transform: uppercase;

}

.banner .button_banner:hover {

  background-color: #ffd583;

}

@media (max-width: 992px) {

  .banner {
    background-attachment: scroll;
    background-position: 15%;
    padding: 50px 0;
  }

}

@media (max-width: 576px) {

  .banner .banner_wrapper .heading {

    font-size: 32px;

  }



  .banner .banner_wrapper .message {

    font-size: 18px;

  }

}

/*3.Contact Us*/
/*Herro Banner*/
.contact_us_hero_banner {
  background-image: url("images/about-us-banner.jpg");
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.contact_us_hero_banner .banner_content {
  position: relative;
  z-index: 10;
  padding: 80px 16px;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.contact_us_hero_banner .banner_content .heading {
  font-weight: bold;
  font-size: 36px;
  line-height: 136%;
}

@media (min-width: 1600px) {
  .contact_us_hero_banner .banner_content {
    padding: 98px 16%;
  }
}

@media (max-width: 576px) {
  .contact_us_hero_banner .banner_content {
    padding: 80px 0;
  }

  .contact_us_hero_banner .banner_content .heading {
    font-size: 28px;
  }
}

/*History Infos*/
.history_infos.on_contact_page {
  padding: 48px 0;
}

/*Contact Us*/
.contact_us_wrapper.on_contact_page {
  background-image: none;
  max-width: 960px;
  margin: 0 auto;
}

.contact_us_wrapper.on_contact_page .content_left {
  padding-left: 3%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: start;

}

.contact_us_wrapper.on_contact_page .content_left .heading {
  margin-bottom: 16px;
}



.contact_us_wrapper.on_contact_page .content_left .contact_box input::-webkit-outer-spin-button,
.contact_us_wrapper.on_contact_page .content_left .contact_box input::-webkit-inner-spin-button,
.contact_us_wrapper.on_contact_page .content_left .contact_box textarea::-webkit-outer-spin-button,
.contact_us_wrapper.on_contact_page .content_left .contact_box textarea::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact_us_wrapper.on_contact_page .content_left .contact_box input[type=number],
.contact_us_wrapper.on_contact_page .content_left .contact_box textarea[type=number] {
  -moz-appearance: textfield;
}


.contact_us_wrapper.on_contact_page .content_right {
  padding-left: 3%;
}

@media (max-width: 768px) {
  .contact_us_wrapper.on_contact_page .content_left {
    padding-right: 0px;
  }

  .contact_us_wrapper.on_contact_page .content_right {
    padding-left: 0;
  }
}

/*# sourceMappingURL=theme.css.map */

/*New code*/
/*home*/

.trust_box_container {

  padding: 80px 16px;

}

.trust_box {

  display: flex;

  justify-content: space-between;

  margin: 30px 0;

}

.trust_heading {

  font-size: 48px;

  font-weight: 600;

  line-height: 1.2;

  margin-bottom: 60px;

  text-align: left;

  color: #fff;

}

.trust_box .box-item {

  width: calc(30% - 10px);

  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);

  padding: 30px;

  position: relative;

  background-color: #f4f4f4;

  border-radius: 5px;

  border-top: 5px solid #fcd462;

}

.trust_box .box-item:before {

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  background-color: #fff;

  border-radius: 50%;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);

  color: #fcd462;

  content: "\f10e";

  font-family: 'FontAwesome';

  font-size: 32px;

  font-style: normal;

  left: 50%;

  line-height: 60px;

  position: absolute;

  top: -30px;

  width: 60px;

  text-align: center;

}

.trust_box .box-item .item_content {

  font-size: 17px;

  line-height: 1.5;

  margin-bottom: 40px;

}

.trust_box .box-item .item_author {

  font-size: 17px;

  line-height: 1.5;

}

@media (max-width: 992px) {

  .trust_box_container {

    padding: 80px 16px;

  }

  .trust_box {

    flex-wrap: wrap;

  }

  .trust_box .box-item {



    width: calc(50% - 20px);

    margin-bottom: 50px;

  }

}

@media (max-width: 767px) {
  .trust_box_container {

    padding: 48px 16px;

  }

  .trust_box {

    flex-direction: column;

  }

  .trust_box .box-item {

    width: 100%;

    margin-bottom: 40px;

  }

  .trust_box .box-item:last-child {
    margin-bottom: 0px;
  }

  .logo_container {
    gap: 50px !important;
    margin-bottom: 0px !important;
    flex-direction: column;
  }

  .logo-content {
    width: 55% !important;
  }

  .trust_box {
    margin: 30px 0px 0px 0px;
  }
}

i.fas {
  color: inherit;
}

/* Header */
.header_wrapper {
  width: 1200px;
  padding: 32px 0px;
}

.logo_header {
  height: 70px !important;
}

.menu_wrapper .level1 a {
  font-size: 22px;
}

.menu_body .level1 a {
  font-size: 14px;
  line-height: 3;
  font-weight: 600;
}

.header_wrapper li.level1 a {
  font-family: 'Work Sans';
  color: #fff;
  text-transform: uppercase;
}

.header_wrapper li.level1.active a {
  color: #fcd462;
}

.logo_agent {
  width: 25%;
  display: flex;
  justify-content: end;
}

.logo_agent a {
  width: 110px;
}

.logo-banner {
  background: #3C3C48;
  padding: 80px 0px;
}

.logo_container {
  align-items: center;
  justify-content: center;
  gap: 60px;

}

.logo-content {
  width: 20%;
}

/* footer */
.trustbadge_img {
  width: 50%;
}


/*Contact us page*/
.contact_us_page {
  padding-top: 32px;
  font-family: 'DM Serif Display';
  background-color: #212529;
  color: #fff;
}

.title_contact {
  font-size: 55px;
  justify-content: center;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 10px;
}

.contact_us {
  padding: 0px;
}

.contact_us_wrapper.on_contact_page .content_right {
  padding: 80px 0px 80px 0px;
}

.contact_us_wrapper.on_contact_page .content_left {
  border-left: 1px solid #E9EBEF;
  padding: 80px 0px 80px 80px;
}

.item_info {
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.item_info:nth-child(3) {
  margin-bottom: 68px;
}

.contact_us .sub_title {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.contact_us .title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 36px;
  text-transform: capitalize;
}

.t_flex.content_left .title {
  margin-bottom: 30px;
}

.icon_info {
  padding: 16px 19px;
  border-radius: 100%;
  color: #fff;
  background-color: #3C3C48;
}

.item_info:nth-child(2) .icon_info {
  padding: 16px 17px;
}

.content_info-title {
  font-size: 22px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.content_info-subtitle {
  font-size: 17px;
  color: #a3a3a3;
  font-family: 'Work Sans';
}

.content_info-subtitle a {
  color: #a3a3a3;
}

/*social box */
.contact_us .social_box .social_icon {
  gap: 12px;
}

.contact_us .social_box .social_icon a:first-child svg path {
  fill: #3b5998;
}

.contact_us .social_box .social_icon a:last-child svg path {
  fill: #ea4335;
}

.social_icon a {
  position: relative;
}

.social_icon a:after {
  content: '';
  display: block;
  width: 35px;
  height: 35px;
  background: #fff;
  position: absolute;
  top: 2px;
  z-index: 0;
  border-radius: 100%;
  left: 2px;
}

.social_icon a svg {
  z-index: 1;
  position: relative;
}

/* contact form */
.input_name,
.input_email,
.input_subject {
  margin-bottom: 16px;
}

.contact_us_page input,
.contact_us_page .input,
.contact_us_page textarea,
.contact_us_page .textarea {
  transition-delay: unset !important;
  font-family: 'Work Sans';
  border-radius: unset !important;
  background-color: #fafafa;
  color: #666;
  border: 1px solid #eaeaea;
  border-radius: 2px;
  font-size: 17px;

}

.contact_us_wrapper.on_contact_page .content_left .contact_box textarea {
  min-height: 120px;
}

.form_input:has(.isShow) input {
  border: 1px solid #ff0000 !important;
}

.contact_us_wrapper.on_contact_page .content_left .contact_box .button_banner {
  padding: 13px 28px;
  width: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  margin-top: 20px;
  background: #fcd462;
  color: #fff;
  font-weight: 600;
  font-family: 'Work Sans';
  border-radius: 3px;
  border: 1px solid #fcd462;
  font-size: 15px;
  text-transform: uppercase;
}

.contact_us_wrapper.on_contact_page .content_left .contact_box .button_banner:hover {
  background: #ffd583;
  border: 1px solid #ffd583;
}

@media (min-width:1200px) {}

@media (max-width: 1199px) {
  .header_wrapper {
    padding: 32px 16px !important;
  }

  .header_wrapper .logo_header {
    width: 25%;
  }

  .logo-banner {
    padding: 80px 0px;
  }
}

@media (max-width: 992px) {
  .header_wrapper {
    flex-direction: row-reverse;
  }

  .header_wrapper .logo_header {
    height: 40px !important;
    margin-left: 0px;
    width: 40%;
  }

  .menu_mobile {
    padding: 12px;
    background: #fcd462;
    border-radius: 2px;
  }

  .logo_agent {
    display: none;
  }

  .menu_body ul {
    border-top: 1px solid #eaeaea;
  }

  .menu_mobile .nav_open_menu .menu_body ul li.level1 .sub_menutitle {
    border: unset !important;
    padding-bottom: 0px !important;
  }

  .footer_wrapper .footer_content .footer_above {
    flex-direction: row;
    gap: 64px;
  }

  .trustbadge_img {
    width: 70%;
  }

  .footer_wrapper .footer_content .menu_footer {
    gap: 50%;
    width: 100%;
    justify-content: unset !important;
  }

}

@media (max-width: 992px) and (min-width: 768px) {
  .contact_us {
    flex-direction: row-reverse;
  }

  .contact_us_page {
    padding-left: 0px;
    padding-right: 0px;
  }

  .contact_us .content_left,
  .contact_us .content_right {
    width: 50%;
  }

  .contact_us_wrapper.on_contact_page .content_left {
    padding: 80px 0px 80px 40px;
  }

  .icon_info {
    padding: 16px 20px;
  }

  .item_info:nth-child(2) .icon_info {
    padding: 16px 18px;
    ;
  }

  .content_info-subtitle {
    font-size: 14px;
  }

  .logo-banner {
    padding: 50px 0px;
  }
}

@media(max-width: 768px) {
  .footer_wrapper .footer_content .footer_above {
    flex-direction: row-reverse;
  }
}

@media (max-width: 576px) {
  .logo_header {
    height: 50px !important;
    width: 60%;
  }

  .contact_us {
    flex-direction: column-reverse;
    gap: 56px;
  }

  .contact_us .content_left,
  .contact_us .content_right {
    width: 100%;
  }

  .contact_us_wrapper.on_contact_page .content_left {
    padding: 0px 0px 80px 0px !important;
    border-left: 0px !important;
  }

  .footer_wrapper .footer_content .footer_above {
    flex-direction: column-reverse;
  }

  .footer_wrapper .footer_content .menu_footer {
    gap: 50%;
    width: 100%;
    justify-content: space-between;
  }

  .footer_wrapper .footer_content .box_menu {
    width: auto;
  }

  .logo-banner {
    padding: 48px 0px;
  }


}


/* toast message */
#toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 30px;
  font-size: 17px;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}

/* Hiển thị toast */
#toast.show,
#toast.error {
  visibility: visible;
  opacity: 1;
}

#toast.show {
  background-color: #45a049;
}

#toast.error {
  background-color: darkred;
}

/* error message */
.error {
  display: none;
}

.error.isShow {
  display: block;
  color: #ff0000;
  margin-top: 5px;
}

.footer_copyright_content {
  text-align: center;
  margin-top: 48px;
}