/* Base */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

body {
  overflow-x: hidden;
  line-height: 1;
  font-family: "Urbanist", sans-serif;
}

.overflow-hidden {
  overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1470px) {
  header {
    zoom: 85%;
  }
}

@media only screen and (max-width: 1199px) {
  body.overflow-hidden {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

.mt-0 {
  margin-top: 0 !important;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #dc0546;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

img {
  user-select: none;
  max-width: 100%;
}

/* Captcha Btn */
.captcha a {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  right: 10px;
  width: 25px;
  height: 24px;
  border: 1px solid #000;
  border-radius: 100%;
  display: block;
  padding: 3px;
  cursor: pointer;
  z-index: 1;
  background: #fff;
}

.captcha {
  position: relative;
}

.captcha img {
  width: 100%;
  height: 100%;
  border: 1px solid #f1f1f1;
  border-radius: 100px;
}

/* Special Page */
section.page.single-page {
  color: #fff;
  padding: 250px 100px;
}

section.page.single-page h2 {
  margin-bottom: 65px;
  font-size: 58px;
  font-weight: bold;
  color: #000;
  line-height: normal;
}

section.page.single-page li,
section.page.single-page p,
section.page.single-page tr,
section.page.single-page td,
section.page.single-page th {
  font-size: 20px;
  color: #808080;
  border: none;
  line-height: 1.4;
  font-weight: 300;
}

section.page.single-page p {
  margin-bottom: 30px;
}

section.page.single-page td,
section.page.single-page th {
  border: 1px solid black;
  padding: 20px;
}

section.page.single-page ol {
  padding-left: 20px;
}

section.page.single-page ol li:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

section.page.single-page p strong {
  color: #000;
}

@media only screen and (max-width: 1199px) {
  section.page.single-page {
    padding: 150px 50px;
  }

  section.page.single-page h2 {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  section.page.single-page {
    font-size: 13px;
    padding: 70px 24px 100px;
  }

  section.page.single-page h2 {
    font-size: 23px;
    margin-bottom: 35px;
  }

  section.page.single-page p strong {
    font-size: 15px;
  }

  section.page.single-page p,
  section.page.single-page tr,
  section.page.single-page td,
  section.page.single-page th,
  section.page.single-page li {
    font-size: 15px;
  }
}

/* 404 Page */
.page.nf404 {
  text-align: center;
  padding-bottom: 20px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page.nf404 .page404-content {
  text-align: center;
}

.page.nf404 .page404-content .svg svg {
  width: 100%;
}

.page.nf404 .svg path {
  fill: #1d1d1c;
}

.nf404 h2 {
  font-size: 2.1vw;
  color: #1d1d1c;
  font-weight: 600;
  margin: 2vw 0 10px;
}

.nf404 h3 {
  color: #1d1d1c;
  font-weight: 400;
  font-size: 1.1vw;
}

.page.nf404 a {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  padding: 0 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgb(29 29 28 / 40%);
  border-radius: 40px;
  height: 60px;
  font-size: 15px;
  color: #1d1d1c;
  margin-top: 1.5vw;
  text-decoration: none;
}

.page.nf404 .svg svg line {
  stroke: #a3a3a3;
}

.page.nf404 .svg svg {
  width: 100%;
  height: auto;
}

.page.nf404 a svg {
  margin-right: 15px;
  stroke: #1d1d1c;
}

@media (hover: hover) {
  .page.nf404 a:hover {
    background: white;
    color: #000;
  }

  .page.nf404 a:hover svg {
    stroke: #000;
  }
}

@media only screen and (max-width: 1199px) {
  .page.nf404 a {
    height: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .nf404 h2 {
    font-size: 3vw;
    margin-top: 5vw;
  }

  .nf404 h3 {
    font-size: 2.4vw;
  }

  .page.nf404 a {
    margin-top: 4vw;
  }
}

@media only screen and (max-width: 767px) {
  .page.nf404 .svg {
    overflow: hidden;
  }

  .page.nf404 .svg svg {
    width: 200%;
    margin-left: -50%;
  }

  .nf404 h2 {
    font-size: 5vw;
    margin-top: 9vw;
  }

  .nf404 h3 {
    font-size: 4.2vw;
  }

  .page.nf404 a {
    margin-top: 7vw;
  }
}

/* Cookie */
body .cc-window {
  bottom: 50px !important;
  left: 50% !important;
  max-width: 460px;
  height: 93px;
  border-radius: 100px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(34, 41, 48, 0.8);
  padding: 0 30px !important;
  -webkit-transform: translateX(-50%) translateZ(100px);
  -ms-transform: translateX(-50%) translateZ(100px);
  transform: translateX(-50%) translateZ(100px);
  -webkit-transition: none;
  flex-direction: row !important;
  -o-transition: none;
  transition: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 99999;
  transition: .3s;
}

body .cc-window .cc-message {
  font-size: 15px;
  color: #fff;
  line-height: normal;
  margin: 0 !important;
}

body .cc-window .cc-message a {
  transition: 0.4s;
  opacity: 1;
}

body .cc-compliance a.cc-btn.cc-dismiss {
  transition: 0.4s;
  width: 56px;
  height: 56px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: transparent;
  border: 1px solid #000;
  border-radius: 100px;
  position: relative;
  padding: 0;
  color: transparent;
  display: block;
}

body .cc-compliance a.cc-btn.cc-dismiss:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(../img/svg/check-icon.svg);
  width: 20px;
  height: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

body .cc-compliance a.cc-btn.cc-dismiss:hover {
  background: #dc0646;
  border-color: #dc0646;
}

body .cc-banner.cc-theme-edgeless .cc-message a.cc-link:hover {
  color: #dc0646;
  text-decoration: underline;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 0 !important;
}

@media only screen and (max-width: 767px) {
  body .cc-window {
    width: 100%;
    max-width: 100% !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    left: 50% !important;
    right: auto !important;
    -webkit-transform: translateX(-50%) scale(0.9);
    -ms-transform: translateX(-50%) scale(0.9);
    transform: translateX(-50%) scale(0.9);
    bottom: 30px !important;
    height: 110px;
    padding: 0 30px !important;
  }

  .cc-floating.cc-theme-edgeless .cc-message {
    margin: 0 !important;
  }
}
body .cc-window.in-active {
  opacity: 0;
  visibility: hidden
}
header {
  height: 178px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

header:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  pointer-events: none;
  z-index: 3;
}

header .header-logo {
  display: inline-block;
  position: relative;
  max-width: 275px;
  width: 100%;
  z-index: 4;
  margin-left: 4.5vw;
}

header .header-sub-menu {
  opacity: 0;
  visibility: hidden;
  padding: 0;
  width: 224px;
  background: white;
  position: absolute;
  top: 55px;
  z-index: 5;
  padding: 32px 0 22px 32px;
  transition: 0.5s;
}

header .header-sub-menu li {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #000000;
  opacity: 1;
  padding-bottom: 10px;
}

header .header-menu {
  position: relative;
}

header .header-menu:hover .header-sub-menu {
  opacity: 1;
  visibility: visible;
}

header .header-sub-menu::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 17px 0 17px;
  border-color: #f1f1f1 transparent transparent transparent;
  position: absolute;
  top: 0px;
  left: -15px;
  z-index: 6;
}

header .header-sub-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 38px 48px;
  border-color: transparent transparent #dc0546 transparent;
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 6;
}

header .header-redBar {
  width: 119px;
  height: 179.5px;
  position: absolute;
  right: -37px;
  top: -26px;
  z-index: 6;
  overflow: hidden;
}

header .header-blueBar {
  position: absolute;
  top: -26px;
  right: -138px;
  z-index: 5;
}

header .header-right {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  background: #0c2967;
  border-top-left-radius: 20px;
  z-index: 3;
}

.header-contact span {
  color: white;
  display: inline-block;
  font-size: 1vw;
  line-height: 24px;
  font-weight: 400;
  transition: 0.4s;
}

.header-contact svg {
  margin-right: 17px;
}

.header-contact {
  padding: 30px 5% 28px 12%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header-contact div {
  display: flex;
  align-items: center;
}

header .header-contact .header-language img {
  padding-right: 20px;
  opacity: 0.6;
  transition: 0.5s;
}

header .header-contact .header-language img:hover {
  opacity: 1;
}

header .header-contact .header-language a.active img {
  opacity: 1;
}

header .header-language {
  padding-left: 9vw !important;
  padding-right: 3.2vw;
  position: relative;
}

header .header-social-media {
  padding-left: 3.2vw;
}

header .header-social-media svg {
  opacity: 0.6;
  transition: 0.5s;
}

header .header-social-media svg:hover {
  opacity: 1;
}

header .header-menu-container {
  background: linear-gradient(
    90deg,
    #f1f1f1 2.77%,
    #f1f1f1 52.25%,
    rgb(255 255 255) 75.61%
  );
}

header .header-menu-wrapper {
  padding-left: 12%;
}

header .header-menu {
  display: inline-block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
  padding: 15.5px 50px 15.5px 0;
  transition: 0.4s;
}

header .header-menu a {
  color: #0c2967;
  opacity: 50%;
}

header .header-menu a.active {
  font-weight: 700;
  opacity: 1;
}

header .header-sub-menu a {
  color: #000000;
  opacity: 1;
}

header .header-menu a:hover {
  color: #0c2967;
  opacity: 1;
}

header .header-sub-menu li a:hover {
  color: #dc0546;
  opacity: 1;
}

header .header-sub-menu li:hover {
  color: #dc0546;
}

header .header-breadcrumb {
  height: 41px;
  background-color: white;
  padding-left: 12%;
}

header .header-breadcrumb ul li {
  display: inline-block;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  padding: 12px 40px 12px 0;
  position: relative;
}

header .header-breadcrumb ul li:hover {
  color: #0c2967;
}

header .header-breadcrumb ul li:last-child:after {
  background: none !important;
}

header .header-line {
  position: absolute;
  height: 46px !important;
  width: 1px;
  padding: 0 !important;
  background-color: #ffffff;
  opacity: 0.2;
  z-index: 99999;
  right: 0;
  top: -10px;
}

header .header-phone {
  margin-right: 28px;
}

header .header-phone a {
  display: inline-flex !important;
  align-items: center;
  transition: 0.4s;
}

header .header-phone a:hover {
  opacity: 0.6;
}

header .header-mail a {
  display: inline-flex !important;
  align-items: center;
  transition: 0.4s;
}

header .header-mail a:hover {
  opacity: 0.6;
}

header .header-communication {
  position: absolute;
  right: 6%;
  top: 95px;
  background-color: #dc054d;
  padding: 23px 74px;
  color: white;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  transition: 0.4s;
}

header .header-communication span {
  color: white;
}

/*header .header-communication:hover span {
  animation: blinker 0.8s linear infinite;
}*/

header .header-communication:hover {
  background-color: #bc0744;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

header .header-rectangle {
  position: absolute;
  z-index: 2;
  left: 12.2vw;
  top: 176px;
}

header .header-breadcrumb ul li:after {
  content: "";
  background-image: url(../img/main/Vector.png);
  width: 6px;
  height: 10px;
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
}

@media screen and (max-width: 1500px) {
  .header-contact {
    height: 65px;
  }

  header {
    height: 161px;
  }
}

@media screen and (max-width: 1200px) {
  header {
    height: auto;
    position: sticky;
    top: 0;
    z-index: 3;
  }

  header .header-blueBar {
    width: 50vw;
    background: #0c2967;
    height: 100%;
    top: 0 !important;
    right: -24vw !important;
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    transform: skew(-20deg);
  }

  header .header-blueBar::before {
    content: "";
    display: inline-block;
    width: 50px;
    background: #dc0546;
    height: 100%;
    position: relative;
    top: 0;
    right: 49px;
    z-index: 9999;
    -webkit-transform: skew(0deg);
    -moz-transform: skew(0deg);
    -o-transform: skew(0deg);
    transform: skew(0deg);
  }

  header .header-blueBar img {
    display: none;
  }

  header .header-logo {
    max-width: 30%;
    position: static;
    padding: 14px 10px !important;
  }

  header .header-logo img {
    width: 110px !important;
  }

  header .header-right,
  header .header-redBar,
  .header-rectangle {
    display: none;
  }

  .hamburger-menu {
    display: block !important;
    width: 30px;
    height: 22px;
    top: 50%;
    right: 32px;
    position: absolute;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    z-index: 9;
    transform: translate(0px, -50%);
  }

  .hamburger-menu span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  .hamburger-menu span:nth-child(1) {
    top: 0;
  }

  .hamburger-menu span:nth-child(2) {
    top: 9px;
  }

  .hamburger-menu span:nth-child(3) {
    top: 18px;
  }

  .hamburger-menu.active span:nth-child(1) {
    top: calc(50%);
    transform: rotate(45deg);
  }

  .hamburger-menu.active span:nth-child(2) {
    display: none;
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(134deg);
    top: calc(50%);
  }
}

/* Footer */
footer {
  display: flex;
  position: relative;
  overflow: hidden;
}

footer p,
footer span {
  color: #ffffff;
}

footer .footer-logo {
  max-width: 450px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

footer .footer-rectangle {
  position: absolute;
  bottom: -3px;
  right: -80px;
}

footer .footer-contact {
  background-color: #0c2967;
  display: flex;
  flex: 1;
  padding-left: 15vw;
  flex-direction: column;
  position: relative;
  clip-path: polygon(150px 0, 100% 0%, 100% 100%, 0% 100%);
}

footer .footer-help div p {
  opacity: 0.5;
}

footer .footer-help {
  padding-top: 61px;
  display: flex;
  padding-right: 5vw;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 31px;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

footer .footer-help p {
  padding-bottom: 15px;
  font-size: 15px;
}

footer .footer-help .footer-phone span {
  font-size: 2.6vw;
  font-weight: bold;
  transition: 0.1s;
}

footer .footer-help .footer-phone span:hover {
  opacity: 0.6;
}

footer .footer-help .footer-address span {
  max-width: 207px;
  display: inline-block;
  line-height: 1.3;
}

footer .footer-mail a {
  display: block;
  margin-bottom: 5px;
}

footer .footer-phone {
  /* width: 50%; */
}

footer .footer-address {
  width: 200px;
}

footer .footer-address span {
  line-height: 18px;
}

footer .footer-mail {
  /* width: 25%; */
}

footer .footer-mail p,
footer .footer-mail span {
  line-height: 18px;
  transition: 0.4s;
}

footer .footer-mail span:hover {
  opacity: 0.6;
}

footer .footer-services p {
  font-size: 1vw;
  font-weight: 400;
  padding: 28px 0 33px;
  transition: 0.4s;
}

footer .footer-services p:hover {
  opacity: 0.6;
}

footer .footer-services {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  padding-right: 8vw;
  gap: 10px;
}

footer .footer-cookies-policy-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 5vw;
}

footer .footer-cookies-policy-wrapper .footer-cookies-policy {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: 0;
  width: 100%;
  justify-content: flex-start;
  padding-right: 24px;
  padding-top: 0px;
}

footer .footer-cookies-policy-wrapper .footer-designed-by {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: 0;
  width: 40%;
  justify-content: flex-end;
  padding-right: 24px;
  padding-top: 0px;
}

footer .footer-cookies-policy-wrapper div:nth-child(1) {
  padding: 34px 0;
}

footer .footer-cookies-policy-wrapper div:nth-child(1) p:after {
  content: "/";
  padding-left: 18px;
  padding-right: 18px;
}

footer .footer-cookies-policy-wrapper div span:last-child {
  padding-left: 30px;
}

footer .footer-contact img {
  padding-left: 6px;
}

footer .footer-logo {
  padding-left: 90px;
}

footer .footer-address-wrapper {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1630px) {
  footer .footer-contact {
    padding-left: 11vw;
  }
}

@media (max-width: 1470px) {
  footer .footer-logo {
    max-width: 330px;
  }
}

@media (max-width: 1199px) {
  footer .footer-logo {
    display: none;
  }

  footer .footer-contact {
    padding-left: 0;
    clip-path: initial;
  }

  footer .footer-help {
    padding: 40px 50px;
  }

  footer .footer-services {
    padding: 20px 50px;
  }

  footer .footer-services p {
    font-size: 1.6vw;
    padding: 0;
  }

  footer .footer-cookies-policy-wrapper {
    padding: 0px 50px;
  }

  footer .footer-services p a {
    padding: 20px 0;
    display: block;
  }
}

/* Count Area */
.count {
  padding: 60px 8.9vw 6.6vw 8.9vw;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.count div {
  width: 20%;
  position: relative;
}

.count div > span {
  color: #0c2967;
  font-size: 1.3vw;
  font-weight: 700;
  line-height: 1.57vw;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: auto;
  position: absolute;
  top: 1vw;
  left: 84%;
}

.count div div {
  width: fit-content;
}

.count div p {
  color: white;
  background-color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
  font-size: 5.2vw;
  opacity: 0.4;
  display: inline-block;
}

.information div.information-wrapper .information-first-text img {
  width: 12.8vw;
}

.information div.information-wrapper .information-second-text img {
  width: 11.05vw;
}

.information {
  padding-bottom: 100px;
}

.information div.information-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  margin: 0 7.2%;
  border: 1px solid #dc0546;
  position: relative;
  padding: 4vw 0;
}

.information .information-wrapper .information-text {
  font-size: 1.3vw;
  font-weight: 700;
  line-height: 1.57vw;
  max-width: 35%;
  margin-right: 5%;
}

.information .information-wrapper .information-text p {
  width: 85%;
}

.information .information-wrapper .information-button {
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.4vw;
  position: relative;
  margin-right: 3%;
}

.information .information-wrapper .information-button p {
  transition: 0.4s;
  text-transform: uppercase;
}

.information .information-wrapper .information-button p:hover {
  color: #dc0546;
}

.information .information-wrapper .information-button .information-circle {
  width: 4.2vw;
  height: 4.2vw;
  display: inline-block;
  background: #0c2967;
  border-radius: 50%;
  opacity: 0.05;
  position: absolute;
  top: calc(50% - 2.3vw);
  left: -7%;
  pointer-events: none;
}

.information .information-wrapper div .information-line {
  width: 17vw;
  height: 23px;
  position: absolute;
  background: #ffffff;
  top: -11.5px;
  left: 22px;
  z-index: 1;
}

.information .information-wrapper div .information-red-mini-line {
  width: 5.47vw;
  height: 1px;
  position: absolute;
  background: #dc0546;
  top: -0.6vw;
  left: 1.5vw;
  z-index: 1;
}

.information .information-wrapper div .information-blue-mini-line {
  width: 2.78vw;
  height: 1px;
  position: absolute;
  background: #0c2967;
  top: -0.6vw;
  right: 2.3vw;
  z-index: 1;
}

.information .information-wrapper div .information-blue-mini-line::after {
  content: "";
  width: 7.2vw;
  height: 1px;
  position: absolute;
  background: #0c2967;
  bottom: -7.9vw;
  right: -3px;
  z-index: 1;
}

.information .information-wrapper div .information-red-mini-line::before {
  content: "";
  width: 5.47vw;
  height: 1px;
  position: absolute;
  background: #dc0546;
  top: -0.6vw;
  right: -3.9vw;
  z-index: 1;
}

.information .information-wrapper div .information-red-mini-line::after {
  content: "";
  width: 5.47vw;
  height: 1px;
  position: absolute;
  background: #dc0546;
  bottom: -6.5vw;
  left: 0;
  z-index: 1;
}

.information .information-wrapper div .information-first-text {
  position: absolute;
  top: -2.5vw;
  z-index: 2;
  left: 3.4vw;
}

.information .information-wrapper div .information-first-text p {
  color: white;
  font-size: 2.1vw;
  font-weight: bold;
  position: absolute;
  top: 23%;
  left: 23%;
}

.information .information-wrapper div .information-second-text {
  position: absolute;
  top: 13%;
  left: 13%;
}

.information .information-wrapper div .information-second-text p {
  color: white;
  font-size: 2.1vw;
  font-weight: bold;
  position: absolute;
  top: 30%;
  left: 23%;
}

@media screen and (max-width: 991px) {
  section.count {
    padding-top: 0;
  }

  .information .information-wrapper .information-text {
    font-size: 2vw;
    line-height: 1.3;
    max-width: 40%;
  }

  .information div.information-wrapper {
  }
}

@media screen and (max-width: 767px) {
  header .header-logo img {
    width: 80px !important;
  }

  .hamburger-menu {
    right: 24px;
  }

  .count {
    flex-direction: column;
  }

  .information div.information-wrapper {
    padding: 8vw 0;
    flex-direction: column;
  }

  .information .information-wrapper div .information-red-mini-line {
    width: 57px;
    top: -1.6vw;
    left: 4.5vw;
  }

  .information .information-wrapper div .information-red-mini-line::before {
    width: 69px;
    top: -8px;
    right: -58px;
  }

  .information .information-wrapper div .information-red-mini-line::after {
    width: 60px;
    bottom: -19.5vw;
    left: -3px;
  }

  .information .information-wrapper div .information-red-mini-line::after {
    width: 60px;
    bottom: -19.5vw;
    left: -3px;
  }

  .information .information-wrapper div .information-blue-mini-line {
    width: 50px;
    top: -2.4vw;
    right: 3.3vw;
  }

  .information .information-wrapper div .information-blue-mini-line::after {
    bottom: -24.3vw !important;
    width: 81px;
    left: -41px;
  }

  .information .information-wrapper div .information-first-text {
    left: 0;
    top: -9vw;
    transform: translate(35%, 0px);
  }

  .information .information-wrapper div .information-second-text {
    left: auto;
    top: 8%;
    right: 0;
    transform: translate(-40%, 0px);
  }

  .information .information-wrapper .information-text {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    max-width: 100%;
    margin-right: 0%;
    padding: 0 24px;
  }

  .information .information-wrapper .information-text p {
    width: 100%;
  }

  .information .information-wrapper .information-button .information-circle {
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translate(0, -50%);
  }

  .information .information-wrapper .information-button {
    font-size: 17px;
    margin-top: 25px;
  }

  .information div.information-wrapper .information-first-text img {
    width: 39vw;
  }

  .information .information-wrapper div .information-first-text p {
    font-size: 25px;
  }

  .information .information-wrapper div .information-second-text p {
    font-size: 25px;
  }

  .information div.information-wrapper .information-second-text img {
    width: 34vw;
  }

  .information .information-wrapper div .information-line {
    width: 73vw;
  }

  .information-text-bubble {
    width: 100%;
    height: 115px;
  }

  .information-wrapper {
    padding: 8vw 0;
  }

  .information .information-wrapper div .information-second-text {
    left: auto;
    top: 8%;
    right: 0;
    transform: translate(-40%, 0px);
  }
}

/* know-us */
.know-us {
  background-color: #f1f1f1;
  margin-top: 192px;
  position: relative;
}

.know-us .know-us-wrapper {
  display: flex;
  padding-left: 7.5%;
}

.know-us .know-us-image {
  margin-right: 5%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.know-us .know-us-image div {
  margin-right: 10%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 28vw;
}

.know-us .know-us-mini-header {
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.2em;
  color: #0c2967;
  opacity: 0.5;
  padding-top: 50px;
}

.know-us .know-us-header::before {
  content: "";
  width: 58%;
  position: absolute;
  top: -5px;
  left: -10px;
  display: inline-block;
  height: 5vw;
  background: white;
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  transform: skew(-20deg);
  z-index: -1;
}

.know-us .know-us-header {
  color: #000000;
  font-weight: 700;
  line-height: 4.5vw;
  font-size: 3.6vw;
  margin: 11% 0 8% 0;
  position: relative;
  z-index: 2;
}

.know-us div {
  position: relative;
}

.know-us svg {
  position: absolute;
  left: -25px;
  top: 100px;
}

.know-us .know-us-header span {
  color: #dc0546;
  display: block;
}

.know-us .know-us-text {
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 1.57vw;
  color: #000000;
  opacity: 0.6;
  width: 75%;
  display: inline-block;
}

.know-us .know-us-links {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 5vw;
  margin-left: 2vw;
  gap: 5vw;
}

.know-us .know-us-links span {
  color: #0c2967;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  opacity: 0.6;
  transition: 0.4s;
}

.know-us .know-us-links span:hover {
  opacity: 1;
  color: #dc0546;
}

.know-us .know-us-links p:hover {
  color: #dc0546;
}

.know-us .know-us-links p {
  color: #0c2967;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  margin-top: 5px;
  z-index: 2;
  position: relative;
  transition: 0.4s;
}

.know-us .know-us-links div {
  position: relative;
}

.know-us .know-us-circle {
  width: 80px;
  height: 80px;
  display: inline-block;
  background: #0c2967;
  border-radius: 50%;
  opacity: 0.05;
  position: absolute !important;
  top: -25px;
  left: -33px;
}

.know-us .know-us-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding-top: 10%;
}

.know-us .know-us-footer div {
  height: 205px;
  flex: 1 0 20%;
  border-right: 1px solid rgb(0 0 0 / 20%);
  border-top: 1px solid rgb(0 0 0 / 20%);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.know-us .know-us-footer div p {
  padding-top: 27px;
}

.know-us .know-us-footer img {
  max-width: 50px;
  width: 50px;
}

@media screen and (max-width: 767px) {
  .know-us .know-us-text {
    font-size: 15px;
    line-height: 20px;
    width: 100%;
    padding: 10px 24px 30px 24px;
    text-align: center;
  }

  .know-us .know-us-image div {
    height: 350px;
    margin-top: 25px;
  }

  .know-us-image {
    width: 100%;
    height: 100%;
    padding: 0 25px;
  }

  .know-us {
    margin-top: 80px;
  }
}

/* Services */
.home-services {
  background: #fff;
  position: relative;
}

.home-services .services-image-area-wrapper {
  display: flex;
  flex-direction: column;
}

.services .services-image-area {
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0 5% 0 8%;
}

.services .services-image-area span {
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
  color: #0c2967;
  opacity: 0.6;
}

.services .services-text {
  width: 40%;
  padding-bottom: 25px;
}

.services .services-image-area p {
  display: inline-block;
  font-size: 6.3vw;
  line-height: 1.2;
  color: #0c2967;
  font-weight: bold;
}

.services .services-image-area p img {
  margin-bottom: -24px;
}

.services .services-text-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  padding-left: 8%;
  padding-top: 7%;
  overflow: hidden;
  touch-action: pan-y;
}

.services .services-text-area img {
  object-fit: contain;
  width: 100%;
  height: 80%;
}

.services .services-text-area .item span svg {
  margin-left: 12px;
}

.owl-item {
  display: inline-block;
}

.services .services-text-area p {
  padding-top: 45px;
  /* max-width: 207px; */
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  border-top: 1px solid rgb(12 41 103 / 50%);
  width: 100%;
}

.services .services-text-area .swiper-wrapper .item {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services .services-text-area span:nth-child(3n) {
  padding-top: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  opacity: 0.6;
  color: black;
  max-width: 260px;
  display: inline-block;
  margin-bottom: 37px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  min-height: 170px;
}

.services .services-text-area .item span a svg {
  margin-left: 15px;
}

.services .services-text-area span:nth-child(4n) {
  padding-top: 40px;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  color: #0c2967;
}

.services .services-text-area a {
  display: flex;
  align-items: center;
  transition: 0.5s;
}

.services .services-text-area a svg path {
  transition: 0.5s;
}

.services .services-text-area a:hover {
  color: #dc0546;
}

.services .services-text-area a:hover path {
  fill: #dc0546;
}

.services .services-text-area-image {
  border-bottom: 1px solid rgb(12 41 103 / 50%);
  height: 65px;
  margin-bottom: -1px;
  position: relative;
  background: #dc0546;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.services .services-text-area-image:before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -19px;
  z-index: 99999;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #dc0546;
}

/* Slider */
.slider {
  position: relative;
  height: auto;
}

.slider .swiper-wrapper {
  height: auto;
}

.slider-button-next {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 30vw;
  right: 0;
  height: calc(100% - 250px);
  cursor: none;
  transition: 0.5s;
  opacity: 0;
}

.slider-button-prev {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 30vw;
  left: 0;
  height: 100%;
  cursor: none;
  transition: 0.5s;
  opacity: 0;
}

.slider-button-next svg,
.slider-button-prev svg {
  display: none;
}

.slider-button-prev:hover {
  opacity: 1;
}

.slider-button-next:hover {
  opacity: 1;
}

.slider-button-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
}

.slider-button-icon svg {
  width: 6vw;
  height: 6vw;
  transition: 0.5s;
}

.slider .swiper-horizontal {
  overflow: hidden;
  touch-action: pan-y;
}

.slider .slider-pagination {
  position: absolute;
  top: 50px;
  left: 120px;
  bottom: unset;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: auto;
}

.slider-pagination span {
  background: white;
  width: 10px;
  height: 10px;
  transition: 0.2s;
  opacity: 1 !important;
}

.slider-pagination span.swiper-pagination-bullet-active {
  border: 5px solid #dc064d;
  padding: 5px;
}

.slider-text > span {
  opacity: 0.5;
  font-weight: 400;
  font-size: 2vw;
  color: #ffffff;
  display: block;
  line-height: 1.6;
  overflow: hidden;
}

.slider-item-wrapper .slider-link {
  display: flex;
}

.slider-text > p {
  font-weight: 700;
  font-size: 2.8vw;
  line-height: 1.1;
  max-width: 40vw;
  overflow: hidden;
  color: #ffffff;
}

.slider .swiper-slide {
  height: 80vh;
  padding: 0 93px;
  transform: unset;
  overflow: hidden;
}

.slider .swiper-slide .slider-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.8s;
  filter: grayscale(1);
}

.slider .swiper-slide .slider-image > span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-text > span > span {
  display: block;
  transform: translate(0px, 100%);
  transition: 0.8s;
}

.slider-text > p > span {
  display: block;
  transform: translate(0px, 100%);
  transition: 0.8s 0.1s;
}

.swiper-slide-active .slider-text > span > span {
  transform: translate(0px, 0px);
}

.swiper-slide-active .slider-text > p > span {
  transform: translate(0px, 0px);
}

.slider .swiper-slide-active .slider-image {
  opacity: 1;
  filter: grayscale(0);
}

.slider .swiper-slide:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 41, 103, 0) 64.06%,
    #0c2967 100%
  );
  pointer-events: none;
}

.slider .swiper-slide .slider-image:after {
  content: "";
  width: 25%;
  opacity: 0;
  height: 100%;
  position: absolute;
  background: linear-gradient(to left, #0c2967, #00000000);
  transition: 0.5s;
  right: 0;
}

.slider .swiper-slide .slider-image.next-active:after {
  opacity: 1;
}

.slider .swiper-slide .slider-image.prev-active:before {
  opacity: 1;
}

.slider .slider-white-button {
  background-color: white;
  display: inline-flex;
  flex-direction: column;
  color: #0c2967;
  padding: 28px 35px;
  max-width: 22vw;
  position: relative;
  transition: 0.6s;
}

.slider .swiper-slide .slider-link > * {
  transform: scale(0.5);
  opacity: 0;
  pointer-events: none;
}

.slider .swiper-slide-active .slider-link > * {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

.slider .slider-white-button:hover,
.slider .slider-red-button:hover {
  background-color: #0c2967;
}

.slider .slider-white-button:hover p,
.slider .slider-white-button:hover span {
  color: white;
}

.slider .slider-white-button:hover i {
  border: solid white;
  border-width: 0 1px 1px 0;
}

.slider .slider-white-button p {
  color: #0c2967;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.slider .slider-white-button span {
  color: #0c2967;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  margin-top: 32px;
  max-width: 75%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slider .slider-red-button {
  background-color: #dc0546;
  display: inline-flex;
  flex-direction: column;
  color: #0c2967;
  padding: 28px 29px;
  min-width: 210px;
  margin-left: 25px;
  position: relative;
  transition: 0.8s;
}

.slider .slider-red-button p {
  color: white;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.slider .slider-red-button span {
  color: white;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  margin-top: 32px;
  max-width: 65%;
  display: inline-block;
}

.slider .slider-arrow {
  border: solid #0c2967;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 5px;
  margin-bottom: 5px;
  position: absolute;
  right: 20px;
  bottom: 27px;
}

.slider .slider-right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.slider .slider-white {
  border: solid white;
  border-width: 0 1px 1px 0;
}

.slider .slider-red-button a,
.slider .slider-white-button a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.slider .slider-items {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  height: auto;
  padding-bottom: 100px;
  justify-content: space-between;
  gap: 100px;
}

.slider-items-line {
  background: white;
  opacity: 0.2;
  width: 2px;
  z-index: 999;
  flex: 1;
  margin: 50px 0 50px 15px;
  position: relative;
}

.slider-items-line:before {
  content: "";
  background: white;
  width: 15px;
  height: 2px;
  position: absolute;
  bottom: 4px;
  left: -11px;
  z-index: 9999;
  transform: rotate(-135deg);
}

.slider-items-line:after {
  content: "";
  background: white;
  width: 15px;
  height: 2px;
  position: absolute;
  bottom: 4px;
  left: -2px;
  z-index: 9999;
  transform: rotate(135deg);
}

.slider .swiper-slide .slider-item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1500px) {
  .slider .slider-white-button p {
    font-size: 18px;
  }
}

@media screen and (max-width: 1200px) {
  .slider .slider-white-button {
    max-width: 40vw;
  }

  .slider .slider-pagination {
    left: 60px;
  }

  .slider .slider-items .slider-link {
    display: flex;
  }

  .slider-item-wrapper .slider-text span {
    font-size: 22px;
  }

  .slider .swiper-slide {
    height: 625px;
    background-size: cover;
    padding: 0 24px;
  }

  .slider-button-next,
  .slider-button-prev {
    opacity: 1;
    height: auto;
    top: 34%;
    transform: translate(0px, -50%);
    width: auto;
    padding: 20px;
  }

  .slider-button-next svg,
  .slider-button-prev svg {
    display: block;
    height: auto;
    width: 15px;
  }
}

@media screen and (max-width: 991px) {
  .slider .slider-red-button span {
    margin-top: 12px;
  }

  .slider .slider-red-button {
    padding: 20px;
    min-width: initial;
    flex: 1;
    justify-content: space-between;
    margin-left: 10px;
  }

  .slider .slider-white-button {
    padding: 20px;
    min-width: initial;
    flex: 1;
  }

  .slider .slider-red-button p {
    font-size: 17px;
  }

  .slider .slider-white-button p {
    font-size: 17px;
  }

  .slider .slider-white-button span {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .slider .slider-items {
    gap: 20px;
  }

  .slider-items-line {
    /* display: none; */
    opacity: 0;
  }

  .slider .swiper-slide .slider-item-wrapper {
    height: auto;
    flex: 1;
}

  .slider .slider-pagination {
    flex-direction: inherit;
    gap: 5px;
    left: 50%;
    top: 84vw;
    transform: translate(-50%, 0);
  }

  .slider .swiper-wrapper {background: #0c2a67;}

  .slider .slider-white-button span {
    margin-top: 18px;
  }

  .slider .slider-red-button span {
    margin-top: 18px;
  }

  .slider .swiper-slide .slider-image {
    position: relative;
    z-index: 1;
    height: 80vw;
  }

  .slider-button-next,
  .slider-button-prev {
    top: 35vw;
  }

  .slider .swiper-slide .slider-image:after {
    opacity: 1;
    left: 0;
    width: 100%;
    height: 100px;
    top: auto;
    background: linear-gradient(to top, #0c2967, #00000000);
    bottom: 0;
  }
}

/* Slider */
.clear {
  clear: both;
}

img {
  max-width: 100%;
  border: 0px;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

a:focus,
a:active,
a:visited,
a:hover {
  text-decoration: none;
  outline: none;
}

h2 {
  margin-bottom: 48px;
  padding-bottom: 16px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  position: relative;
  text-transform: capitalize;
}

h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 36px;
}

button {
  outline: none !important;
}

/******* Common Element CSS End *********/

/* -------- title style ------- */
.line-title {
  position: relative;
  width: 400px;
}

.line-title::before,
.line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
}

.line-title::before {
  width: 100%;
  background: #f2f2f2;
}

.line-title::after {
  width: 32px;
  background: #e73700;
}

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */
.game-section {
  margin-bottom: 20vh;
  padding: 4.9vw 0 0 7.3vw;
}

.circle {
  width: 80px;
  height: 80px;
  display: inline-block;
  background: #0c2967;
  border-radius: 50%;
  opacity: 0.05;
  position: absolute !important;
  top: -26px;
  left: -39px;
}

.game-section-header div {
  position: relative;
}

.game-section-header p {
  font-weight: 700;
  font-size: 120px;
  line-height: 144px;
  color: #0c2967;
  transition-delay: 0.4s;
}

.game-section-header span {
  letter-spacing: 20%;
  color: #0c2967;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
}

.game-section .owl-stage {
  margin: 15px 0;
  display: flex;
  display: -webkit-flex;
}

.game-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 3vw 10vh 0;
  position: relative;
}

.game-section .item {
  margin: 0;
  width: 320px;
  height: 400px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  background: #343434 no-repeat center center / cover;
  overflow: hidden;
  position: relative;
  transition: all 0.4s 0.4s ease-in-out;
  cursor: pointer;
}

.game-section .item.active {
  width: 32vw;
  -webkit-filter: none;
  filter: none;
  transition-delay: 0s;
}

.game-section .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.game-section .numbers {
  position: absolute;
  left: 50px;
  top: 40px;
  color: white;
  font-size: 50px;
  font-weight: 700;
}

.game-section .item-desc {
  padding: 0 50px 60px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.game-section .item.active .item-desc {
  opacity: 1;
  transition-delay: 0.4s;
}

.game-section .item-desc h3 {
  font-size: 35px;
  font-weight: 700;
  line-height: 42px;
}

.game-section .item-desc p {
  margin-bottom: 68px;
}

.game-section .owl-theme.custom-carousel .owl-dots {
  display: none;
}

/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {
  h2 {
    margin-bottom: 32px;
  }

  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }

  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px;
  }

  .game-section .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  }

  .game-section .item.active {
    width: 400px;
  }

  .game-section .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  h2 {
    margin-bottom: 32px;
  }

  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }

  .line-title {
    width: 330px;
  }

  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px 40px;
  }

  .game-section .item {
    margin: 0 12px 60px;
    width: 240px;
    height: 330px;
  }

  .game-section .item.active {
    width: 360px;
  }

  .game-section .item-desc {
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  h2 {
    margin-bottom: 20px;
  }

  h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 24px;
  }

  .line-title {
    width: 250px;
  }

  /* -------- Landing page ------- */
  .game-section {
    padding: 30px 15px 20px;
    margin-bottom: 4vw;
  }

  .game-section .item {
    margin: 0 10px 40px;
    width: 200px;
    height: 280px;
  }

  .game-section .item.active {
    width: 270px;
    box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
  }

  .game-section .item-desc {
    padding: 0 14px 5px;
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

/* Services Slider */
.services-slider {
  background-color: #0c2967;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.services-slider img {
  width: 44px;
  display: inline-block !important;
  margin-right: 10px;
}

.services-slider .owl-carousel {
  padding-left: 90px;
  width: 900px;
}

.services-slider div img {
  transition: 0.4s;
  opacity: 0.5;
  width: 40px;
  height: 47px;
  padding: 5px;
}

.services-slider .item {
  width: auto;
  display: flex;
  align-items: center;
  height: fit-content;
}

.services-slider .item:hover img,
.services-slider .item:hover span {
  opacity: 1;
}

.services-slider .owl-nav {
  position: absolute;
  right: -15vw;
  top: -15px;
}

.services-slider .owl-nav {
  position: absolute;
  right: -15vw;
  top: -15px;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: none !important;
}

.services-slider .services-item-wrapper {
  display: flex;
}

.services-slider .services-slider-closed {
  display: none;
}

.services-slider .item {
  cursor: pointer;
}

.services-slider .services-active img,
.services-slider .services-active span {
  opacity: 1;
}

.services-slider .services-active::before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #dc0546;
  padding-bottom: 26px;
  position: absolute;
  bottom: -24px;
  left: 0px;
  z-index: 2;
}

.services-slider .services-slider-header p {
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
  color: white;
  max-width: 675px;
  display: inline-block;
  opacity: 1;
  padding-top: 0;
  padding-left: 50px;
}

.services-slider p {
  opacity: 0.6;
  font-weight: 400;
  font-size: 1.3vw;
  line-height: 30px;
  color: #ffffff;
  max-width: 40vw;
  padding-left: 6vw;
  padding-top: 68px;
  z-index: 2;
  position: inherit;
}

.services-slider .owl-carousel {
  margin-bottom: 70px;
  padding-bottom: 45px;
}

.services-slider .services-detail {
  opacity: 0.6;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: #ffffff;
  max-width: 31.5vw;
  padding-left: 50px;
  padding-top: 68px;
}

.services-slider .services-slider-image {
  height: 100%;
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  position: relative;
  -webkit-mask-image: url(../img/main/serviceMask.svg);
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top left;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: 0.3s;
}

.services-slider .services-slider-image:hover {
  filter: none;
  -webkit-filter: none;
}

.services-slider .services-slider-content {
  padding-left: 6.8vw;
}

.services-slider .services-slider-header {
  position: relative;
  margin-top: 60px;
}

.services-slider .services-slider-rectangle {
  clip-path: polygon(26% 0, 100% 0%, 79% 100%, 0 100%);
  width: 258px;
  height: 95px;
  position: absolute;
  z-index: 0;
  background-color: #dc0546;
  top: 0;
  left: 23px;
}

.services-slider svg {
  position: inherit;
  z-index: 2;
  margin-right: 5px;
}

.services-slider-circle {
  width: 80px;
  height: 80px;
  display: inline-block;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.05;
  position: absolute !important;
  top: -25px;
  left: -33px;
}

.services-slider .services-slider-buttons div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.services-slider .services-slider-buttons div:nth-child(2):hover .voice-modal {
  visibility: visible;
  opacity: 1;
}

.services-slider .voice-modal img {
  width: 50%;
  opacity: 1 !important;
  object-fit: contain;
}

.services-slider .voice-modal {
  position: absolute !important;
  top: -77px;
  left: -25px;
  width: 100%;
  visibility: hidden;
  transition: 0.4s;
  opacity: 0;
  z-index: 5;
}

.services-slider .services-slider-buttons a {
  display: flex;
  align-items: center;
}

.services-slider .services-slider-buttons p {
  opacity: 1;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  padding: 10px 0 0 0;
  margin: 0;
  transition: 0.5s;
}

.services-slider .services-slider-buttons p:hover {
  opacity: 0.6;
}

.services-slider .services-slider-buttons {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  margin: 10vh 0 15vh 0;
}

.green {
  background: #35ff14;
  opacity: 0.45;
}

.services-slider span {
  color: white;
  z-index: 2;
  width: 100%;
  opacity: 0.5;
}

.services-slider .services-slider-container {
  margin-left: 4.7vw;
  width: 42%;
  overflow: hidden;
  padding-bottom: 27px;
}

.services-slider-lines {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 9.5vw;
  pointer-events: none;
  z-index: 1;
}

.services-slider-lines > span {
  width: 1px;
  display: block;
  background: linear-gradient(to top, #8e8e8e 0%, rgba(255, 255, 255, 0) 100%);
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.services-slider .services-slider-red-box {
  position: absolute;
  bottom: 100px;
  left: 6%;
  width: 227px;
  height: 227px;
  opacity: 1;
  z-index: 2;
  background: #dc0546;
  padding: 65px;
  border-radius: 24px;
}

.services-slider .services-slider-line {
  right: 200px;
  height: 1px;
  background: rgb(255 255 255 / 62%);
  position: absolute;
  z-index: 1;
  top: 170px;
  left: 98px;
}

.home-services-slider .slider-wrapper {
  height: auto;
}

.services-slider .services-slide-arrow {
  display: flex;
  gap: 24px;
  position: absolute;
  right: 22vw;
  top: 105px;
  z-index: 2;
}

.services-slider-button-prev.swiper-button-disabled {
  /* opacity: 0.5; */
  /* pointer-events: none; */
}

.services-slider .services-slide-arrow div {
  cursor: pointer;
}

.services-slider-button-next.swiper-button-disabled {
  /* opacity: 0.5; */
  /* pointer-events: none; */
}

.services-slider .services-slide-arrow div path {
  transition: 0.5s;
}

.services-slider .services-slide-arrow div:hover path {
  fill: #dc0546;
}

.services-slider .services-slider-image-area {
  flex: 1;
  position: relative;
  margin-bottom: 120px;
  margin-top: -130px;
  margin-left: 9vw;
}

.home-services-slider .swiper-slide span {
  font-size: 25px;
  transition: 0.4s;
}

.home-services-slider .services-slider-container {
  width: calc(100% - 38vw);
}

.owl-carousel {
  z-index: 4;
}

.services-slider .services-slider-line::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: white;
  z-index: 4;
  position: absolute;
  right: -10px;
  border-radius: 50%;
  bottom: -4px;
}

@media (max-width: 1750px) {
  .services-slider .services-slider-image-area {
    margin-left: 3vw;
  }
}

@media (max-width: 1600px) {
  .services-slider .services-slider-image-area {
    margin-left: 0;
    margin-bottom: 13vw;
  }

  .services-slider .services-slider-red-box {
    width: 12vw;
    height: auto;
    padding: 3vw;
  }
}

@media (max-width: 1550px) {
  .services-slider .services-slider-content {
    max-width: 50vw;
  }

  .services-slider .services-slider-header p {
    max-width: 85%;
  }

  .services-slider .services-slide-arrow svg {
    width: 29px;
  }

  .services-slider .services-slider-header p {
    font-size: 30px;
    height: 32px;
  }

  .home-services-slider .swiper-slide span {
    font-size: 22px;
  }

  .services-slider p {
    max-width: 100%;
  }

  .services-slider .services-slider-image-area {
    margin-bottom: 0;
    height: 55vw;
    margin-left: 1vw;
  }
}

/* Services page */
.services-header-container {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.services-header-container::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0c2967;
  opacity: 0.8;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.services-header-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 5vw;
  padding: 200px 0 350px 0;
  z-index: 2;
  position: relative;
}

.services-header-text-area p {
  max-width: 35.5vw;
}

.services-header-text h1 {
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
  max-width: 33.8vw;
  color: white;
  margin-bottom: 36px;
}

.services-header-button {
  margin-bottom: 30px;
}

.services-header-button span {
  padding: 10px 30px;
  background: white;
  color: #0c2967;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  position: relative;
}

.services-header-button span::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  background-color: #dc0546;
  left: 0;
  top: 0;
}

.services-header-scroll-button a {
  padding: 26px 103px 26px 36px;
  background: #dc0546;
  line-height: 36px;
  font-size: 30px;
  font-weight: 400;
  color: white;
  position: relative;
  display: inline-block;
}

.services-header-scroll-button a:hover {
  background: #ac0034;
}

.services-header-scroll-button a::before {
  content: "";
  background-image: url(../img/main/arrow-down.png);
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  right: 35px;
  top: calc(50% - 23px);
}

.services-header-text-area p {
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  color: white;
}

@media screen and (max-width: 1370px) {
  .services-header-text-area p {
    max-width: 45vw;
    font-size: 24px;
    line-height: 1.4;
  }

  .services-header-text h1 {
    font-size: 45px;
    line-height: 1.2;
  }

  .services-header-button span {
    font-size: 20px;
  }

  .services-header-scroll-button a {
    font-size: 24px;
    padding: 10px 60px 10px 20px;
  }

  .services-header-scroll-button a::before {
    right: 15px;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    top: 50%;
    transform: translate(0px, -50%);
  }
}

/* Services Products */
.services-products {
  position: relative;
  z-index: 2;
}

.services-products-item {
  display: flex;
  flex-direction: column;
}

.services-products-image-wrapper {
  position: relative;
}

.services-products-image-wrapper > img {
  width: 100%;
  transition: 0.3s;
  height: 21.5vw;
  object-fit: cover;
}

.services-products-image-wrapper svg * {
  transition: 0.3s;
}

.services-products-item:hover .services-products-image-wrapper img {
  opacity: 0.2;
}

.services-products-item:hover .services-products-image-wrapper svg * {
  stroke: #dc0646;
}

.services-v2
  .services-products-item:hover
  .services-products-image-wrapper
  svg
  * {
  fill: #dc0646;
  stroke: #fff0;
}

.services-products-image-wrapper .services-products-image-icon {
  width: 10.5vw;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.services-products-image-wrapper .services-products-image-icon svg {
  width: 10.5vw;
  height: auto;
}

.services-products-wrapper {
  margin: -200px 134px 0 134px;
  background: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 60px;
}

.services-products-item > span {
  line-height: 2.2vw;
  font-weight: 700;
  font-size: 1.84vw;
  color: #000000;
  margin: 2.47vw 0 1.8vw 0;
  transition: 0.4s;
}

.services-products-item:hover span {
  color: #dc0546;
}

.services-products-item:hover p {
  opacity: 1;
}

.services-products-item p {
  line-height: 1.26vw;
  font-weight: 400;
  font-size: 1.1vw;
  color: #000000;
  opacity: 0.6;
  max-width: 88%;
  transition: 0.4s;
}

/* Services Numbers */
.services-numbers {
  background-color: #0c2967;
  display: flex;
  justify-content: space-between;
  padding: 17.2vw 9.7vw 8.4vw 9.7vw;
  margin-top: -150px;
  gap: 20px;
  margin-bottom: 150px;
}

.services-numbers div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 3.8vw;
  border-right: 1px solid rgb(255 255 255 / 20%);
}

.services-numbers div:last-child {
  border-right: unset;
}

.services-numbers .services-number {
  flex-basis: 25%;
  font-size: 4.7vw;
  line-height: 5.6vw;
  font-weight: 700;
  color: white;
  padding-bottom: 1vw;
}

.services-numbers .services-text {
  font-size: 1.3vw;
  line-height: 1.57vw;
  font-weight: 700;
  color: white;
}

@media screen and (max-width: 1199px) {
  .services-header-wrapper {
    justify-content: space-between;
    padding: 100px 50px 300px;
  }

  .services-header-text h1 {
    font-size: 50px;
    line-height: 1.1;
    max-width: 40vw;
  }

  .services-header-text-area p {
    font-size: 24px;
    line-height: 1.3;
  }

  .services-products-wrapper {
    margin: -200px 50px 0;
    gap: 50px 30px;
  }

  .services-numbers {
    padding-top: 220px;
  }
}

@media screen and (max-width: 1023px) {
  .services-products-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-header-wrapper {
    padding: 100px 50px 300px;
  }

  .services-header-text h1 {
    font-size: 35px;
    line-height: 42px;
  }

  .services-header-text-area p {
    font-size: 20px;
    line-height: 1.3;
  }

  .services-numbers {
    margin-top: -70px;
    margin-bottom: 110px;
  }

  .services-products-item p {
    font-size: 17px;
    line-height: 1.3;
  }

  .services-products-item > span {
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (max-width: 991px) {
  .services-header-scroll-button a {
    font-size: 20px;
    padding: 10px 60px 10px 20px;
  }

   .services-numbers div:nth-child(even) {
    display: none;
}

  .services-products-image-wrapper > img {
    height: 35vw;
  }

  .services-header-scroll-button a::before {
    right: 13px;
    width: 30px;
    height: 30px;
    background-size: contain;
    top: 50%;
    transform: translate(0px, -50%);
  }

  .services-numbers {
    padding-top: 120px;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .services-header-wrapper {
    flex-direction: column;
  }

  .services-products-image-wrapper .services-products-image-icon {
    width: 30vw;
  }

  .services-products-image-wrapper .services-products-image-icon svg {
    width: 30vw;
  }

  .services-products-image-wrapper > img {
    height: 70vw;
  }

  .services-header-text h1 {
    max-width: 100vw;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .services-header-text-area p {
    max-width: 100vw;
    padding: 24px 0;
  }

  .services-numbers {
    margin-top: 0;
    flex-direction: column;
    padding: 24px 24px 0 24px;
  }

  .services-numbers div {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    border-right: unset;
    padding-bottom: 20px;
  }

  .services-header-scroll-button a {
    padding: 10px 55px 10px 20px;
  }

  .services-header-scroll-button a::before {
  }

  .services-numbers div:last-child {
    border: unset;
  }

  .services-numbers .services-number {
    font-size: 30px;
    line-height: 36px;
  }

  .services-numbers div:nth-child(even) {
    display: none;
}

  .services-numbers .services-text {
    font-size: 25px;
    line-height: 32px;
  }

  .services-header-wrapper {
    padding: 70px 24px 70px 24px;
  }

  .services-products-wrapper {
    grid-template-columns: repeat(1, 1fr);
    margin: unset;
    padding: 52px 24px;
  }

  .services-header-button span {
    font-size: 17px;
    padding: 10px 20px;
  }

  .services-products-image-wrapper svg {
    width: 50vw;
  }

  .services-products-item > span {
    font-size: 24px;
    margin: 20px 0;
  }

  .services-products-item p {
    max-width: 100%;
  }
}

/* Human Resources */
.resources-contact-wrapper {
  max-width: 38.8vw;
}

.resources-contact-wrapper h1 {
  font-weight: 400;
  font-size: 3.2vw;
  line-height: 3.89vw;
  color: white;
  margin-bottom: 62px;
}

.resources-contact-wrapper p {
  font-weight: 400;
  font-size: 1.57vw;
  line-height: 1.89vw;
  color: white;
  margin-bottom: 62px;
}

.resources-contact-wrapper span {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: white;
  opacity: 0.5;
  padding-bottom: 12px;
}

.resources-contact-wrapper a {
  font-weight: 400;
  font-size: 2.36vw;
  line-height: 2.84vw;
  color: white;
  margin-bottom: 25px;
}

.resources-header-contact {
  display: flex;
  flex-direction: column;
}

.resources-department-wrapper {
  background: white;
  padding: 5.8vw 100px 3.78vw 5.6vw;
  flex: 1;
}

.resources-department-wrapper .resources-department-header {
  font-size: 35px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 83px;
}

.resources-department-wrapper .resources-department-list a {
  line-height: 2.2vw;
  font-size: 1.84vw;
  font-weight: 400;
  color: white;
  padding-bottom: 30px;
  margin-left: 53px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgb(0 0 0 / 50%);
  display: block;
  opacity: 0.5;
  color: black;
}

.resources-department-wrapper .resources-department-list a:hover {
  opacity: 1;
}

.resources-department-wrapper div:last-child > a {
  border-bottom: unset;
  margin-bottom: unset;
  padding-bottom: unset;
}

.resources-department-wrapper div {
  position: relative;
}

.resources-department-wrapper .resources-department-list a:before {
  content: "";
  position: absolute;
  right: 0;
  width: 2.3vw;
  height: 2.3vw;
  background-size: 100% 100%;
  background-image: url("../img/main/resources-arrow-right.png");
}

.resources-department-wrapper .resources-department-list span {
  color: #dc0546;
  position: absolute;
  top: 7px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}

.resources-header-container {
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}

.resources-header-container::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #164dc1;
  mix-blend-mode: hard-light;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.resources-header-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  gap: 5vw;
  padding: 200px 0 0px 5vw;
  z-index: 2;
  position: relative;
  margin-bottom: 140px;
}

.resources-header-text-area p {
  max-width: 35.5vw;
}

.resources-header-text p {
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
  max-width: 33.8vw;
  color: white;
  margin-bottom: 36px;
}

.resources-header-button {
  margin-bottom: 30px;
}

.resources-header-button span {
  padding: 10px 30px;
  background: white;
  color: #0c2967;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  position: relative;
}

.resources-header-button span::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  background-color: #dc0546;
  left: 0;
  top: 0;
}

.resources-header-scroll-button a {
  padding: 26px 103px 26px 36px;
  background: #dc0546;
  line-height: 36px;
  font-size: 30px;
  font-weight: 400;
  color: white;
  position: relative;
}

.resources-header-scroll-button a::before {
  content: "";
  background-image: url(../img/main/arrow-down.png);
  position: absolute;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  right: 35px;
  top: calc(50% - 23px);
}

.resources-header-text-area p {
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  color: white;
}

/* Resources Slider */

.resources-slider {
  padding: 0 90px 0 93px;
  margin: 102px 0 150px 0;
  overflow: hidden;
  touch-action: pan-y;
  position: relative;
}

.resources-slider-header {
  position: relative;
}

.resources-slide-arrow {
  position: absolute;
  top: 50%;
  right: 40px;
  display: flex;
  gap: 25px;
  transform: translate(10px, -50%);
}

.resources-slide-arrow div {
  cursor: pointer;
}

.resources-slide-arrow div svg path {
  transition: 0.4s;
}

.resources-slide-arrow div svg:hover path {
  fill: #dc0546;
}

.resources-slider .swiper-wrapper .item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

.resources-slider h1 {
  margin-bottom: 3.3vw;
  color: #000000;
  font-size: 70px;
  font-weight: 700;
  line-height: 84px;
  position: relative;
  padding: 5px 0 0 20px;
}

.resources-slider h1::before {
  content: "";
  position: absolute;
  top: -16px;
  width: 26%;
  height: 110px;
  transform: skew(-20deg);
  background: #f1f1f1;
  z-index: -1;
}

.resources-slider h1 span {
  color: #dc0546;
}

.resources-slider-row {
  overflow: hidden;
  touch-action: pan-y;
  width: 100%;
  height: 25vw;
}

@media screen and (max-width: 1500px) {
  .resources-department-wrapper {
    padding: 3vw 3vw 3.78vw 3vw;
  }

  .resources-department-wrapper .resources-department-list a {
    margin-left: 33px;
  }
}

@media screen and (max-width: 1199px) {
  .resources-slider {
    margin: 40px 0 100px 0;
    padding: 0 50px 0 50px;
  }

  .services .services-image-area p img {
    max-width: 300px;
  }

  .resources-header-wrapper {
    padding-left: 50px;
  }

  .resources-department-wrapper {
    padding: 50px;
  }
}

@media screen and (max-width: 991px) {
  .resources-slider-row {
    height: 30vw;
  }

  .resources-header-wrapper {
    flex-direction: column;
    padding: 69px 50px 50px 50px;
  }

  .resources-header-container {
    background-size: cover;
  }

  .resources-contact-wrapper h1 {
    font-size: 40px;
    line-height: 46px;
  }

  .resources-contact-wrapper p {
    font-size: 25px;
    line-height: 32px;
  }

  .resources-contact-wrapper span {
    font-size: 20px;
    line-height: 24px;
  }

  .resources-contact-wrapper a {
    font-size: 32px;
    line-height: 36px;
  }

  .resources-department-wrapper .resources-department-header {
    margin-bottom: 50px;
  }

  .resources-department-wrapper .resources-department-list a {
    line-height: 30px;
    font-size: 24px;
  }

  .resources-contact-wrapper {
    max-width: 100%;
  }

  .resources-department-wrapper .resources-department-list a:before {
    width: 40px;
    height: 40px;
  }

  .resources-slider h1 {
    font-size: 45px;
    line-height: 54px;
  }

  .resources-slider h1::before {
    top: 3px;
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .resources-contact-wrapper span {
    font-size: 18px;
    line-height: 18px;
  }

  .resources-contact-wrapper a {
    font-size: 25px;
    line-height: 32px;
  }

  .resources-department-wrapper .resources-department-list a {
    margin-left: 25px;
    line-height: 33px;
    font-size: 17px;
    margin-bottom: 10px;
    padding-bottom: 15px;
  }

  .resources-header-wrapper {
    padding: 70px 24px 0px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .resources-department-wrapper .resources-department-list a:before {
    width: 25px;
    height: 25px;
    top: 4px;
  }

  .resources-slider {
    margin: 40px 0 100px 0;
    padding: 0 30px;
  }

  .resources-slider-row {
    height: 60vw;
  }

  .resources-slider h1::before {
    top: 2px;
    height: 30px;
  }

  .resources-slider h1 {
    font-size: 18px;
    line-height: 25px;
    padding: 5px 0 0 10px;
  }

  .resources-contact-wrapper h1 {
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 24px;
  }

  .resources-contact-wrapper p {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .resources-department-wrapper .resources-department-header {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 32px;
  }

  .resources-department-wrapper {
    padding: 24px;
  }

  .resources-slide-arrow {
    right: 0;
  }

  .resources-slider h1 {
    font-size: 24px;
    margin-left: -10px;
  }

  .resources-slider-header {
    margin-bottom: 30px;
  }
}

/* Resources Detail */
.resources-detail-contact-wrapper {
  max-width: 38.8vw;
}

.resources-detail-contact-wrapper h1 {
  font-size: 4.3vw;
  line-height: 1.2;
  color: white;
}

.resources-department-wrapper .resources-detail-department-header {
  color: #dc0546;
  font-size: 1.8vw;
  font-weight: 700;
  padding-left: 2.6vw;
  position: relative;
}

.resources-department-wrapper div p:first-child {
  font-weight: 700;
  font-size: 1.8vw;
  line-height: 1.2;
  margin-bottom: 2.8vw;
}

.resources-department-wrapper div p:last-child {
  font-weight: 400;
  font-size: 1.5vw;
  line-height: 1.2;
}

.resources-department-wrapper .resources-department-back {
  background-image: url("../img/main/red-arrow-left.png");
  background-repeat: no-repeat;
  z-index: 2;
  margin-bottom: 2.8vw;
  display: inline-block;
  background-size: contain;
}

@media (max-width: 1650px) {
  .resources-detail-contact-wrapper {
    max-width: 35vw;
  }
}

/* Blogs */
section.blogs {
  display: flex;
  justify-content: space-between;
  padding: 6vw 12vw 0 6vw;
  margin-bottom: 11.5vw;
}

section.blogs .blog-categories h1 {
  font-size: 3.6vw;
  line-height: 4.4vw;
  font-weight: bold;
  color: #dc0546;
  position: relative;
  text-align: center;
  margin-top: 20px;
  transition: 0.4s;
}

section.blogs .blog-categories h1:hover {
  color: #0c2967;
}

section.blogs .blog-categories h1::before {
  content: "";
  clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0 100%);
  width: 16vw;
  height: 5vw;
  position: absolute;
  z-index: -1;
  background-color: #f1f1f1;
  top: -2px;
  left: calc(50% - 8vw);
}

section.blogs .blog-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.blogs .blog-list a {
  font-size: 1.7vw;
  font-weight: 300;
  line-height: 2vw;
  color: black;
  padding-top: 30px;
}

section.blogs .blog-section-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.3vw;
  margin-bottom: 70px;
}

section.blogs .blog-section-item .blog-section-text {
  display: flex;
  flex-direction: column;
  flex-basis: 42%;
}

section.blogs .blog-section-item .blog-section-text span {
  padding: 10px;
  background-color: #0c2967;
  color: white;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  display: inline-block;
  width: fit-content;
}

section.blogs .blog-section-item .blog-section-image {
  width: 22vw;
  min-height: 230px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  transition: 0.3s;
}

section.blogs .blog-section-item > a {
  overflow: hidden;
}

section.blogs .blog-section-item > a:hover .blog-section-image {
  transform: scale(1.1);
}

section.blogs .blog-section-item .blog-section-image span {
  position: absolute;
  right: 15px;
  bottom: -1vw;
  font-size: 5.5vw;
  font-weight: 700;
  color: white;
}

section.blogs .blog-section-item .blog-section-text a {
  color: #000000;
  font-weight: 700;
  font-size: 2vw;
  line-height: 2.5vw;
  margin: 24px 0;
  display: inline-block;
  width: 100%;
}

section.blogs .blog-section-item .blog-section-text a:hover {
  color: #dc0546;
}

section.blogs .blog-section-item .blog-section-text p {
  color: #000000;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  width: 88%;
}

.blog-subscribe {
  background: #0c2967;
  margin-top: 3.2vw;
  padding: 2.6vw 4.3vw 2.6vw 2.6vw;
  width: 24.5vw;
}

.blog-subscribe svg {
  margin-bottom: 40px;
}

.blog-subscribe h2 {
  color: white;
  font-size: 2.1vw;
  line-height: 2.5vw;
  font-weight: 700;
  position: relative;
}

.blog-subscribe h2::after {
  content: "";
  background: white;
  width: 22.5%;
  height: 4px;
  position: absolute;
  bottom: -20px;
  left: 0;
}

section.blogs .blogs-submit-button {
  width: 100%;
  background: white;
  border: unset;
  padding: 22px 0;
  color: #dc0546;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  transition: 0.4s;
}

section.blogs .blogs-submit-button:hover {
  background-color: #dc0546;
  color: white;
}

section.blogs input[type="text"] {
  width: 100%;
  padding: 22px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 2px solid white;
  box-sizing: border-box;
  background: #0c2967;
  color: white;
  transition: 0.4s;
  outline: none;
}

input[type="text"]:hover {
  border-radius: 0;
}

section.blogs input[type="text"]::placeholder {
  color: white;
  opacity: 1;
  /* Firefox */
}

section.blogs input[type="text"]:-ms-input-placeholder {
  color: white;
  opacity: 1;
  /* Firefox */
}

section.blogs input[type="text"]::-ms-input-placeholder {
  color: white;
  opacity: 1;
  /* Firefox */
}

section.blogs svg {
  width: 4.5vw;
}

section.blogs .blogs-mobil-header,
section.blogs .blog-list-mobile {
  display: none;
}

@media (hover: hover) {
  section.blogs .blog-list a:hover {
    color: #dc0646;
  }
}

@media screen and (max-width: 1440px) {
  section.blogs {
    padding: 6vw 6vw 0 6vw;
  }
}

@media screen and (max-width: 1200px) {
  section.blogs .blog-section-item .blog-section-text {
    flex: 0.9;
  }

  section.blogs input[type="text"] {
    font-size: 15px;
    padding: 10px 20px;
  }

  section.blogs .blogs-submit-button {
    padding: 10px 0;
  }

  section.blogs {
    padding: 4vw 4vw 0 4vw;
  }

  section.blogs .blog-section-item .blog-section-text p {
    font-size: 13px;
  }

  section.blogs .blog-section-item {
    max-width: 90%;
    margin: 0 auto 50px;
  }

  section.blogs .blog-section-item .blog-section-text span {
    padding: 7px;
    font-size: 15px;
  }

  .blog-subscribe svg {
    margin-bottom: 10px;
    height: auto;
  }

  .blog-subscribe h2 {
    padding-bottom: 0;
    margin-bottom: 20px;
  }

  .blog-subscribe {
    padding: 14px;
  }

  section.blogs .blog-section-item .blog-section-image {
    min-height: 180px;
    width: 25vw;
  }
}


@media screen and (max-width: 991px) {
  .resources-detail-contact-wrapper {
    max-width: 70vw;
  }
}
@media screen and (max-width: 768px) {
  section.blogs input[type="text"] {
    padding: 10px 15px;
    font-size: 12px;
    margin-top: 25px;
  }

  section.blogs .blog-list a {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  section.blogs {
    flex-direction: column;
    padding-bottom: 70px;
  }

  .blog-section-item a {
    width: 100%;
  }

  .blog-subscribe h2 {
    font-size: 25px;
    line-height: 32px;
  }

  section.blogs h1.blogs-mobil-header {
    display: block;
    color: white;
    font-size: 21px;
    background: #0c2967;
    padding: 20px 0;
  }

  section.blogs .blog-list,
  section.blogs .blog-header {
    display: none;
  }

  section.blogs .blog-list-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    background: rgb(12 41 103 / 98%);
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 10;
    padding-top: 28%;
    overflow-y: auto;
    padding-bottom: 100px;
    overflow-x: hidden;
  }

  section.blogs .blog-list-mobile .blog-list-close-button::before {
    content: "";
    position: absolute;
    right: calc(50% - 12.5px);
    top: 8%;
    width: 25px;
    height: 3px;
    transform: rotate(45deg);
    z-index: 11;
    background: white;
  }

  section.blogs .blog-list-mobile .blog-list-close-button::after {
    content: "";
    position: absolute;
    right: calc(50% - 12.5px);
    top: 8%;
    width: 25px;
    height: 3px;
    transform: rotate(-45deg);
    z-index: 11;
    background: white;
  }

  section.blogs .blog-list-mobile a {
    display: block;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    color: white;
  }

  .blog-subscribe {
    width: 100%;
  }

  section.blogs svg {
    width: 50px;
  }

  .blog-subscribe h2 {
    font-size: 25px;
    line-height: 32px;
  }

  section.blogs .blog-section-item {
    flex-direction: column;
  }

  section.blogs .blog-section-item .blog-section-image {
    width: 100%;
    margin-bottom: 10px;
  }

  section.blogs .blog-section-item {
    max-width: 100%;
  }

  section.blogs .blog-section-item .blog-section-image span {
    bottom: -3vw;
    right: 10px;
    font-size: 14vw;
  }

  section.blogs .blog-section-item .blog-section-text a {
    font-size: 25px;
    line-height: 32px;
    margin: 10px 0px;
  }

  section.blogs .blog-categories h1::before {
    width: 70%;
    height: 110%;
    top: 0px;
    left: calc(15%);
  }

  .blog-list {
    margin-bottom: 30px;
  }

  section.blogs .blog-section-item .blog-section-text p {
    font-size: 17px;
    line-height: 1.3;
  }

  .blog-subscribe {
    padding: 24px;
  }

  section.blogs input[type="text"] {
    padding: 10px 20px;
    font-size: 15px;
    margin-top: 25px;
  }

  section.blogs .blogs-submit-button {
    padding: 10px 0;
  }

  section.blogs .blog-section-item .blog-section-image {
    min-height: 200px;
  }
}

/* Blog Detail */
.blog-detail-image {
  display: flex;
  padding: 6vw 6vw 0 6vw;
  overflow: hidden;
  gap: 70px;
}

.blog-detail-image-area-wrapper {
  flex: 1;
}

.blog-detail-image .blog-detail-image-area {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 500px;
  height: 550px;
  width: 100%;
  position: relative;
  margin-top: -60px;
}

.blog-detail-image .blog-detail-wrapper {
  background-color: white;
  display: flex;
  width: 53vw;
  padding: 50px 0 50px 3.3vw;
  position: absolute;
  bottom: -50px;
  justify-content: space-between;
}

.blog-detail-image .blog-detail-header {
  display: flex;
  flex-direction: column;
}

.blog-detail-image .blog-detail-header h1 {
  max-width: 475px;
  margin-top: 32px;
  color: black;
  font-size: 2.1vw;
  line-height: 2.5vw;
  font-weight: 700;
}

.blog-detail-image .blog-detail-header div a {
  color: white;
  padding: 8px;
  background-color: #0c2967;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  margin-right: 10px;
  transition: 0.4s;
}

.blog-detail-image .blog-detail-header div a:hover {
  opacity: 0.6;
}

.blog-detail-image .blog-categories h1 {
  font-size: 3.6vw;
  line-height: 4.4vw;
  font-weight: bold;
  color: #dc0546;
  position: relative;
  text-align: center;
  margin-top: 35px;
}

.blog-detail-image .blog-categories h1::before {
  content: "";
  clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0 100%);
  width: 16vw;
  height: 5vw;
  position: absolute;
  z-index: -1;
  background-color: #f1f1f1;
  top: -2px;
  left: calc(50% - 8vw);
}

.blog-detail-image .blog-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-detail-image .blogs-mobil-header,
.blog-detail-image .blog-list-mobile {
  display: none;
}

.blog-detail-image .blog-list a {
  font-size: 1.7vw;
  font-weight: 300;
  line-height: 2vw;
  color: black;
  padding-top: 30px;
  transition: 0.4s;
}

.blog-detail-image .blog-list a:hover {
  color: #dc0546;
}

.blog-page-subscribe {
  background: #0c2967;
  margin-top: 3.2vw;
  padding: 2.6vw 4.3vw 2.6vw 2.6vw;
  width: 24.5vw;
}

.blog-page-subscribe input[type="text"]::placeholder {
  color: white;
  opacity: 1;
  /* Firefox */
}

.blog-page-subscribe svg {
  margin-bottom: 40px;
  width: 4.5vw;
}

.blog-page-subscribe h2 {
}

.blog-page-subscribe h2::after {
}

.blog-page-subscribe input[type="text"] {
  width: 100%;
  padding: 22px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 2px solid white;
  box-sizing: border-box;
  background: #0c2967;
  color: white;
  outline: none;
  transition: 0.4s;
}

.blog-page-subscribe input[type="text"]:hover,
.blog-page-subscribe input[type="text"]:focus,
.blog-page-subscribe input[type="text"].active {
  border-color: #dc0546;
}

.blogs input[type="text"]:hover,
.blogs input[type="text"]:focus,
.blogs input[type="text"].active {
  border-color: #dc0546;
}

.blog-page-subscribe .blogs-submit-button {
  width: 100%;
  background: white;
  border: unset;
  font-size: 15px;
  padding: 22px 0;
  margin-top: 0px;
  font-weight: bold;
  color: #dc0546;
  transition: 0.4s;
  cursor: pointer;
}

.blog-page-subscribe .blogs-submit-button:hover {
  color: white;
  background-color: #dc0546;
}

.blog-detail-image .blog-detail-social-media .blog-detail-image-twitter-count {
  background: #429dec;
  padding: 6px 11px;
  font-size: 15px;
  line-height: 18px;
  height: 30px;
  color: white;
  display: block;
}

.blog-detail-image .blog-detail-social-media a {
  display: inline-block;
  height: fit-content;
}

.blog-detail-image .blog-detail-social-media .blog-detail-image-facebook-count {
  background: #3169c5;
  padding: 6px 11px;
  font-size: 15px;
  line-height: 18px;
  height: 30px;
  color: white;
  display: block;
}

.blog-detail-image .blog-detail-social-media {
  display: flex;
  position: relative;
  margin-right: 4.7vw;
}

.blog-detail-image svg {
  margin-right: 5px;
}

.blog-detail-image .blog-detail-date {
  position: absolute;
  top: 60px;
  right: 0;
}

.blog-detail-image .blog-detail-text {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 0 3.3vw;
  flex-direction: column;
}

.blog-detail-image .blog-detail-text p {
  font-weight: 100;
  font-size: 20px;
  line-height: 1.3;
  color: black;
  opacity: 0.6;
  margin-bottom: 10px;
}

.blog-detail-image .blog-detail-other-links {
  margin-top: 5.5vw;
  margin-left: 3.3vw;
  background: #f1f1f1;
  padding: 10px 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-detail-image .blog-detail-other-links div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translate(0px, -50%);
  gap: 10px;
}

.blog-detail-image .blog-detail-other-links div a {
  background: #0c2967;
  padding: 10px 1.8vw;
  color: white;
  position: relative;
  font-size: 1.3vw;
  display: block;
  word-wrap: break-word;
}

.blog-detail-image .blog-detail-other-links div a:hover {
  background: #dc0546;
}

.blog-detail-image .blog-detail-other-links h1 {
  font-weight: 400;
  font-size: 1.3vw;
  line-height: 1.57vw;
}

.blog-detail-image .blog-detail-other-links div a::before {
  content: "";
  background: #dc0546;
  width: 100%;
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 5px;
}

.blog-detail-image .blog-detail-media a {
  width: 100%;
  height: 18vw;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blog-detail-image .blog-detail-media a:hover {
  opacity: 0.8;
}

.blog-detail-image .blog-detail-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 70px 0 0 3.3vw;
}

@media screen and (max-width: 1500px) {
  .blog-detail-image .blog-detail-other-links div a {
    font-size: 15px;
  }

  .blog-detail-image .blog-detail-other-links div {
  }
}

@media screen and (max-width: 1366px) {
  .blog-detail-image .blog-detail-other-links div {
  }

  .blog-detail-image .blog-detail-other-links div a {
    font-size: 13px;
  }
}

@media screen and (max-width: 1199px) {
  .blog-detail-image .blog-detail-wrapper {
    width: 80vw;
  }

  h1.blogs-mobil-header {
    display: block;
    color: white;
    font-size: 24px;
    background: #0c2967;
    padding: 20px 0;
    margin-bottom: 35px;
  }

  .blog-detail-image .blog-detail-image-area {
    margin-top: 0;
  }

  .blog-page-subscribe input[type="text"] {
    font-size: 15px;
    padding: 10px 20px;
  }

  .blog-page-subscribe .blogs-submit-button {
    padding: 10px 0;
  }

  .blog-detail-image .blog-detail-text {
    margin: 50px 0 0 0;
  }

  .blog-detail-image .blog-list a {
  }

  .blog-list-mobile .blog-list-close-button::before {
    content: "";
    position: absolute;
    right: calc(50% - 12.5px);
    top: 8%;
    width: 25px;
    height: 3px;
    transform: rotate(45deg);
    z-index: 11;
    background: white;
  }

  .blog-list-mobile .blog-list-close-button::after {
    content: "";
    position: absolute;
    right: calc(50% - 12.5px);
    top: 8%;
    width: 25px;
    height: 3px;
    transform: rotate(-45deg);
    z-index: 11;
    background: white;
  }

  .blog-list-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    background: rgb(12 41 103 / 98%);
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 10;
    padding-top: 28%;
  }

  .blog-page-subscribe svg {
    width: 50px;
    margin-bottom: 15px;
  }

  .blogs-submit-button,
  input[type="text"] {
    font-size: 25px;
  }

  .blog-page-subscribe {
    /* margin: 60px 40px 15px; */
    padding: 14px;
  }

  .blog-page-subscribe h2 {
  }

  .blog-detail-image .blog-detail-other-links div a {
    font-size: 14px;
  }

  .blog-detail-image {
    gap: 40px;
  }

  .blog-detail-image .blog-detail-wrapper {
    flex-direction: column;
    padding-left: 0;
  }

  .blog-detail-image .blog-detail-other-links {
    margin-top: 7.5vw;
  }

  .blog-detail-image .blog-detail-header h1 {
    font-size: 25px;
    line-height: 32px;
  }

  .blog-detail-image .blog-detail-header {
    margin-bottom: 20px;
  }

  .blog-detail-image .blog-detail-text p {
    font-size: 20px;
  }

  .blog-detail-image .blog-detail-date {
    top: 45px;
    left: 0;
  }

  .blog-detail-image .blog-detail-other-links h1 {
  }

  .blog-detail-image .blog-detail-media a {
    height: 27vw;
  }

  .blog-detail-image .blog-detail-other-links {
    margin-left: 0;
    margin-top: 7.5vw;
    padding: 0 30px;
  }

  .blog-detail-image .blog-detail-media {
    margin: 50px 0 0 0;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .blog-detail-image .blog-list,
  .blog-detail-image .blog-header {
    display: none;
  }

  .blog-detail-image .blog-categories h1 {
    color: white;
  }

  .blog-detail-image .blog-detail-text p {
    font-size: 17px;
    line-height: 1.3;
  }

  .blog-detail-image {
    flex-direction: column;
  }

  .blog-detail-image .blogs-mobil-header {
    display: block;
  }

  .blog-detail-image {
    gap: 0;
  }

  .blog-detail-image .blog-detail-image-area {
    max-height: 69vw;
    align-items: flex-end;
    display: flex;
  }

  .blog-detail-image .blog-detail-wrapper {
    width: 60vw;
    bottom: 0;
    position: relative;
  }

  .blog-page-subscribe {
    width: auto;
    margin: 50px 50px 0;
    padding: 32px;
  }

  .blog-page-subscribe h2 {
    font-size: 4vw;
    line-height: 1.2;
    max-width: 60vw;
  }

  .blog-page-subscribe input[type="text"] {
    font-size: 18px;
    padding: 20px;
    margin-top: 30px;
  }

  .blog-page-subscribe .blogs-submit-button {
    padding: 20px;
    font-size: 19px;
  }

  .blog-detail-image .blog-detail-other-links h1 {
    font-size: 2.2vw;
  }

  .blog-detail-image .blog-list a {
    display: block;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    color: white;
  }
}

@media screen and (max-width: 767px) {
  .blog-detail-image .blog-detail-other-links div {
    padding: 10px;
    transform: translate(0px, 0px);
    grid-template-columns: repeat(1, 1fr);
  }

  .blog-detail-image .blog-detail-wrapper {
    bottom: -210px;
    width: 90%;
    padding: 0;
  }

  .blog-detail-image svg {
    width: 30px;
  }

  .blog-detail-image .blog-detail-text {
    margin: 260px 0 0 0;
  }

  .blog-page-subscribe {
    width: 88%;
    margin: 24px;
    padding: 24px;
  }

  .blog-page-subscribe input[type="text"] {
    font-size: 15px;
    padding: 10px 20px;
  }

  .blog-detail-image .blog-detail-other-links {
    margin-top: 50px;
    display: block;
    padding: 24px;
  }

  .blog-detail-image .blog-detail-other-links div a {
    font-size: 4vw;
    text-align: center;
  }

  .blog-detail-image .blog-detail-text {
    flex-direction: column;
  }

  .blog-detail-image .blog-detail-media a {
    height: 40vw;
  }

  .blog-page-subscribe .blogs-submit-button {
    font-size: 15px;
    padding: 10px 0;
  }

  .blog-detail-image .blog-categories h1 {
    margin: 24px 0;
    font-size: 19px;
  }

  .blog-page-subscribe h2 {
    font-size: 25px;
    line-height: 32px;
  }

  .blog-detail-image .blog-detail-media {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-detail-image .blog-detail-other-links h1 {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 15px;
  }
}

/* Resources Form */
.form-kvkk {
  color: #000;
  display: flex;
  height: 45.5px;
  gap: 20px;
  margin: 35px 0;
}

.form-kvkk input {
  border: none;
  outline: none;
  border-bottom: 1px solid #ccc;
  padding-left: 20px;
}

.submit-button .submit {
  padding: 13px 30px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  justify-content: center;
  gap: 16px;
  transition: 0.4s;
}

.submit-button .submit::before {
}

.career .submit-button .form-group > .submit:hover {
  opacity: 0.6;
  /* color: white; */
  /* background: #0c2967; */
}

.career .submit-button .form-group > .submit:hover path {
}

.career .submit-button .form-group > .submit:hover input {
}

.career .submit-button .form-group > div path {
  transition: 0.4s;
}

.submit-button input[type="submit"] {
  border: none;
  outline: none;
  background: none;
  color: #0c2967;
  font-size: 30px;
  font-weight: 400;
  cursor: pointer;
}

.submit-button b {
  color: #0c2967;
  margin-left: 12px;
}

.submit-button span {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  transition: 0.4s;
}

.submit-button span:hover {
  color: #0c2967;
}

.form-kvkk input::placeholder {
  color: black;
}

.form-kvkk input::before {
  content: "";
  width: 146px;
  height: 150px;
  position: absolute;
  border-bottom: 1px solid #ccc;
  background: red;
  right: 0;
  z-index: 99999999;
}

.form-kvkk input::after {
  content: "";
  width: 146px;
  height: 150px;
  position: absolute;
  border-bottom: 1px solid #ccc;
  background: red;
  right: 0;
  z-index: 99999999;
}

.submit-button .form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.form-kvkk b {
  color: red;
}

/* About Ust */
.about-us-banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 42vw;
  margin: 90px 0 0 34vw;
  width: 55%;
  position: relative;
}

.about-us-banner div {
  position: absolute;
  left: -22vw;
  top: 50%;
  transform: translate(0px, -50%);
  background: white;
  padding: 50px 40px 51px 0;
  width: 32vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.about-us-banner div h1 {
  font-size: 3.6vw;
  line-height: 4.4vw;
  color: #0c2967;
  font-weight: 700;
  text-align: right;
  position: relative;
  z-index: 2;
}

.about-us-banner div h1::before {
  content: "";
  position: absolute;
  width: 23vw;
  top: 0.5vw;
  right: -19px;
  height: 3.6vw;
  clip-path: polygon(6% 0, 100% 0%, 94% 100%, 0 100%);
  background: #f1f1f1;
  z-index: 0;
}

.about-us-banner div h1 span {
  color: #dc0546;
  position: relative;
}

.about-us-banner .about-us-number {
  color: #dc0546;
  font-weight: 700;
  font-size: 3.6vw;
  line-height: 4.4vw;
}

.about-us-banner .about-us-service {
  color: #dc0546;
  font-weight: 400;
  font-size: 1.3vw;
  line-height: 1.57vw;
  text-align: right;
  width: 50%;
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.about-us-banner a {
  background: #0c2967;
  padding: 21px 5.3vw 21px 35px;
  color: white;
  font-size: 1.57vw;
  line-height: 1.89vw;
  position: relative;
  margin-top: 50px;
}

.about-us-item:hover {
  background: #0c29671f;
}

.about-us-banner a:hover {
  background: #071e4e;
}

.about-us-banner a::before {
  content: "";
  background-image: url(../img/main/arrow-down-red.png);
  position: absolute;
  width: 2.4vw;
  height: 2.4vw;
  background-size: cover;
  right: 16%;
  top: 18px;
}

.about-us-text h2 {
  color: #0c2967;
  font-size: 3.1vw;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  margin: 170px 16vw 4.2vw 16vw;
}

.about-us-text p {
  margin: 0 8.1vw 15px 10.4vw;
  font-size: 1.5vw;
  line-height: 1.4;
  font-weight: 400;
  color: #000000;
}

.about-us-tab {
  padding: 0 11vw 8vw 11vw;
  background: #f1f1f1;
  margin-top: 10vw;
}

.about-us-item-detail img {
  width: 100px;
  height: 100px;
}

.about-us-item-detail {
  margin: 5.5vw 0 0 8.5vw;
  display: flex;
  gap: 6vw;
}

.about-us-item.active {
  background: #0c2967;
}

.about-us-item.active span {
  color: white;
}

.about-us-item.active img {
  filter: grayscale(1) brightness(1.5) invert(1);
}

.about-us-tab-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 27px;
  background: #f1f1f1;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 40px 0;
  cursor: pointer;
  transition: 0.3s;
}

.about-us-tab .about-us-tab-wrapper .about-us-item img {
  height: 35px;
  max-width: 50px;
}

.about-us-item-detail p {
  font-size: 2vw;
  line-height: 1.2;
  color: #000;
  font-weight: 300;
  flex-basis: 69%;
}

@media screen and (max-width: 991px) {
  .about-us-item {
    padding: 25px 0;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .about-us-item {
    gap: 15px;
    padding: 20px 0;
  }
}

.we-slider {
  background: #f1f1f1;
  margin-bottom: 8vw;
  padding-bottom: 8vw;
  padding-left: 5vw;
}

.we-slider-row {
  overflow: hidden;
  touch-action: pan-y;
  width: 100%;
}

.we-slider-row .we-slider-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 30vw;
  width: 44vw;
  flex-basis: 45%;
  position: relative;
}

.we-slider-row .swiper-wrapper {
  background-color: #f1f1f1;
}

.we-slider-row .item {
  display: flex;
  gap: 5vw;
  align-items: center;
}

.we-slide-header {
  font-weight: 700;
  font-size: 35px;
  line-height: 42px;
  color: #0c2967;
  margin-bottom: 3vw;
  max-width: 473px;
  position: relative;
  padding-left: 94px;
}

.we-slide-header svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.we-slide-header::before {
  content: "";
  clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0 100%);
  width: 50%;
  position: absolute;
  z-index: -1;
  height: 78px;
  left: 0;
  top: 0px;
  background: #ffffff;
}

.we-slider-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: 6vw;
}

.we-slide-text {
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: #0c2967;
  opacity: 0.6;
  max-width: 95%;
  margin-bottom: 4.5vw;
}

.we-slide-arrow {
  display: flex;
  gap: 35px;
}

.we-slide-date {
  font-size: 10.7vw;
  font-weight: 700;
  position: absolute;
  right: -0.9vw;
  bottom: -1.7vw;
  color: white;
}

.we-slide-arrow div {
  cursor: pointer;
}

@media screen and (max-width: 1440px) {
  .we-slide-text {
    max-width: 90%;
  }
}

@media screen and (max-width: 1024px) {
  .about-us-item-detail p {
    font-size: 18px;
    line-height: 24px;
  }

  .about-us-text h2 {
  }

  .about-us-text p {
  }

  .about-us-banner a {
    margin-top: 15px;
    padding: 10px 4.3vw 10px 25px;
  }

  .about-us-banner a::before {
    right: 10%;
    top: 9px;
  }

  .about-us-text h2 {
    margin-top: 100px;
  }

  .we-slide-date {
    right: -6px;
    bottom: -12px;
    font-size: 75px;
  }

  .we-slider {
    padding-bottom: 4vw;
  }

  .we-slide-header {
    font-size: 24px;
    line-height: 32px;
    max-width: 100%;
    padding-left: 10vw;
    margin-bottom: 2vw;
  }

  .we-slider-row .we-slider-image {
  }

  .we-slide-header::before {
    height: 65px;
  }

  .we-slide-text {
    max-width: 95%;
    font-size: 17px;
    line-height: 1.3;
  }

  .we-slider-row {
    height: 33vw;
  }
}

@media screen and (max-width: 767px) {
  .about-us-banner .about-us-service {
    font-size: 20px;
    line-height: 31px;
    text-align: left;
    width: 90%;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-top: 0;
  }

  .about-us-item-detail {
    margin: 5.5vw 0 0 0;
  }

  .we-slider-text {
    margin-top: 15px;
  }

  .about-us-banner {
    margin: 330px 24px 0;
    width: auto;
    height: 68vw;
  }

  .about-us-banner div {
    left: 0vw;
    top: -170px;
    width: 92vw;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 20px 0;
  }

  .about-us-text p {
    font-size: 17px;
    margin: 0 24px;
    line-height: 1.3;
  }

  .about-us-banner a {
    padding: 18px 12.3vw 18px 18px;
    font-size: 18px;
    margin-top: 15px;
  }

  .about-us-banner a::before {
    right: 10%;
    top: 10px;
    width: 22px;
    height: 22px;
  }

  .about-us-text h2 {
    font-size: 26px;
    margin: 24px;
    line-height: 1.2;
  }

  .about-us-banner div h1 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 5px;
    text-align: left;
  }

  .about-us-banner div h1::before {
    width: 43vw;
    top: 0.5vw;
    left: 20px;
    height: 30px;
    z-index: -1;
  }

  .about-us-banner .about-us-number {
    font-size: 24px;
    line-height: 32px;
    margin-right: 15px;
  }

  .we-slide-arrow div svg {
    width: 25px;
    height: 25px;
  }

  .we-slide-arrow {
    gap: 25px;
  }

  .we-slider {
    padding-left: 24px;
    padding-bottom: 0;
    padding-top: 80px;
  }

  .about-us-tab-wrapper {
    flex-wrap: wrap;
  }

  .we-slider-row .item {
    flex-direction: column;
  }

  .we-slide-text {
    font-size: 17px;
    line-height: 1.3;
    margin: 10px 0 30px;
  }

  .we-slide-header {
    padding-left: 18vw;
  }

  .we-slider-row .we-slider-image {
    height: 41vh;
    width: 90vw;
  }

  .we-slider-row {
    height: 75vh;
  }

  .we-slide-date {
    right: -4px;
    bottom: -8px;
    font-size: 45px;
  }

  .about-us-tab {
    padding: 0 25px;
  }

  .about-us-item-detail img {
    display: none;
  }

  .about-us-item-detail p {
    font-size: 17px;
    line-height: 1.3;
    flex-basis: 95%;
  }

  .about-us-item {
    flex: 1;
    flex-basis: 50%;
  }

  .about-us-item span {
    font-size: 17px;
    line-height: 1.2;
  }
}

/* Mobil Menu */

.header-mobile-menu {
  top: 87px;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 40px;
  background: #0c2967;
  position: fixed;
  overflow: hidden scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.header-mobile-menu .mobil-menu {
  margin-top: 50px;
  text-align: center;
  overflow: hidden scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.header-mobile-menu .mobil-menu::-webkit-scrollbar {
  display: none;
}

.header-mobile-menu .header-mobil-menu-item {
  color: white;
  font-size: 24px;
  margin-bottom: 24px;
}

.header-mobile-menu li.sub-item a {
  position: relative;
}

.header-mobile-menu .mobil-sub-menu {
}

.header-mobile-menu .sub-item.active .sub-item-link:after {
  transform: rotate(180deg);
}

.header-mobile-menu .sub-item .sub-item-link:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  z-index: 5;
  left: 0px;
  bottom: -10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: rgba(255, 255, 255, 0.1);
  visibility: hidden;
}

.header-mobile-menu .sub-item .sub-item-link {
}

.header-mobile-menu .sub-item .sub-item-link:after {
  content: "";
  transition: 0.4s;
  width: 30px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/main/mobil-menu-down-arrow.svg);
  display: block;
}

.mobil-menu-footer {
  margin-top: 50px;
}

.header-mobile-menu .mobil-sub-menu {
  display: none;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}

.header-mobile-menu .mobile-menu-social-media {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.header-mobile-menu .mobile-menu-social-media svg {
  opacity: 0.6;
  transition: 0.4s;
  width: 30px;
  height: 30px;
}

.header-mobile-menu .mobile-menu-social-media svg:hover {
  opacity: 1;
}

.header-mobile-menu .mobile-menu-language a {
  opacity: 0.6;
  transition: 0.4s;
}

.header-mobile-menu .mobile-menu-language a:hover {
  opacity: 1;
}

.header-mobile-menu .mobile-menu-language a.active {
  opacity: 1;
}

.header-mobile-menu .header-mobil-menu-item a {
  display: inline-flex;
  align-items: center;
  padding: 5px 0;
  gap: 20px;
  transition: 0.4s;
}

.header-mobile-menu .header-mobil-menu-item a:hover {
  opacity: 0.6;
}

.header-mobile-menu .header-mobil-menu-item .mobil-sub-menu a {
  font-size: 3vw;
  padding: 10px 0;
  margin: 3px 0;
}

.header-mobile-menu .mobile-menu-language {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 27px;
}

.header-mobile-menu .mobile-menu-contact {
  display: flex;
  justify-content: space-around;
  margin: 27px 0;
  gap: 20px;
}

.header-mobile-menu .mobile-menu-contact a {
  color: white;
  font-size: 4.5vw;
  transition: 0.4s;
}

.header-mobile-menu .mobile-menu-contact a:hover {
  opacity: 0.6;
}

@media screen and (min-width: 768px) {
  .header-mobile-menu {
    top: 107px;
  }

  .header-mobile-menu .mobile-menu-contact {
    justify-content: center;
    gap: 32px;
  }

  .mobile-menu-social-media img,
  .mobile-menu-language img {
    width: 32px;
  }

  .header-mobile-menu .mobile-menu-contact a {
    font-size: 22px;
  }

  .header-mobile-menu .header-mobil-menu-item {
    font-size: 4vw;
    margin-bottom: 5vw;
  }
}

@media screen and (max-width: 767px) {
  .header-mobile-menu .header-mobil-menu-item .mobil-sub-menu a {
    font-size: 5vw;
    padding: 5px 0;
    margin: 5px 0;
  }

  .header-mobile-menu .sub-item .sub-item-link:after {
    width: 20px;
    height: 10px;
  }
}

/* Slide Btn */
.slide-btn {
  width: 76px;
  height: 76px;
  border: 1px solid #000000;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  transition: 0.4s;
  top: 47%;
  -webkit-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  z-index: 2;
  background: #fff;
}

.slide-btn.btn-prev {
  left: 0;
}

.slide-btn.btn-next {
  right: 0;
}

@media (max-width: 1470px) {
  .slide-btn {
    width: 65px;
    height: 65px;
  }

  .slide-btn svg {
    height: auto;
    width: 11px;
  }
}

@media (max-width: 1199px) {
  .slide-btn {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 767px) {
  .slide-btn {
    width: 40px;
    height: 40px;
  }

  .slide-btn svg {
    width: 8px;
  }
}

/* Swiper Pagination */
.swiper .swiper-pagination {
  position: relative;
  top: 0;
  bottom: 0;
  margin-top: 35px;
}

.swiper .swiper-pagination > span {
  width: 13px;
  height: 13px;
  background: #fff;
  border: 1px solid #dc0546;
}

.swiper .swiper-pagination > span.swiper-pagination-bullet-active {
  background: #dc0546;
}

/* Useful Information */
.useful-information-page {
  padding: 50px 100px 80px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.useful-information-page .info-menu {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 26vw;
  margin-right: 70px;
  border: 1px solid rgba(12, 41, 103, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 5.2vw 24px 4.5vw;
}

.useful-information-page .info-menu span {
  font-weight: 700;
  font-size: 33px;
  color: #0c2967;
  position: relative;
  display: block;
  width: 90%;
  max-width: 250px;
}

.useful-information-page .info-menu span:after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  background: #dc0546;
  margin: 50px 0 30px;
}

.useful-information-page .info-menu ul {
  list-style: none;
  padding: 0;
  width: 90%;
  max-width: 250px;
}

.useful-information-page .info-menu ul li {
}

.useful-information-page .info-menu ul li a {
  font-weight: 500;
  font-size: 1.5vw;
  color: #0c2967;
  display: inline-block;
  text-decoration: none;
  padding: 10px 0;
  margin: 15px 0;
  transition: 0.4s;
  line-height: 1.2;
}

.useful-information-page .info-menu ul li a:hover {
  color: #dc0546;
}

.useful-information-page .info-menu ul li .active {
  color: #dc0546;
}

.useful-information-page .info-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}

.useful-information-page .info-content.info {
  overflow: unset;
}

.useful-information-page .info-content .content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 120px;
}

.useful-information-page .info-content .content-header .header-title {
  margin-right: 100px;
  font-weight: 600;
  color: #0c2967;
  font-size: 1.5vw;
  line-height: 1.3;
  width: 50%;
  position: relative;
}

.useful-information-page .info-content .content-header p {
  max-width: 31vw;
  margin-top: 0;
}

.useful-information-page .info-content .trailer-container {
}

.useful-information-page .info-content .trailer-container .trailer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 130px;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-menu
  .menu-item {
  text-align: center;
  padding: 30px 20px;
  background: #f1f1f1;
  color: #000;
  opacity: 0.4;
  cursor: pointer;
  flex: 1;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-menu
  .menu-item
  img {
  mix-blend-mode: multiply;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-menu
  .menu-item
  span {
  font-weight: 500;
  font-size: 1vw;
  display: block;
  margin-top: 2vw;
  text-transform: uppercase;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-menu
  .menu-item.active {
  opacity: 1;
  color: #dc0546;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-menu
  .menu-item.active
  span {
}

.useful-information-page .info-content.trailer-content {
  margin: 0 -30px;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container {
  padding: 0 40px 0px;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item {
  position: relative;
  overflow: hidden;
}

.useful-information-page .info-content .trailer-container .trailer-tab-container .tab-item .slide-btn:hover path {
    stroke: #dc0546;
}

.useful-information-page .info-content .trailer-container .trailer-tab-container .tab-item .slide-btn path {
    transition: 0.4s;
}

.useful-information-page .info-content .trailer-container .trailer-tab-container .tab-item .slide-btn:hover {
    border-color: #dc0546;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .slide-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 100px 0;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .slide-item
  .item-title {
  text-align: center;
  max-width: 17vw;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .slide-item
  .item-title
  > span:nth-child(1) {
  display: block;
  font-weight: 500;
  font-size: 1.5vw;
  color: #dc0546;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .slide-item
  .item-title
  > span:nth-child(2) {
  font-weight: 500;
  font-size: 3.5vw;
  display: block;
  -webkit-text-stroke: 1px #dc0546;
  color: #fff0;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .slide-item
  .item-features {
  border-left: 1px solid rgb(0 0 0 / 20%);
  padding-left: 3vw;
  margin-left: 3vw;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .slide-item
  .item-features
  ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .slide-item
  .item-features
  ul
  li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .slide-item
  .item-features
  ul
  li
  > span:nth-child(1) {
  font-weight: 700;
  font-size: 1.3vw;
  color: #000;
  display: block;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .slide-item
  .item-features
  ul
  li
  > span:nth-child(3) {
  display: block;
  font-weight: 400;
  font-size: 1.3vw;
  color: #000;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .slide-item
  .item-features
  ul
  li
  > svg {
  margin: 0 20px;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .swiper-pagination {
  margin-top: 70px;
  margin-bottom: 20px;
}

.useful-information-page
  .info-content
  .trailer-container
  .trailer-tab-container
  .tab-item
  .slide-btn {
  top: 30%;
}

.useful-information-page .info-content .features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.useful-information-page .info-content .features-list .features-list-item {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 calc(33% - 30px);
  flex: 1 0 calc(33% - 30px);
  margin: 0 10px 30px;
}

.useful-information-page .container-dimensions-content {
  margin: 0 -20px;
}
.useful-information-page .container-dimensions {
}

.useful-information-page .container-dimensions > span {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: #dc0546;
}

.useful-information-page .container-dimensions .swiper-container {
  position: relative;
  padding: 30px 80px 0;
}
.useful-information-page .container-dimensions .swiper-container .slide-item {
  background: #f1f1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 14.2vw;
  padding: 0 24px;
  opacity: 0.6;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.useful-information-page
  .container-dimensions
  .swiper-container
  .slide-item
  img {
  max-height: 100%;
}

.useful-information-page
  .container-dimensions
  .swiper-container
  .swiper-slide-active
  .slide-item {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.useful-information-page
  .container-dimensions
  .swiper-container
  .swiper-slide-next
  .slide-item {
  -webkit-transform-origin: left;
  transform-origin: left;
}

.useful-information-page
  .container-dimensions
  .swiper-container
  .swiper-slide-prev
  .slide-item {
  -webkit-transform-origin: right;
  transform-origin: right;
}

.useful-information-page .container-dimensions .slide-tab-container .tab-item {
}

.useful-information-page .container-dimensions .slide-tab-container {
  margin-top: 55px;
  padding: 0 80px;
}

.useful-information-page
  .container-dimensions
  .slide-tab-container
  .tab-item
  .item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.useful-information-page
  .container-dimensions
  .slide-tab-container
  .tab-item
  .item-row
  .item-title {
  background: #0c2967;
  font-weight: 700;
  font-size: 1vw;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 10px;
  min-width: 9.5vw;
}

.useful-information-page
  .container-dimensions
  .slide-tab-container
  .tab-item
  .item-row
  .item-feature {
  border: 1px solid #0c2967;
  padding: 28px 10px;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(25% + 4px);
  flex: 0 0 calc(25% + 4px);
}

.useful-information-page
  .container-dimensions
  .slide-tab-container
  .tab-item
  .item-row
  .item-feature
  > span {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #0c2967;
  position: absolute;
  top: 0;
  -webkit-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  padding: 0 5px;
  left: 1.3vw;
  background: #fff;
}

.useful-information-page
  .container-dimensions
  .slide-tab-container
  .tab-item
  .item-row
  .item-feature
  > ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.useful-information-page
  .container-dimensions
  .slide-tab-container
  .tab-item
  .item-row
  .item-feature
  > ul
  li {
  font-size: 1vw;
  color: #0c2967;
}

.useful-information-page
  .container-dimensions
  .slide-tab-container
  .tab-item
  .item-row
  .item-feature
  > ul
  li
  + li {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid rgb(12 41 103 / 20%);
}

.useful-information-page
  .info-content
  .features-list
  .features-list-item
  > span {
  text-align: center;
  display: block;
  font-weight: 500;
  font-size: 1vw;
  color: #fff;
  background: #0c2967;
  margin: -1px;
  border-radius: 15px 15px 0 0;
  padding: 20px;
}

.useful-information-page
  .info-content
  .features-list
  .features-list-item
  ul
  li {
  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;
}

.useful-information-page .info-content .features-list .features-list-item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 13px;
  padding: 13px 10px;
}

.useful-information-page
  .info-content
  .features-list
  .features-list-item
  ul
  li
  > span:nth-child(1) {
  font-weight: 500;
  font-size: 1vw;
  color: #000;
  display: block;
  width: 65%;
}

.useful-information-page
  .info-content
  .features-list
  .features-list-item
  ul
  li
  > span:nth-child(3) {
  font-weight: 500;
  font-size: 1vw;
  color: #dc0546;
  display: block;
  text-align: right;
  width: 50px;
}

.useful-information-page
  .info-content
  .features-list
  .features-list-item
  ul
  li
  > svg {
}

.useful-information-page .info-content .content-file-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 35px;
}

.useful-information-page .info-content .content-file-list .file-item {
  position: relative;
  text-decoration: none;
  color: #000;
  display: block;
}

.useful-information-page .info-content .content-file-list .file-item > svg {
  width: 100%;
  height: 100%;
}

.useful-information-page
  .info-content
  .content-file-list
  .file-item
  > span:nth-child(1) {
  font-weight: 700;
  font-size: 1.3vw;
  position: absolute;
  top: 30px;
  left: 2vw;
}

.useful-information-page
  .info-content
  .content-file-list
  .file-item
  .item-content {
  position: absolute;
  top: 7vw;
  left: 0;
  right: 0;
  padding: 0 2vw;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.useful-information-page
  .info-content
  .content-file-list
  .file-item
  .item-content
  span:nth-child(0) {
  font-size: 1.1vw;
  line-height: 1.2;
}

.useful-information-page
  .info-content
  .content-file-list
  .file-item
  .item-content
  .item-content-icon
  a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5vw;
  font-size: 1.1vw;
}

.item-content .item-content-icon {
  display: flex;
  justify-content: space-between;
}

.useful-information-page
  .info-content
  .content-file-list
  .file-item
  .item-content
  span:nth-child(2)
  svg {
  width: 1.3vw;
  height: auto;
}

.useful-information-page .info-content .content-img {
  margin-bottom: 85px;
}

.useful-information-page .info-content .content-img img {
  position: relative;
  z-index: 1;
}

.useful-information-page .info-content .content-img .content-img-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-top: 55px;
}

.useful-information-page
  .info-content
  .content-img
  .content-img-info
  .info-buttons:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1px;
  height: 50%;
  background: #ffffff;
  opacity: 0.2;
}

.useful-information-page .info-content .content-img .content-img-info:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  height: 1px;
  background: #0c2967;
  opacity: 0.2;
}

.useful-information-page .info-content .content-header .header-title:before {
  content: "";
  position: absolute;
  bottom: -44px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #dc0546;
}

.useful-information-page
  .info-content
  .content-img
  .content-img-info
  .info-buttons {
  background: #0c2967;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 25px;
  gap: 50px;
  position: relative;
  outline: 35px solid #ffffff;
}

.useful-information-page .info-content p {
  font-size: 1.5vw;
  line-height: 1.3;
  color: #000000;
  position: relative;
  margin-top: 10px;
}

.useful-information-page .info-content .content-dictionary {
}

.useful-information-page .info-content .content-dictionary .content-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.useful-information-page
  .info-content
  .content-dictionary
  .content-search
  span {
  font-size: 20px;
  color: #000;
  display: block;
  max-width: 100px;
  line-height: 1.3;
}

.useful-information-page
  .info-content
  .content-dictionary
  .content-search
  span
  strong {
}

.useful-information-page
  .info-content
  .content-dictionary
  .content-search
  .search-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 60px;
  position: relative;
}

.useful-information-page
  .info-content
  .content-dictionary
  .content-search
  .search-item
  svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  right: 30px;
}

.useful-information-page
  .info-content
  .content-dictionary
  .content-search
  .search-item
  svg
  path {
}

.useful-information-page
  .info-content
  .content-dictionary
  .content-search
  .search-item
  input {
  border-radius: 10px;
  background: #f1f1f1;
  padding: 30px 80px 30px 30px;
  border: 1px solid #f1f1f1;
  outline: none;
  width: 100%;
  font-weight: 500;
  font-size: 20px;
  transition: 0.4s;
  outline: none;
}

.useful-information-page
  .info-content
  .content-dictionary
  .content-search
  .search-item
  input:hover {
  border-color: #0c2967;
}

.useful-information-page
  .info-content
  .content-dictionary
  .content-search
  .search-item
  input:focus {
  border-color: #0c2967;
}

.useful-information-page
  .info-content
  .content-dictionary
  .content-search
  .search-item
  input.active {
  border-color: #0c2967;
}

.useful-information-page .info-content .content-dictionary .dictionary-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 110px -15px 0;
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 23px 28px;
  position: relative;
  margin: 0 16px 35px;
  /* -webkit-transition: 0.3s; */
  /* transition: 0.3s; */
  transform: unset !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(35% - 52px);
  flex: 0 0 calc(50% - 32px);
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item:hover
  path {
  fill: #dc0546;
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item
  path {
  transition: 0.4s;
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item
  a {
  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;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item
  a
  span {
  max-width: 230px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.4s;
  line-height: 1.2;
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item:hover
  span {
  color: #dc0546;
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item
  a
  svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: center;
  transform-origin: center;
  min-width: 20px;
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item
  .dictionary-dropdown {
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 5px 28px 0;
  display: none;
  z-index: 1;
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item
  .dictionary-dropdown
  p {
  color: #0c2967;
  font-size: 20px;
  max-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 25px;
  padding-bottom: 20px;
  margin-top: 0;
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item.active {
  border-radius: 10px 10px 0 0;
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item.active
  a {
  color: #dc0546;
}

.useful-information-page
  .info-content
  .content-dictionary
  .dictionary-list
  .dictionary-list-item.active
  a
  svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 1700px) {
  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-features {
    padding-left: 2vw;
    margin-left: 2vw;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-title
    > span:nth-child(2) {
    font-size: 3vw;
  }
}

@media (max-width: 1550px) {
  .useful-information-page
    .info-content
    .content-dictionary
    .dictionary-list
    .dictionary-list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 32px);
    flex: 0 0 calc(50% - 32px);
  }
}

@media (max-width: 1470px) {
  .useful-information-page .info-menu span {
    font-size: 25px;
  }

  .useful-information-page .info-menu span:after {
    margin-top: 30px;
    margin-bottom: 20px;
    width: 50px;
    height: 2px;
  }

  .useful-information-page .info-menu ul li a {
    margin: 7px 0;
  }

  .useful-information-page .info-menu {
    padding: 45px 24px 30px;
    -webkit-box-flex: 0;
    -ms-flex: 0 25%;
    flex: 0 25%;
    margin-right: 50px;
  }

  .useful-information-page .info-content .content-header .header-title:before {
    height: 2px;
  }

  .useful-information-page .info-content .content-header {
    margin-bottom: 80px;
  }

  .useful-information-page .info-content .content-file-list {
    gap: 30px 20px;
  }
}

@media (max-width: 1199px) {
  .useful-information-page {
    padding: 50px 50px;
  }

  .useful-information-page .info-menu {
    margin-right: 40px;
    padding: 30px 15px 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
  }

  .useful-information-page .info-menu span {
    font-size: 18px;
  }

  .useful-information-page .info-menu span:after {
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .useful-information-page .info-menu ul li a {
    margin: 3px 0;
    padding: 10px 0;
  }

  .useful-information-page .info-content .content-header .header-title {
    font-size: 2vw;
    margin-right: 50px;
  }

  .useful-information-page .info-content .content-header .header-title:before {
    bottom: -25px;
  }

  .useful-information-page
    .info-content
    .content-dictionary
    .dictionary-list
    .dictionary-list-item
    .dictionary-dropdown
    p {
    font-size: 1.8vw;
  }

  .useful-information-page
    .info-content
    .content-dictionary
    .content-search
    .search-item
    input {
    font-size: 17px;
    padding: 20px 80px 20px 20px;
  }

  .useful-information-page
    .info-content
    .content-dictionary
    .content-search
    span {
    font-size: 17px;
  }

  .useful-information-page .info-content .content-dictionary .dictionary-list {
    margin-top: 50px;
  }

  .useful-information-page
    .info-content
    .content-dictionary
    .dictionary-list
    .dictionary-list-item
    .dictionary-dropdown
    p {
    font-size: 2.2vw;
    max-height: 380px;
  }

  .useful-information-page .info-content .features-list .features-list-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(50% - 30px);
    flex: 1 0 calc(50% - 30px);
  }

  .useful-information-page
    .info-content
    .features-list
    .features-list-item
    ul
    li
    > span:nth-child(1),
  .useful-information-page
    .info-content
    .features-list
    .features-list-item
    ul
    li
    > span:nth-child(3) {
    font-size: 1.5vw;
  }

  .useful-information-page
    .info-content
    .features-list
    .features-list-item
    > span {
    font-size: 1.5vw;
  }

  .useful-information-page .container-dimensions .swiper-container {
    padding: 30px 50px 0;
  }

  .useful-information-page .container-dimensions-content {
    margin: 0;
  }

  .useful-information-page .container-dimensions .slide-tab-container {
    padding: 0 50px;
    margin-top: 40px;
  }

  .useful-information-page
    .container-dimensions
    .slide-tab-container
    .tab-item
    .item-row
    .item-feature
    > span {
    font-size: 12px;
  }

  .useful-information-page
    .container-dimensions
    .slide-tab-container
    .tab-item
    .item-row
    .item-feature {
    padding: 20px 10px;
  }

  .useful-information-page .container-dimensions > span {
    font-size: 17px;
  }

  .useful-information-page .info-content.trailer-content {
    margin: 0;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container {
    padding: 0;
  }

  .useful-information-page .info-content .trailer-container .trailer-menu {
    margin-bottom: 60px;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .swiper-pagination {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .useful-information-page .info-menu {
    padding: 24px 24px 15px;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 45px;
  }

  .useful-information-page .info-content .trailer-container .trailer-tab-container .tab-item .slide-item .item-title > span:nth-child(1) {
    font-size: 18px;
  }

  .useful-information-page {
    display: block;
    padding: 50px 32px;
  }

  .useful-information-page .info-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    width: 100%;
    gap: 40px;
  }
  .useful-information-page .info-menu ul::-webkit-scrollbar {
    height: 0;
  }

  .useful-information-page .info-menu span {
    max-width: 100%;
    width: 100%;
    font-size: 22px;
  }

  .useful-information-page .info-menu ul li a {
    font-size: 19px;
    padding: 10px 0;
    margin: 0;
  }

  .useful-information-page .info-menu span:after {
    margin-top: 15px;
  }

  .useful-information-page .info-content .content-header .header-title {
    font-size: 2.5vw;
    max-width: 40vw;
  }

  .useful-information-page .info-content p {
    font-size: 2vw;
  }

  .useful-information-page .info-content .content-header p {
    max-width: initial;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .useful-information-page .info-content .content-header {
    margin-bottom: 55px;
  }

  .useful-information-page .info-content .content-img {
    margin-bottom: 50px;
  }

  .useful-information-page
    .info-content
    .content-file-list
    .file-item
    .item-content
    span:nth-child(0) {
    font-size: 1.7vw;
  }

  .useful-information-page
    .info-content
    .content-file-list
    .file-item
    .item-content
    .item-content-icon
    span {
    font-size: 1.7vw;
    gap: 1vw;
  }

  .useful-information-page
    .info-content
    .content-file-list
    .file-item
    .item-content
    span:nth-child(2)
    svg {
    width: 2vw;
  }

  .useful-information-page
    .info-content
    .content-file-list
    .file-item
    .item-content {
    padding: 0 3.5vw;
    top: 10vw;
  }

  .useful-information-page
    .info-content
    .content-file-list
    .file-item
    > span:nth-child(1) {
    left: 3.5vw;
    font-size: 2vw;
    top: 20px;
  }

  .useful-information-page .container-dimensions .slide-tab-container {
    padding: 0;
  }

  .useful-information-page .container-dimensions .swiper-container .slide-item {
    height: 20vw;
  }

  .useful-information-page
    .container-dimensions
    .slide-tab-container
    .tab-item
    .item-row
    .item-title {
    min-width: 15vw;
    font-size: 1.5vw;
  }

  .useful-information-page
    .container-dimensions
    .slide-tab-container
    .tab-item
    .item-row {
  }

  .useful-information-page
    .container-dimensions
    .slide-tab-container
    .tab-item
    .item-row
    .item-feature
    > span {
  }

  .useful-information-page
    .container-dimensions
    .slide-tab-container
    .tab-item
    .item-row
    .item-feature
    > ul
    li {
    font-size: 1.7vw;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-features {
    padding-left: 4vw;
    margin-left: 4vw;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-features
    ul
    li
    > span:nth-child(1),
  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-features
    ul
    li
    > span:nth-child(3) {
    font-size: 2vw;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-title
    > span:nth-child(2) {
    font-size: 8vw;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-title {
    max-width: 30vw;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-menu
    .menu-item
    span {
    font-size: 1.5vw;
  }
}

@media (max-width: 767px) {
  .useful-information-page {
    padding: 40px 24px;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-title {
    max-width: unset;
  }

  .item-content .item-content-icon {
    flex-direction: column;
  }

  .useful-information-page .info-menu {
    margin-bottom: 35px;
  }

  .useful-information-page .info-content .content-header {
    display: block;
    margin-bottom: 40px;
  }

  .useful-information-page .info-content .content-header .header-title {
    max-width: initial;
    width: 100%;
    font-size: 23px;
  }

  .useful-information-page .info-content .content-header p {
    margin-top: 32px;
    font-size: 17px;
    line-height: 1.3;
  }

  .useful-information-page .info-content p {
    font-size: 17px;
    line-height: 1.3;
  }

  .useful-information-page .info-content .content-header .header-title:before {
    bottom: -13px;
  }

  .useful-information-page
    .info-content
    .content-img
    .content-img-info
    .info-buttons {
    padding: 15px 20px;
    gap: 40px;
    outline: 15px solid #ffffff;
  }

  .useful-information-page .info-content .content-img .content-img-info {
    margin-top: 35px;
  }

  .useful-information-page
    .info-content
    .content-dictionary
    .dictionary-list
    .dictionary-list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 0 20px;
    padding: 18px 20px;
  }

  .useful-information-page .info-content .content-dictionary .dictionary-list {
    margin: 32px 0 0;
  }

  .useful-information-page
    .info-content
    .content-dictionary
    .dictionary-list
    .dictionary-list-item
    a {
    font-size: 17px;
  }

  .useful-information-page .info-content .content-dictionary .content-search {
    display: block;
  }

  .useful-information-page
    .info-content
    .content-dictionary
    .content-search
    .search-item {
    margin-left: 0;
    margin-top: 10px;
  }

  .useful-information-page
    .info-content
    .content-dictionary
    .content-search
    span {
    max-width: 100%;
  }

  .useful-information-page
    .info-content
    .content-dictionary
    .dictionary-list
    .dictionary-list-item
    .dictionary-dropdown
    p {
    font-size: 17px;
    padding-top: 20px;
    max-height: 300px;
  }

  .useful-information-page
    .info-content
    .content-dictionary
    .dictionary-list
    .dictionary-list-item
    .dictionary-dropdown {
    padding: 5px 20px 0;
  }

  .useful-information-page .info-content .content-file-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .useful-information-page
    .info-content
    .content-file-list
    .file-item
    > span:nth-child(1) {
    font-size: 4vw;
    left: 6.5vw;
  }

  .useful-information-page
    .info-content
    .content-file-list
    .file-item
    .item-content {
    padding: 0 6.5vw;
    top: 20vw;
  }

  .useful-information-page
    .info-content
    .content-file-list
    .file-item
    .item-content
    .item-content-icon
    span
    svg {
    width: 4vw;
  }

  .useful-information-page
    .info-content
    .content-file-list
    .file-item
    .item-content
    .item-content-icon
    span {
    gap: 2vw;
    font-size: 3.3vw;
  }

  .useful-information-page
    .info-content
    .content-file-list
    .file-item
    .item-content
    span:nth-child(1) {
    font-size: 3.3vw;
    line-height: 1.2;
  }

  .useful-information-page
    .info-content
    .content-file-list
    .file-item
    .item-content
    .item-content-icon
    span {
    font-size: 3.3vw;
    line-height: 1.2;
  }

  .useful-information-page .info-content .features-list .features-list-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(100% - 30px);
    flex: 1 0 calc(100% - 30px);
    margin-bottom: 24px;
  }

  .useful-information-page
    .info-content
    .features-list
    .features-list-item
    > span {
    font-size: 4vw;
  }

  .useful-information-page
    .info-content
    .features-list
    .features-list-item
    ul
    li
    > span:nth-child(1),
  .useful-information-page
    .info-content
    .features-list
    .features-list-item
    ul
    li
    > span:nth-child(3) {
    font-size: 4vw;
  }

  .useful-information-page
    .container-dimensions
    .slide-tab-container
    .tab-item
    .item-row {
    display: block;
  }

  .useful-information-page
    .container-dimensions
    .slide-tab-container
    .tab-item
    .item-row
    .item-title {
    min-width: initial;
    font-size: 15px;
    padding: 20px 10px;
    margin-bottom: 20px;
  }

  .useful-information-page
    .container-dimensions
    .slide-tab-container
    .tab-item
    .item-row
    .item-feature {
    margin-bottom: 15px;
    padding: 25px 10px;
  }

  .useful-information-page
    .container-dimensions
    .slide-tab-container
    .tab-item
    .item-row
    .item-feature
    > ul
    li {
    font-size: 4vw;
  }

  .useful-information-page
    .container-dimensions
    .slide-tab-container
    .tab-item
    .item-row
    .item-feature
    > span {
    font-size: 15px;
  }

  .useful-information-page .container-dimensions .swiper-container .slide-item {
    height: 40vw;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-menu
    .menu-item {
    min-width: 55vw;
    padding: 20px;
  }

  .useful-information-page .info-content .trailer-container .trailer-menu {
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 40px;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-menu
    .menu-item
    span {
    font-size: 3.5vw;
    margin-top: 3vw;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item {
    display: block;
    padding: 0 60px;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-features {
    border-left: none;
    border-top: 1px solid rgb(0 0 0 / 20%);
    padding-left: 0;
    margin-left: 0;
    padding-top: 25px;
    margin-top: 15px;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-features
    ul
    li
    > span:nth-child(1),
  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-features
    ul
    li
    > span:nth-child(3) {
    font-size: 3.5vw;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-features
    ul
    li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-title
    > span:nth-child(2) {
    font-size: 12vw;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-title
    > span:nth-child(1) {
    font-size: 4vw;
    margin-bottom: 1.5vw;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .slide-item
    .item-features
    ul {
    gap: 20px;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    > p {
    margin-top: 30px;
  }

  .useful-information-page
    .info-content
    .trailer-container
    .trailer-tab-container
    .tab-item
    .swiper-pagination {
    margin-top: 40px;
  }
}

/* Page Slide Section */
.home-news {
  background-color: white;
  position: relative;
}

.page-slide-section {
  padding-left: 150px;
  padding-top: 110px;
  padding-bottom: 160px;
}

.page-slide-section .slide-container {
  overflow: hidden;
  padding-top: 10px;
}

.page-slide-section .slide-container .slide-header {
  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-right: 130px;
  padding-bottom: 6.3vw;
}

.page-slide-section
  .slide-container
  .slide-header
  .slide-title
  > span:not(.title-tag) {
  font-weight: 700;
  color: #0c2967;
  font-size: 6.3vw;
  display: block;
}

.page-slide-section .slide-container .slide-header .slide-title .title-tag {
  display: inline-block;
  font-size: 25px;
  color: #0c2967;
  background: #fff;
  border-left: 7px solid #dc0546;
  padding: 15px 30px;
  margin-bottom: 24px;
  font-weight: 400;
}

.page-slide-section .slide-container .slide-header a:hover {
  color: #dc0546;
}

.page-slide-section .slide-container .slide-header a {
  font-size: 25px;
  color: #0c2967;
  text-decoration: none;
  position: relative;
  transition: 0.4s;
  text-transform: uppercase;
}
.page-slide-section .slide-container .slide-header a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #0c2967;
  opacity: 0.05;
  border-radius: 100%;
}

.page-slide-section .slide-container .slide-body {
  overflow: hidden;
  position: relative;
  margin-right: -10.5vw;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page-slide-section .slide-container .slide-body.last-active {
  margin-right: 0;
}

.page-slide-section .slide-container .slide-body .slide-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-slide-section .slide-container .slide-body .slide-row .slide-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 35vw;
  text-decoration: none;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px 60px 60px;
  position: relative;
  -webkit-transition: 0.3s 0.3s;
  transition: 0.3s 0.3s;
}

.page-slide-section
  .slide-container
  .slide-body
  .slide-row
  .slide-item
  .item-number {
  font-weight: 700;
  font-size: 50px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-slide-section
  .slide-container
  .slide-body
  .slide-row
  .slide-item
  .item-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  background-size: cover;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page-slide-section
  .slide-container
  .slide-body
  .slide-row
  .slide-item
  .item-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.2)),
    to(rgba(0, 0, 0, 0.2))
  );
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page-slide-section
  .slide-container
  .slide-body
  .slide-row
  .slide-item
  .item-text {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.page-slide-section
  .slide-container
  .slide-body
  .slide-row
  .slide-item
  .item-text
  p {
  font-weight: 700;
  font-size: 35px;
  color: #ffffff;
  line-height: 1.3;
}

.page-slide-section
  .slide-container
  .slide-body
  .slide-row
  .slide-item
  .item-text
  span {
  display: block;
  font-size: 25px;
  color: #fff;
  opacity: 0.5;
  margin-top: 35px;
}

@media (min-width: 1200px) {
  .page-slide-section
  .slide-container
  .slide-body
  .slide-row
  .slide-item:hover {
    -webkit-box-flex: 3.2;
    -ms-flex: 3.2;
    flex: 3.2;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
}

@media (hover: hover) {
  .page-slide-section
    .slide-container
    .slide-body
    .slide-row
    .slide-item:hover
    .item-img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }

  .page-slide-section
    .slide-container
    .slide-body
    .slide-row
    .slide-item:hover
    .item-img:before {
    background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.4)),
      to(rgba(0, 0, 0, 0.4))
    );
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  }

  .page-slide-section
    .slide-container
    .slide-body
    .slide-row
    .slide-item:hover
    .item-text {
    opacity: 1;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
}

@media (max-width: 1500px) {
  .page-slide-section
    .slide-container
    .slide-header
    .slide-title
    > span:not(.title-tag) {
    font-weight: 700;
    color: #0c2967;
    font-size: 5vw;
    display: block;
  }
}

@media (max-width: 1199px) {
  .page-slide-section {
    padding-left: 50px;
  }

  .page-slide-section .slide-container .slide-header {
    padding-right: 50px;
    padding-bottom: 8vw;
  }

  .page-slide-section .slide-container .slide-header a {
    font-size: 20px;
  }

  .page-slide-section .slide-container .slide-header a:before {
    width: 60px;
    height: 60px;
  }

  .page-slide-section .slide-container .slide-body .slide-row .slide-item {
    flex: 0 0 400px;
    height: 400px;
    padding: 40px;
  }

  .page-slide-section
    .slide-container
    .slide-body
    .slide-row
    .slide-item
    .item-img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }

  .page-slide-section
    .slide-container
    .slide-body
    .slide-row
    .slide-item
    .item-img:before {
    background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.4)),
      to(rgba(0, 0, 0, 0.4))
    );
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  }

  .page-slide-section
    .slide-container
    .slide-body
    .slide-row
    .slide-item
    .item-text {
    opacity: 1;
  }

  .page-slide-section
    .slide-container
    .slide-body
    .slide-row
    .slide-item
    .item-text
    p {
    font-size: 28px;
  }

  .page-slide-section
    .slide-container
    .slide-body
    .slide-row
    .slide-item
    .item-text
    span {
    font-size: 20px;
    margin-top: 20px;
  }

  .page-slide-section .slide-container .slide-body {
    margin-right: 0px;
  }

  .page-slide-section .slide-container .slide-body .slide-row {
    overflow-x: auto;
    overflow-y: hidden;
  }
}

@media (max-width: 767px) {
  .page-slide-section {
    padding-left: 24px;
    padding-top: 100px;
  }

  .page-slide-section
    .slide-container
    .slide-header
    .slide-title
    > span:not(.title-tag) {
    font-size: 25px;
  }

  .page-slide-section .slide-container .slide-header a:before {
    width: 40px;
    height: 40px;
  }

  .page-slide-section .slide-container .slide-header a {
    font-size: 15px;
    display: inline-block;
    max-width: 70px;
    text-align: center;
    line-height: 1.3;
  }

  .page-slide-section .slide-container .slide-header {
    padding-right: 24px;
    padding-bottom: 7vw;
  }

  .page-slide-section .slide-container .slide-header .slide-title {
    font-size: 10vw;
    margin: 0;
  }

  .page-slide-section
    .slide-container
    .slide-body
    .slide-row
    .slide-item
    .item-number {
    font-size: 40px;
  }

  .page-slide-section
    .slide-container
    .slide-body
    .slide-row
    .slide-item
    .item-text
    p {
    font-size: 24px;
  }

  .page-slide-section
    .slide-container
    .slide-body
    .slide-row
    .slide-item
    .item-text
    span {
    font-size: 17px;
  }

  .page-slide-section .slide-container .slide-body .slide-row .slide-item {
    flex: 0 0 70vw;
    padding: 32px 24px;
  }
}

/* Page Detail */
.page-detail .detail-menu {
  border: 1px solid rgba(12, 41, 103, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 5.2vw 24px 4vw;
}

.page-detail .detail-menu ul li a img {
  width: 34px;
  height: 34px;
  background: #dc0546;
  padding: 5px;
}

.page-detail .detail-menu > span {
  font-weight: 700;
  font-size: 2.6vw;
  color: #0c2967;
  position: relative;
  display: block;
  width: 90%;
  max-width: 250px;
}

.page-detail .detail-menu > span:after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  background: #dc0546;
  margin: 50px 0 30px;
}

.page-detail .detail-menu ul {
  list-style: none;
  padding: 0;
  width: 90%;
  max-width: 310px;
}

.page-detail .detail-menu ul li a {
  font-weight: 500;
  font-size: 1.4vw;
  color: #0c2967;
  opacity: 0.4;
  display: inline-block;
  text-decoration: none;
  padding: 10px 0;
  margin: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  transition: 0.4s;
  line-height: 1.2;
}

.page-detail .detail-menu ul li a:hover {
  color: #dc0546;
  opacity: 1;
}

.page-detail .detail-menu ul li a svg {
  width: 2.3vw;
  height: auto;
}

.page-detail .detail-menu ul li .active {
  color: #dc0546;
  opacity: 1;
}

.page-detail {
  padding-top: 70px;
  background: #f1f1f1;
}

.page-detail-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 90px 50px;
  gap: 50px;
}

.page-detail .detail-info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 26vw;
  margin-right: 0;
}

.page-detail .detail-info .detail-sticky {
  position: sticky;
  top: 30px;
  background: #5cc943;
  padding: 50px 5.2vw;
  margin-top: 30px;
}

.page-detail .detail-info .detail-sticky svg {
}

.page-detail .detail-info .detail-sticky svg path {
}

.page-detail .detail-info .detail-sticky .sticky-title {
  font-weight: 700;
  font-size: 2vw;
  color: #fff;
  display: block;
  line-height: 1.2;
  margin-top: 2vw;
}

.page-detail .detail-info .detail-sticky .line {
  display: block;
  width: 75px;
  height: 4px;
  background: #fff;
  margin: 2vw 0;
}

.page-detail .detail-info .detail-sticky ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.page-detail .detail-info .detail-sticky ul li {
  transition: 0.5s;
}

.page-detail .detail-info .detail-sticky ul li:hover {
  opacity: 0.75;
}

.page-detail .detail-info .detail-sticky ul li a {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1.5vw;
  padding: 5px 0;
  color: #fff;
}

.page-detail .detail-info .detail-sticky ul li a svg {
}

.page-detail .detail-info .detail-sticky ul li a svg path {
}

.page-detail .detail-info .detail-sticky ul li a span {
}

.page-detail .detail-content {
  padding-left: 100px;
  margin-left: -100px;
  flex: 1 0 70%;
  max-width: calc(74vw - 130px);
}

.page-detail .detail-content .content-hero {
}

.page-detail .detail-content .content-hero .swiper {
}

.page-detail .detail-content .content-hero .swiper .swiper-wrapper {
  height: auto;
}

.page-detail
  .detail-content
  .content-hero
  .swiper
  .swiper-wrapper
  .swiper-slide {
  overflow: hidden;
  height: 700px;
}

.page-detail
  .detail-content
  .content-hero
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide-img {
  top: -100px;
  bottom: 0;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  right: 0;
}
.page-detail
  .detail-content
  .content-hero
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-detail
  .detail-content
  .content-hero
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  left: 70px;
  max-width: 36vw;
}

.page-detail
  .detail-content
  .content-hero
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide-content
  .content-tag {
  display: inline-block;
  font-size: 1.3vw;
  color: #0c2967;
  background: #fff;
  border-left: 7px solid #dc0546;
  padding: 0.7vw 1.5vw;
  margin-bottom: 24px;
}

.page-detail
  .detail-content
  .content-hero
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide-content
  .content-title {
  font-weight: 700;
  font-size: 2.8vw;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.page-detail .detail-content .content-hero .swiper .swiper-buttons {
  position: absolute;
  bottom: 260px;
  right: 0;
  padding: 0 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.page-detail
  .detail-content
  .content-hero
  .swiper
  .swiper-buttons
  .swiper-button-next {
}

.page-detail .detail-content .content-hero .swiper .swiper-buttons > div {
  position: relative;
  top: 0;
  right: 0;
  margin: 0;
  width: auto;
  height: auto;
  left: 0;
  padding: 10px;
}

.page-detail .detail-content .content-hero .swiper .swiper-buttons > div path {
  transition: 0.5s;
}

.page-detail
  .detail-content
  .content-hero
  .swiper
  .swiper-buttons
  > div:hover
  path {
  fill: #0c2967;
}

.page-detail .detail-content .content-hero .swiper .swiper-buttons > div:after {
  display: none;
}

.page-detail .detail-content .content-hero .swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  top: auto;
  text-align: right;
  margin: 0;
  width: auto;
  padding: 75px 65px;
  font-weight: 700;
  font-size: 25px;
  color: #fff;
}
.page-detail .detail-content .content-hero .swiper .swiper-pagination > span {
  background: no-repeat;
  border: none;
}

.page-detail .detail-content .content-desc {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

.page-detail .detail-content .content-desc .desc-title {
  font-weight: 600;
  font-size: 1.5vw;
  color: #0c2967;
  background: #f1f1f1;
  padding: 80px 6vw 0 70px;
  margin-right: 205px;
  margin-top: -170px;
  line-height: 1.3;
  margin-bottom: 0;
  min-height: 194px;
  margin-bottom: 20px;
}

.page-detail .detail-content .content-desc .desc-title:after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #dc0546;
  margin-top: 35px;
}

.page-detail .detail-content .content-desc p {
  font-size: 1.5vw;
  color: #000;
  padding-top: 15px;
  padding-left: 70px;
  line-height: 1.2;
}

.page-detail-container .services {
  margin-right: -90px;
}

.page-detail-container .services .services-text-area {
  padding: 80px 0 30px 80px;
}

.page-detail .detail-content .content-services {
  position: relative;
  z-index: 2;
}

.page-detail .detail-content .content-services .services-title {
  font-weight: 600;
  font-size: 40px;
  color: #0c2967;
  margin-bottom: 100px;
  line-height: 1.2;
  max-width: 860px;
}

.page-detail .detail-content .content-services .service-slide-content {
  text-align: center;
  margin-top: -120px;
  transform: translate(0px, 80%);
}

.page-detail
  .detail-content
  .content-services
  .service-slide-content
  .content-item {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 90px;
  background: #f1f1f1;
  gap: 130px;
}

.page-detail
  .detail-content
  .content-services
  .service-slide-content
  .content-item
  .item-row {
  display: flex;
  align-items: center;
  text-align: left;
}

.page-detail
  .detail-content
  .content-services
  .service-slide-content
  .content-item
  .item-row
  .item-info
  + .item-info {
  border-left: 1px solid rgb(0 0 0 / 20%);
  padding-left: 50px;
  margin-left: 50px;
}

.page-detail
  .detail-content
  .content-services
  .service-slide-content
  .content-item
  .item-row
  .item-info
  > span {
  display: block;
  color: #000000;
  opacity: 0.5;
  font-size: 20px;
  margin-bottom: 15px;
}

.page-detail
  .detail-content
  .content-services
  .service-slide-content
  .content-item
  .item-link {
  background: white;
  margin-top: 30px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-detail
  .detail-content
  .content-services
  .service-slide-content
  .content-item
  .item-link
  a {
  font-weight: bold;
  color: black;
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-detail
  .detail-content
  .content-services
  .service-slide-content
  .content-item
  .item-row
  .item-info
  a {
  font-size: 25px;
  color: #000;
}

.page-detail .detail-content .content-services .service-swiper {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(0 0 0 / 50%);
  padding-bottom: 45px;
  margin-right: 50px;
}

.page-detail .detail-content .content-services .service-swiper .swiper {
  flex: 1;
  overflow: hidden;
  margin-right: 100px;
}

.page-detail .detail-content .content-services .service-swiper .swiper-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.page-detail
  .detail-content
  .content-services
  .service-swiper
  .swiper-buttons
  .swiper-btn {
  cursor: pointer;
}

.page-detail
  .detail-content
  .content-services
  .service-swiper
  .swiper-buttons
  .swiper-btn
  svg
  path {
  transition: 0.4s;
}

.page-detail
  .detail-content
  .content-services
  .service-swiper
  .swiper-buttons
  .swiper-btn
  svg:hover
  path {
  fill: #dc0546;
}

.page-detail .detail-content .content-services .service-swiper .slide-item {
  display: flex;
  align-items: center;
  font-size: 25px;
  gap: 10px;
  opacity: 0.5;
  transition: 0.3s;
  cursor: pointer;
  min-height: 45px;
}

.page-detail .detail-content .content-services .service-swiper .slide-item img {
  width: 45px;
  height: 45px;
  background: #dc0546;
  padding: 5px;
}

.page-detail .detail-content .content-services .service-swiper .swiper-slide {
  width: auto;
}

.page-detail
  .detail-content
  .content-services
  .service-swiper
  .slide-item
  path {
  stroke: #000000;
}

.page-detail
  .detail-content
  .content-services
  .service-swiper
  .slide-item.slider-active
  path {
  stroke: rgb(220, 5, 70);
}

.page-detail
  .detail-content
  .content-services
  .service-swiper
  .slide-item.slider-active {
  opacity: 1;
}

.page-detail .detail-content .content-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8vw 2vw;
  padding: 60px 0;
}

.page-detail .detail-content .content-features .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2vw;
  position: relative;
}
.page-detail .detail-content .content-features .feature-item:before {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: 40px;
  right: 160px;
  background: #fff;
  -webkit-transform: skewX(-15deg);
  transform: skewX(-15deg);
}
.page-detail .detail-content .content-features .feature-item span {
  font-weight: 700;
  font-size: 5.2vw;
  display: block;
  -webkit-text-stroke: 1px #dc0546;
  color: #fff0;
  position: relative;
  word-spacing: -15px;
  white-space: nowrap;
}

.page-detail .detail-content .content-features .feature-item p {
  font-weight: 700;
  font-size: 1.1vw;
  color: #0c2967;
  line-height: 1.1;
  position: relative;
}

.page-detail .detail-content .content-features .feature-item-row {
  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;
}

.page-detail .detail-content .content-features-desc {
  padding-left: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 100px;
}

.page-detail .detail-content .content-features .feature-item-row > p {
  font-size: 1.3vw;
  color: #000;
  opacity: 0.6;
  max-width: 22.6vw;
}

.page-detail .detail-content .content-features .feature-item-row .feature-item {
  max-width: 26.3vw;
}

.page-detail
  .detail-content
  .content-features
  .feature-item-row
  .feature-item
  p {
  font-size: 1.8vw;
}

.page-detail .detail-content .content-slide {
  margin: 70px 0;
  position: relative;
}

.page-detail .detail-content .content-slide .slide-content {
  position: absolute;
  top: 0;
  right: 55px;
  background: #fff;
  border-bottom: 17px solid #dc0546;
  z-index: 2;
  padding: 40px;
  max-width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-detail .detail-content .content-slide .slide-content .swiper-pagination {
  position: static;
  margin: 0;
  width: auto;
  font-size: 25px;
  color: #0c2967;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.page-detail
  .detail-content
  .content-slide
  .slide-content
  .swiper-pagination
  span {
}
.page-detail .detail-content .content-slide .slide-content .slide-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -5px;
  gap: 6px;
}

.page-detail
  .detail-content
  .content-slide
  .slide-content
  .slide-buttons
  .slide-btn {
  position: relative;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
}

.page-detail
  .detail-content
  .content-slide
  .slide-content
  .slide-buttons
  .slide-btn
  svg {
  width: auto;
}

.page-detail
  .detail-content
  .content-slide
  .slide-content
  .slide-buttons
  .slide-btn
  svg
  path {
  transition: 0.4s;
}

.page-detail
  .detail-content
  .content-slide
  .slide-content
  .slide-buttons
  .slide-btn:hover
  path {
  fill: #dc0546;
}

.page-detail .detail-content .content-slide .slide-content .content-container {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 25px;
  margin-top: 25px;
}

.page-detail
  .detail-content
  .content-slide
  .slide-content
  .content-container
  .content-item {
  max-width: 90%;
}

.page-detail
  .detail-content
  .content-slide
  .slide-content
  .content-container
  .content-item
  > span {
  display: block;
  font-weight: 500;
  font-size: 30px;
  color: #0c2967;
  line-height: 1.2;
}

.page-detail
  .detail-content
  .content-slide
  .slide-content
  .content-container
  .content-item
  p {
  margin-top: 25px;
  font-size: 15px;
  color: #000;
  opacity: 0.6;
  line-height: 1.3;
}

.page-detail .detail-content .content-slide .swiper {
}

.page-detail .detail-content .content-slide .swiper .swiper-wrapper {
  height: auto;
}

.page-detail
  .detail-content
  .content-slide
  .swiper
  .swiper-wrapper
  .swiper-slide {
}

.page-detail
  .detail-content
  .content-slide
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide-img {
  height: 650px;
  background-size: cover;
  background-position: center;
}

.page-detail .detail-content .content-extra {
  padding-left: 90px;
  padding-bottom: 70px;
}

.page-detail .detail-content .content-extra p {
  font-weight: 400;
  font-size: 1.5vw;
  color: #000;
  line-height: 1.3;
  margin-top: 30px;
}

.content-extra .desc-title {
  font-weight: 600;
  font-size: 1.5vw;
  color: #0c2967;
  max-width: 60%;
  line-height: 1.3;
  margin-bottom: 0;
}

.content-extra .desc-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #dc0546;
  margin-top: 35px;
}

.page-detail .detail-content .content-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 100px;
  padding: 10px 50px;
  margin-top: 130px;
}

.page-detail .detail-content .content-links span {
  font-size: 25px;
  display: block;
  color: #000;
  margin-right: 65px;
}

.page-detail .detail-content .content-links ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  list-style: none;
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  -webkit-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  top: -5px;
}

.page-detail .detail-content .content-links ul li:hover a {
  background: #dc0546;
}

.page-detail .detail-content .content-links ul li a {
  font-size: 1.3vw;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  background: #0c2967;
  display: block;
  text-align: center;
  border-bottom: 7px solid #dc0546;
  word-break: break-all;
  transition: 0.5s;
}

.page-detail .detail-content .content-values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 130px;
}

.page-detail .detail-content .content-values .value-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  gap: 25px;
  font-size: 20px;
  color: #000;
  padding: 40px 20px;
  border: 1px solid #c1c1c1;
}

.page-detail .detail-content .content-values .value-item + .value-item {
  margin-left: -1px;
}

.page-detail .information {
  padding-bottom: 110px;
}

.page-detail .information .information-wrapper div .information-line {
  background: #f1f1f1;
}

.certificates-slide {
  padding-top: 120px;
  margin-right: -90px;
}

.certificates-slide .slide-header {
  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-right: 90px;
}

.certificates-slide .slide-header .slide-title {
  font-size: 3.6vw;
  font-weight: 700;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.certificates-slide .slide-header .slide-title span {
  color: #dc0546;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.certificates-slide .slide-header .slide-title span:before {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -1px;
  left: -10px;
  right: 121px;
  background: #fff;
  z-index: -1;
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
}
.certificates-slide .slide-header .slide-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.certificates-slide .slide-header .slide-buttons .slide-btn {
  position: relative;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  top: 0;
  transform: translate(0px, 0px);
}

.certificates-slide .slide-header .slide-buttons .slide-btn svg path {
  transition: 0.4s;
}

.certificates-slide .slide-header .slide-buttons .slide-btn:hover path {
  fill: #dc0546;
}

.certificates-slide .slide-header .slide-buttons .slide-btn svg {
  width: auto;
}

.certificates-slide .slide-header .slide-buttons .slide-btn svg path {
}

.certificates-slide .swiper {
  margin-top: 80px;
}

.certificates-slide .swiper .swiper-wrapper {
  height: auto;
}

.certificates-slide .swiper .swiper-wrapper .swiper-slide {
  width: auto;
}

.certificates-slide .swiper .swiper-wrapper .swiper-slide .slide-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.certificates-slide .swiper .swiper-wrapper .swiper-slide .slide-item img {
  border-radius: 20px;
  width: 315px;
  border: 1px solid #00000042;
  padding: 8px;
}

.certificates-slide
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide-item
  .item-content {
}

.certificates-slide
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide-item
  .item-content
  .content-tag {
  display: inline-block;
  background: #0c2967;
  color: #ffffff;
  font-size: 20px;
  padding: 11px 20px;
}

.certificates-slide
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide-item
  .item-content
  .content-title {
  display: block;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.1;
  color: #000;
  margin-top: 30px;
  max-width: 260px;
}

.page-detail-other
  .detail-content
  .content-hero
  .swiper
  .swiper-wrapper
  .swiper-slide
  .slide-img:before {
}

.page-detail .detail-info .detail-sticky-red {
  background: #dc0546;
}

.page-detail .detail-info .detail-sticky p {
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
}

.page-detail-other .detail-content .content-links {
  margin-top: 70px;
}

.page-detail-other .detail-content .content-features {
  padding: 120px 0;
}

.page-detail-other .detail-content .content-slide .slide-content {
  top: auto;
  bottom: -16px;
}

.inner-certificates {
  padding: 0 0 200px 120px;
  margin: 0;
}

@media (max-width: 1780px) {
  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item {
    gap: 60px;
    padding: 40px 50px;
  }
}

@media (max-width: 1570px) {
  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    .item-row
    .item-info
    + .item-info {
    margin-left: 30px;
    padding-left: 30px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    img {
    max-width: 110px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    .item-row
    .item-info
    a {
    font-size: 15px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    .item-row
    .item-info
    > span {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item {
    padding: 30px 50px;
  }
}

@media (max-width: 1470px) {
  .page-detail .detail-menu span {
  }

  .page-detail .detail-menu span:after {
    margin-top: 30px;
    margin-bottom: 20px;
    width: 50px;
    height: 2px;
  }

  .page-detail .detail-menu ul li a {
    margin: 7px 0;
  }

  .page-detail .detail-menu {
    padding: 45px 24px 30px;
  }

  .page-detail .detail-content .content-desc p {
    padding-top: 25px;
  }

  .page-detail .detail-content .content-extra {
    padding-left: 0;
  }

  .page-detail .detail-content .content-features-desc {
    padding-left: 0;
  }

  .page-detail-container .services .services-text-area {
    padding-left: 0;
  }

  .page-detail .detail-content .content-services .services-title {
    font-size: 32px;
    max-width: 80%;
    margin-bottom: 60px;
  }

  .page-detail .detail-content .content-services .service-swiper {
    padding-bottom: 30px;
    margin-right: 0;
  }

  .page-detail .detail-content .content-services .service-swiper .slide-item {
    font-size: 20px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-swiper
    .slide-item
    svg {
    width: auto;
    height: 30px;
  }
  .page-detail .detail-info .detail-sticky p {
    font-size: 24px;
  }

  .page-detail .detail-info .detail-sticky img {
    max-width: 170px;
  }
}

@media (max-width: 1199px) {
  .page-detail .detail-menu {
    padding: 30px 15px 15px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    img {
    max-width: 100px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item {
    gap: 30px;
    max-width: 100%;
  }

  .page-detail .detail-menu span {
    font-size: 19px;
  }

  .page-detail .detail-menu span:after {
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .page-detail .detail-menu ul li a {
    margin: 3px 0;
    padding: 10px 0;
  }

  .page-detail-container {
    padding: 0 50px 50px;
  }

  .page-detail .detail-content {
    max-width: calc(74vw - 50px);
  }

  .page-detail .detail-info .detail-sticky > svg {
    width: auto;
    height: 60px;
  }

  .page-detail .detail-info .detail-sticky {
    padding: 30px 3vw;
    top: 160px;
  }

  .page-detail .detail-info .detail-sticky ul {
    gap: 10px;
  }

  .page-detail .detail-content .content-desc .desc-title {
    padding: 50px 4.7vw 60px 30px;
    margin-top: -110px;
    margin-right: 150px;
    min-height: 162px;
  }

  .page-detail .detail-content .content-desc p {
    padding-left: 30px;
    font-size: 2vw;
  }

  .page-detail
    .detail-content
    .content-hero
    .swiper
    .swiper-wrapper
    .swiper-slide {
    height: 500px;
  }

  .page-detail
    .detail-content
    .content-hero
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide-content {
    left: 30px;
  }

  .page-detail .detail-content .content-hero .swiper .swiper-pagination {
    font-size: 22px;
    padding: 50px 40px;
  }

  .page-detail .detail-content .content-hero .swiper .swiper-buttons {
    padding: 0 50px;
    bottom: 180px;
  }

  .page-detail .detail-content .content-features .feature-item:before {
    right: 50px;
    left: 10px;
  }

  .page-detail .detail-content .content-features {
    gap: 30px;
  }

  .page-detail .detail-content .content-slide .slide-content {
    top: auto;
    bottom: 0;
    right: 0px;
    transform: scale(0.8);
    transform-origin: bottom right;
  }

  .page-detail .detail-content .content-links {
    margin-top: 60px;
    display: block;
    border-radius: 0px;
    padding: 20px 30px;
  }

  .page-detail .detail-content .content-links ul {
    top: 0;
    transform: translate(0px, 0px);
    margin-top: 20px;
  }

  .page-detail .detail-content .content-values {
    margin-top: 90px;
  }

  .page-detail .detail-content .content-values .value-item img {
    max-width: 50px;
    max-height: 30px;
  }

  .page-detail .detail-content .content-values .value-item {
    font-size: 15px;
    gap: 15px;
    padding: 30px 10px;
  }

  .certificates-slide .swiper .swiper-wrapper .swiper-slide .slide-item img {
    max-width: 190px;
  }

  .certificates-slide
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide-item
    .item-content
    .content-title {
    font-size: 20px;
    margin-top: 10px;
    line-height: 1.2;
  }

  .certificates-slide
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide-item
    .item-content
    .content-tag {
    font-size: 17px;
    padding: 6px 10px;
  }

  .inner-certificates {
    padding-bottom: 120px;
    padding-left: 60px;
  }
}

@media (max-width: 991px) {
  .page-detail .detail-menu {
    padding: 24px 24px 15px;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }

  .content-extra .desc-title {
    font-size: 24px;
    max-width: 75%;
  }

  .page-detail-container {
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }

  .page-detail .detail-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    width: 100%;
    gap: 40px;
  }

  .page-detail .detail-menu > span {
    max-width: 100%;
    width: 100%;
    font-size: 25px;
  }

  .page-detail .detail-menu ul li a {
    font-size: 15px;
    padding: 10px 0;
    margin: 0;
  }

  .page-detail .detail-menu span:after {
    margin-top: 15px;
  }

  .page-detail-other .page-detail-container {
    flex-direction: column-reverse;
    gap: 0px;
  }

  .page-detail .detail-info {
    max-width: 100%;
    margin-right: 0;
  }

  .page-detail .detail-info .detail-sticky ul {
    flex-direction: row;
  }

  .page-detail .detail-info .detail-sticky {
    position: relative;
    top: 0;
    padding-bottom: 25px;
  }

  .page-detail .detail-info .detail-sticky ul li {
    flex: 1;
  }

  .page-detail .detail-info .detail-sticky ul li a {
    font-size: 2vw;
  }

  .page-detail .detail-info .detail-sticky > svg {
    display: none;
  }

  .page-detail .detail-info .detail-sticky .sticky-title {
    font-size: 3vw;
    margin-top: 0;
  }

  .page-detail .detail-content {
    max-width: initial;
    margin-top: 50px;
  }

  .page-detail
    .detail-content
    .content-hero
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide-content
    .content-title {
    font-size: 3.5vw;
  }

  .page-detail
    .detail-content
    .content-hero
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide-content
    .content-tag {
    font-size: 2vw;
  }

  .page-detail
    .detail-content
    .content-hero
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide-content {
    max-width: 50vw;
  }

  .page-detail .detail-content .content-desc .desc-title {
    font-size: 3vw;
  }

  .page-detail .detail-content .content-desc p {
    font-size: 3vw;
  }

  .page-detail .detail-content .content-features .feature-item span {
    font-size: 8vw;
    word-spacing: -10px;
  }

  .page-detail .detail-content .content-features .feature-item p {
    font-size: 2vw;
  }

  .page-detail .detail-content .content-features {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 0;
    margin: 50px 0;
  }

  .page-detail .detail-content .content-extra p {
    font-size: 3vw;
  }

  .page-detail
    .detail-content
    .content-features
    .feature-item-row
    .feature-item {
    max-width: 50%;
    gap: 30px;
  }

  .page-detail .detail-content .content-features .feature-item-row > p {
    max-width: 40%;
    font-size: 2vw;
  }

  .page-detail
    .detail-content
    .content-features
    .feature-item-row
    .feature-item
    p {
    font-size: 2.5vw;
  }

  .page-detail .detail-content .content-links ul li a {
    font-size: 2vw;
  }

  .certificates-slide .swiper {
    margin-top: 40px;
  }

  .page-detail .page-slide-section {
    padding-top: 60px;
  }

  .page-detail .detail-content .content-desc .desc-title {
    font-size: 3vw;
    padding-bottom: 10px;
    padding: 50px 7vw 30px 30px;
  }

  .page-detail .detail-info .detail-sticky img {
    max-width: 100px;
  }

  .page-detail .detail-info .detail-sticky p {
    font-size: 18px;
  }

  .page-detail .detail-content .content-features .feature-item {
    gap: 20px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    .item-row
    .item-info
    > span {
    font-size: 15px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    .item-row
    .item-info
    a {
    font-size: 17px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    img {
    max-width: 80px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item {
    gap: 30px;
    padding: 20px 30px;
  }

  .page-detail .detail-content .content-services .service-slide-content {
    margin-top: 0;
    transform: translate(0px, 0px);
    margin-bottom: -100px;
  }
}

@media (max-width: 767px) {
  .page-detail .detail-menu {
    margin-bottom: 0;
  }

  .content-extra .desc-title {
    max-width: 100%;
  }

  .page-detail-container {
    padding: 0 24px 50px;
  }

  .page-detail {
    padding-top: 50px;
  }

  .page-detail .detail-menu ul li a svg {
    width: 25px;
  }

  .page-detail .detail-info .detail-sticky .sticky-title {
    font-size: 24px;
    max-width: 80%;
  }

  .page-detail .detail-info .detail-sticky {
    padding: 30px 24px;
    margin-top: 24px;
  }

  .page-detail .detail-info .detail-sticky .line {
    margin: 20px 0;
  }

  .page-detail .detail-info .detail-sticky ul {
    flex-direction: column;
  }

  .page-detail .detail-info .detail-sticky ul li a {
    font-size: 18px;
  }

  .page-detail
    .detail-content
    .content-hero
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide-content
    .content-title {
    font-size: 24px;
  }

  .page-detail
    .detail-content
    .content-hero
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide-content
    .content-tag {
    font-size: 16px;
    padding: 7px 11px;
    margin-left: 0;
    margin-bottom: 15px;
  }

  .page-detail .detail-content .content-desc .desc-title {
    margin-top: 0;
    padding: 50px 0 0;
    margin-right: 0;
    font-size: 24px;
    line-height: 1.3;
    min-height: 0;
  }

  .page-detail .detail-content .content-hero .swiper .swiper-buttons {
    bottom: 0;
    left: 0;
    flex-direction: row;
    padding: 15px 24px;
  }

  .page-detail .detail-content .content-hero .swiper .swiper-pagination {
    padding: 24px 24px;
  }

  .page-detail .detail-content .content-hero .swiper .swiper-buttons > div {
    padding: 5px;
  }

  .page-detail
    .detail-content
    .content-hero
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide-content {
    max-width: 100%;
  }

  .page-detail .detail-content .content-desc .desc-title:after {
    margin-top: 24px;
  }

  .page-detail .detail-content .content-desc p {
    padding-left: 0;
    font-size: 18px;
    padding-top: 7.5px;
    line-height: 1.3;
  }

  .page-detail .detail-content .content-features .feature-item {
    display: block;
  }

  .page-detail .detail-content .content-features {
    gap: 50px 20px;
    padding: 0;
    margin-top: 0;
  }

  .page-detail .detail-content .content-features .feature-item span {
    font-size: 15vw;
    word-spacing: -10px;
  }

  .page-detail .detail-content .content-features .feature-item p {
    font-size: 17px;
    margin-top: 10px;
    line-height: 1.2;
  }

  .page-detail .detail-content .content-features .feature-item:before {
    right: 40px;
  }

  .page-slide-section .slide-container .slide-header .slide-title .title-tag {
    font-size: 14px;
    padding: 8px 10px;
    border-left-width: 2px;
    margin-bottom: 10px;
  }

  .certificates-slide .swiper .swiper-wrapper .swiper-slide .slide-item {
    display: block;
  }

  .certificates-slide {
    margin-right: 0;
    padding-top: 80px;
  }

  .inner-certificates {
    padding-left: 24px;
    padding-top: 40px;
  }

  .page-detail-container .services {
    margin-right: 0;
  }

  .certificates-slide .swiper .swiper-wrapper .swiper-slide .slide-item img {
    margin-bottom: 12px;
  }

  .certificates-slide .slide-header {
    padding-right: 0;
  }
  .inner-certificates .slide-header {
    padding-right: 20px;
  }

  .certificates-slide .slide-header .slide-title {
    font-size: 6vw;
  }

  .certificates-slide .slide-header .slide-buttons .slide-btn svg {
    width: 20px;
  }

  .certificates-slide .slide-header .slide-buttons .slide-btn {
    width: 20px;
    height: 20px;
    padding: 5px 0;
  }

  .certificates-slide .slide-header .slide-title span:before {
    right: 20%;
  }

  .page-detail .detail-content .content-values {
    flex-wrap: wrap;
    margin-top: 60px;
  }

  .page-detail .detail-content .content-values .value-item {
    flex: 1 0 50%;
  }

  .page-detail .detail-content .content-values .value-item + .value-item {
    margin-top: 0;
    margin-left: 0;
  }

  .page-detail .detail-content .content-values .value-item:nth-child(1n + 1) {
    margin-left: -1px;
    margin-top: -1px;
  }

  .page-detail .detail-content .content-links ul li a {
    font-size: 18px;
    border-bottom-width: 3px;
  }

  .page-detail .detail-content .content-links ul {
    display: flex;
    flex-wrap: wrap;
  }

  .page-detail .detail-content .content-links ul li {
    flex: 0 0 100%;
  }

  .page-detail .detail-content .content-features .feature-item-row {
    display: block;
  }

  .page-detail .detail-content .content-features .feature-item-row > p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.3;
    margin-top: 20px;
  }

  .page-detail
    .detail-content
    .content-features
    .feature-item-row
    .feature-item {
    max-width: 100%;
    display: flex;
    gap: 20px;
  }

  .page-detail
    .detail-content
    .content-features
    .feature-item-row
    .feature-item
    p {
    font-size: 20px;
    margin-top: 0;
    line-height: 1.3;
  }

  .page-detail .detail-content .content-extra p {
    font-size: 17px;
    margin-top: 20px;
    line-height: 1.3;
  }

  .page-detail .detail-content .content-slide .slide-content {
    position: relative;
    transform: scale(1);
    max-width: 100%;
    border-bottom-width: 5px;
    padding: 18px 20px 25px;
  }

  .page-detail .detail-content .content-slide {
    margin-top: 20px;
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
  }

  .page-detail .detail-content .content-slide .swiper {
    width: 100%;
  }

  .page-detail
    .detail-content
    .content-slide
    .swiper
    .swiper-wrapper
    .swiper-slide
    .slide-img {
    height: 47vw;
  }

  .page-detail
    .detail-content
    .content-slide
    .slide-content
    .content-container
    .content-item
    > span {
    font-size: 22px;
    line-height: 1.2;
  }

  .page-detail
    .detail-content
    .content-slide
    .slide-content
    .content-container
    .content-item
    p {
    font-size: 17px;
    margin-top: 12px;
    line-height: 1.3;
  }

  .page-detail
    .detail-content
    .content-slide
    .slide-content
    .content-container
    .content-item {
    max-width: 100%;
  }

  .page-detail
    .detail-content
    .content-slide
    .slide-content
    .swiper-pagination {
    font-size: 20px;
  }

  .page-detail
    .detail-content
    .content-slide
    .slide-content
    .slide-buttons
    .slide-btn
    svg {
  }

  .page-detail
    .detail-content
    .content-slide
    .slide-content
    .content-container {
    padding-top: 25px;
    margin-top: 18px;
  }
  .page-detail .page-slide-section {
    padding-top: 10px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    .item-row {
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item {
    display: block;
    padding: 30px 0;
    text-align: left;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    .item-row
    .item-info
    + .item-info {
    margin-left: 20px;
    padding-left: 20px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    > img {
    margin-bottom: 20px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-slide-content
    .content-item
    .item-row
    .item-info
    a {
    font-size: 3.8vw;
  }

  .page-detail .detail-content .content-services .service-slide-content {
    margin-bottom: 0;
  }

  .page-detail .detail-content .content-services .services-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .page-detail .detail-content .content-services {
    margin-top: 70px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-swiper
    .swiper-buttons
    .swiper-btn
    svg {
    height: auto;
    width: 24px;
  }

  .page-detail .detail-content .content-services .service-swiper .swiper {
    margin-right: 20px;
  }

  .page-detail .detail-content .content-links {
    margin-top: 0;
  }

  .page-detail .detail-content .content-services .service-swiper .slide-item {
    font-size: 17px;
    gap: 7px;
  }

  .page-detail
    .detail-content
    .content-services
    .service-swiper
    .slide-item
    svg {
    height: 25px;
  }
}

/* Contact */
.contact {
  background: #f1f1f1;
}

.contact .contact-container .contact-info > span {
  font-weight: 700;
  font-size: 83px;
  color: #000000;
  margin-bottom: 85px;
  display: block;
  background: #f1f1f1;
}
.contact .contact-container .contact-info ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 24px;
}
.contact .contact-container .contact-info ul li span {
  display: block;
  font-size: 20px;
  color: #dc0546;
}
.contact .contact-container .contact-info ul li a {
  font-size: 45px;
  color: #000;
  margin-top: 12px;
  display: inline-block;
  line-height: 1.2;
}

.contact .contact-container .contact-info {
  padding: 165px 120px 85px;
  background: #f1f1f1;
  flex: 0 0 50%;
  max-width: 50%;
}

.contact {
}

.contact .contact-container {
  display: flex;
  margin: 0 90px -200px;
  position: relative;
}

.contact .contact-container .contact-form {
  flex: 0 0 50%;
  max-width: 50%;
  background: #fff;
  padding: 20px 55px 95px;
  border-top: 1px solid #f1f1f1;
}

.contact .contact-container .contact-form .contact-form-title {
  display: block;
  font-size: 30px;
  color: #000;
  margin-bottom: 60px;
}

span.contact-form-title {
}

.contact .contact-container .contact-form form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  gap: 24px;
}

.contact .contact-container .contact-form .form-container {
}

.contact .contact-container .contact-form .form-container .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 20px;
}

.contact .contact-container .contact-form .form-container .form-security-code {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.contact
  .contact-container
  .contact-form
  .form-container
  .form-security-code
  .captcha_img {
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  margin-bottom: -2px;
  height: 55px;
  width: 100%;
}

.contact
  .contact-container
  .contact-form
  .form-container
  .form-security-code
  a {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translate(0, -50%);
  background: #fff;
  border-radius: 100%;
  padding: 6px;
}

.form-item .form-control {
  width: 100%;
  font-size: 20px;
  color: #000;
  border: none;
  resize: none;
  padding: 0 30px 20px;
  height: 45px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  outline: none;
  font-family: inherit;
  transition: 0.4s;
}

.contact
  .contact-container
  .contact-form
  .form-container
  .form-security-code
  .form-control {
  height: 100%;
  padding: 0px 15px;
  font-size: 18px;
}
.form-item .form-control:hover {
  opacity: 0.6;
}

.form-item .form-control:focus {
  border-bottom-color: black;
  opacity: 1;
}
.form-item.active .form-control {
  border-bottom-color: black;
  opacity: 1;
}

.form-item.active .item-line {
  opacity: 1;
}

.form-item .form-control:focus ~ .item-line {
  opacity: 1;
}

.form-grid .form-item:last-child {
  grid-column: span 2;
}

.form-item textarea.form-control {
  height: 255px;
}

.form-item {
  position: relative;
}

.form-item .item-line {
  position: absolute;
  bottom: 1px;
  background: #000;
  opacity: 0.2;
  height: 20px;
  width: 1px;
}

.form-item .item-line.item-line-left {
  left: 0;
  right: auto;
}

.form-item .item-line.item-line-right {
  right: 0;
  left: auto;
}

.form-grid .form-item:last-child .item-line {
  bottom: 4px;
}

.contact .contact-container .contact-form .form-container button:hover {
  opacity: 0.6;
}

.contact .contact-container .contact-form .form-container button:hover path {
}

.contact .contact-container .contact-form .form-container button {
  width: 100%;
  font-size: 20px;
  color: #0c2967;
  background: none;
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 12px;
  gap: 15px;
  margin-left: auto;
  transition: 0.4s;
  cursor: pointer;
  position: relative;
}

.contact .contact-container .contact-form .form-container p {
  font-size: 20px;
  color: #000000;
  line-height: 1.2;
  margin: 30px 0;
}

.contact .contact-container .contact-form .form-container p a {
  color: #0c2967;
}

.contact .information .information-wrapper div .information-line {
  background: #f1f1f1;
}

.contact .contact-map {
  height: 1300px;
}

.contact .contact-map iframe {
  width: 100%;
  height: 100%;
}

.contact .contact-branches {
  margin: -180px 100px 170px;
  position: relative;
  overflow: hidden;
}



.contact .contact-branches .branche-item {
  border-bottom: 10px solid #dc0546;
  background: #fff;
  padding: 70px 20px;
  height: auto;
}

.contact .contact-branches .branche-item > span {
  font-weight: 700;
  font-size: 40px;
  display: block;
  color: #0c2967;
  position: relative;
  z-index: 1;
  max-width: 340px;
  text-align: center;
  margin: 0 auto 60px;
}

.contact .contact-branches .branche-item > span > span {
  color: #dc0546;
  position: relative;
}

.contact .contact-branches .branche-item > span > span:before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: -3px;
  left: -10px;
  right: -22px;
  background: #f1f1f1;
  z-index: -1;
  transform: skewX(-15deg);
}

.contact .contact-branches .branche-item ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 340px;
  margin: 0 auto;
}

.contact .contact-branches .branche-item ul li {
}

.contact .contact-branches .branche-item ul li span {
  display: block;
  font-size: 20px;
  color: #dc0546;
}

.contact .contact-branches .branche-item ul li a:hover {
  color: #dc0546;
}

.contact .contact-branches .branche-item ul li a {
  font-size: 25px;
  color: #000;
  margin-top: 12px;
  display: inline-block;
  transition: 0.4s;
}



@media (min-width: 1441px) {
  .contact-branches .swiper-wrapper {
  justify-content: center;
}
}

@media (max-width: 1470px) {
  .contact .contact-branches .branche-item {
    padding: 40px 20px;
  }

  .contact .contact-branches .branche-item > span {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .contact .contact-branches .branche-item ul li a {
    font-size: 20px;
  }

  .contact .contact-branches .branche-item ul {
    max-width: 270px;
  }

  .contact .contact-map {
    height: 1000px;
  }

  .contact .contact-container .contact-info > span {
    font-size: 50px;
    margin-bottom: 50px;
  }

  .contact .contact-container .contact-info ul li a {
    font-size: 30px;
  }

  .contact .contact-container .contact-form {
    padding: 20px 50px 50px;
    flex: 0 0 60%;
    max-width: 60%;
  }

  .contact .contact-container .contact-info {
    padding: 165px 60px 85px;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .contact .contact-container .contact-form .form-container p {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .contact .contact-container {
    margin: 0 50px -200px;
  }

  .contact .contact-container .contact-info {
    padding: 65px 50px 50px;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .contact .contact-container .contact-form {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .contact .contact-container .contact-info > span {
    font-size: 40px;
  }

  .contact .contact-container .contact-info ul li a {
    font-size: 25px;
    padding: 5px 0;
  }

  .contact .contact-branches {
    margin: -180px 50px 170px;
    gap: 20px;
  }

  .form-item textarea.form-control {
    height: 150px;
  }

  .form-item .form-control {
    padding: 0 20px 20px;
  }

  .contact .contact-container .contact-form .form-container button {
    font-size: 24px;
    padding: 8px 20px;
  }
}

@media (max-width: 991px) {
  .contact .contact-container {
    display: block;
    margin: 0 32px -200px;
  }

  .contact .contact-container .contact-info {
    max-width: 100%;
    padding: 60px 0;
  }

  .contact .contact-container .contact-form {
    max-width: 100%;
    padding: 40px;
  }

  .contact .contact-container .contact-info > span {
    margin-bottom: 50px;
  }

  .contact .contact-container .contact-info ul {
    flex-direction: row;
  }

  .contact .contact-container .contact-info ul li {
    flex: 1 0 calc(50% - 12px);
  }

  .contact .contact-branches {
    margin: -180px 32px 110px;
  }

  .contact .contact-branches .branche-item > span {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .contact .contact-branches {
    margin: -70px 24px 100px;
    display: block;
  }

  .contact
    .contact-container
    .contact-form
    .form-container
    .form-security-code {
    grid-template-columns: repeat(1, 1fr);
  }

  .contact .contact-container .contact-info > span {
    font-size: 32px;
    max-width: 200px;
    margin-bottom: 32px;
  }

  .contact .contact-container {
    margin: 0 24px 0;
  }

  .contact .contact-container .contact-info {
    padding: 40px 0;
  }

  .contact .contact-container .contact-info ul li a {
    margin-top: 5px;
    font-size: 20px;
  }

  .contact .contact-container .contact-info ul li span {
    font-size: 17px;
  }

  .contact .contact-container .contact-form .contact-form-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .contact .contact-container .contact-form {
    padding: 32px 24px;
  }

  .contact .contact-container .contact-form .form-container .form-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .form-item .form-control {
    padding: 0 15px 5px;
    font-size: 18px;
  }

  .contact .contact-container .contact-form .form-container p {
    font-size: 15px;
  }

  .contact .contact-container .contact-form .form-container button {
    font-size: 20px;
    width: 100%;
    justify-content: center;
  }

  .contact .contact-container .contact-form .form-container button svg {
    height: auto;
    width: 35px;
  }

  .contact .contact-map {
    height: 500px;
  }

  .contact .contact-branches .branche-item {
    margin-bottom: 24px;
    height: 380px;
  }

  .contact .contact-branches .branche-item > span {
    font-size: 30px;
  }
}

/* Career */
.career .form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -18px 60px -10px;
}

.career .form-row .form-item img {
  width: 100%;
  height: 44px;
}

.career .form-row .form-item a {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  right: 10px;
}

.career .form-row .form-item:nth-child(2) {
  border-bottom: 1px solid rgb(0 0 0 / 20%);
}

.career .form-row .form-item {
  flex: 0 0 calc(33% - 20px);
  height: 45px;
  margin: 0 10px;
}

.career .form-row .form-item:nth-child(2) .item-line {
  bottom: 0px;
}

.career .submit-button input[type="checkbox"]:checked ~ label {
  background: #9da1b5;
}

.career .submit-button input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.career .submit-button label {
  min-width: 20px;
  height: 20px;
  background: #fafafa;
  border: 1px solid #9da1b5;
  display: block;
  margin-top: -1px;
  cursor: pointer;
  transition: 0.4s;
}

.career .submit-button .form-group > div {
  display: flex;
  gap: 12px;
}

.career form {
  margin-top: 80px;
}

.career-page .resources-department-wrapper {
  padding-bottom: 20px;
}

.career .custom-file {
  margin-bottom: 35px;
}

.career .custom-file label {
  position: absolute;
  bottom: 23px;
  right: 20px;
  background: #f1f1f1;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 15px;
  font-size: 20px;
  color: #000;
  font-weight: bold;
  gap: 20px;
  cursor: pointer;
}

button .item-line.item-line-left, .submit .item-line.item-line-left  {
  position: absolute;
  bottom: 0px;
  background: #000;
  opacity: 0.2;
  height: 20px;
  width: 1px;
  left: 0;
  right: auto;
}
button .item-line.item-line-right, .submit .item-line.item-line-right {
  position: absolute;
  bottom: 0px;
  background: #000;
  opacity: 0.2;
  height: 20px;
  width: 1px;
  right: 0;
  left: auto;
}

::file-selector-button {
  display: none;
}

::-webkit-file-selector-button {
  display: none;
}

.career .custom-file input {
  padding-bottom: 35px;
  height: auto;
  color: #fff0;
}
.career .custom-file .input-text {
  font-size: 20px;
  color: #000;
  position: absolute;
  left: 30px;
  top: 0px;
  bottom: 0;
  right: 190px;
  /* white-space: nowrap; */
  /* overflow: hidden; */
  /* text-overflow: ellipsis; */
}

.career .form-item .form-control {
  font-size: 1.3vw;
}

@media (max-width: 1199px) {
  .submit-button input[type="submit"] {
    font-size: 22px;
  }

  .submit-button .submit svg {
    width: auto;
    height: 30px;
  }

  .career .custom-file .input-text {
    font-size: 1.5vw;
  }
}

@media (max-width: 991px) {
  .resources-department-wrapper div p:first-child {
    font-size: 3.5vw;
  }

  .resources-department-wrapper div p:last-child {
    font-size: 3vw;
  }

  .resources-department-wrapper .resources-detail-department-header {
    font-size: 3vw;
    padding-left: 5vw;
  }

  .career .form-item .form-control {
    font-size: 2vw;
  }

  .career .custom-file .input-text {
    font-size: 3vw;
  }
}

@media (max-width: 767px) {
  .resources-department-wrapper div p:first-child {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .contact
    .contact-container
    .contact-form
    .form-container
    .form-security-code
    .form-control {
    padding: 17px 15px;
  }

  .resources-department-wrapper div p:last-child {
    font-size: 18px;
  }

  .resources-department-wrapper .resources-detail-department-header {
    font-size: 18px;
    padding-left: 30px;
    margin-bottom: 20px;
  }

  .career form {
    margin-top: 10px;
  }

  .career .custom-file label {
    font-size: 15px;
    padding: 8px 14px;
    gap: 10px;
    bottom: 12px;
    right: 10px;
  }

  .career .custom-file label svg {
    display: none;
  }

  .career .form-item .form-control {
    font-size: 16px;
    min-height: 35px;
  }

  .career .custom-file .input-text {
    font-size: 16px;
    right: 120px;
    left: 10px;
    height: 35px;
  }

  .career .custom-file input {
    padding-bottom: 15px;
  }

  .career .custom-file {
    margin-bottom: 10px;
  }

  .career .form-row {
    margin: 0 -3px 10px;
  }

  .career .form-row .form-item {
    flex: 1 0 calc(50% - 10px);
    margin: 0 4px 20px;
  }

  .career .form-row .form-item:nth-child(1) {
    flex: 1 0 calc(100% - 10px);
  }

  .submit-button .form-group {
    display: block;
  }

  .submit-button .submit {
    margin-top: 20px;
  }

  .resources-detail-contact-wrapper {
    max-width: 100%;
  }

  .resources-detail-contact-wrapper h1 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1366px) and (min-width: 1200px) {
  .page-detail .detail-content .content-links span {
    font-size: 16px;
    margin-right: 15px;
  }
}
.services-slider .services-slider-content ul {
  margin-top: 30px;
  padding-left: 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-slider .services-slider-content ul li {
  font-size: 17px;
  color: #ffffff;
  opacity: 0.6;
  position: relative;
  padding-left: 30px;
}

.services-slider .services-slider-content ul li::before {
  content: "";
  clip-path: polygon(26% 0, 100% 0%, 79% 100%, 0 100%);
  width: 20px;
  height: 10px;
  background: #dc0546;
  position: absolute;
  left: 4px;
  top: 3px;
}


.page-detail .detail-content .content-desc p {
  line-height: 1.5;
}

h1.homepage-slider-absolute-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    color: white;
    opacity: 0.5;
    font-size: 25px;
    z-index: 2;
}