@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --main-bg-color: #BE0B32;
  --main-text-color: #002768;
  --text-color: white;
  --light-bg-color: #f5f8fc;


}

body {
  background-color: var(--main-bg-color);
  color: var(--main-text-color);
  padding: var(--main-padding);
}


.Icon_design {
  /* border: 1px solid black; */
  background-color: var(--main-bg-color);
  padding: 6px 8px;
  border-radius: 100%;
  color: white;
}

.Color_Red {
  background-color: var(--main-bg-color);
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  /* font-weight: 300; */
  font-style: normal;
}

.navbar {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.nav-link {
  color: var(--main-text-color) !important;
}

@media only screen and (max-width:767px) {
  .RESPOSIVE_TEXT {
    font-size: 10px;
  }

  .MAIN_RESPOSIVE {
    display: block;
  }
}

/* scroll section  */

.scroll-section {
  width: 100%;
  background-color: #be0b32;
  overflow: hidden;
  white-space: nowrap;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 0;
  box-sizing: border-box;
}

.scroll-content {
  display: inline-block;
  animation: scroll-left 20s linear infinite;
}

.scroll-item {
  display: inline-block;
  margin-right: 2rem;
}

/* Keyframes for continuous loop */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .scroll-section {
    font-size: 1rem;
  }
}

/* trasted  */
.Light_Bg {
  background-color: var(--light-bg-color);
}


/* button style  */



.Animated_btn {
  display: block;
  width: 100%;
  padding: 5px;
  line-height: 40px;
  font-size: 18px;
  font-weight: 600;
  font-family: sans-serif;
  text-decoration: none;
  color: var(--main-bg-color);
  border: 1px solid var(--main-bg-color);
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  overflow: hidden; /* important for :after */
  transition: all 0.35s;
}

.Animated_btn span {
  position: relative;
  z-index: 2; /* text above overlay */
}

.Animated_btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--main-bg-color);
  z-index: 1; /* behind the text */
  transition: all 0.35s;
}

.Animated_btn:hover {
  color: #fff; /* hover text color */
}

.Animated_btn:hover:after {
  width: 100%; /* expand overlay */
}


/* flag section  */
.section {
  padding: 60px 15px;
  text-align: center;
}

.tagline {
  color: #c8102e;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: #052559;
  margin-top: 15px;
}

.description {
  font-size: 16px;
  color: #4b4f56;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-custom {
  border: 1px solid #c8102e;
  color: #c8102e;
  font-weight: 600;
  padding: 10px 20px;
  margin: 10px;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #c8102e;
  color: white;
}

.circle-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 50px auto;
}

@media only screen and (max-width:767px) {
  .circle-wrapper {
    width: 270px !important;
    height: 270px !important;
  }
}

.orbit-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  /* border: 2px dotted #ccc; */
  border-radius: 50%;
}

.center-image {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: rotate 15s linear infinite;
  transform-origin: center center;
  z-index: 1;
}

.orbit img.flag {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid balck;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.orbit img.flag:nth-child(1) {
  top: 0%;
  left: 50%;
}

.orbit img.flag:nth-child(2) {
  top: 19%;
  left: 85%;
}

.orbit img.flag:nth-child(3) {
  top: 50%;
  left: 100%;
}

.orbit img.flag:nth-child(4) {
  top: 81%;
  left: 85%;
}

.orbit img.flag:nth-child(5) {
  top: 100%;
  left: 50%;
}

.orbit img.flag:nth-child(6) {
  top: 81%;
  left: 15%;
}

.orbit img.flag:nth-child(7) {
  top: 50%;
  left: 0%;
}

.orbit img.flag:nth-child(8) {
  top: 19%;
  left: 15%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 576px) {
  .circle-wrapper {
    width: 280px;
    height: 280px;
  }

  .center-image {
    width: 120px;
    height: 120px;
  }

  .orbit img.flag {
    width: 50px;
    height: 50px;
  }
}

/* who why avenue  */
.highlight-section {
  padding: 60px 0;
}

.highlight-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1b4c;
}

.highlight-section p {
  font-size: 16px;
  /* color: var(--light-bg-color); */
}

.highlight-section .checklist i {
  color: crimson;
  margin-right: 10px;
}

