.about-company-section {
  padding: 100px 0;
  background: #fff;
}

.about-content {
  /* max-width: 900px; */
  margin: auto;
}

.about-tag {
  display: inline-block;
  background: #ff5e15;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-title {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 20px;
  color: #00173c;
}

.about-title span {
  color: #ff5e15;
}

.title-line {
  width: 80px;
  height: 4px;
  background: #ff5e15;
  margin: 0 0 30px;
}

.about-content p {
  color: #666;
  line-height: 1.9;
  text-align: justify;
}

.about-content strong {
  color: #00173c;
}

#moreText {
  display: none;
}

.about-btn {
  margin-top: 20px;
  background: #00173c;
  color: #fff;
  border: none;
  padding: 14px 34px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.about-btn:hover {
  background: #ff5e15;
}

@media (max-width: 768px) {
  .about-company-section {
    padding: 70px 0;
  }

  .about-title {
    font-size: 38px;
  }
}

/*==================================
INFRASTRUCTURE
===================================*/

.infra-section {
  padding: 100px 0;
  background: #f8f9fc;
}

.infra-header {
  text-align: center;
  margin-bottom: 55px;
}

.infra-subtitle {
  display: inline-block;
  color: #ff5e15;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.infra-header h2 {
  font-size: 58px;
  color: #00173c;
  margin-bottom: 15px;
}

.infra-line {
  width: 90px;
  height: 4px;
  background: #ff5e15;
  margin: auto;
}

.infra-card {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.infra-card p {
  color: #666;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 28px;
}

.infra-link {
  color: #ff5e15;
  font-weight: 600;
  transition: 0.3s;
}

.infra-link:hover {
  color: #00173c;
}

.machine-box {
  margin: 40px 0;
  background: #00173c;
  border-radius: 8px;
  overflow: hidden;
}

.machine-title {
  background: #ff5e15;
  color: #fff;
  padding: 18px;
  font-size: 26px;
  font-family: "Teko", sans-serif;
  letter-spacing: 1px;
  text-align: center;
}

.machine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 35px;
}

.machine-grid div {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.machine-grid i {
  color: #ff5e15;
  margin-right: 10px;
}

@media (max-width: 991px) {
  .infra-header h2 {
    font-size: 42px;
  }

  .machine-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .infra-section {
    padding: 70px 0;
  }

  .infra-card {
    padding: 25px;
  }

  .infra-header h2 {
    font-size: 34px;
  }

  .machine-title {
    font-size: 22px;
  }

  .machine-grid {
    padding: 20px;
  }
}

/*=========================
FACT SHEET
==========================*/

.infra-divider {
  margin: 70px 0 50px;
  border: 0;
  border-top: 1px solid #ececec;
}

.fact-sheet {
  margin-top: 20px;
}

.fact-header {
  margin-bottom: 30px;
}

.fact-header span {
  display: inline-block;
  color: #ff5e15;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.fact-header h3 {
  font-size: 46px;
  color: #00173c;
  margin-top: 10px;
}

.table-responsive {
  overflow-x: auto;
}

.fact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.fact-table td {
  border: 1px solid #e7e7e7;
  padding: 18px;
  vertical-align: top;
}

.fact-table tr:nth-child(even) {
  background: #fafafa;
}

.fact-table td:first-child {
  width: 32%;
  font-weight: 600;
  /* color: #00173c; */
  background: #fcfcfc;
}

.table-head-color td {
  background: #00173c !important;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  padding: 16px 20px;
}

.fact-table ul {
  margin: 0;
  padding-left: 20px;
}

.fact-table li {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .table-head-color td {
    font-size: 22px;
  }

  .fact-header h3 {
    font-size: 34px;
  }

  .fact-table td {
    padding: 14px;
  }
}

.visual-upgrade-section {
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 50px 0 70px;
}

.gallery-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  padding: 18px;
  text-align: center;
  font-weight: 600;
  color: #00173c;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.prod-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  transition: 0.35s;
}

.prod-card:hover {
  transform: translateY(-10px);
}

.prod-card-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.prod-card-body {
  padding: 30px;
}

.prod-card-body h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.prod-card-body p {
  color: #666;
  line-height: 1.8;
}

.site-button-link.small {
  display: inline-block;
  margin-top: 15px;
  background: #00173c;
  color: #fff;
  padding: 12px 28px;
  transition: 0.3s;
}

.site-button-link.small:hover {
  background: #ff5e15;
}

.testimonials {
  background: #00173c;
  padding: 60px;
  border-radius: 12px;
  color: #fff;
}

.testimonials .sep-leaf-left h2 {
  color: #fff;
}

.testi-slide {
  text-align: center;
}

.quote {
  font-size: 22px;
  line-height: 1.8;
  color: #fff;
  max-width: 850px;
  margin: auto;
}

.meta {
  color: #ff5e15;
  margin-top: 25px;
  font-weight: 600;
}

.testi-controls {
  text-align: center;
  margin-top: 35px;
}

.testi-controls button {
  width: 45px;
  height: 45px;
  border: none;
  background: #ff5e15;
  color: #fff;
  margin: 0 8px;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 991px) {
  .gallery-grid,
  .cards-row {
    grid-template-columns: 1fr;
  }

  .testimonials {
    padding: 35px;
  }
}

@media (max-width: 600px) {
  .visual-upgrade-section {
    padding: 70px 0;
  }

  .gallery-item img,
  .prod-card-media img {
    height: 220px;
  }

  .quote {
    font-size: 18px;
  }
}

/*=====================================
OUR STRENGTH
======================================*/

.strength-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid #ececec;
}

