.content-box {
  background: #ffffffc2;
  border-radius: 20px;
  padding: 25px 35px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
}

.owl-dot {

  background-color: #8f8f8f78;
}

.pt-3,
.py-3 {
  padding-top: .1rem !important;
}

.page .text-dark {
  color: #3e517f !important;
}

#bt_line {
  background: #4CAF50 !important;
}

.bg-orange-content {
  display: flex;
  flex-direction: column;
  background-color: #f04924;
  height: 100%;
  justify-content: center;
  padding-left: 5vw;
}

.navbar-nav>li>a {
  font-size: 1rem;
}

.logo-frame {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  border-radius: 8px;
}

.accordion .card {
  display: inline-block;
}

.img-affect {
  display: block;
  width: 120px;
  height: auto;
  position: relative;
  z-index: 1;
  background-color: aliceblue;
  border-radius: 50%;
}

.logo-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: lightSweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes lightSweep {
  0% {
    left: -150%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.navbar-diagonal-left-70 {
  background: linear-gradient(115deg, #0F3057 70%, #ffffff 20%);
  width: 100%;
  position: relative;
  box-shadow: 0 4px 15px rgba(15, 48, 87, 0.1);
  z-index: 1030;
}

.navbar-diagonal-left {
  background: linear-gradient(115deg, #0F3057 20%, #ffffff 20%);
  width: 100%;
  position: relative;
  box-shadow: 0 4px 15px rgba(15, 48, 87, 0.1);
  z-index: 1030;
}

.navbar-diagonal {
  /* background: linear-gradient(115deg, #ffffff 60%, #0F3057 60%);*/
  width: 100%;
  position: relative;
  box-shadow: 0 4px 15px rgba(15, 48, 87, 0.1);
  z-index: 1030;
}

.mt-80 {
  margin-top: 80px !important;
}

.bg-cover {
  background-repeat: no-repeat !important;
  background-size: cover;
  background-attachment: fixed;
}

#about {
  background: linear-gradient(135deg, #ffffff 0%, #FAFCFF 100%);
  position: relative;
  overflow: hidden;
}

#about .col-lg-6:first-child {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 48, 87, 0.25);
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#about .col-lg-6:first-child:hover {
  transform: translateY(-10px) scale(1.02);
}

#about .col-lg-6:first-child::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-25deg);
  animation: premiumShine 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes premiumShine {
  0% {
    left: -150%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

#about img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

#about .col-lg-6:first-child:hover img {
  transform: scale(1.05);
}

#about .text-gold {
  background: linear-gradient(120deg, #C5A861 0%, #F5DEB3 50%, #C5A861 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.15rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-block;
  animation: textShimmer 3s linear infinite;
}

@keyframes textShimmer {
  to {
    background-position: 200% center;
  }
}

#about h2.text-primary-blue {
  color: #0F3057;
  font-size: 2.6rem;
  line-height: 1.35;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: -0.5px;
}

#about h2.text-primary-blue::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0088CC, #C5A861);
  border-radius: 2px;
  transition: width 0.4s ease;
}

#about:hover h2.text-primary-blue::after {
  width: 140px;
}

#about .text-secondary {
  color: #4A5568 !important;
  font-size: 1.1rem;
  line-height: 1.8;
}

#about strong.text-dark {
  color: #0F3057 !important;
  font-weight: 800;
  position: relative;
  display: inline-block;
  z-index: 1;
  transition: color 0.3s ease;
}

#about strong.text-dark::before {
  content: '';
  position: absolute;
  left: -4px;
  bottom: 2px;
  width: calc(100% + 8px);
  height: 12px;
  background: rgba(197, 168, 97, 0.35);
  z-index: -1;
  transition: height 0.3s ease, background 0.3s ease;
}

#about strong.text-dark:hover::before {
  height: 100%;
  background: rgba(197, 168, 97, 0.15);
}

#about .h5 {
  position: relative;
  padding: 25px 30px;
  background: #FFFFFF;
  border-left: 4px solid #0088CC;
  box-shadow: 0 10px 30px rgba(15, 48, 87, 0.05);
  border-radius: 0 12px 12px 0;
  color: #0F3057 !important;
  line-height: 1.6;
  margin-top: 2rem;
  transition: all 0.4s ease;
}

#about .h5:hover {
  transform: translateX(15px);
  border-left-color: #C5A861;
  box-shadow: 0 15px 35px rgba(15, 48, 87, 0.1);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 20px));
  }
}

@media (max-width: 992px) {
  .clients-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .clients-subtitle {
    border-left: none;
    padding-left: 0;
    border-bottom: 3px solid #2196F3;
    padding-bottom: 15px;
    display: inline-block;
  }

  .clients-slider-wrapper {
    width: 100%;
  }
}

.link-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  background: linear-gradient(145deg, #0a1931, #051024);
  border: 1px solid #112240;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  padding: 5px;
}

.link-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
  border-radius: 15px;
}

