:root {
  --primary: #00436D;
  --primary2: #002F4D;
  --blue: #005EAA;
  --second: #EC0505;
  --font-body: "Inter", sans-serif, ;
  --bg-body: #fff;
  --color-body: #202020;
  --bg-header: #00436D;
  --color-header: #fff;
  --color-toggler: #fff;
  --field-bg: #fff;
  --field-label: #fff;
  --field-h-2xl: 68px;
  --field-h-xl: 55px;
  --field-h-lg: 48px;
  --field-h: 40px;
  --field-placeholder: #5E5E5E;
  --submit-bg: var(--second);
  --submit-color: #fff;
}

/* Fonts */
@font-face {
  font-family: "Inter";
  src: url(./Inter-Regular.ttf);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url(./Inter-Medium.ttf);
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url(./Inter-SemiBold.ttf);
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url(./Inter-Bold.ttf);
  font-weight: 700;
  font-display: swap;
}

.text-96 {
  line-height: 1.2;
  font-size: 32px;
}

@media (min-width: 576px) {
  .text-96 {
    font-size: 48px;
  }
}

@media (min-width: 768px) {
  .text-96 {
    font-size: 56px;
  }
}

@media (min-width: 992px) {
  .text-96 {
    font-size: 64px;
  }
}

@media (min-width: 1200px) {
  .text-96 {
    font-size: 96px;
  }
}


.text-64 {
  font-size: 32px;
}

@media (min-width: 768px) {
  .text-64 {
    font-size: 40px;
  }
}

@media (min-width: 992px) {
  .text-64 {
    font-size: 56px;
  }
}

@media (min-width: 1200px) {
  .text-64 {
    font-size: 64px;
  }
}

.text-40 {
  font-size: 28px;
}

@media (min-width: 768px) {
  .text-40 {
    font-size: 36px;
  }
}

@media (min-width: 1200px) {
  .text-40 {
    font-size: 40px;
  }
}

@media (min-width: 1400px) {
  .text-40 {
    /* font-size: 2.5vw; */
  }
}

.text-32,
.content-des h2 {
  font-size: 20px;
}

@media (min-width: 768px) {

  .text-32,
  .content-des h2 {
    font-size: 28px;
  }
}

@media (min-width: 1200px) {

  .text-32,
  .content-des h2 {
    font-size: 32px;
  }
}

@media (min-width: 1400px) {

  .text-32,
  .content-des h2 {
    /* font-size: 2.05vw; */
  }
}

.text-24,
.content-des h3 {
  font-size: 18px;
}