.strength-card {
  padding: 45px;
}

.strength-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: flex-start;
}

/*=========================
LEFT
==========================*/

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.media-card img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: 0.45s;
}

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

.small-card {
  margin-top: 20px;
}

.media-badges {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media-badges .badge {
  background: #00173c;
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.thumb-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 20px 0;
}

.thumb-gallery img {
  width: 100%;
  border-radius: 8px;
  transition: 0.35s;
  cursor: pointer;
}

.thumb-gallery img:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/*=========================
RIGHT
==========================*/

.strength-content p {
  color: #666;
  line-height: 1.9;
  text-align: justify;
}

.strength-content h3 {
  font-size: 34px;
  color: #00173c;
  margin-top: 35px;
  margin-bottom: 25px;
}

/*=========================
READ MORE
==========================*/

.strength-more {
  display: none;
  animation: fadeIn 0.4s ease;
}

.strength-more.active {
  display: block;
}

.strength-read-btn {
  margin-top: 15px;
  margin-bottom: 30px;
  background: #00173c !important;
}

.strength-read-btn:hover {
  background: #ff5e15 !important;
}

/*=========================
LIST
==========================*/

.strength-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.strength-list li {
  display: flex;
  align-items: flex-start;
  background: #f8f9fb;
  border-left: 4px solid #ff5e15;
  padding: 16px;
  border-radius: 8px;
  transition: 0.35s;
  color: #444;
}

.strength-list li:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.strength-list span {
  color: #ff5e15;
  font-weight: bold;
  margin-right: 12px;
  font-size: 18px;
}

/*=========================
BOTTOM
==========================*/

.strength-bottom {
  margin-top: 40px;
}

.strength-highlight {
  background: #00173c;
  padding: 28px;
  border-left: 5px solid #ff5e15;
  border-radius: 8px;
}

.strength-highlight p {
  color: #fff;
  margin: 0;
}

.strength-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-compact {
  border: 2px solid #00173c;
  background: #fff;
  color: #00173c;
  padding: 12px 28px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  border-radius: 4px;
}

.btn-compact:hover {
  background: #00173c;
  color: #fff;
}

/*=========================
LINKS
==========================*/

.link-color {
  color: #ff5e15;
  font-weight: 600;
  transition: 0.3s;
}

.link-color:hover {
  color: #00173c;
}

/*=========================
COMPACT MODE
==========================*/

.strength-section.compact p {
  line-height: 1.65;
}

.strength-section.compact .strength-list li {
  padding: 12px;
  font-size: 14px;
}

/*=========================
ANIMATION
==========================*/

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=========================
TABLET
==========================*/

@media (max-width: 991px) {
  .strength-card {
    padding: 30px;
  }

  .strength-grid {
    grid-template-columns: 1fr;
  }

  .strength-media {
    max-width: 650px;
    margin: auto;
  }

  .strength-list {
    grid-template-columns: 1fr;
  }
}

/*=========================
MOBILE
==========================*/

@media (max-width: 767px) {
  .strength-section {
    padding: 70px 0;
  }

  .strength-card {
    padding: 20px;
  }

  .thumb-gallery {
    grid-template-columns: 1fr;
  }

  .media-badges {
    position: static;
    background: #00173c;
    padding: 15px;
  }

  .media-badges .badge {
    background: #ff5e15;
  }

  .strength-content h3 {
    font-size: 28px;
  }

  .strength-actions {
    flex-direction: column;
  }

  .strength-actions .site-button,
  .strength-actions .btn-compact {
    width: 100%;
    text-align: center;
  }
}

/*=========================
SMALL MOBILE
==========================*/

@media (max-width: 480px) {
  .strength-card {
    padding: 15px;
  }

  .strength-content p {
    font-size: 15px;
  }

  .media-badges {
    gap: 8px;
  }

  .media-badges .badge {
    font-size: 11px;
    padding: 6px 10px;
  }

  .strength-list li {
    padding: 14px;
    font-size: 14px;
  }
}

/*=========================================
OUR TEAM
=========================================*/

.team-section {
  padding: 100px 0;
  background: #f7f9fc;
  position: relative;
}

.team-section .section-head {
  margin-bottom: 45px;
}

/*==========================
Hero Image
==========================*/

.team-hero {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 45px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.team-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.team-hero:hover img {
  transform: scale(1.05);
}

.team-hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 45px;
  background: linear-gradient(
    to top,
    rgba(0, 23, 60, 0.95),
    rgba(0, 23, 60, 0.45),
    transparent
  );
  color: #fff;
}

.team-hero-overlay h3 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 8px;
}