.link-image:hover {
  transform: translateY(-8px) scale(1.05);
  /* border-color: #2196F3; */
  box-shadow: 0 12px 25px #2196F3, 0 0 20px #00BCD4;
  /*  background: linear-gradient(145deg, #ffffff, #2196F3);*/
}

.link-image:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

.clients-section {
  padding: 80px 0;
  background: linear-gradient(145deg, #020d1c, #051024);
  border-top: 1px solid #112240;
  border-bottom: 1px solid #112240;
  overflow: hidden;
  position: relative;
  font-family: 'Prompt', sans-serif;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 60, 113, 0.15), transparent 60%);
  pointer-events: none;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.clients-text-content {
  flex: 0 0 35%;
  position: relative;
  z-index: 2;
}

.clients-title {
  font-size: 2.2rem;
  background: linear-gradient(90deg, #c0c5ce, #ffffff, #c0c5ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 15px 0;
  font-weight: 600;
  letter-spacing: 1px;
}

.clients-subtitle {
  font-size: 1.1rem;
  color: #b0badd;
  margin: 0;
  line-height: 1.6;
  border-left: 3px solid #2196F3;
  padding-left: 15px;
}

.clients-slider-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  z-index: 2;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 15px;
}

.clients-slider-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

.clients-slider-track:hover {
  animation-play-state: paused;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-icon-link:last-child {
  margin-right: 0;
}

.social-icon-link:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

/* สีเฉพาะของแต่ละแพลตฟอร์ม */
.phone-icon {
  background-color: #FFC107;
}

.phone-icon:hover {
  background-color: #0088CC;
  box-shadow: 0 6px 12px rgba(15, 48, 87, 0.3);
}

.line-icon {
  background-color: #00B900;
}

.line-icon:hover {
  background-color: #009900;
  box-shadow: 0 6px 12px rgba(0, 185, 0, 0.3);
}

.fb-icon {
  background-color: #0084FF;
}

.fb-icon:hover {
  background-color: #006bce;
  box-shadow: 0 6px 12px rgba(0, 132, 255, 0.3);
}


/* =========================================
   การจัดวางตามขนาดหน้าจอ (Responsive)
   ========================================= */

/* สำหรับหน้าจอคอมพิวเตอร์ (แสดงต่อจากปุ่มติดต่อเรา) */
@media (min-width: 992px) {
  .social-icons-mobile {
    display: none !important;
    /* ซ่อนไอคอนใต้โลโก้ */
  }

  .desktop-contact-group {
    position: absolute;
    right: 15px;
    /* ดันไปชิดขวาสุดของ Container */
  }

  #mainNav {
    padding-right: 250px;
    /* เว้นระยะทางขวาไม่ให้เมนูหลักทับกับกลุ่มปุ่มติดต่อ */
  }
}

/* สำหรับหน้าจอมือถือและแท็บเล็ต */
@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-brand img {
    height: 40px;
  }

  /* จัดการตำแหน่งปุ่ม 3 ขีด ให้อยู่มุมขวาบนตรงกับโลโก้ */
  .navbar-toggler {
    position: absolute !important;
    right: 15px;
    top: 15px;
    /* ปรับให้ตรงกับแนวโลโก้ */
  }

  /* ปรับไอคอนใต้โลโก้ */
  .social-icons-mobile {
    padding-left: 35%;
    display: flex;
    gap: 8px;
    /* ระยะห่างระหว่างไอคอน */
  }

  .social-icons-mobile .social-icon-link {
    width: 32px;
    /* ลดขนาดไอคอนลงเล็กน้อยในมือถือ */
    height: 32px;
    font-size: 0.9rem;
    margin-right: 0;
  }

  /* นำปุ่มติดต่อเราในเมนู Dropdown กลับมาจัดวางให้เรียบร้อย */
  .desktop-contact-group {
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    justify-content: flex-start;
  }
}

.bg-neon-soft {
  position: relative;
  background-color: #FAFCFF;
  overflow: hidden;
  z-index: 1;
}

.bg-neon-soft::before,
.bg-neon-soft::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}

.bg-neon-soft::before {
  width: 400px;
  height: 400px;
  background: rgba(69, 190, 237, 0.2);
  top: -100px;
  left: -150px;
}


.bg-neon-soft::after {
  width: 450px;
  height: 450px;
  background: rgba(15, 48, 87, 0.15);
  bottom: -150px;
  right: -100px;
}

@keyframes floatLight {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

.album-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 48, 87, 0.1);
  display: block;
  text-decoration: none !important;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.album-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 136, 204, 0.25);
}

.album-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.album-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.album-item:hover .album-img-wrapper img {
  transform: scale(1.1);
}

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 48, 87, 0.95) 0%, rgba(15, 48, 87, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0.85;
  transition: opacity 0.4s ease, background 0.4s ease;
}

.album-item:hover .album-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(15, 48, 87, 0.95) 0%, rgba(0, 136, 204, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
}

