:root {
  --yellow-color: #fce151;
  --red-color: #ff5b5b;
  --black-color: #000;
  --white-color: #fff;
  --transition-time: 5s;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1 {
  font-family: "Roboto", sans-serif;
}

h2 {
  font-family: "Playfair Display", serif;
}

header {
  height: 100vh;
  position: relative;
}

header .bg-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(
    to right,
    var(--yellow-color) 70%,
    var(--red-color) 30%
  );
}

header .black-triangle {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-color);
  clip-path: polygon(0 100%, 100% 100%, 100% 70%, 0% 100%);
  z-index: -1;
}

.animate-triangle {
  animation: expandTriangle 2s ease-in-out forwards;
}

@keyframes expandTriangle {
  from {
    clip-path: polygon(0 100%, 100% 100%, 100% 70%, 0% 100%);
  }
  to {
    clip-path: polygon(0 100%, 100% 100%, 100% 0%, 0% 0%);
  }
}

header .navbar {
  padding: 15px 40px;
  position: fixed;
  right: auto;
  left: auto;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-active {
  background-color: #000000;
}

header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .navbar-brand img {
  height: 50px;
  transition: opacity 1s ease-in-out, filter 1s ease-in-out;
}

header .alternate-logo {
  position: absolute;
  left: 50px;
  top: 20px;
  height: 40px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.navbar-container {
  position: relative;
}

/* Show dropdown on hover */
.navbar-container:hover .dropdown-content {
  display: flex;
}

.navbar-container:hover #menuButton {
  transform: rotate(90deg);
  background-color: #fbe360;
}

.navbar-container:hover .lines {
  background-color: black !important;
}

/* Keep dropdown hidden by default */
.dropdown-content {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  top: 50px;
  right: 0;
  background-color: #fff6c2;
  width: 300px;
  border-radius: 5px;
  flex-direction: column;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-container:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  padding: 20px;
}

#menuButton {
  padding: 10px;
  background-color: transparent;
  color: white;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

header .hamburger-icon {
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header .hamburger-icon .line1 {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--black-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

header .hamburger-icon .line2 {
  display: block;
  height: 3px;
  width: 70%;
  background-color: var(--black-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

header .hamburger-icon .line3 {
  display: block;
  height: 3px;
  width: 40%;
  background-color: var(--black-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.animate-triangle .hamburger-icon span {
  background-color: var(--white-color);
}

.dropdown-content.show {
  display: flex;
}

.dropdown-content a {
  padding: 12px 10px;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 23px;
  text-align: center;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #f0e36d;
}

.let-talk-btn {
  background-color: var(--white-color);
  color: var(--black-color);
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color var(--transition-time),
    color var(--transition-time);
}

/* landing page starts */

.hero-content {
  padding: 80px 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: center;
  z-index: 5;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: black;
  transition: color 0.8s ease-in-out;
}

.hero-subtitle {
  font-size: 2.5rem;
  font-style: italic;
  font-family: "Playfair Display", serif;
  margin-top: 10px;
  color: var(--black-color);
  transition: color 1s ease-in-out;
}

.quote-container {
  position: absolute;
  bottom: 60px;
  right: 40px;
  max-width: 250px;
  color: var(--yellow-color);
  text-align: right;
  transition: color var(--transition-time);
}

.quote-text {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: "Hind Madurai", sans-serif;
}

.quote-author {
  font-size: 0.9rem;
  font-family: "Hind Madurai", sans-serif;
}

/* Dark mode styles that will be applied after animation */
.animate-triangle .bg-container {
  background: var(--black-color);
}

.animate-triangle .black-triangle {
  clip-path: polygon(0 100%, 100% 100%, 100% 0%, 0% 0%);
  transition: clip-path var(--transition-time) cubic-bezier(0.19, 1, 0.22, 1);
}

.animate-triangle .hero-title {
  color: white !important;
}

.animate-triangle .navbar-brand img {
  filter: brightness(0) invert(1);
  opacity: 0;
}

.animate-triangle .alternate-logo {
  opacity: 1;
}

.animate-triangle .let-talk-btn {
  background-color: var(--yellow-color);
  color: var(--black-color);
}

.animate-triangle .navbar-toggler {
  color: var(--white-color);
}

.animate-triangle .quote-container {
  color: var(--yellow-color);
}

.main-container {
  width: 100%;
  padding: 0 40px;
}

/* landing page ends */

.titles h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fbe360;
  margin-bottom: 0px;
}

.titles h2 {
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
}

/* section1 starts */

.section1 {
  padding: 70px 0px;
}

.section1 .container {
  position: relative;
}

.section1 h2 {
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
  font-family: "Playfair Display", serif;
  margin-top: 10px;
  color: var(--black-color);
  transition: color 1s ease-in-out;
  padding: 10px 30px;
  /* width: 80%; */
}

.section1 .container .col-lg-4 {
  display: flex;
  align-items: center;
}

.section1 .container .col-lg-4 img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 300px;
}

/* section1 ends */

/* section2 starts */

.section2 {
  padding: 70px 0px;
  background: url(./images/our-services.svg) no-repeat center/cover;
  background-color: #000000b6;
  background-blend-mode: multiply;
}

.section2 .container .row {
  row-gap: 20px;
}

.section2 .container .card {
  background-color: #000000;
  color: white;
  padding: 25px;
  position: relative;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  row-gap: 15px;
  transition: all 0.4;
  border-radius: 5px;
  border: 1px solid #6d6d6d;
}

.section2 .container .card:hover {
  background-color: #f0e36d;
}

.section2 .container .card:hover p {
  opacity: 1;
}

.section2 .container .card:hover h5 {
  color: #000;
}

.section2 .container .card:hover img {
  opacity: 0;
}

.section2 .container .card h5 {
  font-size: 22px;
}

.section2 .container .card p {
  font-size: 14px;
  line-height: 18px;
  position: absolute;
  bottom: 5px;
  color: black;
  opacity: 0;
  transition: opacity 0.4 ease-in-out;
}

/* section2 ends */

/* section3 starts */

.section3 {
  padding: 70px 0px;
}

/* A-E-S section starts */

.section3 .container .row {
  display: flex;
  width: 100%;
  margin: auto;
}

.section3 .container .box div {
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-image: linear-gradient(to top, #ff822c, #ff474b);
}

/* box one */

.section3 .container .one {
  background: url(images/attend.webp) no-repeat center/cover;
}

.section3 .container .one a {
  background-color: #ffcc00;
  color: black;
}

/* box two */

.section3 .container .two {
  background: url(images/exhibit.webp) no-repeat center/cover;
}

.section3 .container .two h1,
.section3 .container .two h5,
.section3 .container .two p {
  color: rgb(255, 255, 255);
}

.section3 .container .two a {
  background-color: #0267c1;
  color: rgb(255, 255, 255);
}

/* box three */

.section3 .container .three {
  background: url(images/speak.webp) no-repeat center/cover;
}

.section3 .container .three a {
  background-color: #ffffff;
  color: black;
}

/* Default style for all boxes */
/* Default style for all boxes */
/* .section3 .container {
  max-width: 100%;
} */

.section3 .container .box {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  cursor: pointer;
  flex: 0.8; /* Keeps inactive boxes small */
  margin: 0px;
  position: relative;
  transition: flex 0.7s ease-out;
  color: white;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0px 5px;
}

/* Ensure h1 is always visible in all boxes */
.section3 .container .box h1 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  font-weight: 800;
}

.section3 .container .box h5 {
  font-size: 18px;
  font-weight: bold;
}

.section3 .container .box p {
  font-size: 15px;
  /* font-weight: lighter; */
}

.section3 .container .box a {
  width: 100%;
  max-width: 180px;
  padding: 10px 5px;
  border-radius: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0px;
  text-decoration: none;
}

/* Hide h5 and p by default */
.section3 .container .box h5,
.section3 .container .box p,
.section3 .container .box a {
  display: none;
}

/* Active box expands */
.section3 .container .box.active {
  flex: 3;
}

/* Active box expands */
.section3 .container .box.active {
  flex: 3;
}

/* Once the box is fully expanded, h5 and p will be displayed via JS */
/* A-E-S section ends */

/* section3 ends */

/* section4 starts */

.section4 {
  padding: 70px 0px;
  background: url(./images/our-services.svg) no-repeat center/cover;
  background-color: #000000b6;
  background-blend-mode: multiply;
  color: white;
}
.section4 .container .row hr {
  margin-top: 30px;
  margin-bottom: 30px;
}

.section4 .container .services-row .col-lg-6 {
  gap: 20px;
}

.section4 .container .services-row h4 {
  font-size: 40px;
}

.section4 .container .services-row p {
  font-size: 13px;
  margin-bottom: 0px;
}

/* section4 ends */

/* partner-section starts */

.partners-section {
  padding: 60px 0px;
}

.partners-section .slider   {
  position: relative;
  width: 95vw;
  overflow: hidden;
  margin: auto;
}

.partners-section .slider .action-button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  cursor: pointer;
}

.partners-section .slider .action-button.left-chevron {
  left: 0;
  transform: translate(5%, -50%);
}

.partners-section .slider .action-button.left-chevron:hover {
  transform: translate(15%, -50%);
}

.partners-section .slider .action-button.right-chevron {
  right: 0;
  transform: translate(-5%, -50%);
}

.partners-section .slider .action-button.right-chevron:hover {
  transform: translate(-15%, -50%);
}

.partners-section .slider .slider-list {
  display: grid;
  grid-auto-columns: 15% !important;
  grid-auto-flow: column;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  transition: transform 5s linear;
  gap: 20px;
}

@media (max-width: 768px) {
  .partners-section .slider .slider-list {
    grid-auto-columns: 75% !important;
    gap: 10px;
    padding: 10px 0px;
  }
}

@media (max-width: 992px) {
  .partners-section .slider .slider-list {
    grid-auto-columns: 50% !important;
  }
}

@media (max-width: 1200px) {
  .partners-section .slider .slider-list {
    grid-auto-columns: 30%;
  }
}

@media (min-width: 1200px) {
  .partners-section .slider .slider-list {
    grid-auto-columns: 20%;
  }
}

.partners-section .slider .slider-list .slider-item {
  display: inline-block;
  box-shadow: 0 0 11px 0 #06163a24;
  color: white;
  text-align: center;
}

.partners-section .slider .slider-list .slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
}

.partners-section .slider .slider-list .slider-item img:hover {
  transform: scale(1.1);
}

.partners-section h1 {
  font-size: 40px;
  color: #077fff;
  font-weight: 700;
  margin: auto;
}

/*  */
/* partner-section ends */

/* section5 starts */

.section5 {
  padding: 70px 0px;
  background: url(./images/our-services.svg) no-repeat center/cover;
  background-color: #000000b6;
  background-blend-mode: multiply;
  color: white;
}

.section5 .container {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0px;
}

.section5 .title {
  /* position: absolute;
  top: 40px;
  left: 0px; */
  font-size: 30px;
  font-weight: bolder;
  z-index: 10;
  transition: opacity 0.3s ease;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section5 .swiper-container {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
}

.section5 .slides-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  gap: 15px;
}

.section5 .slide {
  position: relative;
  flex: 0 0 70%;
  width: 80%;
  height: 100%;
  overflow: hidden;
}

.section5 .slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section5 .next-slide-preview {
  position: relative;
  flex: 0 0 30%;
  width: 20%;
  height: 60vh;
  overflow: hidden;
}

.section5 .next-slide-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section5 .dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.section5 .swipe-icon {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  cursor: pointer;
}

.section5 .pagination-container {
  position: absolute;
  bottom: -30px;
  left: auto;
  display: flex;
  gap: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section5 .pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.section5 .pagination-dot.active {
  background-color: white;
}

.slide-hover-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, #ff822c, #ff474b);
  color: #fff;
  display: none;
  flex-direction: column;
  align-items: self-start;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.6s ease-in-out;
  z-index: 2;
  padding-bottom: 15px;
}

.slide:hover .slide-hover-overlay,
.next-slide-preview:hover .slide-hover-overlay {
  display: flex;
}

.slide-hover-overlay .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50%;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.slide-hover-overlay .icon:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hover-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
}

.hover-tagline {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.hover-description {
  font-size: 1rem;
  margin-top: 1rem;
  line-height: 1.4;
}

/* section5 ends */

/* section6 starts */

.section6 {
  padding: 70px 0px;
}

.section6 .container {
  position: relative;
  top: 0;
  bottom: 0;
  height: 100%;
}

.section6 .container .titles {
  position: absolute;
  height: 100%;
  left: 100px;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* section6 ends */

/* section 7 starts */

.section7 {
  background-color: #000000;
  padding: 70px 0px;
  display: block;
  position: relative;
  box-sizing: border-box;
}

.section7 .reads_slider_nav {
  margin-top: 27px;
}

.section7 .reads_nav {
  display: inline-block;
  width: 36px;
  height: 36px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  margin-right: 16px;
  background-color: #2d8be400;
  border: 1px solid #ffffff;
}

.section7 .reads_nav:last-child {
  margin-right: 0px;
}

.section7 .reads_nav i {
  line-height: 36px;
  color: #fff;
  font-size: 18px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

.section7 .reads_nav:hover i {
  color: #474747;
}

.reads_slider_container {
  border-bottom: 1px solid white;
  padding-bottom: 20px;
}

.section7 .reads_item {
  border-radius: 1px;
}

.section7 .more img {
  width: 100%;
  max-width: 40px;
  height: 40px;
}

.section7 .reads_image {
  position: relative;
  width: 100%;
  /* min-height: 320px */
}

.section7 .reads_image img {
  width: 100%;
  height: 100%;
}

.section7 .reads_content {
  position: absolute;
  top: 0;
  bottom: auto;
  height: 100%;
  padding: 15px;
  color: white;
  background-image: linear-gradient(to top, #000000, transparent);
}

.section7 .reads_content .reads_tag p {
  background-color: #ff5b5b;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10px;
}

.section7 .reads_content .content h5 {
  font-size: 17px;
}

.section7 .reads_content .content p {
  margin-bottom: 0px;
  font-size: 13px;
  line-height: 16px;
}

@media only screen and (max-width: 991px) {
  .reads_slider_container {
    margin-top: 15px;
  }
}
/* section 7 ends */

/* section8 contact-section starts */

.section8 {
  padding: 70px 0px;
  background-color: #000000;
}

.section8 .contact-section {
  padding: 70px 0px;
  background: linear-gradient(to right, white 70%, black 0%);
}

.contact-section ul {
  padding-left: 0px;
}

.contact-section ul p {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-section ul li {
  margin-left: 16px;
  font-size: 14px;
}

.contact-section .form {
  background-color: #000000;
  color: white;
  padding: 20px;
  border-radius: 5px;
}

.contact-section .form .input-group {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: center;
  row-gap: 10px;
}

.contact-section .form .input-group input {
  width: 100%;
  padding: 10px;
  outline: none;
  border: none;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.contact-section .form .checkbox-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-section .form .checkbox-group div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 15px;
}

.contact-section .form .checkbox-group div label {
  font-size: small;
  margin-bottom: 0px;
}

.contact-section .form .submit-btn {
  background-color: #fbe360;
  border: none;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.contact-section .form span {
  font-size: 10px;
}

.contact-section .form span a {
  color: white;
  text-decoration: underline;
}

/* contact-section ends */

/* footer starts */

footer {
  padding: 50px 0px;
  background-color: #000000;
  color: white;
}

footer hr {
  width: 100%;
  height: 2px;
  background-color: white;
  margin: 30px 0px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
  color: white;
}

footer .row1 p {
  width: 75%;
}

footer .row1 .btn {
  background: linear-gradient(283deg, #ff8928 0%, #ff414e 100%);
  color: white;
}

footer .row2 ul {
  list-style-type: none;
  line-height: 30px;
  font-size: 14px;
}

footer .row2 p {
  margin-bottom: 0px;
}

/* footer ends */

/* media query */

@media (max-width: 450px) {
  header .navbar {
    padding: 10px;
  }

  header .alternate-logo {
    position: absolute;
    left: 20px;
  }

  header .navbar-brand img {
    height: 45px;
  }

  .navbar-menu {
    display: none;
  }

  .dropdown-content {
    width: 200px;
  }

  .hero-content {
    padding: 0px;
    left: 10px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .quote-container {
    bottom: 10px;
    right: 20px;
    max-width: 200px;
  }

  .quote-text {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .quote-author {
    font-size: 0.7rem;
  }

  .titles h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fbe360;
  }

  .titles h2 {
    font-size: 28px;
    font-weight: 700;
    font-style: italic;
  }

  /* section1 */

  .section1 {
    padding: 40px 0px;
  }

  .section1 h2 {
    font-size: 30px;
    padding: 0px;
  }

  .section1 .container .col-lg-4 img {
    height: auto;
    left: auto;
    width: 150px;
  }

  /* section2 */
  .section2 .container .col-6 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section2 .container .card {
    padding: 12px;
  }

  .section2 .container .card h5 {
    font-size: 16px;
  }

  .section2 .container .card p {
    font-size: 10px;
    left: 0px;
    padding: 10px;
    margin-bottom: 0px;
  }

  /* section3 */

  /* Stack boxes vertically */
  .section3 .container .row {
    flex-direction: column;
    width: 100%;
    row-gap: 15px;
  }

  /* Make all boxes take full width */
  .section3 .container .box {
    width: 100%;
    height: 20vh; /* Smaller height initially */
    flex: none;
    transition: height 0.7s ease-out;
  }

  /* Expand the active box to show content */
  .section3 .container .box.active {
    height: 80vh; /* Expand in vertical direction */
  }

  .section3 .container .box div {
    padding: 15px !important;
  }

  .section3 .container .box h1 {
    font-size: 25px;
  }

  .section3 .container .box p {
    margin-bottom: 10px;
    line-height: 20px;
  }

  .section3 .container .box a {
    padding: 5px;
  }

  .section3 .container .box a {
    max-width: 130px;
  }

  /* section4 */

  .section4 .container .services-row .col-lg-6 {
    padding: 10px 0px;
  }
  .section4 .container .services-row h4 {
    font-size: 28px;
  }

  .section4 .container .services-row .number {
    width: 40px;
  }

  .section4 .container .services-row {
    padding-left: 0px;
    padding-right: 0px;
  }

  /* partners-section */
  .partners-section .partner_div {
    margin: 0px 8px;
  }

  .partners-section .partners-logos::after {
    width: 0px;
  }

  .partners-section .partners-logos::before {
    width: 0px;
  }

  .partners-section .partners-logos .partner_image {
    width: 100% !important;
    margin-bottom: 16px;
  }

  /* section 5 */
  .section5 .swipe-icon {
    width: 45px;
    height: 45px;
  }

  .section5 .title {
    font-size: 20px 25px;
  }

  /* section6 */

  .section6 {
    padding: 50px 0px;
  }

  .section6 .container {
    padding: 0px;
  }

  .section6 .container .titles {
    left: 10px;
    padding: 20px;
  }

  .section6 .container .titles p {
    font-size: 13px;
    width: 70%;
  }

  /* /section 8 */
  .section8 .contact-section {
    background: white;
  }
}

@media (min-width: 451px) and (max-width: 885px) {
  .hero-content {
    padding: 0px;
  }

  /* section2 */
  .section2 .container .col-6 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section2 .container .card {
    padding: 12px;
  }

  .section2 .container .card p {
    font-size: 11px;
    left: 0px;
    padding: 15px;
    margin-bottom: 0px;
  }

  .section3 .container .box {
    height: 45vh;
  }

  .section3 .container .box.active {
    flex: 2;
  }

  .section3 .container .box div {
    padding: 20px;
  }

  .section4 .container .services-row {
    padding: 0px;
  }

  .section4 .container .services-row h4 {
    font-size: 25px;
  }

  .section4 .container .row hr {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .section5 .title {
    font-size: 40px;
  }

  .section6 {
    padding: 50px 0px;
  }

  .section6 .container {
    padding: 0px;
  }

  .section6 .container .titles p {
    line-height: normal;
  }
}