@media (min-width: 768px) {

  .text-24,
  .content-des h3 {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {

  .text-24,
  .content-des h3 {
    font-size: 24px;
  }
}

@media (min-width: 1400px) {

  .text-24,
  .content-des h3 {
    /* font-size: 1.35vw; */
  }
}

.text-20,
.content-des h4 {
  font-size: 16px;
}

@media (min-width: 768px) {

  .text-20,
  .content-des h4 {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {

  .text-20,
  .content-des h4 {
    font-size: 20px;
  }
}

@media (min-width: 1400px) {

  .text-20,
  .content-des h4 {
    /* font-size: 1.25vw; */
  }
}

.text-14 {
  font-size: 14px;
}

@media (min-width: 992px) {
  .text-14 {
    /* font-size: 0.85vw; */
  }
}


.icon {
  display: block;
}

.icon i {
  display: block;
  width: 100%;
  height: 100%;
}


.icon-primary {
  -webkit-filter: brightness(0) saturate(100%) invert(20%) sepia(26%) saturate(5105%) hue-rotate(181deg) brightness(87%) contrast(103%);
  filter: brightness(0) saturate(100%) invert(20%) sepia(26%) saturate(5105%) hue-rotate(181deg) brightness(87%) contrast(103%);
}

.icon-color-white {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(8%) hue-rotate(164deg) brightness(104%) contrast(103%);
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(8%) hue-rotate(164deg) brightness(104%) contrast(103%);
}

.icon-color-black {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(18%) hue-rotate(340deg) brightness(102%) contrast(105%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(18%) hue-rotate(340deg) brightness(102%) contrast(105%);
}

.icon-square img,
.icon-square svg {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--color-body);
  font-size: 16px;
}

@media (min-width: 1400px) {
  body {
    /* font-size: 1.05vw; */
  }
}

body * {
  line-height: normal;
}

.button {
  border-radius: 4px;
  min-width: 215px;
  font-weight: bold;
  line-height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .button {
    line-height: 42px;
  }
}

@media (min-width: 1200px) {
  .button {
    line-height: 48px;
  }
}

@media (min-width: 1400px) {
  .button {
    line-height: 52px;
  }
}

.button-primary {
  background-color: var(--blue) !important;
  color: #fff;
}

.button-primary:hover {
  background-color: var(--second) !important;
}

section {
  position: relative;
}

section>.bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* opacity: 0.9; */
  /* background-color: transparent; */
}

section>.bg img {
  /* mix-blend-mode: darken; */
  /* -webkit-filter: grayscale(50%);
          filter: grayscale(50%); */
  opacity: .2;
}

section>.bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #246289;
  opacity: .3;
  z-index: 2;
  mix-blend-mode: multiply;
}

section>.container {
  position: relative;
  z-index: 9;
}

.trim {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.trim.trim-1 {
  -webkit-line-clamp: 1;
}

.trim.trim-2 {
  -webkit-line-clamp: 2;
}

.trim.trim-3 {
  -webkit-line-clamp: 3;
}

.trim.trim-4 {
  -webkit-line-clamp: 4;
}

.trim.trim-10 {
  -webkit-line-clamp: 10;
}

@media (max-width: 576px) {
  .br_sp>br {
    display: none;
  }
}

.imgDrop {
  position: relative;
  overflow: hidden;
}

.imgDrop.has-backdrop:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.imgDrop>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: none;
  display: block;
}

.hover-zoom {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.hover-zoom:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }
}

@media (max-width: 576px) {
  .row {
    margin-left: -4px;
    margin-right: -4px;
  }
}

@media (max-width: 768px) {
  [class*=col-] {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 576px) {
  [class*=col-] {
    padding-left: 4px;
    padding-right: 4px;
  }
}

.link-hover-dot:hover {
  padding-left: 16px;
  position: relative;
}

.link-hover-dot:hover:before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FE701F;
  content: "";
}

.link-hover-dot:hover.sz-small {
  padding-left: 12px;
}

.link-hover-dot:hover.sz-small:before {
  width: 5px;
  height: 5px;
  top: 8px;
}

.ratio-1 {
  padding-top: 66.5413533835%;
}

.ratio-2 {
  padding-top: 136.0594795539%;
}

.ratio-auto {
  height: 100%;
}

@media (max-width: 768px) {
  .show-pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show-sp {
    display: none !important;
  }
}

.form-field .wrap .input {
  display: block;
  width: 100%;
  background-color: var(--field-bg);
  color: var(--color-body);
  padding: 8px 16px;
  margin-top: 8px;
  border: 1px solid #fff;
}

.form-field .wrap .input:focus {
  border-color: var(--primary);
}

.form-field .wrap .input::-webkit-input-placeholder {
  color: var(--field-placeholder);
}

.form-field .wrap .input::-moz-placeholder {
  color: var(--field-placeholder);
}

.form-field .wrap .input::-ms-input-placeholder {
  color: var(--field-placeholder);
}

.form-field .wrap .input::placeholder {
  color: var(--field-placeholder);
}

.form-field .wrap .input:focus-visible {
  outline: none;
}

.btn-submit {
  background-color: var(--submit-bg);
  color: var(--submit-color);
  border-radius: 8px;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

.form-field .wrap .input,
.btn-submit {
  height: var(--field-h);
}

@media (min-width: 992px) {

  .form-field .wrap .input,
  .btn-submit {
    height: var(--field-h-lg);
  }
}

@media (min-width: 1200px) {

  .form-field .wrap .input,
  .btn-submit {
    height: var(--field-h-xl);
  }
}

@media (min-width: 1400px) {

  .form-field .wrap .input,
  .btn-submit {
    height: var(--field-h-2xl);
  }
}

.slider .slick-slide {
  display: inline-block !important;
  vertical-align: top;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.slider .slick-dots {
  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;
}

.slider .slick-dots li {
  width: 15px;
  height: 15px;
  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;
}

.slider .slick-dots li button {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #AEAEAE;
  padding: 0;
}

.slider .slick-dots li button:before {
  display: none;
}

.slider .slick-dots li.slick-active button {
  background-color: var(--primary);
}

.slider .slick-prev,
.slider .slick-next {
  width: 24px;
  height: 40px;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.slider .slick-prev::before,
.slider .slick-next::before {
  display: none;
}

.slider .slick-prev {
  background-image: url(../img/icon/arr-prev.svg);
}

.slider .slick-next {
  background-image: url(../img/icon/arr-next.svg);
}

.slider.arr-outsite .slick-prev,
.slider.arr-outsite .slick-next {
  background-color: var(--primary);
  background-size: 16px;
}

@media (max-width: 768px) {

  .slider.arr-outsite .slick-prev,
  .slider.arr-outsite .slick-next {
    background-size: 10px;
  }
}


.slider-space-20 {
  margin-left: -10px;
  margin-right: -10px;
}

.slider-space-20 .slick-slide {
  margin: 0 10px;
}


.slider-space-20.arr-insite .slick-prev {
  left: 22px;
}

.slider-space-20.arr-insite .slick-next {
  right: 22px;
}

.slider-space-20.arr-outsite .slick-prev {
  left: -8px;
}

.slider-space-20.arr-outsite .slick-next {
  right: -8px;
}

header {
  background-color: var(--bg-header);
  color: var(--color-header);
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

header .container {
  position: relative;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

header .logo-brand {
  display: block;
  width: 100%;
  max-width: 150px;
}

@media (min-width: 768px) {
  header .logo-brand {
    max-width: 220px;
  }
}

@media (min-width: 1200px) {
  header .logo-brand {
    max-width: 272px;
  }
}

@media (min-width: 1400px) {
  header .logo-brand {
    max-width: min(15.7407407407vw, 272px);
  }
}

header .offcanvas-body {
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .btn-close {
  width: 40px;
  height: 40px;
  position: relative;
}

header .btn-close:before,
header .btn-close:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 24px;
  background-color: #fff;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 2px;
}

header .btn-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

header .btn-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header .navbar {
  padding: 0;
}

header .navbar-nav .nav-item .nav-link {
  padding: 0 16px 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--color-header);
}

@media (max-width: 768px) {
  header .navbar-nav .nav-item .nav-link {
    padding: 8px 16px;
  }
}

header .navbar-nav .nav-item .nav-link:hover {
  opacity: .75;
}

@media (min-width: 992px) {
  header .navbar-nav .nav-item+.nav-item .nav-link {
    border-left: 1px solid #fff;
  }
}

header .navbar-btn {
  border: none;
  outline: none;
  height: 33px;
  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;
}

@media (min-width: 992px) {
  header .navbar-btn {
    display: none;
  }
}

header .navbar-btn:focus {
  outline: none;
  border: none;
}

header .navbar-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-toggler);
  border-radius: 2px;
  border: none;
  background-image: none;
  position: relative;
}

header .navbar-btn span:before,
header .navbar-btn span:after {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  margin: auto;
  content: "";
  background-color: var(--color-toggler);
  border-radius: 2px;
}

header .navbar-btn span:before {
  top: -8px;
}

header .navbar-btn span:after {
  bottom: -8px;
}

header .language {
  cursor: pointer;
}

header .language .language-btn {
  padding: 10px 26px;
  border: 1px dashed #fff;
  /* height: 50px; */
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  /* width: 80px; */
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.05);
}

header .language .language-btn:after {
  content: "";
  display: block;
  width: 20px;
  background-size: 12px;
  height: 12px;
  background-image: url(../img/icon/arr-down.svg);
  background-repeat: no-repeat;
  background-position: center left;
}

header .language .dropdown-menu {
  position: absolute;
  background-color: #0d4d74;
  border: 1px solid rgba(255, 255, 255, 0.3);
  right: 0;
}

header .language .dropdown-menu a {
  color: #fff;
}

header .language .dropdown-menu a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

header .language:hover .language-btn {
  background-color: rgba(255, 255, 255, 0.1);
}

.list-category {
  gap: 0 32px;
}

@media (max-width: 768px) {
  .list-category {
    gap: 8px 0;
  }
}

@media (max-width: 768px) {
  .list-category li {
    width: 50%;
    padding: 0 8px;
  }
}

.list-category li a {
  border-radius: 4px;
}

@media (max-width: 768px) {
  .list-category li a {
    padding: 8px;
  }
}

.list-category li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

body:not(.home) header .list-link {
  display: none;
}

body.home header {
  background-color: #002F4D !important;
}

body.home header .container {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

body.home header .list-category {
  display: none;
}

@media (min-width: 992px) {
  body.home header .logo-block {
    width: 100%;
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) {
  body.home header .list-link {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

@media (max-width: 992px) {
  body.home header .list-link {
    padding: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px 0;
  }

  body.home header .list-link li {
    max-width: 100%;
  }
}

.social-fix {
  position: fixed;
  bottom: 32px;
  right: 8px;
  z-index: 99;
}

.scrolltop {
  cursor: pointer;
}

footer {
  position: relative;
}

footer .footer-left,
footer .footer-right {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer-left .logo {
  max-width: 272px;
  max-height: 45px;
  -o-object-fit: contain;
  object-fit: contain;
}


@media (max-width: 992px) {
  .coppyright {
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    text-align: center;
  }
}

.social-list li a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
}

.social-list li a img {
  width: 32px;
  height: 32px;
}

@media (min-width: 992px) {
  .social-list li a img {
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 1200px) {
  .social-list li a img {
    width: 60px;
    height: 60px;
  }
}


.sec-banner .banner-row {
  gap: 0 min(5.787037037vw, 68px);
}

@media (min-width: 768px) {
  .sec-banner .list-flag:not(.style-row) {
    width: 150px;
  }
}

@media (min-width: 1200px) {
  .sec-banner .list-flag:not(.style-row) {
    width: 207px;
  }
}

.sec-banner .list-flag.style-row {
  width: 100%;
}

@media (max-width: 768px) {
  .sec-banner .list-flag.style-row li {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .sec-banner .list-flag.style-row li {
    width: 150px;
  }
}

@media (min-width: 1200px) {
  .sec-banner .list-flag.style-row li {
    width: 207px;
  }
}

.slider-our-team .item,
.slider-blog .item {
  position: relative;
}

.slider-our-team .item .images,
.slider-blog .item .images {
  padding-top: 117.4825174825%;
}

.slider-our-team .item .content,
.slider-blog .item .content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
}

.slider-our-team .item .content .team-ttl,
.slider-blog .item .content .team-ttl {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.slider-feedback {
  border: 1px solid var(--primary);
}

@media (max-width: 768px) {
  .slider-feedback {
    margin-bottom: 80px;
  }
}

@media (min-width: 768px) {
  .slider-feedback {
    margin-right: min(7.6967592593vw, 133px);
  }
}

.slider-feedback .arrow {
  height: calc(50% + 1px);
  width: min(7.6967592593vw, 133px);
  display: block;
  position: absolute;
  left: 100%;
  background-color: var(--primary);
  background-size: 30%;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .slider-feedback .arrow {
    height: 40px;
    width: 60px;
    bottom: -52px;
    top: auto;
    background-size: 12px;
    border-radius: 5px;
  }
}

.slider-feedback .arrow:hover {
  opacity: 0.8;
}

.slider-feedback .arrow-prev {
  background-image: url(../img/icon/arr-prev.svg);
}

@media (max-width: 768px) {
  .slider-feedback .arrow-prev {
    left: calc(50% - 61px);
  }
}

@media (min-width: 768px) {
  .slider-feedback .arrow-prev {
    top: -1px;
  }
}

.slider-feedback .arrow-next {
  background-image: url(../img/icon/arr-next.svg);
}

@media (min-width: 768px) {
  .slider-feedback .arrow-next {
    bottom: -1px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}

@media (max-width: 768px) {
  .slider-feedback .arrow-next {
    right: calc(50% - 61px);
    left: auto;
  }
}

.slider-feedback .item .content {
  position: relative;
  display: inline-block;
}

.slider-feedback .item .content .team-ttl {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
  z-index: 2;
}

.item-blog {
  display: block;
}

.item-blog .images {
  padding-top: 77%;
}

.item-blog .btn-more {
  display: inline-block;
  border-bottom: 1px solid var(--color-body);
}

.item-blog:hover .imgDrop:before {
  opacity: 0.3;
}

.item-blog:hover .imgDrop img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.item-blog:hover .content-inner {
  background-color: var(--primary2) !important;
}

.item-blog .btn-more:hover {
  color: var(--second);
  border-color: var(--second);
}

.why-row .item:not(.flex) {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.why-row .item:not(.flex) .imgDrop {
  padding-top: 33.3898305085%;
  background-color: rgba(0, 67, 109, 0.7);
}

.why-row .item:not(.flex) .imgDrop img {
  mix-blend-mode: multiply;
  opacity: 0.5;
}

.why-row .item:not(.flex) .ttl {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.why-row .item:not(.flex):hover .imgDrop {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.why-row .item:not(.flex):hover .imgDrop img {
  opacity: 0.7;
}

.why-row .item.flex .images {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .why-row .item.flex .images {
    max-width: 224px;
  }
}

.why-row .item.flex .images .imgDrop {
  padding-top: 87%;
  border-radius: 8px;
}

@media (max-width: 576px) {
  .sec-heading .list-flag {
    margin-right: 12px;
  }
}

@media (max-width: 576px) {
  .sec-heading .list-flag li {
    margin-right: -12px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
  }
}

.sec-heading.style2 {
  background-color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 576px) {
  .sec-heading.style2 .list-flag {
    margin-right: 0;
  }
}

.sec-heading.style2 .list-flag li {
  width: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 576px) {
  .sec-heading.style2 .list-flag li {
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .sec-heading.style2 .list-flag li {
    width: 24px;
  }
}

@media (min-width: 1200px) {
  .sec-heading.style2 .list-flag li {
    width: 32px;
  }
}

@media (min-width: 1400px) {
  .sec-heading.style2 .list-flag li {
    /* width: 1.8518518519vw; */
  }
}

@media (min-width: 768px) {

  .custom-style .why-row>div:nth-child(3n+3) .item,
  .custom-style .why-row>div:nth-child(3n+4) .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.list-contact-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.list-contact-info ul li {
  max-width: 50%;
}

.list-contact-info a {
  text-decoration: underline;
  -webkit-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
}

.list-contact-info a:hover {
  color: var(--second);
}

.slider .slick-track {
  margin-left: 0;
}

.banner-form {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .sec-banner {
    min-height: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sec-banner>.container {
    height: 100%;
    -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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .sec-banner {
    min-height: 600px;
  }
}

@media (min-width: 1200px) {
  .sec-banner {
    min-height: 750px;
  }
}

@media (min-width: 1400px) {
  .sec-banner {
    min-height: 800px;
  }
}

@media (min-width: 1640px) {
  .sec-banner {
    min-height: 900px;
  }
}

article {
  max-width: 100%;
  overflow: hidden;
  min-width: 1px;
  display: block;
  position: relative;
}


.text-editor-content-detail {
  font-size: 16px;
}

.text-editor-content-detail {
  line-height: 1.5;
}

.text-editor-content-detail blockquote,
.text-editor-content-detail dl,
.text-editor-content-detail figure,
.text-editor-content-detail form,
.text-editor-content-detail ol,
.text-editor-content-detail p,
.text-editor-content-detail div,
.text-editor-content-detail pre,
.text-editor-content-detail ul,
.text-editor-content-detail img,
.text-editor-content-detail video {
  margin-bottom: 20px;
}

.text-editor-content-detail ul {
  list-style: disc;
}

.text-editor-content-detail ol {
  list-style: decimal;
}

.text-editor-content-detail ul,
.text-editor-content-detail ol {
  overflow: hidden;
}

.text-editor-content-detail ol li,
.text-editor-content-detail ul li {
  margin-bottom: 0.6em;
}

.text-editor-content-detail ol li,
.text-editor-content-detail ul li {
  margin-left: 1.3em;

}

.text-editor-content-detail h1,
.text-editor-content-detail h2,
.text-editor-content-detail h3,
.text-editor-content-detail h4,
.text-editor-content-detail h5,
.text-editor-content-detail h6 {
  margin-bottom: 0.65em;
  font-weight: bold;
  padding-top: 6px;
  padding-bottom: 6px;
  color: var(--gray-950);
}

.text-editor-content-detail p,
.text-editor-content-detail div {
  word-break: break-word;
}

.text-editor-content-detail img {
  /* border-radius: 16px; */
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.text-editor-content-detail img:not(.alignright):not(.alignleft):not(.aligncenter) {
  width: 100%;
}


.text-editor-content-detail iframe[src*="youtube.com"] {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  /* border-radius: 6px; */
  overflow: hidden;
}

.text-editor-content-detail iframe {
  width: 100% !important;
}

.text-editor-content-detail .wp-caption {
  max-width: 100%;
  width: 100% !important;
}

.text-editor-content-detail .wp-caption .wp-caption-text {
  padding: 12px 8px;
  font-size: 0.9em;
  display: block;
  font-style: italic;
  margin-bottom: 0;
  padding-bottom: 0;
}

.text-editor-content-detail .wp-caption-text {
  text-align: center;
}

.text-editor-content-detail .video>p {
  margin: 0;
}

.text-editor-content-detail .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.text-editor-content-detail .video {
  position: relative;
  overflow: hidden;
  width: 100%;
}


blockquote {
  border-left: 2px solid #446084;
  color: #333;
  font-size: 1.2em;
  font-style: italic;
  margin: 0 0 1.25em;
  padding: 0 1.25em 0 1.875em;
  position: relative;
}

@media (min-width: 768px) {
  .alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
  }

  .alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
  }

  .aligncenter {
    clear: both;
    display: block !important;
    margin: 0 auto;
  }
}

.slider-feedback .text-editor-content-detail {
  max-width: 988px;
}

@media (min-width: 768px) {
  .md-w-half {
    width: 50%;
  }
  .banner-row .block-d_site_dynamic {
    margin-left: 30px;
  }
}
.privacy_field {
  text-align: center;
}
.first_screen_section .form_block_wrapper {
  border-radius: 7px;
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.main_article_content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
}
.main_article_content a {
  text-decoration: none;
  color: #0a58ca;
}
.main_article_content a:hover {
  text-decoration: underline;
}
.main_article_content table {
  margin-bottom: 20px;
}
.main_article_content table td, .main_article_content table th {
  border: 1px solid black;
  padding: 4px 10px;
}
.main_article_content ul {
  margin-top: 0.6em;
}
.main_article_content ul > ul {
  margin-left: 1rem;
}
.button-primary:visited {
  color: white;
}
.button-primary:hover {
  text-decoration: none;
}
.main_article_content_def_page {
  max-height: 550px;

}
.main_article_content_def_page::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff  70%, #fff 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.main_article_content_def_page.expanded {
  max-height: none;
}
.main_article_content_def_page.expanded::after {
  display: none;
}
.diafan_reminder {
  display: none;
}