.highlight-section .badge-circle {
  position: absolute;
  left: 10px;
  bottom: 50px;
  background-color: #c8102e;
  color: white !important;
  border-radius: 100%;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  font-size: 22px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.POSITION_SET_MAIN {
  position: relative;
}

.POSITION_SET {
  position: absolute;
  width: 250px;
  border: 2px solid white;
  bottom: -95px;
  right: 30px;
}

@media only screen and (max-width: 767px) {
  .POSITION_SET_MAIN {
    /* position: relative; */
  }

  .POSITION_SET {
    /* position: absolute; */
    width: 150px;
    border: 2px solid white;
    top: 10px;
    right: 30px;
  }

  .highlight-section .badge-circle {
    bottom: 0px !important;
    width: 120px;
    height: 120px;
    /* padding: ; */
  }

  .DOTTED_CLASS {
    padding: 15px !important;
  }
}


.highlight-section .learn-btn {
  border: 1px solid #c8102e;
  color: #c8102e;
  padding: 8px 24px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.highlight-section .learn-btn:hover {
  background-color: #c8102e;
  color: white;
}

.img-group {
  position: relative;
}

.img-main {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  /* object-fit: cover; */
}

.img-overlay {
  position: absolute;
  bottom: -40px;
  left: 200px;
  width: 300px;
  border-radius: 10px;
  border: 5px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {


  .img-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
  }
}

/* help center  */
.section-title {
  color: #002d62;
  font-weight: 700;
}

.subheading {
  color: #d0021b;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.visa-card {
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.visa-card::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ba0c2f;
  bottom: -100%;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.visa-card:hover::before {
  bottom: 0;
}

.visa-card .content {
  position: relative;
  z-index: 1;
}

.visa-icon {
  background-color: #ba0c2f;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease-in-out;
}

.icon_img {
  font-size: 30px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.visa-card:hover .visa-icon {
  background-color: #fff;
}

.visa-card:hover .icon_img {
  color: #ba0c2f;
}

.visa-card h5,
.visa-card p,
.visa-card .read-more {
  transition: all 0.4s ease-in-out;
}

.visa-card:hover h5,
.visa-card:hover p,
.visa-card:hover .read-more {
  color: #fff !important;
}

.read-more {
  color: #ba0c2f;
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.Main_text {
  color: var(--main-text-color);
}

/* tav nav  */
.tab-nav .nav-link {
  font-weight: 600;
  font-size: 15px;
  color: #b40020;
  border: none;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}

.tab-nav .nav-link.active {
  color: #00215E;
  border-bottom: 3px solid #b40020;
}

.feature-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

.feature-list i {
  color: #b40020;
  margin-right: 10px;
}

.trusted-box {
  background-color: #b40020;
  color: #fff;
  border: 2px dashed white;
  padding: 15px 25px;
  position: absolute;
  top: 65%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
}

.trusted-box img {
  width: 30px;
  border-radius: 50%;
  margin-left: 5px;
}

.custom-btn {
  border: 1px solid #b40020;
  color: #b40020;
  padding: 10px 20px;
  transition: 0.3s;
}

.custom-btn:hover {
  background-color: #b40020;
  color: #fff;
}

.img-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.img-grid>div:nth-child(1) {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .trusted-box {
    position: static;
    transform: none;
    margin-top: 15px;
  }
}

/* testminial css */
.happy-client-section {
  /* background-color: var(--light-bg-color); */
  background-image: url(../pic/bgphoto1.webp);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 0px 10px 80px 15px;
  text-align: center;
}

.happy-client-section h2 {
  font-weight: 700;
  margin-bottom: 40px;
  color: #004080;
}

.testimonial-container {
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.testimonial-slide {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  background: var(--main-text-color);
  padding: 30px;
  box-shadow: 0 0px 10px var(--main-bg-color);
  text-align: center;
  /* border-radius: 10px; */
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid var(--main-bg-color);
  box-shadow: 0px 0px 15px var(--light-bg-color);
}

.testimonial-card h5 {
  font-weight: 600;
  margin-top: 10px;
  color: var(--light-bg-color);
}

.testimonial-card p {
  color: var(--light-bg-color);
  font-style: italic;
}

.custom-video-section {
  background-image: url(../pic/bgphoto1.webp );
  background-attachment: fixed;
}

/* Individual stat item */
.custom-stat-item {
  flex: 1 1 200px;
  text-align: center;
  border-radius: 10px;
}

.custom-stat-item:hover .card {
  transform: translateY(-10px);
  transition-duration: 0.5s;
  box-shadow: 0px 0px 5px var(--main-bg-color);
}

/* Number styling */
.custom-stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
}

.custom-stat-item:hover .custom-stat-number {
  color: var(--main-bg-color);
}

.custom-stat-item:hover .custom-stat-label {
  color: var(--main-bg-color);
}

/* Label styling */
.custom-stat-label {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-stat-number {
    font-size: 28px;
  }

  .custom-stats-wrapper {
    gap: 20px;
  }
}


.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-weight: 700;
  color: #002f6c;
}

.section-header span {
  color: #d6023b;
  font-weight: 600;
  letter-spacing: 1px;
}

.info-text {
  color: #4d4d4d;
}

.card-box {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  border: none;
  border-radius: 0;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); */
  background: none;
}

.card-box img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.card-box:hover img {
  transform: scale(1.05);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 50px;
  right: 0;
  padding: 10px 30px 10px 10px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.card-box:hover .card-content {
  background-color: #d6023b;
  color: white;
}

.card-content h5,
.card-content p {
  margin: 0;
}

.card-content .icon {
  width: 35px;
  height: 35px;
  border: 1px solid #d6023b;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.card-box:hover .icon {
  background-color: white;
  color: #d6023b;
}

.card-overlay {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.card-box:hover .card-overlay {
  left: 0;
  right: 0;
}

.card-box .card-content {
  position: relative;
  z-index: 2;
  top: -77px;
}

/* footer  */
.Links {
  color: var(--main-bg-color);
}

.Links:hover {
  color: var(--main-text-color) !important;
  transition: 0.3s;
}

.Location {
  color: var(--main-bg-color);
}

footer h5 {
  font-weight: 600;
}

footer i {
  font-size: 1.2rem;
}

.Unique_text {
  text-shadow: 1px 2px 3px var(--main-bg-color);
  color: var(--main-text-color) !important;
}

/* about sectin  */
.icon-circle {
  background-color: #c8102e;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  border-radius: 50%;
}

.card a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.card a:hover {
  text-decoration: underline;
}

.recruitment-section .highlight {
  color: #ba0c2f;
}

.rec-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.rec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.rec-icon {
  background-color: #ba0c2f;
  color: #fff;
  font-size: 32px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}

.rec-card:hover .rec-icon {
  background-color: #fff;
  color: #ba0c2f;
  border: 2px solid #ba0c2f;
}

@media (max-width: 768px) {
  .rec-card {
    padding: 2rem 1rem;
  }
}


/* about page  */
/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 39, 104, 0.9), rgba(190, 11, 50, 0.8)),
    url("../pic/abouthead.webp") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 15px;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-section h2 {
  color: #002768;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-section p {
  line-height: 1.8;
}

.about-section .img-box img {
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform .3s ease;
}

.about-section .img-box img:hover {
  transform: scale(1.05);
}

/* Why Choose Us */
.choose {
  background: #f8f9fa;
  padding: 80px 0;
}

.choose h2 {
  text-align: center;
  color: #BE0B32;
  margin-bottom: 50px;
  font-weight: 700;
}

.icon-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all .3s;
  border: 2px solid #eee;
}

.icon-box:hover {
  transform: translateY(-10px);
  border-color: #BE0B32;
}

.icon-box h5 {
  margin-top: 15px;
  font-weight: 600;
  color: #002768;
}


/* service  */


.custom-card {
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.custom-card::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ba0c2f;
  bottom: -100%;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.custom-card:hover::before {
  bottom: 0;
}

.custom-body {
  position: relative;
  z-index: 1;
}

.custom-icon {
  background-color: #ba0c2f;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease-in-out;
  font-size: 30px;
  color: #fff;
}

.custom-card:hover .custom-icon {
  background-color: #fff;
  color: #ba0c2f;
}

.custom-title,
.custom-text {
  transition: all 0.4s ease-in-out;
}

.custom-card:hover .custom-title,
.custom-card:hover .custom-text {
  color: #fff !important;
}

.services-hero {
  background: linear-gradient(rgba(0, 39, 104, 0.9), rgba(190, 11, 50, 0.8)),
    url('https://images.unsplash.com/photo-1508780709619-79562169bc64');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
}

.services-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.services-hero a {
  color: #fff;
  text-decoration: none;
}

.services-hero a:hover {
  text-decoration: underline;
}

/* Blog Hero Heading */
.blog-hero {
  background: linear-gradient(rgba(0, 39, 104, 0.9), rgba(190, 11, 50, 0.8)), url('../pic/bloghead.webp');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.blog-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #002768;
}

.blog-intro {
  font-size: 0.95rem;
  color: #444;
}

.read-more-content {
  display: none;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

.read-btn {
  background: #BE0B32;
  border: none;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 50px;
  padding: 8px 18px;
  margin-top: 15px;
  transition: 0.3s;
}

.read-btn:hover {
  background: #002768;
  color: #fff;
}

.read-more-content {
  display: none;
}

.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



/* Hero Section */
.contact-hero {
  background: linear-gradient(rgba(0, 39, 104, 0.9), rgba(190, 11, 50, 0.8)), url('../pic/cotacthead.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Contact Info Section */
.contact-info {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.contact-info .card {
    border: none;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info .card i {
    font-size: 40px;
    color: #BE0B32;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.contact-info .card h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info .card p {
    font-size: 0.95rem;
    color: #555555;
}

.contact-info .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.contact-info .card:hover i {
    color: #002768; /* icon color change on hover */
}


/* Form */
.contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
}

.contact-form button {
  background: #002768;
  border: none;
  padding: 12px 25px;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #BE0B32;
}

/* FAQ Section */
.faq-section h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: #002768;
}

.faq-section .accordion-button {
  font-weight: 600;
  color: #000;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #002768;
  color: #fff;
}