* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins-Regular';
  font-size: 16px;
  color: #929292;
}
h1,
h2,
h3,
h4,
p {
  margin-bottom: 0px;
}
img {
  max-width: 100%;
}
.show-admin {
  display: none;
}
@font-face {
  font-style: normal;
  font-display: swap;
  font-family: 'Poppins-Regular';
  src: url(../css/fonts/Poppins-Regular.ttf);
}
@font-face {
  font-style: normal;
  font-display: swap;
  font-family: 'Poppins-Medium';
  src: url(../css/fonts/Poppins-Medium.ttf);
}
@font-face {
  font-style: normal;
  font-display: swap;
  font-family: 'Poppins-SemiBold';
  src: url(../css/fonts/Poppins-SemiBold.ttf);
}
@font-face {
  font-style: normal;
  font-display: swap;
  font-family: 'Poppins-Bold';
  src: url(../css/fonts/Poppins-Bold.ttf);
}
header {
  position: fixed;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 30;
}
header .container-fuild {
  overflow: visible;
}
header .header-wrap {
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}
header .header-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
}
header .header-mobile .logo {
  width: 50px;
  flex-shrink: 0;
}
header .header-mobile .logo a,
header .header-mobile .logo img {
  width: 100%;
}
header .header-mobile .toggle {
  width: 30px;
}
header .header-mobile .toggle img {
  width: 100%;
  cursor: pointer;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 40px;
}
header .header-inner .close {
  display: none;
  width: 20px;
  flex-shrink: 0;
}
header .header-inner .close img {
  width: 100%;
  cursor: pointer;
}
header .header-inner .header-left {
  display: flex;
  align-items: center;
}
header .header-inner .header-left .logo {
  margin-right: 50px;
  width: 50px;
  flex-shrink: 0;
}
header .header-inner .header-left .logo a,
header .header-inner .header-left .logo img {
  width: 100%;
}
header .header-inner .header-left .menu-list {
  display: flex;
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
header .header-inner .header-left .menu-list .menu-item:not(:last-child) {
  padding-right: 65px;
}
header .header-inner .header-left .menu-list .menu-item {
  position: relative;
  padding: 10px 0px;
}
header .header-inner .header-left .menu-list .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
header .header-inner .header-left .menu-list .menu-link-children::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 5px);
  transform: translateY(-50%) rotate(-45deg);
  width: 7px;
  height: 7px;
  border-left: 2px solid #929292;
  border-bottom: 2px solid #929292;
  transition: all linear .2s;
}
header .header-inner .header-left .menu-list a {
  color: #929292;
  text-decoration: none;
  transition: all linear .2s;
  font-family: 'Poppins-Medium';
  position: relative;
}
header .header-inner .header-left .menu-list a:hover {
  color: #fff;
}
header .header-inner .header-left .menu-list a:hover::after {
  border-color: #fff;
}
header .header-inner .header-left .menu-list .current-menu-item a {
  color: #DE2022;
}
header .header-inner .header-left .menu-list .sub-menu {
  position: absolute;
  left: 0px;
  top: 100%;
  width: max-content;
  list-style-type: none;
  margin-bottom: 0px;
  padding: 0px 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all linear .3s;
}
header .header-inner .header-left .menu-list .sub-menu .sub-item:not(:last-child) {
  padding-bottom: 10px;
}
header .header-inner .header-right {
  display: flex;
}
header .header-inner .header-right .info-text {
  font-size: 12px;
}
header .header-inner .header-right .info-detail {
  font-family: 'Poppins-Medium';
  color: #fff;
  font-size: 14px;
}
header .header-inner .header-right .info-mail {
  padding-left: 30px;
}
.background-header .header-wrap {
  background: #000;
}
.background-header .header-inner {
  padding-bottom: 10px;
}
.background-header .header-inner .header-left .menu-list a {
  color: #fff;
}
.background-header .header-inner .header-left .menu-list a::after {
  border-color: #fff;
}
.background-header .header-inner .header-left .menu-list img {
  opacity: 1;
}
.background-header .header-inner .header-left .menu-list .sub-menu {
  background: #000;
  padding: 20px 10px;
}
@media screen and (max-width: 1280px) {
  header .header-inner .header-left .logo {
    margin-right: 30px;
  }
  header .header-inner .header-left .menu-list .menu-item:not(:last-child) {
    padding-right: 45px;
  }
  header .header-inner .header-left .menu-list a {
    font-size: 14px;
  }
  header .header-inner .header-right .info-detail {
    font-size: 12px;
  }
}
@media screen and (max-width: 1023px) {
  header {
    z-index: 30;
  }
  header .header-mobile {
    padding-top: 20px;
    padding-bottom: 30px;
    display: flex;
  }
  header .header-inner {
    display: block;
    padding-top: 0px;
    background: #fff;
    position: fixed;
    width: 320px;
    height: 100vh;
    top: 0px;
    left: 0px;
    padding: 50px 30px;
    transform: translateX(-101%);
    transition: all linear .5s;
    background: #343B40;
    overflow: scroll;
    scrollbar-width: none;
  }
  header .header-inner::-webkit-scrollbar {
    width: 0px;
  }
  header .header-inner .close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: #343B40;
  }
  header .header-inner .header-left {
    display: block;
  }
  header .header-inner .header-left .logo {
    display: none;
  }
  header .header-inner .header-left .menu {
    padding-bottom: 30px;
  }
  header .header-inner .header-left .menu-list {
    display: block;
  }
  header .header-inner .header-left .menu-list .menu-item:not(:last-child) {
    padding-right: 0px;
  }
  header .header-inner .header-left .menu-list .menu-item {
    padding: 0px;
  }
  header .header-inner .header-left .menu-list .menu-item > a {
    font-size: 18px;
    line-height: 18px;
    display: inline-block;
    margin: 15px 0px;
  }
  header .header-inner .header-left .menu-list .menu-item > a:hover::after {
    border-color: #DE2022;
  }
  header .header-inner .header-left .menu-list a {
    margin: 20px 0px;
    color: #fff;
  }
  header .header-inner .header-left .menu-list a:hover {
    color: #DE2022;
  }
  header .header-inner .header-left .menu-list .menu-link-children {
    width: 100%;
  }
  header .header-inner .header-left .menu-list .menu-link-children::after {
    width: 9px;
    height: 9px;
    left: unset;
    right: 0px;
    top: unset;
    bottom: 0px;
    border-color: #fff;
  }
  header .header-inner .header-left .menu-list .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    width: 100%;
    display: none;
  }
  header .header-inner .header-left .menu-list .sub-menu .sub-item a {
    font-size: 16px;
  }
  header .header-inner .header-right {
    display: block;
  }
  header .header-inner .header-right .info-text {
    font-size: 14px;
    color: #fff;
  }
  header .header-inner .header-right .info-detail {
    color: #DE2022;
    font-size: 16px;
  }
  header .header-inner .header-right .info-mail {
    padding-left: 0px;
  }
  header .translate {
    transform: translateX(0%);
  }
}
@media screen and (max-width: 767px) {
  header .header-mobile {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  header .header-mobile .logo {
    width: 35px;
  }
  header .header-mobile .toggle {
    width: 25px;
  }
}
footer .row-footer {
  margin: 0px -20px;
  padding: 100px 0px;
}
footer .footer-heading {
  color: #fff;
  font-family: 'Poppins-Medium';
}
footer .footer-des {
  color: #929292;
  font-family: 'Poppins-Regular';
  text-decoration: none;
}
footer .col-2,
footer .col-5 {
  padding: 0px 20px;
}
footer .col-logo .logo {
  width: 100px;
  flex-shrink: 0;
}
footer .col-logo .logo img {
  width: 100%;
}
footer .col-menu .row-menu {
  margin: 0px -15px;
}
footer .col-menu .col-link {
  padding: 0px 15px;
}
footer .col-menu .footer-heading {
  padding-bottom: 20px;
}
footer .col-menu .menu-footer {
  padding-left: 0px;
  list-style-type: none;
  margin-bottom: 0px;
}
footer .col-menu .menu-footer .menu-item:not(:last-child) {
  padding-bottom: 10px;
}
footer .col-menu .menu-link {
  transition: all linear .2s;
  font-family: 'Poppins-Medium';
  display: inline-block;
}
footer .col-menu .menu-link:hover {
  color: #fff;
  padding-left: 3px;
}
footer .col-connect .connect-des {
  padding-bottom: 20px;
  padding-top: 10px;
}
footer .col-connect .form-item {
  margin-bottom: 20px;
}
footer .col-connect #gform_1 {
  display: flex;
}
footer .col-connect .gform_wrapper.gravity-theme .gform_fields {
  display: inline;
}
footer .col-connect .gform_body {
  flex: 1;
}
footer .col-connect .gform_wrapper.gravity-theme .gfield input.large {
  font-size: 14px;
  color: #929292;
  border: 0px;
  outline: none;
  padding: 0px 10px;
  height: 100%;
  width: 100%;
  margin: 0px;
  height: 41px;
}
footer .col-connect .gform_wrapper.gravity-theme .gfield input.large::placeholder {
  font-size: 14px;
  color: #929292;
}
footer .col-connect .gform_wrapper.gravity-theme .gform_footer {
  padding: 0px;
  margin: 0px;
}
footer .col-connect .gform_wrapper.gravity-theme .gform_footer input {
  border: 0px;
  background: #DE2022;
  color: #fff;
  font-size: 14px;
  font-family: 'Poppins-Medium';
  padding: 10px 20px;
  margin-bottom: 0px;
}
footer .col-connect .social {
  display: flex;
  align-items: flex-end;
}
footer .col-connect .footer-heading {
  padding-bottom: 0px;
  line-height: 16px;
  padding-right: 15px;
}
footer .col-connect .list-social {
  display: flex;
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
footer .col-connect .list-social .social-item:not(:last-child) {
  margin-right: 15px;
}
footer .col-connect .social-item {
  width: 25px;
}
@media screen and (max-width: 1280px) {
  footer .row-footer {
    margin: 0px -10px;
  }
  footer .footer-heading,
  footer .footer-des {
    font-size: 14px;
  }
  footer .col-2,
  footer .col-5 {
    padding: 0px 10px;
  }
  footer .col-logo {
    width: 12%;
  }
  footer .col-logo .logo {
    width: 70px;
  }
  footer .col-menu {
    width: 55%;
  }
  footer .col-connect {
    width: 33%;
  }
}
@media screen and (max-width: 1023px) {
  footer .row-footer {
    padding: 50px 0px;
  }
  footer .col-logo {
    width: 20%;
  }
  footer .col-menu {
    width: 80%;
  }
  footer .col-connect {
    width: 100%;
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  footer .row-footer {
    margin: 0px;
    padding: 30px 0px;
  }
  footer .col-logo {
    width: 100%;
    padding-bottom: 30px;
  }
  footer .col-logo .logo {
    margin: 0px auto;
  }
  footer .col-menu {
    width: 100%;
    padding: 0px;
  }
  footer .col-menu .row-menu .col-link {
    text-align: center;
  }
  footer .col-connect {
    width: 100%;
    padding: 0px;
    padding-top: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  footer .col-menu {
    width: 100%;
    padding: 0px;
  }
  footer .col-menu .row-menu {
    margin: 0px;
  }
  footer .col-menu .col-link {
    padding-bottom: 30px;
  }
  footer .col-connect {
    padding: 0px;
  }
  footer .col-connect .gform_wrapper.gravity-theme .gfield input.large {
    font-size: 12px;
    height: 38px;
  }
  footer .col-connect .gform_wrapper.gravity-theme .gfield input.large::placeholder {
    font-size: 12px;
  }
  footer .col-connect .gform_wrapper.gravity-theme .gform_footer input {
    line-height: initial !important;
    padding: 10px;
    font-size: 12px;
  }
  footer .col-connect .social {
    display: block;
  }
  footer .col-connect .footer-heading {
    padding-right: 0;
    padding-bottom: 20px;
  }
  footer .col-connect .list-social {
    justify-content: center;
  }
  footer .col-connect .connect-des {
    padding-top: 0px;
  }
}
.container-fluid {
  max-width: 1920px;
  margin: 0px auto;
  padding: 0px;
  overflow: hidden;
}
.container-inner {
  max-width: 1280px;
  margin: 0px auto;
}
.container-right {
  max-width: 1600px;
  margin-left: auto;
}
.overflow {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  min-height: 100vh;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: linear .3s;
  z-index: 25;
}
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: #DE2022;
  z-index: 20;
  border: 2px solid #fff;
  border-radius: 5px;
  opacity: 0.3;
  cursor: pointer;
  transition: all linear .1s;
  display: none;
}
.scroll-top:hover {
  opacity: 1;
}
.scroll-top img {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.image-absolute,
.feedback-wrap .simpleParallax {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title-card {
  font-size: 20px;
  font-family: 'Poppins-SemiBold';
}
.title-col {
  font-size: 24px;
  color: #343B40;
  font-family: 'Poppins-SemiBold';
}
.visible {
  opacity: 0.5;
  visibility: visible;
  pointer-events: visible;
}
.bg-style {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: cover;
}
.radius {
  border-radius: 10px;
  overflow: hidden;
}
.section {
  padding: 100px 0px;
}
.row-half {
  margin: 0px -50px;
  align-items: center;
}
.row-half .col-half {
  padding: 0px 50px;
}
.row-small {
  margin: 0px -15px;
}
.row-small .col-small {
  padding: 0px 15px;
}
.content-half {
  width: 50%;
  padding-right: 50px;
}
.btn-submit a {
  font-size: 14px;
  background: #DE2022;
  border-radius: 5px;
  color: #fff;
  font-family: 'Poppins-Medium';
  display: inline-block;
  padding: 0px 30px;
  text-decoration: none;
  height: 55px;
  line-height: 55px;
}
#btn-submit-1 a {
  background: rgba(0, 0, 0, 0.5);
  transition: all linear .2s;
}
#btn-submit-1 a:hover {
  background: #DE2022;
}
.content {
  padding-top: 30px;
  border-top: 1px solid #E6E6E6;
}
.content .title-wrap {
  position: relative;
  margin-bottom: 20px;
}
.content .title-wrap .sub-title {
  font-size: 14px;
  font-family: 'Poppins-Medium';
  color: #D3D3D3;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  white-space: nowrap;
  line-height: 14px;
}
.content .title-wrap .title {
  font-size: 32px;
  color: #343B40;
  font-family: 'Poppins-SemiBold';
  padding-left: 30px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.content .title-wrap-2 {
  margin-bottom: 50px;
}
.excerpts {
  font-size: 14px;
  font-family: 'Poppins-Medium';
}
.description {
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.read-more span {
  font-size: 14px;
  transition: color linear .2s;
}
.name {
  font-size: 20px;
  font-family: 'Poppins-SemiBold';
}
.position {
  font-size: 14px;
}
.date-wrap {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
.date-wrap img {
  width: 12px;
  flex-shrink: 0;
  margin-right: 10px;
}
.date-wrap span {
  font-size: 12px;
  line-height: 12px;
  color: #929292;
  transition: color linear .2s;
}
@media screen and (max-width: 1650px) {
  .container-right {
    padding: 0px 50px;
  }
}
@media screen and (max-width: 1440px) {
  .btn-submit a {
    padding: 0px 20px;
    height: 45px;
    line-height: 45px;
  }
}
@media screen and (max-width: 1320px) {
  .container-inner {
    padding: 0px 20px;
  }
  .container-right {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 1280px) {
  .content {
    padding-top: 20px;
  }
  .content .title-wrap .sub-title {
    font-size: 12px;
    line-height: 12px;
  }
  .content .title-wrap .title {
    font-size: 28px;
    padding-left: 25px;
  }
  .description {
    font-size: 15px;
  }
  .row-half {
    margin: 0px -25px;
  }
  .row-half .col-half {
    padding: 0px 25px;
  }
  .row-small {
    margin: 0px -10px;
  }
  .row-small .col-small {
    padding: 0px 10px;
  }
  .content-half {
    padding-right: 25px;
  }
  .title-card {
    font-size: 18px;
  }
  .name {
    font-size: 18px;
  }
  .title-col {
    font-size: 22px;
  }
}
@media screen and (max-width: 1023px) {
  .scroll-top {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
  .scroll-top img {
    width: 15px;
  }
  .section {
    padding: 50px 0px;
  }
  .content .title-wrap .sub-title {
    font-size: 11px;
  }
  .content .title-wrap .title {
    font-size: 24px;
  }
  .description {
    font-size: 14px;
  }
  .btn-submit a {
    padding: 0px 15px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
  .row-half {
    margin: 0px -15px;
  }
  .row-half .col-half {
    padding: 0px 15px;
  }
  .content-half {
    padding-right: 15px;
  }
  .title-card {
    font-size: 16px;
  }
  .title-col {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .scroll-top {
    width: 35px;
    height: 35px;
    right: 15px;
    bottom: 15px;
  }
  .scroll-top img {
    width: 10px;
  }
  .section {
    padding: 30px 0px;
  }
  .container-inner {
    padding: 0px 10px;
  }
  .container-right {
    padding: 0px 10px;
  }
  .btn-submit a {
    padding: 0px 10px;
    height: 35px;
    line-height: 35px;
  }
  .content {
    border: 0px;
    padding-top: 0px;
  }
  .content .title-wrap .title {
    padding-left: 0px;
  }
  .content .title-wrap .sub-title {
    writing-mode: initial;
    position: static;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 5px;
  }
  .content .title-wrap-2 {
    margin-bottom: 30px;
  }
  .row-half {
    margin: 0px;
  }
  .row-half .col-half {
    padding: 0px;
    width: 100%;
  }
  .row-small {
    margin: 0px -5px;
  }
  .row-small .col-small {
    padding: 0px 5px;
  }
  .content-half {
    width: 100%;
    padding-right: 0px;
  }
  .name {
    font-size: 16px;
  }
  .title-col {
    font-size: 18px;
  }
  .description {
    font-size: 13px;
  }
}
@media screen and (max-width: 500px) {
  .content .title-wrap .title {
    font-size: 20px;
  }
  .description {
    font-size: 12px;
  }
}
.banner-home .banner-home-wrap {
  position: relative;
}
.banner-home .slide-wrap {
  position: relative;
}
.banner-home .content-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 900px;
}
.banner-home .sub-heading {
  font-size: 42px;
}
.banner-home h2 {
  font-size: 98px;
  font-family: 'Poppins-Medium';
  padding-bottom: 20px;
}
.banner-home .link {
  display: flex;
  justify-content: center;
}
.banner-home .link .btn-submit {
  margin: 0px 15px;
}
.banner-home .slide-banner {
  position: relative;
}
.banner-home .background-default {
  position: relative;
}
.banner-home .background-default .slide-inner {
  background: #000;
}
.banner-home .slide-inner {
  position: relative;
  padding-top: 51%;
}
.banner-home .background {
  z-index: 5;
  background: #000;
  opacity: 0.3;
}
.banner-home .dots-slide {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding-top: 50px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}
.banner-home .dots-slide .dots-wrap {
  margin: 0px -15px;
  justify-content: center;
}
.banner-home .dots-slide .dots-item {
  padding: 0px 15px;
}
.banner-home .dots-slide .content-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 3px solid transparent;
  transition: all linear .2s;
  cursor: pointer;
}
.banner-home .dots-slide .content-wrap .dots-image {
  width: 55px;
  flex-shrink: 0;
}
.banner-home .dots-slide .content-wrap .dots-image img {
  width: 100%;
}
.banner-home .dots-slide .dots-content {
  padding-left: 10px;
}
.banner-home .dots-slide .dots-content span {
  font-size: 14px;
}
.banner-home .dots-slide .dots-content .dots-title {
  transition: color linear .2s;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.banner-home .dots-slide .active .content-wrap {
  border-color: #DE2022;
}
.banner-home .dots-slide .active .content-wrap .dots-content .dots-title,
.banner-home .dots-slide .active .content-wrap .dots-content span {
  color: #fff;
}
.banner-home .slick-arrow {
  display: none;
}
.banner-home .slick-current .slide-inner {
  animation: scale linear 4s forwards;
}
@keyframes scale {
  to {
    transform: scale(1.3);
  }
}
@media screen and (max-width: 1440px) {
  .banner-home .sub-heading {
    font-size: 36px;
  }
  .banner-home h2 {
    font-size: 70px;
  }
  .banner-home .dots-slide .container-inner {
    padding: 0px;
  }
  .banner-home .dots-slide .content-wrap {
    padding-bottom: 20px;
  }
  .banner-home .dots-slide .content-wrap .dots-image {
    width: 45px;
  }
}
@media screen and (max-width: 1310px) {
  .banner-home .dots-slide .container-inner {
    overflow: hidden;
  }
  .banner-home .dots-slide .dots-wrap {
    margin: 0px -10px;
  }
  .banner-home .dots-slide .dots-item {
    padding: 0px 10px;
  }
}
@media screen and (max-width: 1280px) {
  .banner-home .content-banner {
    max-width: 750px;
  }
  .banner-home .sub-heading {
    font-size: 32px;
  }
  .banner-home h2 {
    font-size: 60px;
  }
  .banner-home .slide-inner {
    padding-top: 55%;
  }
  .banner-home .dots-slide .content-wrap {
    padding-bottom: 10px;
  }
  .banner-home .dots-slide .content-wrap .dots-image {
    width: 30px;
  }
  .banner-home .dots-slide .dots-content span {
    font-size: 12px;
  }
}
@media screen and (max-width: 1023px) {
  .banner-home .content-banner {
    max-width: 600px;
  }
  .banner-home .sub-heading {
    font-size: 28px;
  }
  .banner-home h2 {
    font-size: 50px;
  }
  .banner-home .slide-inner {
    padding-top: 60%;
  }
  .banner-home .dots-slide .dots-wrap {
    margin: 0px;
  }
  .banner-home .dots-slide .dots-item {
    width: 50%;
  }
  .banner-home .dots-slide .content-wrap {
    padding-bottom: 5px;
    border-width: 2px;
  }
  .banner-home .dots-slide .content-wrap .dots-image {
    width: 25px;
  }
}
@media screen and (max-width: 767px) {
  .banner-home .content-banner {
    max-width: 400px;
  }
  .banner-home .sub-heading {
    font-size: 24px;
  }
  .banner-home h2 {
    font-size: 40px;
  }
  .banner-home .link .btn-submit {
    margin: 0px 10px;
  }
  .banner-home .slide-inner {
    padding-top: 80%;
  }
  .banner-home .dots-slide {
    position: static;
    padding-top: 0px;
    background: #000;
  }
}
@media screen and (max-width: 500px) {
  .banner-home .content-banner {
    max-width: 400px;
  }
  .banner-home .sub-heading {
    font-size: 20px;
  }
  .banner-home h2 {
    font-size: 32px;
  }
  .banner-home .slide-inner {
    padding-top: 100%;
  }
  .banner-home .dots-slide {
    position: static;
    padding-top: 0px;
    background: #000;
  }
  .banner-home .dots-slide .dots-item {
    width: 100%;
  }
}
.about-us .col-image .image {
  padding-top: 100%;
  position: relative;
}
.about-us .col-image-company .image {
  margin-bottom: 30px;
}
.about-us .col-image-company .image:hover .content-absolute {
  opacity: 1;
}
.about-us .col-image-company .content-absolute {
  background: rgba(222, 32, 34, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity linear .2s;
  padding: 10px;
}
.about-us .col-image-company .content-absolute .content-inner {
  color: #fff;
  text-align: center;
}
.about-us .col-image-company .content-absolute .number {
  font-size: 60px;
  line-height: 42px;
  font-family: 'Poppins-Medium';
}
.about-us .col-image-company .content-absolute .number span {
  font-size: 26px;
}
.about-us .col-image-company .content-absolute p {
  font-size: 14px;
}
.about-us .col-image-company .col-small-1 {
  transform: translateY(30px);
}
.about-us .col-content .excerpts {
  color: #000;
  margin-bottom: 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.about-us .col-content .people {
  margin-bottom: 20px;
}
.about-us .col-content .people .name {
  color: #000;
}
.about-us .col-content .people .position {
  color: #DE2022;
  font-size: 14px;
}
.about-us .col-content .description {
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .about-us .col-image-company .image {
    margin-bottom: 20px;
  }
  .about-us .col-image-company .col-small-1 {
    transform: translateY(20px);
  }
}
@media screen and (max-width: 1023px) {
  .about-us .col-image-company .col-6 {
    width: 50%;
  }
  .about-us .col-image-company .content-absolute .number {
    font-size: 40px;
  }
  .about-us .col-image-company .content-absolute p {
    font-size: 12px;
  }
  .about-us .col-image-company .content-absolute .row-image .col-small-1 {
    transform: translateY(0px);
  }
  .about-us .col-content .excerpts {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .about-us .col-content .people {
    margin-bottom: 10px;
  }
  .about-us .col-content .people .name {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .about-us .col-image {
    order: 2;
    padding-bottom: 10px;
  }
  .about-us .col-image .image {
    padding-top: 75%;
  }
  .about-us .col-image-company .image {
    margin-bottom: 10px;
  }
  .about-us .col-content {
    order: 1;
  }
  .about-us .col-content .content {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .about-us .col-image-company .content-absolute .number {
    font-size: 36px;
    line-height: 30px;
  }
  .about-us .col-image-company .content-absolute p {
    font-size: 10px;
  }
}
.services .container-fuild {
  overflow: hidden;
}
.services .services-wrap {
  background: #F7F7F7;
}
.services .row-services {
  margin: 0px -25px;
}
.services .col-content {
  padding: 0px 25px;
  width: 35%;
}
.services .col-content .description {
  margin-bottom: 30px;
}
.services .col-item {
  padding: 0px 25px;
  width: 65%;
}
.services .card-link {
  color: #929292;
  text-decoration: none;
}
.services .card-link:hover .card-item .read-more span {
  color: #DE2022;
}
.services .card-item {
  background: #fff;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.services .heading {
  margin-bottom: 20px;
  color: #343B40;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.services .list-des {
  margin-bottom: 20px;
  padding-left: 0px;
  list-style-type: none;
  border-bottom: 1px solid #E6E6E6;
  flex: 1;
}
.services .des-item {
  padding-bottom: 10px;
}
.services .read-more {
  color: #DE2022;
}
@media screen and (max-width: 1440px) {
  .services .heading {
    margin-bottom: 15px;
  }
  .services .des-item {
    font-size: 14px;
  }
}
@media screen and (max-width: 1280px) {
  .services .row-services {
    margin: 0px;
    display: block;
  }
  .services .col-content {
    width: 100%;
    max-width: 750px;
    padding: 0px 0px 30px 0px;
  }
  .services .col-item {
    width: 100%;
    padding: 0px;
  }
  .services .des-item {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .services .des-item {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .services .row {
    margin: 0px;
  }
  .services .row .col-4:not(:last-child) {
    margin-bottom: 20px;
  }
  .services .col-4 {
    padding: 0px;
    width: 100%;
  }
  .services .list-des {
    flex: none;
  }
}
.brand .brand-grid {
  padding-top: 40px;
  position: relative;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.brand .brand-grid span {
  font-family: 'Poppins-Medium';
  color: #DE2022;
  position: absolute;
  line-height: 16px;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: #fff;
  padding: 0px 10px;
}
.brand .brand-grid .image {
  margin-bottom: 40px;
  text-align: center;
}
.brand .brand-grid .image img {
  max-width: 150px;
  width: 100%;
  margin: 0px auto;
}
.brand .show-inadmin .brand-grid .brands-slide {
  display: flex;
  align-items: center;
}
.brand .show-inadmin .brand-grid .image {
  width: 20%;
  text-align: center;
}
.brand .show-inadmin .brand-grid .image img {
  max-width: 100px;
}
@media screen and (max-width: 1280px) {
  .brand .brand-grid {
    padding-top: 30px;
  }
  .brand .brand-grid span {
    font-size: 14px;
  }
  .brand .brand-grid .image {
    margin-bottom: 30px;
  }
  .brand .brand-grid .image img {
    max-width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .brand .brand-grid span {
    font-size: 12px;
  }
  .brand .brand-grid .image {
    width: 25%;
  }
  .brand .brand-grid .image img {
    max-width: 70px;
  }
}
@media screen and (max-width: 500px) {
  .brand .brand-grid .image {
    width: 33.333%;
    margin-bottom: 20px;
  }
}
.accordion .acc-wrap {
  padding: 0px;
}
.accordion .arrows-wrap {
  display: none;
}
.accordion .arrows-wrap img {
  width: 20px;
}
.accordion .acc-row {
  height: 800px;
  position: relative;
}
.accordion .list-image img {
  opacity: 0;
  transition: opacity linear .5s;
}
.accordion .list-image .show {
  opacity: 1;
}
.accordion .list-card {
  display: flex;
  justify-content: space-between;
}
.accordion .list-card .acc-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.accordion .acc-card {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.accordion .card-image {
  display: none;
}
.accordion .card-content {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  color: #fff;
  background: #DE2022;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all linear .2s;
}
.accordion .sub-card {
  font-size: 14px;
  font-family: 'Poppins-Medium';
}
.accordion .title-card {
  font-size: 26px;
  line-height: 30px;
  font-family: 'Poppins-SemiBold';
  margin-bottom: 30px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: 60px;
}
.accordion .link-card a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins-Medium';
}
.accordion .link-card .link-plus {
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.accordion .link-card .link-plus span {
  font-size: 20px;
  color: #343B40;
}
.accordion .active .card-content {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1440px) {
  .accordion .acc-row {
    height: 700px;
  }
  .accordion .card-content {
    padding: 20px;
  }
  .accordion .title-card {
    font-size: 20px;
    height: 52px;
    line-height: 26px;
  }
}
@media screen and (max-width: 1280px) {
  .accordion .acc-row {
    height: 550px;
  }
  .accordion .card-content {
    padding: 20px 10px;
  }
  .accordion .sub-card {
    padding-bottom: 5px;
  }
  .accordion .title-card {
    height: 48px;
    font-size: 18px;
    line-height: 24px;
  }
  .accordion .link-card .link-plus {
    width: 35px;
    height: 35px;
  }
  .accordion .link-card a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .accordion .acc-wrap {
    padding: 50px 0px;
    background: #F7F7F7;
  }
  .accordion .arrows-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
  }
  .accordion .arrows-wrap .btn-arrow {
    margin: 0px 15px;
    cursor: pointer;
  }
  .accordion .acc-row {
    height: auto;
  }
  .accordion .list-image {
    display: none;
  }
  .accordion .list-card {
    position: static;
  }
  .accordion .acc-card {
    height: 450px;
    width: 300px;
    margin: 0px 15px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }
  .accordion .card-image {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
  }
  .accordion .card-image img {
    height: 100%;
    object-fit: cover;
  }
  .accordion .card-content {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
}
@media screen and (max-width: 767px) {
  .accordion .acc-wrap {
    padding: 30px 0px;
  }
  .accordion .acc-card {
    height: 420px;
    width: 280px;
    margin: 0px 10px;
  }
}
@media screen and (max-width: 500px) {
  .accordion .acc-card {
    height: 450px;
    width: 320px;
  }
}
.features .image {
  width: 20px;
}
.features .col-content .list-features {
  padding-top: 20px;
  list-style-type: none;
  padding-left: 0px;
}
.features .col-content .list-features .features-item:not(:last-child) {
  margin-bottom: 20px;
}
.features .col-content .features-item {
  position: relative;
  background: #F7F7F7;
  border-radius: 5px;
  padding: 20px;
  cursor: pointer;
  transition: all linear .2s;
}
.features .col-content .features-item:hover {
  background: #DE2022;
  transform: translateX(20px);
}
.features .col-content .features-item:hover .features-detail {
  color: #fff;
}
.features .col-content .features-item:hover .image-grey {
  opacity: 0;
}
.features .col-content .features-item:hover .image-white {
  opacity: 1;
}
.features .col-content .features-item a {
  text-decoration: none;
}
.features .col-content .features-detail {
  padding-right: 20px;
  flex: 1;
  font-family: 'Poppins-Medium';
  color: #343B40;
  transition: all linear .2s;
}
.features .col-content .image {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity linear .2s;
}
.features .col-content .image-white {
  opacity: 0;
}
.features .col-video .video-wrap {
  padding-top: 100%;
  position: relative;
  border-radius: 5px;
}
.features .col-video .btn-play {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(50%, -50%);
}
.features .col-video .btn-play img {
  width: 100px;
  flex-shrink: 0;
}
@media screen and (max-width: 1440px) {
  .features .col-video .btn-play {
    right: 50%;
  }
  .features .col-video .btn-play img {
    width: 80px;
  }
}
@media screen and (max-width: 1280px) {
  .features .col-content .features-item {
    font-size: 14px;
  }
  .features .col-content .image {
    width: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .features .col-content .features-item {
    padding: 15px 10px;
  }
  .features .col-video .btn-play img {
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .features .col-content {
    order: 2;
  }
  .features .col-content .content {
    padding-top: 30px;
  }
  .features .col-content .list-features {
    margin-bottom: 0px;
  }
  .features .col-content .list-features .features-item:not(:last-child) {
    margin-bottom: 15px;
  }
  .features .col-content .features-item {
    padding: 15px 10px;
  }
  .features .col-content .features-item:hover {
    transform: translateX(10px);
  }
  .features .col-video {
    order: 1;
  }
  .features .col-video .video-wrap {
    padding-top: 60%;
  }
}
.feedback .feedback-wrap {
  position: relative;
  background: #F7F7F7;
}
.feedback .feedback-wrap > .image-absolute {
  width: 45%;
  left: unset;
  right: 0px;
}
.feedback .container-right {
  padding-right: 0px;
}
.feedback .content-wrap {
  width: 40%;
  padding-right: 50px;
}
.feedback .slide-people {
  margin-bottom: 0px;
  padding-bottom: 50px;
}
.feedback .slide-people .card-people {
  width: 400px;
  margin: 0px 15px 10px 15px;
  background: #fff;
  padding: 30px 20px;
  box-shadow: 5px 4px 7px 0px rgba(116, 111, 111, 0.3);
}
.feedback .slide-people .people-des {
  margin-bottom: 30px;
  line-height: 30px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  height: 120px;
}
.feedback .slide-people .people-detail {
  display: flex;
  align-items: center;
}
.feedback .slide-people .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.feedback .slide-people .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feedback .slide-people .people-info {
  padding-left: 20px;
}
.feedback .slide-people .people-info .name {
  color: #343B40;
}
.feedback .slide-people .people-info .position {
  font-size: 14px;
}
.feedback .slide-people .people-info .position .company {
  color: #DE2022;
}
.feedback .slide-people .slick-dots {
  bottom: 0px;
}
.feedback .slide-people .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #343B40;
  margin: 0px 3px;
}
.feedback .slide-people .slick-dots li button {
  display: none;
}
.feedback .slide-people .slick-dots .slick-active {
  background: #DE2022;
}
@media screen and (max-width: 1440px) {
  .feedback .slide-people .card-people {
    width: 350px;
    margin: 0px 10px;
  }
  .feedback .slide-people .people-des {
    font-size: 15px;
    line-height: 26px;
    height: 104px;
  }
}
@media screen and (max-width: 1280px) {
  .feedback .content-wrap {
    width: 50%;
    padding-right: 25px;
  }
  .feedback .slide-people .card-people {
    width: 320px;
    margin: 0px 10px 10px 10px;
  }
  .feedback .slide-people .people-des {
    font-size: 14px;
    line-height: 24px;
    height: 96px;
  }
  .feedback .slide-people .avatar {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .feedback .content-wrap {
    padding-right: 15px;
    width: 54%;
  }
}
@media screen and (max-width: 767px) {
  .feedback .feedback-wrap > .image-absolute {
    width: 30%;
  }
  .feedback .content-wrap {
    width: 71%;
    padding-right: 0px;
  }
  .feedback .slide-people .card-people {
    margin: 0px 5px 10px 5px;
  }
}
@media screen and (max-width: 500px) {
  .feedback .container-right {
    padding-right: 10px;
  }
  .feedback .content {
    padding-top: 0px;
  }
  .feedback .slide-people .card-people {
    width: 300px;
    padding: 20px 10px;
  }
  .feedback .slide-people .people-info {
    padding-left: 15px;
  }
}
.manager .manager-grid {
  margin: 0px;
  justify-content: center;
}
.manager .manager-item {
  width: 20%;
  padding: 0px;
  position: relative;
  transition: all linear .4s;
}
.manager .manager-item:hover .background {
  opacity: 0.5;
}
.manager .manager-item:hover .manager-info {
  opacity: 1;
}
.manager .manager-image {
  position: relative;
  padding-top: 100%;
}
.manager .background {
  background: #000;
  opacity: 0;
  transition: opacity linear .4s;
}
.manager .manager-info {
  position: absolute;
  left: 20px;
  bottom: 10px;
  color: #fff;
  opacity: 0;
  transition: all linear .4s;
}
.manager .manager-info a {
  color: #fff;
  text-decoration: none;
}
.manager .name {
  margin-bottom: 20px;
}
.manager .manager-social {
  display: flex;
  flex-wrap: wrap;
}
.manager .social-item {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all linear .2s;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.manager .social-item:hover {
  background: #DE2022;
}
.manager .social-item:hover span {
  color: #fff;
}
.manager .social-item img {
  width: 20px;
}
@media screen and (max-width: 1280px) {
  .manager .manager-info {
    left: 10px;
    bottom: 0px;
  }
  .manager .name {
    margin-bottom: 10px;
  }
  .manager .social-item {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .manager .manager-wrap {
    padding-bottom: 30px;
  }
  .manager .manager-item {
    width: 25%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .manager .manager-wrap {
    padding-bottom: 20px;
  }
  .manager .manager-grid {
    margin: 0px -5px;
  }
  .manager .manager-item {
    width: 33.333%;
    margin-bottom: 10px;
    padding: 0px 5px;
  }
  .manager .manager-info {
    bottom: 10px;
    left: 20px;
  }
}
@media screen and (max-width: 500px) {
  .manager .manager-item {
    width: 50%;
  }
  .manager .manager-info {
    left: 10px;
    bottom: 0px;
  }
}
.process .row-process {
  align-items: flex-start;
}
.process .col-image .image-1 {
  padding-top: 70%;
  position: relative;
}
.process .col-image .row {
  padding-bottom: 100px;
}
.process .col-image .image {
  position: relative;
  padding-top: 140%;
}
.process .col-image .col-image-right {
  transform: translateY(100px);
}
.process .col-content .list-process {
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
.process .col-content .list-process .process-item:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}
.process .col-content .process-item {
  cursor: pointer;
}
.process .col-content .process-inner {
  padding: 20px 0px;
  padding-right: 50px;
  position: relative;
}
.process .col-content .item-wrap {
  display: flex;
  align-items: center;
}
.process .col-content .item-image {
  width: 55px;
  flex-shrink: 0;
}
.process .col-content .item-detail {
  padding-left: 20px;
}
.process .col-content .sub-detail {
  color: #929292;
  font-size: 14px;
}
.process .col-content .detail {
  color: #343B40;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.process .col-content .image-read {
  width: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all linear .2s;
}
.process .col-content .image-rotate {
  transform: translateY(-50%) rotate(90deg);
}
.process .col-content .des-accordion {
  padding: 20px;
  display: none;
  background: #DE2022;
}
.process .col-content .des-accordion a {
  text-decoration: none;
}
.process .col-content .des-accordion .description {
  font-size: 14px;
  padding-bottom: 10px;
  color: #fff;
}
.process .col-content .des-accordion span {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 1280px) {
  .process .col-image .col-image-right {
    transform: translateY(50px);
  }
  .process .col-content .title-wrap {
    margin-bottom: 20px;
  }
  .process .col-content .process-inner {
    padding: 20px 0px;
    padding-right: 50px;
  }
  .process .col-content .item-image {
    width: 35px;
  }
  .process .col-content .image-read {
    width: 15px;
  }
  .process .col-content .des-accordion {
    padding: 10px;
  }
}
@media screen and (max-width: 1023px) {
  .process .col-content .process-inner {
    padding: 10px 50px 10px 0px;
  }
  .process .col-content .item-detail {
    padding-left: 10px;
  }
  .process .col-content .des-accordion .description {
    font-size: 12px;
  }
  .process .col-content .des-accordion span {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .process .col-image {
    order: 2;
  }
  .process .col-image .row {
    padding-bottom: 50px;
  }
  .process .col-content {
    padding-bottom: 30px;
    order: 1;
  }
  .process .col-content .sub-detail {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  .process .process-wrap {
    padding: 30px 0px;
  }
  .process .col-image .row {
    padding-bottom: 30px;
  }
  .process .col-image .col-image-right {
    transform: translateY(20px);
  }
}
.insights .insights-wrap {
  padding-bottom: 70px;
  background: #F7F7F7;
}
.insights .row-insights {
  flex-wrap: wrap;
  justify-content: center;
}
.insights .card-news {
  margin-bottom: 30px;
}
.insights .card-link {
  color: #929292;
  text-decoration: none;
}
.insights .card-link:hover .background {
  background: #000;
  opacity: 0.5;
}
.insights .card-link:hover .date-wrap span {
  color: #fff;
}
.insights .card-link:hover .cate {
  color: #fff;
}
.insights .card-link:hover .heading {
  color: #fff;
}
.insights .card-link:hover .read-more {
  background: #fff;
}
.insights .card-link:hover .read-more span {
  color: #DE2022;
}
.insights .card-inner {
  position: relative;
  transition: all linear .2s;
  padding-top: 100%;
  box-shadow: 5px 4px 7px 0px rgba(116, 111, 111, 0.3);
}
.insights .background {
  background: #fff;
  transition: all linear .3s;
}
.insights .news-heading {
  position: absolute;
  top: 20px;
  left: 20px;
  padding-right: 10px;
}
.insights .cate {
  transition: color linear .2s;
}
.insights .heading {
  color: #343B40;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  transition: color linear .2s;
}
.insights .read-more {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  background: #DE2022;
  padding: 5px 10px;
  border-radius: 10px;
  transition: all linear .2s;
}
@media screen and (max-width: 1280px) {
  .insights .card-news {
    margin-bottom: 20px;
  }
  .insights .cate {
    font-size: 14px;
    padding-bottom: 5px;
  }
  .insights .read-more {
    left: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 1023px) {
  .insights .insights-wrap {
    padding-bottom: 40px;
  }
  .insights .card-news {
    margin-bottom: 10px;
    width: 33.333%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .insights .insights-wrap {
    padding-bottom: 20px;
  }
  .insights .card-news {
    width: 50%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .insights .row-insights {
    margin: 0px;
  }
  .insights .card-news {
    width: 100%;
    padding: 0px;
  }
  .insights .read-more {
    left: 20px;
    bottom: 20px;
  }
}
.banner .banner-wrap {
  background-attachment: fixed;
}
.banner .content-detail {
  padding-top: 300px;
  padding-bottom: 200px;
}
.banner .breadcrumb {
  margin-bottom: 10px;
  color: #fff;
}
.banner .breadcrumb a {
  display: inline-block;
  margin-right: 5px;
  font-family: 'Poppins-Medium';
  color: #929292;
  text-decoration: none;
}
.banner h1 {
  font-family: 'Poppins-Medium';
  color: #fff;
  font-size: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1280px) {
  .banner .content-detail {
    padding-top: 250px;
    padding-bottom: 100px;
  }
  .banner h1 {
    font-size: 54px;
  }
}
@media screen and (max-width: 1023px) {
  .banner .content-detail {
    padding-top: 150px;
  }
  .banner .breadcrumb {
    margin-bottom: 0px;
    font-size: 14px;
  }
  .banner h1 {
    font-size: 46px;
  }
}
@media screen and (max-width: 767px) {
  .banner .content-detail {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .banner h1 {
    font-size: 34px;
  }
}
@media screen and (max-width: 500px) {
  .banner .content-detail {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  .banner .breadcrumb {
    margin-bottom: 0px;
    font-size: 12px;
  }
  .banner h1 {
    font-size: 26px;
  }
}
.history .history-wrap {
  position: relative;
  background: #F7F7F7;
}
.history .history-wrap > .image-absolute {
  width: 45%;
  left: unset;
  right: 0px;
}
.history .container-inner {
  position: relative;
  z-index: 2;
}
.history .col-inner {
  width: 100%;
  text-decoration: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 4px 7px 0px rgba(116, 111, 111, 0.3);
}
.history .history-image {
  padding-top: 60%;
  position: relative;
}
.history .history-image span {
  position: absolute;
  top: 0px;
  left: 0px;
  display: inline-block;
  padding: 5px 15px;
  background: #DE2022;
  color: #fff;
  font-size: 14px;
  font-family: 'Poppins-Medium';
  border-bottom-right-radius: 5px;
}
.history .content-item {
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.history .heading {
  font-size: 18px;
  color: #343B40;
  font-family: 'Poppins-SemiBold';
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  margin-bottom: 10px;
}
.history .history-des {
  font-size: 14px;
  color: #929292;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media screen and (max-width: 1280px) {
  .history .history-image {
    padding-top: 70%;
  }
  .history .history-image span {
    font-size: 12px;
    padding: 5px 10px;
  }
  .history .content-item {
    padding: 10px;
  }
  .history .heading {
    font-size: 16px;
  }
  .history .history-des {
    font-size: 12px;
  }
}
@media screen and (max-width: 1023px) {
  .history .content-half {
    width: 55%;
  }
  .history .history-wrap {
    padding-bottom: 30px;
  }
  .history .col-3 {
    margin-bottom: 20px;
    width: 50%;
  }
  .history .content-item {
    padding: 20px;
  }
  .history .heading {
    font-size: 18px;
  }
  .history .history-des {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}
@media screen and (max-width: 767px) {
  .history .history-wrap {
    padding-bottom: 20px;
    background-size: 0px;
    background-color: #F7F7F7;
  }
  .history .history-wrap > .image-absolute {
    width: 30%;
  }
  .history .content-half {
    width: 71%;
  }
  .history .col-3 {
    margin-bottom: 10px;
  }
  .history .content-item {
    padding: 10px;
  }
  .history .heading {
    font-size: 16px;
  }
  .history .history-des {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }
}
@media screen and (max-width: 500px) {
  .history .list-history {
    margin: 0px;
  }
  .history .col-3 {
    width: 100%;
    padding: 0px;
  }
  .history .content-item {
    padding: 10px;
  }
  .history .heading {
    font-size: 16px;
  }
  .history .history-des {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }
}
.team .team-wrap {
  padding-bottom: 70px;
}
.team .col-item {
  margin-bottom: 30px;
}
.team .col-inner {
  overflow: hidden;
  position: relative;
}
.team .team-image {
  position: relative;
  padding-top: 120%;
}
.team .absolute {
  opacity: 0;
  transition: opacity linear .3s;
}
.team .absolute:hover {
  opacity: 1;
}
.team .background {
  opacity: 0.5;
  background: #000;
}
.team .info {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.team .info .position {
  text-transform: uppercase;
}
.team .list-social {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 10px;
}
.team .social-item {
  margin: 0px 10px;
  width: 20px;
}
@media screen and (max-width: 1280px) {
  .team .team-wrap {
    padding-bottom: 80px;
  }
  .team .col-item {
    margin-bottom: 20px;
  }
  .team .list-social {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 767px) {
  .team .team-wrap {
    padding-bottom: 20px;
  }
  .team .col-item {
    width: 50%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .team .social-item {
    margin: 0px 6px;
  }
}
.tab .tab-wrap {
  background: #F7F7F7;
}
.tab .nav-tabs {
  justify-content: space-between;
  border: 0px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab .nav-tabs .nav-item {
  flex: 1;
  text-align: center;
  border: 0px;
}
.tab .nav-tabs .nav-link {
  width: 100%;
  border: 0px;
  background: #343B40;
  color: #fff;
  font-family: 'Poppins-SemiBold';
  border-radius: 0px;
  padding: 25px 20px;
  height: 100%;
}
.tab .nav-tabs .nav-link.active {
  border: 0px;
  background: #DE2022;
}
.tab .tab-content {
  text-align: center;
}
.tab .tab-content .button-tab {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0px auto;
  margin-top: 50px;
  border-radius: 50%;
  overflow: hidden;
  -moz-box-shadow: 0px 0px 20px 0px #0000008c;
  -webkit-box-shadow: 0px 0px 20px 0px #0000008c;
  box-shadow: 0px 0px 20px 0px #0000008c;
}
.tab .tab-content .button-tab p {
  border: 3px solid #DE2022;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  animation: spinner 2s infinite linear;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 2;
}
.tab .tab-content .button-tab span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-family: 'Poppins-Medium';
  color: #343B40;
}
.tab .tab-content .tab-des {
  padding-top: 30px;
  max-width: 750px;
  margin: 0px auto;
  line-height: 30px;
}
.tab .tab-content .row-tab {
  padding-top: 50px;
}
.tab .tab-content .col-inner {
  border: 1px solid #E6E6E6;
  border-radius: 5px;
  display: flex;
  text-decoration: none;
  padding: 20px;
  height: 100%;
}
.tab .tab-content .item-image {
  width: 55px;
  flex-shrink: 0;
}
.tab .tab-content .item-image img {
  width: 100%;
}
.tab .tab-content .item-content {
  padding-left: 10px;
  text-align: left;
}
.tab .tab-content .heading {
  color: #343B40;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.tab .tab-content .item-des {
  margin-top: 10px;
  font-size: 14px;
  color: #929292;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1280px) {
  .tab .nav-tabs .nav-link {
    padding: 20px;
  }
  .tab .tab-content .button-tab {
    width: 100px;
    height: 100px;
  }
  .tab .tab-content .button-tab span {
    font-size: 14px;
  }
  .tab .tab-content .tab-des {
    font-size: 15px;
    max-width: 650px;
    line-height: 26px;
  }
  .tab .tab-content .col-inner {
    padding: 10px;
  }
  .tab .tab-content .item-image {
    width: 35px;
  }
}
@media screen and (max-width: 1023px) {
  .tab .nav-tabs .nav-link {
    font-size: 14px;
    padding: 15px 20px;
  }
  .tab .tab-content .button-tab {
    width: 80px;
    height: 80px;
  }
  .tab .tab-content .button-tab span {
    font-size: 12px;
  }
  .tab .tab-content .tab-des {
    font-size: 14px;
    max-width: 650px;
    line-height: 22px;
  }
  .tab .tab-content .col-inner {
    padding: 10px;
    display: block;
    text-align: center;
  }
  .tab .tab-content .item-image {
    margin: 0px auto;
  }
  .tab .tab-content .item-content {
    padding-left: 0px;
    text-align: center;
  }
  .tab .tab-content .heading {
    margin-top: 10px;
  }
  .tab .tab-content .item-des {
    font-size: 12px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .tab .tab-wrap {
    padding-bottom: 20px;
  }
  .tab .nav-tabs .nav-link {
    font-size: 12px;
    padding: 10px;
  }
  .tab .tab-content .button-tab {
    margin-top: 30px;
  }
  .tab .tab-content .row-tab {
    margin: 0px;
  }
  .tab .tab-content .col-4 {
    padding: 0px;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .tab .tab-wrap {
    padding-bottom: 20px;
  }
  .tab .nav-tabs .nav-link {
    font-size: 12px;
    padding: 10px;
  }
  .tab .tab-content .button-tab {
    width: 60px;
    height: 60px;
  }
  .tab .tab-content .button-tab span {
    font-size: 10px;
  }
  .tab .tab-content .col-4 {
    margin-bottom: 10px;
  }
}
.funfact .col-image .image {
  padding-top: 70%;
  position: relative;
}
.funfact .col-content .content {
  border-bottom: 1px solid #E6E6E6;
}
.funfact .col-content .title-wrap {
  margin-bottom: 50px;
}
.funfact .col-content .title {
  color: #fff;
}
.funfact .col-content .content-item {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}
.funfact .col-content .circle {
  position: relative;
}
.funfact .col-content .circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-family: 'Poppins-SemiBold';
  color: #fff;
}
.funfact .col-content .circle canvas {
  height: 90px !important;
  width: 90px !important;
}
.funfact .col-content .content-text {
  padding-left: 20px;
}
.funfact .col-content .content-text .heading {
  color: #fff;
  font-size: 18px;
  font-family: 'Poppins-SemiBold';
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.funfact .col-content .content-text .description {
  font-size: 14px;
  margin-top: 10px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.funfact .col-content .content-note {
  color: #fff;
  text-align: center;
  padding-top: 10px;
  font-size: 14px;
}
@media screen and (max-width: 1280px) {
  .funfact .col-content .circle span {
    font-size: 18px;
  }
  .funfact .col-content .circle canvas {
    height: 80px !important;
    width: 80px !important;
  }
}
@media screen and (max-width: 1023px) {
  .funfact .col-content .title-wrap {
    margin-bottom: 30px;
  }
  .funfact .col-content .circle span {
    font-size: 16px;
  }
  .funfact .col-content .circle canvas {
    height: 70px !important;
    width: 70px !important;
  }
  .funfact .col-content .content-text {
    padding-left: 10px;
  }
  .funfact .col-content .content-text .heading {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .funfact .funfact-wrap {
    background-size: 0px;
    background-color: #343B40;
  }
  .funfact .col-content .content {
    padding-top: 30px;
  }
  .funfact .col-content .content .title-wrap {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  .funfact .col-content .circle span {
    font-size: 14px;
  }
  .funfact .col-content .circle canvas {
    width: 55px !important;
    height: 55px !important;
  }
  .funfact .col-content .content-text .description {
    font-size: 12px;
    margin-top: 5px;
  }
  .funfact .col-content .content-note {
    font-size: 12px;
  }
}
.news .news-wrap {
  padding-bottom: 70px;
}
.news .col-news {
  margin-bottom: 30px;
}
.news .col-inner {
  width: 100%;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0px 0px 5px 2px #dee2e6;
}
.news .col-inner:hover .read-more {
  background: #DE2022;
  color: #fff;
}
.news .col-inner:hover .read-more .icon-grey {
  opacity: 0;
}
.news .col-inner:hover .read-more .icon-white {
  opacity: 1;
}
.news .news-image {
  padding-top: 60%;
  position: relative;
}
.news .news-content {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
  margin-top: 30px;
}
.news .date-wrap {
  padding-left: 20px;
}
.news .cate {
  color: #929292;
  padding-bottom: 5px;
  padding-left: 20px;
}
.news h3 {
  color: #343B40;
  padding: 0px 20px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  min-height: 49px;
  margin-bottom: 20px;
}
.news .read-more {
  border-top: 1px solid #F7F7F7;
  padding: 20px;
  position: relative;
  color: #929292;
  transition: all linear .2s;
}
.news .read-more img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  transition: all linear .2s;
}
.news .read-more .icon-white {
  opacity: 0;
}
@media screen and (max-width: 1280px) {
  .news .news-wrap {
    padding-bottom: 80px;
  }
  .news .row-news {
    margin-bottom: 20px;
  }
  .news h3 {
    min-height: 43px;
  }
}
@media screen and (max-width: 1023px) {
  .news .news-wrap {
    padding-bottom: 30px;
  }
  .news .date-wrap {
    padding-left: 10px;
  }
  .news .cate {
    font-size: 14px;
    padding-left: 10px;
  }
  .news h3 {
    min-height: 39px;
    padding: 0px 10px;
  }
  .news .read-more {
    padding: 15px 10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .news .news-wrap {
    padding-bottom: 20px;
  }
  .news .col-news {
    width: 50%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .news .row-news {
    margin: 0px;
  }
  .news .col-news {
    padding: 0px;
    width: 100%;
    margin-bottom: 10px;
  }
}
.member .col-image .image {
  padding-top: 100%;
  position: relative;
}
.member .col-content .position {
  font-size: 16px;
  font-family: 'Poppins-Semibold';
}
.member .col-content .member-name {
  font-size: 50px;
  color: #343B40;
  font-family: 'Poppins-Semibold';
}
.member .col-content .description {
  margin-top: 10px;
}
.member .col-content .info-member {
  padding: 30px 0px;
}
.member .col-content .info-member .info-item:not(:last-child) {
  padding-bottom: 20px;
}
.member .col-content .info-item {
  display: flex;
  align-items: center;
}
.member .col-content .info-icon {
  width: 35px;
  height: 35px;
  border: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.member .col-content .info-icon img {
  width: 15px;
  flex-shrink: 0;
}
.member .col-content .info-details {
  padding-left: 20px;
}
.member .col-content .info-details span {
  font-size: 12px;
}
.member .col-content .info-details p {
  font-size: 16px;
  font-family: 'Poppins-SemiBold';
  color: #343B40;
}
@media screen and (max-width: 1280px) {
  .member .col-content .member-name {
    font-size: 38px;
  }
  .member .col-content .info-details p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .member .col-content .info-member {
    padding-top: 20px;
  }
  .member .col-content .info-member .info-item:not(:last-child) {
    padding-bottom: 10px;
  }
  .member .col-content .member-name {
    font-size: 28px;
  }
  .member .col-content .info-icon {
    width: 30px;
    height: 30px;
  }
  .member .col-content .info-details p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .member .col-image .image {
    padding-top: 65%;
  }
  .member .col-content {
    padding-top: 30px;
  }
  .member .col-content .position {
    font-size: 12px;
  }
  .member .col-content .member-name {
    font-size: 24px;
  }
  .member .col-content .info-details p {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  .member .col-content {
    padding-top: 20px;
  }
  .member .col-content .description {
    font-size: 12px;
  }
  .member .col-content .member-name {
    font-size: 20px;
  }
  .member .col-content .info-icon {
    width: 25px;
    height: 25px;
  }
  .member .col-content .info-details {
    padding-left: 10px;
  }
  .member .col-content .info-details span {
    font-size: 10px;
  }
}
.skills .col-image .image {
  position: relative;
  padding-top: 65%;
}
.skills .col-range ul {
  padding-top: 30px;
  padding-left: 0px;
  list-style-type: none;
}
.skills .col-range ul li:not(:last-child) {
  padding-bottom: 30px;
}
.skills .col-range li {
  position: relative;
}
.skills .col-range .description {
  font-family: 'Poppins-Medium';
  color: #343B40;
  padding-right: 100px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.skills .col-range .number-des {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 14px;
  color: #DE2022;
  font-family: 'Poppins-SemiBold';
}
.skills .col-range .slider {
  width: 100%;
  height: 5px;
  pointer-events: none;
  border-radius: 5px;
}
@media screen and (max-width: 1023px) {
  .skills .col-range ul {
    padding-top: 20px;
  }
  .skills .col-range ul li:not(:last-child) {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .skills .col-range {
    padding-bottom: 20px;
  }
  .skills .col-range .description {
    font-size: 12px;
  }
  .skills .col-range .number-des {
    font-size: 12px;
  }
}
.certificate .col-image .image {
  position: relative;
  padding-top: 65%;
}
.certificate .col-content .description {
  margin-top: 10px;
}
.certificate .col-content .certificate-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 30px;
}
.certificate .col-content .certificate-image .image-item:not(:last-child) {
  margin-right: 20px;
}
.certificate .col-content .image-item {
  width: 150px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .certificate .col-content .certificate-image .image-item:not(:last-child) {
    margin-right: 10px;
  }
  .certificate .col-content .image-item {
    width: 100px;
  }
}
@media screen and (max-width: 1023px) {
  .certificate .col-content {
    padding-top: 30px;
  }
}
.study .nav-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border: 0px;
  list-style-type: none;
  padding-inline-start: 0px;
}
.study .nav-tabs .active {
  color: #DE2022;
  background-color: transparent;
  border: transparent;
}
.study .nav-item {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 10px;
}
.study .nav-link {
  font-size: 16px;
  font-family: 'Poppins-Semibold';
  color: #929292;
  border: 0px;
  outline: none;
  display: inline-block;
  padding: 0px 15px;
  transition: all linear .1s;
}
.study .nav-link:hover {
  border: 0px;
  isolation: unset;
  color: #DE2022;
}
.study .col-3 {
  margin-bottom: 30px;
}
.study .col-inner {
  width: 100%;
  position: relative;
  height: 100%;
}
.study .col-inner:hover .background {
  opacity: 0.8;
}
.study .col-inner:hover .btn-readmore {
  opacity: 1;
}
.study .col-inner:hover .study-detail {
  top: 20px;
}
.study .image {
  padding-top: 120%;
  position: relative;
}
.study .background {
  opacity: 0.5;
  background: #000;
  transition: opacity linear .2s;
  border-radius: 10px;
}
.study .btn-readmore {
  width: 50px;
  height: 50px;
  background: #DE2022;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  position: absolute;
  left: 20px;
  bottom: 20px;
  transition: opacity linear .2s;
}
.study .btn-readmore img {
  width: 15px;
}
.study .study-detail {
  position: absolute;
  left: 20px;
  top: calc(100% - 106px);
  transition: all linear .5s;
  padding-right: 20px;
}
.study .sub-cate {
  font-size: 14px;
  color: #fff;
  margin-bottom: 5px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.study .study-title {
  min-height: 60px;
  color: #fff;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.study .btn-submit {
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .study .row {
    padding-bottom: 10px;
  }
  .study .col-3 {
    margin-bottom: 20px;
  }
  .study .cate-item {
    padding: 0px 15px 10px 15px;
  }
  .study .study-detail {
    top: calc(100% - 100px);
  }
  .study .study-title {
    min-height: 54px;
  }
}
@media screen and (max-width: 1023px) {
  .study .cate-item {
    padding: 0px 10px 10px 10px;
  }
  .study .col-3 {
    width: calc(100%/3);
  }
  .study .col-inner:hover .study-detail {
    top: 10px;
  }
  .study .image {
    padding-top: 100%;
  }
  .study .study-detail {
    top: calc(100% - 84px);
    left: 10px;
    padding-right: 10px;
  }
  .study .study-title {
    min-height: 48px;
  }
  .study .sub-cate {
    font-size: 12px;
  }
  .study .btn-readmore {
    left: 10px;
    bottom: 10px;
    width: 35px;
    height: 35px;
  }
  .study .btn-readmore img {
    width: 10px;
  }
}
@media screen and (max-width: 767px) {
  .study .cate-item {
    margin-bottom: 10px;
  }
  .study .cate-link {
    font-size: 12px;
  }
  .study .row {
    padding-bottom: 20px;
  }
  .study .col-3 {
    margin-bottom: 10px;
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .study .row {
    padding-bottom: 10px;
  }
  .study .col-3 {
    width: 100%;
  }
  .study .col-inner:hover .study-detail {
    left: 20px;
    top: 20px;
  }
  .study .study-detail {
    left: 20px;
    top: calc(100% - 91px);
  }
  .study .btn-readmore {
    left: 20px;
    bottom: 20px;
  }
}
.connect .col-3 {
  text-align: center;
}
.connect .col-inner:hover .image {
  background: #DE2022;
}
.connect .col-inner:hover .image .white {
  z-index: 2;
}
.connect .image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  background: #E6E6E6;
  margin: 0px auto;
  transition: all linear .2s;
  margin-bottom: 20px;
}
.connect .image img {
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all linear .2s;
}
.connect .title-card {
  margin-bottom: 20px;
  color: #343B40;
}
.connect .details {
  font-size: 14px;
}
.connect .details p {
  margin-bottom: 5px;
  color: #DE2022;
}
.connect .list-social {
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.connect .list-social .social-item:not(:last-child) {
  margin-right: 10px;
}
.connect .social-item {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear .2s;
  margin-bottom: 10px;
}
.connect .social-item a {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .connect .image {
    width: 80px;
    height: 80px;
  }
  .connect .image img {
    width: 40px;
  }
  .connect .social-item {
    width: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .connect .social-item {
    width: 25px;
  }
  .connect .details {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .connect .connect-wrap {
    padding-bottom: 20px;
  }
  .connect .row {
    margin: 0px -10px;
  }
  .connect .col-3 {
    padding: 0px 10px;
    width: 50%;
    margin-bottom: 30px;
  }
  .connect .image {
    width: 60px;
    height: 60px;
  }
  .connect .title-card {
    margin-bottom: 10px;
  }
  .connect .details p {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 500px) {
  .connect .connect-wrap {
    padding-bottom: 10px;
  }
  .connect .row {
    margin: 0px 0px;
  }
  .connect .col-3 {
    padding: 0px 0px;
    width: 100%;
    margin-bottom: 20px;
  }
  .connect .image {
    width: 40px;
    height: 40px;
  }
  .connect .image img {
    width: 25px;
  }
  .connect .details {
    font-size: 12px;
  }
  .connect .list-social .social-item:not(:last-child) {
    margin-right: 20px;
  }
}
.form-contact .form-wrap {
  padding: 50px;
  box-shadow: 0px 0px 10px 0px rgba(87, 87, 87, 0.15);
}
.form-contact .content-wrap {
  width: 50%;
  padding-right: 15px;
}
.form-contact .gform_wrapper.gravity-theme .ginput_complex span {
  padding-right: 0px !important;
}
.form-contact .gform_wrapper.gravity-theme input,
.form-contact .gform_wrapper.gravity-theme textarea {
  font-size: 14px !important;
  color: #929292 !important;
  border: 0px;
  outline: none;
  background: #F7F7F7;
  padding: 0px 20px !important;
  height: 50px;
  border-radius: 10px;
}
.form-contact .gform_wrapper.gravity-theme input::placeholder,
.form-contact .gform_wrapper.gravity-theme textarea::placeholder {
  font-size: 14px !important;
  color: #929292 !important;
}
.form-contact .gform_wrapper.gravity-theme textarea {
  padding: 20px !important;
  height: 150px !important;
}
.form-contact .gform_wrapper.gravity-theme .gform_footer {
  text-align: center;
}
.form-contact .gform_wrapper.gravity-theme .gform_footer input {
  background: #DE2022;
  font-size: 16px !important;
  font-family: 'Poppins-Medium';
  color: #fff !important;
  margin-bottom: 0px;
}
.form-contact .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 20px;
}
@media screen and (max-width: 1023px) {
  .form-contact .content-wrap {
    padding-right: 10px;
  }
  .form-contact .form-wrap {
    padding: 20px;
  }
  .form-contact .gform_wrapper.gravity-theme input {
    height: 41px;
    padding: 0px 10px !important;
  }
  .form-contact .gform_wrapper.gravity-theme textarea {
    height: 100px !important;
    padding: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .form-contact .content-wrap {
    width: 100%;
    padding-right: 0px;
  }
  .form-contact .gform_wrapper.gravity-theme .gform_fields {
    display: block;
  }
  .form-contact .gform_wrapper.gravity-theme .gfield {
    margin-bottom: 20px;
  }
  .form-contact .gform_wrapper.gravity-theme .gform_footer {
    margin-top: 0px;
    padding: 10px 0px;
  }
}
@media screen and (max-width: 500px) {
  .form-contact .form-wrap {
    padding: 20px 10px;
  }
  .form-contact .gform_wrapper.gravity-theme input,
  .form-contact .gform_wrapper.gravity-theme textarea {
    font-size: 13px !important;
    height: 38px;
    line-height: initial !important;
  }
  .form-contact .gform_wrapper.gravity-theme input::placeholder,
  .form-contact .gform_wrapper.gravity-theme textarea::placeholder {
    font-size: 13px !important;
  }
  .form-contact .gform_wrapper.gravity-theme .gfield {
    margin-bottom: 10px;
  }
  .form-contact .gform_wrapper.gravity-theme .gform_footer input {
    font-size: 14px !important;
  }
}
.news-single .section {
  padding-bottom: 50px;
}
.news-single .row-single {
  margin: 0px -25px;
}
.news-single .col-9 {
  width: 70%;
  padding: 0px 25px 20px;
  font-size: 14px;
}
.news-single .col-9 .title-single {
  font-size: 36px;
  padding-bottom: 50px;
}
.news-single .col-9 .single-des {
  padding: 15px 0px;
  line-height: 24px;
}
.news-single .col-9 .single-des p strong {
  color: #343B40;
  font-family: 'Poppins-SemiBold';
}
.news-single .col-9 .single-des ul {
  padding-top: 10px;
  padding-left: 16px;
  margin-bottom: 0px;
}
.news-single .col-9 .single-des ul li:not(:last-child) {
  padding-bottom: 5px;
}
.news-single .col-9 .title-card {
  padding: 15px 0px;
  color: #343B40;
}
.news-single .col-9 .image-single {
  position: relative;
  padding-top: 50%;
  margin: 15px 0px;
}
.news-single .col-9 .row-image {
  padding: 15px 0px;
  margin: 0px -10px;
}
.news-single .col-9 .col-4 {
  padding: 0px 10px;
}
.news-single .col-9 .image {
  position: relative;
  padding-top: 100%;
}
.news-single .col-9 .row-our {
  padding: 15px 0px;
  margin: 0px -15px;
}
.news-single .col-9 .col-6 {
  padding: 0px 15px;
  list-style: inside decimal;
  font-family: 'Poppins-Semibold';
  color: #343B40;
  margin-bottom: 30px;
}
.news-single .col-9 .col-6::marker {
  color: #DE2022;
}
.news-single .col-9 .col-6 p {
  line-height: 24px;
  font-family: 'Poppins-Regular';
  color: #929292;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #E6E6E6;
}
.news-single li.comment {
  display: block;
  width: 100%;
  padding-bottom: 10px;
}
.news-single li.comment .comment-body {
  color: #929292;
  font-size: 16px;
}
.news-single li.comment .comment-body .comment-author {
  padding-bottom: 10px;
}
.news-single li.comment .comment-body .comment-author img {
  width: 50px;
  height: 50px;
}
.news-single li.comment .comment-body .comment-author cite.fn {
  padding-left: 5px;
  color: #000;
}
.news-single li.comment .comment-body .comment-author span {
  padding-left: 5px;
  font-size: 14px;
}
.news-single li.comment .comment-body .comment-meta a {
  text-decoration: none;
  color: #DE2022;
  font-size: 14px;
}
.news-single li.comment .comment-body p {
  padding: 5px 5px 20px;
}
.news-single li.comment .comment-body .reply {
  text-align: right;
}
.news-single li.comment .comment-body .reply a {
  text-decoration: none;
  color: #DE2022;
  font-style: italic;
}
.news-single li.comment .comment-respond .comment-reply-title {
  font-size: 20px;
}
.news-single li.comment .comment-respond small {
  padding-left: 15px;
  font-size: 14px;
}
.news-single li.comment.thread-alt .comment-body cite.fn a {
  text-decoration: none;
}
.news-single li.comment.byuser .comment-body cite.fn a {
  color: #DE2022;
  font-family: 'Poppins-Medium';
  text-decoration: none;
}
.news-single .comment-respond .comment-reply-title {
  font-size: 30px;
  padding-bottom: 20px;
  color: #000;
  font-family: 'Poppins-Medium';
}
.news-single .comment-respond .comment-notes {
  font-size: 18px;
  color: #000;
  padding-bottom: 20px;
}
.news-single .comment-respond .comment-form-comment {
  font-size: 16px;
  color: #343B40;
}
.news-single .comment-respond .comment-form-comment label {
  display: block;
  padding-bottom: 5px;
}
.news-single .comment-respond .comment-form-comment textarea {
  width: 100%;
  max-height: 100px;
  padding: 5px 10px;
  color: #000;
  outline-style: none;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
}
.news-single .comment-respond .comment-form p {
  padding-bottom: 20px;
}
.news-single .comment-respond .comment-form input {
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  width: 100%;
  padding: 5px 10px;
  color: #000;
  outline-style: none;
}
.news-single .comment-respond .comment-form label {
  display: block;
  padding-bottom: 5px;
}
.news-single .comment-respond .comment-form-cookies-consent {
  font-size: 16px;
  color: #000;
  padding-bottom: 30px;
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.news-single .comment-respond .comment-form-cookies-consent label {
  padding-left: 5px;
}
.news-single .comment-respond .comment-form-cookies-consent input {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  border: 1px solid black;
}
.news-single .comment-respond .form-submit input[type=submit] {
  font-size: 20px;
  width: 100%;
  padding: 10px;
  text-align: center;
  background: #DE2022;
  border: 1px solid transparent;
  color: #fff;
  font-family: 'Poppins-Medium';
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.news-single .comment-respond .form-submit input[type=submit]:hover {
  background: #fff;
  border-color: #DE2022;
  color: #DE2022;
}
@media screen and (max-width: 1280px) {
  .news-single .section {
    padding-bottom: 0px;
  }
  .news-single .row-single {
    margin: 0px -15px;
  }
  .news-single .col-9 {
    padding: 0px 15px 20px;
  }
  .news-single .col-9 .title-single {
    font-size: 30px;
  }
  .news-single .col-9 .title-card {
    font-size: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .news-single .section {
    padding-bottom: 30px;
  }
  .news-single .row-single {
    margin: 0px;
  }
  .news-single .col-9 {
    padding: 0px 0 20px;
    width: 100%;
  }
  .news-single .col-9 .title-single {
    padding-bottom: 30px;
  }
  .news-single .comment-respond .comment-reply-title {
    font-size: 26px;
  }
  .news-single .comment-respond .comment-form p {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .news-single .section {
    padding-bottom: 0px;
  }
  .news-single .col-9 {
    font-size: 12px;
  }
  .news-single .col-9 .title-single {
    font-size: 24px;
    padding-bottom: 30px;
  }
  .news-single .col-9 .single-des {
    line-height: 20px;
  }
  .news-single .col-9 .title-card {
    font-size: 18px;
  }
  .news-single .col-9 .row-image {
    margin: 0px -5px;
  }
  .news-single .col-9 .col-4 {
    padding: 0px 5px;
  }
  .news-single .col-9 .col-6 p {
    line-height: 20px;
  }
  .news-single li.comment {
    padding-bottom: 5px;
  }
  .news-single li.comment .comment-body {
    font-size: 14px;
  }
  .news-single li.comment .comment-body .comment-author {
    padding-bottom: 5px;
  }
  .news-single li.comment .comment-body .comment-author img {
    width: 45px;
    height: 45px;
  }
  .news-single li.comment .comment-body .comment-author span {
    font-size: 12px;
  }
  .news-single li.comment .comment-body .comment-meta a {
    font-size: 12px;
  }
  .news-single li.comment .comment-body p {
    padding: 5px 5px 10px;
  }
  .news-single li.comment .comment-respond .comment-reply-title {
    font-size: 16px;
  }
  .news-single li.comment .comment-respond small {
    padding-left: 5px;
    font-size: 12px;
  }
  .news-single .comment-respond .comment-reply-title {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .news-single .comment-respond .comment-notes {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .news-single .comment-respond .comment-form-comment {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .news-single .comment-respond .comment-form-comment textarea {
    padding: 5px;
  }
  .news-single .comment-respond .comment-form-author,
  .news-single .comment-respond .comment-form-email,
  .news-single .comment-respond .comment-form-url {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .news-single .comment-respond .comment-form-author input,
  .news-single .comment-respond .comment-form-email input,
  .news-single .comment-respond .comment-form-url input {
    padding: 5px;
  }
  .news-single .comment-respond .comment-form-cookies-consent {
    font-size: 14px;
    padding-bottom: 10px;
  }
  .news-single .comment-respond .comment-form-cookies-consent input {
    height: 15px;
    width: 15px;
  }
  .news-single .comment-respond .form-submit input[type=submit] {
    font-size: 16px;
    padding: 5px;
  }
}
@media screen and (max-width: 500px) {
  .news-single .col-9 .title-single {
    font-size: 20px;
  }
  .news-single .col-9 .single-des {
    padding: 10px 0px;
  }
  .news-single .col-9 .image-single {
    padding-top: 65%;
    margin: 10px 0px;
  }
  .news-single .col-9 .title-card {
    padding: 10px 0px;
    font-size: 16px;
  }
  .news-single .col-9 .row-image {
    padding: 10px 0px;
    margin: 0px;
  }
  .news-single .col-9 .col-4 {
    padding: 0px;
    width: 100%;
    margin-bottom: 10px;
  }
  .news-single .col-9 .row-our {
    margin: 0px;
    padding: 10px 0px;
  }
  .news-single .col-9 .col-6 {
    padding: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
}
.news-single .col-bar {
  width: 30%;
  padding: 0px 25px;
}
.news-single .col-bar .box {
  border: 1px solid #E6E6E6;
  padding: 0px 20px;
  margin-bottom: 30px;
}
.news-single .col-bar .box-title {
  text-align: center;
  padding: 20px 0px;
  border-bottom: 1px solid #E6E6E6;
}
.news-single .col-bar .list-tags {
  padding-left: 0px;
  margin-bottom: 0px;
}
.news-single .col-bar .list-tags .tag-item:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}
.news-single .col-bar .tag-item {
  list-style-type: none;
  padding: 30px 0px;
}
.news-single .col-bar .tag-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.news-single .col-bar .tag-details {
  padding-left: 10px;
}
.news-single .col-bar .tag-image {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.news-single .col-bar .tag-title {
  font-size: 14px;
  font-family: 'Poppins-SemiBold';
  color: #343B40;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.news-single .col-bar .time img {
  width: 15px;
  flex-shrink: 0;
}
.news-single .col-bar .time span {
  font-size: 12px;
  color: #929292;
}
.news-single .col-bar .list-category {
  padding: 20px 0px;
  margin-bottom: 0px;
}
.news-single .col-bar .category-item {
  margin-bottom: 10px;
}
.news-single .col-bar .category-item a {
  text-decoration: none;
  display: flex;
  width: 100%;
}
.news-single .col-bar .category-item a:hover .count {
  background: #DE2022;
  color: #fff;
}
.news-single .col-bar .category-item span {
  padding: 10px 0px;
  font-family: 'Poppins-Medium';
  color: #343B40;
  display: inline-block;
}
.news-single .col-bar .category-item .cate {
  background: #F7F7F7;
  flex: 1;
  padding-left: 20px;
  padding-right: 20px;
}
.news-single .col-bar .category-item .count {
  width: 50px;
  flex-shrink: 0;
  background: #D3D3D3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear .2s;
}
.news-single .col-bar .box-advertisement {
  position: relative;
  padding-top: 120%;
}
.news-single .col-bar .background {
  opacity: 0.5;
  background: #000;
}
.news-single .col-bar .advertisement-text {
  color: #fff;
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-family: 'poppins-SemiBold';
  font-size: 30px;
}
@media screen and (max-width: 1280px) {
  .news-single .col-bar {
    padding: 0px 15px;
  }
  .news-single .col-bar .box {
    padding: 0px 10px;
  }
  .news-single .col-bar .tag-image {
    width: 60px;
    height: 60px;
  }
  .news-single .col-bar .tag-item {
    padding: 15px 0px;
  }
  .news-single .col-bar .category-item span {
    font-size: 14px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .news-single .col-bar .category-item .cate {
    padding-left: 10px;
    padding-right: 10px;
  }
  .news-single .col-bar .category-item .count {
    width: 40px;
  }
  .news-single .col-bar .advertisement-text {
    font-size: 22px;
  }
}
@media screen and (max-width: 1023px) {
  .news-single .col-bar {
    width: 100%;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 30px;
  }
  .news-single .col-bar .box {
    width: calc(50% - 15px);
    padding: 0px 15px;
  }
  .news-single .col-bar .box-advertisement {
    width: 100%;
    padding-top: 40%;
  }
}
@media screen and (max-width: 767px) {
  .news-single .col-bar {
    padding-bottom: 30px;
  }
  .news-single .col-bar .box {
    width: 100%;
  }
  .news-single .col-bar .box-advertisement {
    padding-top: 80%;
  }
}
@media screen and (max-width: 500px) {
  .news-single .col-bar .boc-title {
    padding: 10px 0px;
  }
}
.pagination-wrap {
  padding-top: 20px;
}
.pagination-wrap .page-numbers {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #929292;
  font-family: 'Poppins-SemiBold';
  text-decoration: none;
}
.pagination-wrap .current {
  color: #DE2022;
}
.pagination-wrap ul {
  width: fit-content;
  border: 1px solid #DE2022;
  border-radius: 20px;
  margin: 0px auto;
  padding: 5px 15px;
}
.pagination-wrap li {
  padding: 0px 10px;
}
@media screen and (max-width: 767px) {
  .pagination-wrap {
    padding-top: 10px;
  }
  .pagination-wrap .page-numbers {
    font-size: 12px;
  }
  .pagination-wrap li {
    padding: 0px 7px;
  }
}
.video .video-wrap {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video video {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
}
.video .background {
  background: #000;
  opacity: 0.4;
  z-index: 2;
}
.video .caption {
  text-align: center;
  max-width: 700px;
  margin: 0px auto;
  color: #fff;
  z-index: 3;
}
.video h2 {
  font-family: 'Poppins-Bold';
  font-size: 54px;
  text-transform: uppercase;
  padding-bottom: 30px;
}
.video p {
  font-size: 20px;
}
.video .image-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  z-index: 3;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .video h2 {
    font-size: 46px;
    padding-bottom: 20px;
  }
  .video p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1023px) {
  .video .caption {
    max-width: 600px;
  }
  .video h2 {
    font-size: 40px;
  }
  .video p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .video .caption {
    max-width: 450px;
  }
  .video h2 {
    font-size: 30px;
    padding-bottom: 15px;
  }
  .video p {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .video .caption {
    max-width: 300px;
  }
  .video h2 {
    font-size: 24px;
  }
  .video p {
    font-size: 12px;
  }
}
.error-404 {
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
}
.error-404 .container-fluid {
  position: relative;
  z-index: 2;
}
.error-404 .container-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.error-404 .background {
  background: #000;
  opacity: 0.5;
  z-index: 1;
}
.error-404 .content-error {
  text-align: center;
  color: #fff;
}
.error-404 .title-error {
  padding-bottom: 30px;
}
.error-404 h1 {
  font-size: 120px;
  font-family: 'Poppins-SemiBold';
}
.error-404 h2 {
  font-size: 44px;
  font-family: 'Poppins-Medium';
}
.error-404 .btn-submit {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .error-404 h1 {
    font-size: 84px;
  }
  .error-404 h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1023px) {
  .error-404 h1 {
    font-size: 68px;
  }
  .error-404 h2 {
    font-size: 28px;
  }
}
.style-gutenberg .single-content {
  font-size: 18px;
  color: black;
}
.style-gutenberg .single-content h2 {
  font-size: 32px;
  font-family: 'Poppins-SemiBold';
  padding: 20px 0px;
}
.style-gutenberg .single-content p {
  font-size: 18px;
  font-family: 'Poppins-Regular';
  padding: 10px 0px;
}
.style-gutenberg .single-content p img {
  padding: 20px 0px;
}
.style-gutenberg .single-content p .alignleft {
  padding-right: 20px;
}
.style-gutenberg .single-content p .alignright {
  padding-left: 20px;
}
.style-gutenberg .single-content p a {
  color: #929292;
  font-weight: bold;
}
.style-gutenberg .single-content .wp-caption-text,
.style-gutenberg .single-content address {
  font-size: 16px;
}
.style-gutenberg .single-content .wp-caption {
  width: 100% !important;
  padding: 20px 0px;
}
.style-gutenberg .single-content ol li,
.style-gutenberg .single-content dl dt,
.style-gutenberg .single-content dl dd,
.style-gutenberg .single-content ul li {
  font-size: 18px;
  font-family: 'Poppins-Regular';
  padding: 10px 0px;
}
.style-gutenberg .single-content ol li a,
.style-gutenberg .single-content dl dt a,
.style-gutenberg .single-content dl dd a,
.style-gutenberg .single-content ul li a {
  color: #929292;
  font-weight: bold;
}
.style-gutenberg .single-content table td,
.style-gutenberg .single-content table th {
  font-size: 18px;
  font-family: 'Poppins-Regular';
  padding: 10px;
  border: 1px solid black;
}
.style-gutenberg .single-content table th {
  font-size: 20px;
}