.team-hero-overlay p {
  color: #fff;
  margin: 0;
  font-size: 17px;
  letter-spacing: 1px;
}

/*==========================
Content
==========================*/

.team-content-box {
  background: #fff;
  max-width: 980px;
  margin: -70px auto 0;
  position: relative;
  z-index: 2;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.team-content-box p {
  color: #666;
  line-height: 1.9;
  text-align: justify;
}

.team-content-box .link-color {
  color: #ff5e15;
  font-weight: 600;
}

.team-content-box .link-color:hover {
  color: #00173c;
}

/*==========================
Read More
==========================*/

.team-more {
  display: none;
  margin-top: 15px;
}

.team-more.show {
  display: block;
}

.team-read-btn {
  margin-top: 18px;
  background: #00173c !important;
}

.team-read-btn:hover {
  background: #ff5e15 !important;
}

/*==========================
Role Cards
==========================*/

.team-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.role-card {
  background: #fff;
  border-radius: 10px;
  padding: 35px 30px;
  text-align: center;
  transition: 0.35s;
  border-top: 4px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.role-card:hover {
  transform: translateY(-8px);

  border-color: #ff5e15;
}

.role-card span {
  display: inline-flex;

  width: 55px;

  height: 55px;

  border-radius: 50%;

  align-items: center;

  justify-content: center;

  background: #00173c;

  color: #fff;

  font-weight: 700;

  margin-bottom: 18px;

  transition: 0.35s;
}

.role-card:hover span {
  background: #ff5e15;
}

.role-card h4 {
  margin: 0;

  font-size: 28px;

  color: #00173c;
}

/*==========================
Responsive
==========================*/

@media (max-width: 1199px) {
  .team-role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .team-section {
    padding: 80px 0;
  }

  .team-hero img {
    height: 430px;
  }

  .team-content-box {
    margin-top: 30px;

    padding: 35px;
  }
}

@media (max-width: 767px) {
  .team-hero img {
    height: 300px;
  }

  .team-hero-overlay {
    padding: 25px;
  }

  .team-hero-overlay h3 {
    font-size: 30px;
  }

  .team-content-box {
    padding: 25px;
  }

  .team-role-grid {
    grid-template-columns: 1fr;
  }

  .role-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 60px 0;
  }

  .team-hero img {
    height: 240px;
  }

  .team-content-box {
    padding: 18px;
  }

  .team-content-box p {
    font-size: 15px;
  }

  .team-hero-overlay h3 {
    font-size: 24px;
  }

  .team-hero-overlay p {
    font-size: 14px;
  }

  .role-card h4 {
    font-size: 22px;
  }
}

/*=========================================
QUALITY ASSURANCE
=========================================*/

.qa-section {
  padding: 100px 0;
  overflow: hidden;
}

.qa-wrapper {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 60px;
  align-items: flex-start;
}

/*=========================
ISO CARD
=========================*/

.iso-card {
  background: #00173c;
  color: #fff;
  padding: 35px;
  border-left: 6px solid #ff5e15;
  border-radius: 12px;
  margin-bottom: 45px;
  max-width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.iso-card span {
  display: block;
  color: #ff5e15;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 600;
}

.iso-card h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}

.iso-card p {
  color: #d8d8d8;
  line-height: 1.9;
  margin: 0;
}

/*=========================
TIMELINE
=========================*/

.qa-timeline {
  position: relative;
  margin: 40px 0;
}

.qa-timeline:before {
  content: "";
  position: absolute;
  left: 21px;
  top: 15px;
  bottom: 15px;
  width: 3px;
  background: #e3e3e3;
}

.qa-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 45px;
  position: relative;
}

.dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ff5e15;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px #fff;
  z-index: 2;
  transition: 0.35s;
}

.qa-step:hover .dot {
  transform: scale(1.15);
}

.qa-info {
  margin-left: 22px;
}

.qa-info h4 {
  font-size: 30px;
  margin-bottom: 8px;
  color: #00173c;
}

.qa-info p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

/*=========================
PARAGRAPH
=========================*/

.qa-process > .align-text {
  color: #666;
  line-height: 1.9;
  text-align: justify;
  margin-top: 20px;
}

/*=========================
BUTTON
=========================*/

.qa-process .site-button {
  margin-top: 35px;
}

/*=========================
IMAGE
=========================*/

.qa-image {
  position: sticky;
  top: 30px;
}

.qa-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/*=========================
QUALITY CARD
=========================*/

.quality-card {
  position: absolute;
  left: 90%;
  transform: translateX(-50%);
  bottom: -35px;
  width: 82%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.quality-card div {
  padding: 22px 25px;
}

.quality-card div:first-child {
  background: #00173c;
  color: #fff;
}

.quality-card div:last-child {
  background: #ff5e15;
  color: #fff;
}

.quality-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.quality-card span {
  font-size: 20px;
  font-weight: 600;
}

/*=========================
HOVER
=========================*/

.qa-step:hover h4 {
  color: #ff5e15;
}

.qa-image img {
  transition: 0.4s;
}

.qa-image:hover img {
  transform: scale(1.02);
}

/*=========================
TABLET
=========================*/

@media (max-width: 991px) {
  .qa-wrapper {
    grid-template-columns: 1fr;
  }

  .qa-image {
    position: relative;
    top: auto;
    order: -1;
  }

  .qa-image img {
    height: 500px;
  }

  .quality-card {
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
  }
}

/*=========================
MOBILE
=========================*/

@media (max-width: 767px) {
  .qa-section {
    padding: 70px 0;
  }

  .iso-card {
    padding: 25px;
  }

  .iso-card h3 {
    font-size: 30px;
  }

  .qa-info h4 {
    font-size: 24px;
  }

  .qa-image img {
    height: 320px;
  }

  .dot {
    width: 36px;
    height: 36px;
  }

  .qa-timeline:before {
    left: 17px;
  }

  .qa-info {
    margin-left: 18px;
  }

  .qa-process .site-button {
    width: 100%;
    text-align: center;
  }
}

/*=========================
SMALL MOBILE
=========================*/

@media (max-width: 480px) {
  .iso-card {
    padding: 20px;
  }

  .iso-card h3 {
    font-size: 26px;
  }

  .qa-info h4 {
    font-size: 20px;
  }

  .qa-info p {
    font-size: 14px;
  }

  .qa-image img {
    height: 250px;
  }

  .quality-card span {
    font-size: 17px;
  }
}

/*==========================================
RESEARCH & DEVELOPMENT
==========================================*/

.rnd-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.rnd-wrapper {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 60px;
  align-items: center;
}

/*================================
LEFT CONTENT
================================*/

.rnd-content {
  position: relative;
}

.rnd-content p {
  color: #666;
  line-height: 1.95;
  text-align: justify;
  margin-bottom: 22px;
}

.rnd-content .link-color {
  color: #ff5e15;
  font-weight: 600;
  transition: 0.3s;
}

.rnd-content .link-color:hover {
  color: #00173c;
}

.rnd-content .site-button {
  margin-top: 18px;
}

/*================================
RIGHT SIDE
================================*/

.rnd-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/*================================
FEATURE CARD
================================*/

.rnd-card {
  position: relative;

  background: #fff;

  border-radius: 12px;

  padding: 30px;

  overflow: hidden;

  border: 1px solid #ececec;

  transition: 0.35s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rnd-card::before {
  content: "";

  position: absolute;

  width: 130px;

  height: 130px;

  border-radius: 50%;

  background: #ff5e15;

  opacity: 0.05;

  top: -55px;

  right: -55px;
}

.rnd-card::after {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 5px;

  background: #ff5e15;

  transition: 0.35s;
}

.rnd-card:hover {
  transform: translateX(10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.rnd-card:hover::after {
  background: #00173c;
}

.rnd-card h3 {
  color: #00173c;

  font-size: 30px;

  margin-bottom: 12px;
}

.rnd-card p {
  color: #666;

  margin: 0;

  line-height: 1.8;
}

/*================================
NUMBER
================================*/

.rnd-card:nth-child(1)::before {
  background: #ff5e15;
}

.rnd-card:nth-child(2)::before {
  background: #00173c;
}

.rnd-card:nth-child(3)::before {
  background: #ff5e15;
}

/*================================
HOVER
================================*/

.rnd-card:hover h3 {
  color: #ff5e15;
}

.rnd-card:hover p {
  color: #555;
}

/*================================
BUTTON
================================*/

.rnd-content .site-button {
  background: #00173c;

  transition: 0.35s;
}

.rnd-content .site-button:hover {
  background: #ff5e15;
}

/*================================
RESPONSIVE
================================*/

@media (max-width: 1199px) {
  .rnd-wrapper {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .rnd-wrapper {
    grid-template-columns: 1fr;
  }

  .rnd-side {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .rnd-section {
    padding: 70px 0;
  }

  .rnd-card {
    padding: 22px;
  }

  .rnd-card h3 {
    font-size: 24px;
  }

  .rnd-content p {
    font-size: 15px;
  }

  .rnd-content .site-button {
    width: 100%;

    text-align: center;
  }
}

@media (max-width: 480px) {
  .rnd-card {
    padding: 18px;
  }

  .rnd-card h3 {
    font-size: 22px;
  }

  .rnd-card p {
    font-size: 14px;
  }
}