.album-content {
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.album-item:hover .album-content {
  transform: translateY(0);
}

.album-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.album-action {
  display: flex;
  align-items: center;
  color: #C5A861;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 8px;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s ease 0.1s;
}

.album-item:hover .album-action {
  opacity: 1;
  transform: translateX(0);
}

.album-action i {
  margin-left: 8px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: rgba(15, 48, 87, 0.2) !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #0088CC !important;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0, 136, 204, 0.4);
}

@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.2rem;
    max-width: 75%;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar-toggler {
    position: absolute !important;
    right: 15px;
    top: 20px;
  }
}

body {
  font-weight: 300;
  background-color: #FAFCFF;
  color: #4A5568;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #0F3057;
  letter-spacing: -0.5px;
}

.font-weight-heavy {
  font-weight: 800;
}

.font-weight-light {
  font-weight: 300;
}

.text-primary-blue {
  color: #0F3057;
}

.text-light-blue {
  color: #0088CC;
}

.text-gold {
  color: #C5A861;
}

.bg-primary-blue {
  background-color: #0F3057;
}

.bg-light-blue {
  background-color: #0088CC;
}

.text-glow-sweep {
  background: linear-gradient(120deg, #0F3057 0%, #0088CC 25%, #C5A861 50%, #0088CC 75%, #0F3057 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShine 4s linear infinite;
  display: inline-block;
}

.text-glow-sweep-gold {
  background: linear-gradient(120deg, #C5A861 0%, #F5DEB3 25%, #FFFFFF 50%, #F5DEB3 75%, #C5A861 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShine 4s linear infinite;
  display: inline-block;
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

.bg-neon-soft {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
  position: relative;
  z-index: 1;
}

.bg-neon-soft::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 136, 204, 0.03), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.btn-luxury {
  background: linear-gradient(135deg, #0088CC, #0F3057);
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 5px 36px;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-luxury:hover {
  color: #FFFFFF;
  box-shadow: 0 15px 35px rgba(15, 48, 87, 0.3);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline-luxury {
  background: transparent;
  color: #0F3057;
  border: 2px solid #0F3057;
  border-radius: 50px;
  padding: 12px 34px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.4s ease;
}

.btn-outline-luxury:hover {
  background: #0F3057;
  color: #FFFFFF;
  border-color: #0F3057;
  box-shadow: 0 10px 25px rgba(15, 48, 87, 0.2);
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  background: #FFFFFF;
  color: #0F3057 !important;
  transform: translateY(-2px);
}

.card-service {
  border: 1px solid rgba(0, 136, 204, 0.05);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(15, 48, 87, 0.04);
  transition: all 0.4s ease;
  overflow: hidden;
  background: #FFFFFF;
  height: 100%;
  position: relative;
}

.card-service::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0088CC, #C5A861);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(15, 48, 87, 0.08);
}

.card-service:hover::after {
  transform: scaleX(1);
}

.card-service img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-service:hover img {
  transform: scale(1.05);
}

.client-logo {
  width: 100%;
  max-width: 140px;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.4s ease;
  margin: 25px auto;
  display: block;
}

.client-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

.hero-section {
  position: relative;
  background: url('https://careonsolution.com/wp-content/uploads/2026/05/11a9ed13e69eb540cdba7d631f4e2014698e3c8e.jpg') center/cover no-repeat;
  padding: 220px 0 150px 0;
  color: #FFFFFF;
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 48, 87, 0.9) 0%, rgba(0, 136, 204, 0.6) 100%);
  z-index: -1;
}

.accordion .card {
  border: none;
  border-bottom: 1px solid rgba(15, 48, 87, 0.08);
  background: transparent;
  margin-bottom: 15px;
  border-radius: 0;
}

.accordion .card-header {
  background: #FFFFFF;
  border: none;
  padding: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.accordion .card-header:hover {
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.08);
}

.accordion .btn-link {
  color: #0F3057;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  text-align: left;
  padding: 22px 25px;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion .btn-link:hover,
.accordion .btn-link[aria-expanded="true"] {
  color: #C5A861;
  text-decoration: none;
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #0088CC, #0F3057);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 6px rgba(0, 136, 204, 0.2));
  transition: transform 0.4s ease;
  display: inline-block;
}

.feature-box {
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 136, 204, 0.05);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 48, 87, 0.06) !important;
  border-color: #0088CC;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1);
}

.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
  color: #0F3057 !important;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #C5A861;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #0088CC !important;
}

.nav-link:hover::after {
  width: 80%;
}

body,
html,
h1,
h2,
h3,
h4,
h5,
a,
p,
.rd-navbar-nav {
  font-family: "kanit" !important;

}

@media (min-width:1024px) {

  p,
  .p {
    font-size: 1.2rem !important;
    color: #919191;
  }
}

p,
.p {
  font-size: 1rem;
  color: #919191;
}

@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/font-awesome-5-brands/fa-brands-400.eot?#iefix") format("embedded-opentype"),
    url("../fonts/font-awesome-5-brands/fa-brands-400.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}


@-ms-viewport {
  width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/font-awesome-5-brands/fa-brands-400.eot?#iefix") format("embedded-opentype"),
    url("../fonts/font-awesome-5-brands/fa-brands-400.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}