* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #2a3763;
  --secondary-color: #8cd8bc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--main-color);
  color: #fff;
}

p {
  color: #fff !important;
}

/* Navbar */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar {
  background: transparent;
  transition: 0.3s ease;
  position: fixed;
  z-index: 20;
  height: 100px;
  width: 100%;
}

.navbar.scrolled {
  background-color: var(--main-color);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled .nav-item a {
  color: #fff;
}

.nav-link a {
  color: var(--main-color) !important;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}

.navbar-nav li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  margin: 0 30px;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s;
}

.navbar-nav li a:hover {
  color: rgb(249, 249, 249);
  transition: 0.3s;
}

.nav-hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.5s ease;
}

.nav-hover:hover::after {
  width: 100%;
}

.global-icon {
  margin-right: 28px;
}

.mega-menu-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.mega-menu-sidebar.active {
  right: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1049;
  display: none;
}

.overlay.active {
  display: block;
}

.mega-menu-sidebar a {
  display: block;
  padding: 15px 30px;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  color: rgba(13, 59, 102, 1);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.mega-menu-sidebar a:hover {
  color: rgba(22, 130, 179, 1);
}

.mega-menu-sidebar a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 30px;
  width: 0%;
  height: 2px;
  background-color: rgba(22, 130, 179, 1);
  transition: width 0.4s ease;
}

.mega-menu-sidebar a:hover::after {
  width: calc(100% - 60px);
}

/* Main section */

.b-g {
  width: 100%;
  height: 1085px;
  background-image: url("../imgs/image_77.png.png");
  background-size: 100% 100%;
  position: relative;
  z-index: 2;
}

.caption {
  width: 85%;
  position: absolute;
  top: 314px;
  left: 150px;
}

.home-title h1 {
  font-size: 4rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 1);
}

.home-title p {
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 1);
}

.btn-contact {
  width: 198px;
  height: 60px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 500;
}

.btn-contact:hover {
  cursor: pointer;
  transition: 0.3s;
  background: linear-gradient(to right, #ffffff, var(--secondary-color));
}

/* ========== About ========== */
.about {
  margin-top: 116px;
  margin-bottom: 100px;
  position: relative;
  z-index: 5;
}

.about-img {
  width: 414px;
  height: 413px;
}

.about-img img {
  border-radius: 10px;
}

.btn-about {
  width: 238px;
  height: 60px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 500;
  display: flex;
  justify-items: center;
  align-items: center;
  margin-top: 40px;
}

.btn-about:hover {
  cursor: pointer;
  transition: 0.3s;
  background: linear-gradient(to right, #ffffff, var(--secondary-color));
}

.head-line {
  position: relative;
}

.about-title {
  position: relative;
  font-size: 56px;
  font-weight: bold;
  color: rgba(22, 130, 179, 1);
  z-index: 5;
}

.title-about {
  z-index: 10;
}

.img-underline {
  position: absolute;
  bottom: -0.9em;
  left: 0;
  width: 100%;
  max-width: 413px;
  height: auto;
  z-index: 4;
  pointer-events: none;
}

.title-about p {
  font-size: 26px;
  font-weight: 400;
  margin-top: 22px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.arrow {
  height: 12px;
  width: 12px;
  margin-left: 30px;
  margin-bottom: 10px;
}

.design-bg {
  position: absolute;
  top: -10px;
  left: 0px;
  z-index: 1;
  opacity: 0.3;
}

.design-bg img {
  width: 400px;
}

.a-b-c {
  position: relative;
}

.about-2 {
  position: relative;
  z-index: 3;
}

@media (max-width: 1339px) and (min-width: 992px) {
  /* section {
        display: flex;
        justify-content: center;
    }

    section > .container {
        max-width: 960px;
        width: 100%;
    }

    section .row {
        justify-content: center;
    } */

  section .about,
  section .services,
  section .features,
  section .products,
  section .contact {
    text-align: center;
  }
}

/* ========== Our Work ========== */
.work-bg {
  background-image: url("../imgs/our-work.png");
  background-size: cover;
  background-position: center;
  padding-bottom: 60px;
}

.head-line-2 {
  position: relative;
  margin-top: 61px;
  text-align: center;
}

.work-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  position: relative;
}

.img-underline-2 {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 460px;
  pointer-events: none;
}

.ticket-back-ground {
  text-align: center;
  margin-top: 40px;
}

.ticket-back-ground p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 40px;
}

.project-card {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: none;
}

.project-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-name {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  padding: 12px 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  z-index: 1;
}

.project-hover-overlay,
.project-hover-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #000;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 20px;
}

.project-hover-overlay.project-hover-overlay-dark {
  background-color: #1682b3 !important;
}

.project-card:hover .project-hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

.hover-content {
  background-color: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  max-width: 100%;
}

.project-hover-overlay.project-hover-overlay-dark .hover-content {
  background-color: #1682b3;
  color: #fff;
}

.hover-content h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
}

.btn-work {
  margin-top: 25px;
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 500;
  width: 246px;
  height: 60px;
  border: none;
}

.btn-work:hover {
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.2),
    var(--secondary-color)
  );
}

/* ========== Our Sponsors ========== */
.head-line-3 {
  margin-top: 88px;
  position: relative;
}

.head-line-3 h1 {
  position: relative;
  top: 23px;
  font-size: 58px;
  font-weight: 600;
  color: rgba(22, 130, 179, 1);
  z-index: 5;
}

.our-spon {
  height: auto;
}

.our-spon h1 {
  color: #1682b3 !important;
}

.sponsor-logo {
  flex: 0 0 auto;
  max-width: 100%;
  padding: 10px;
  transition: transform 0.3s ease;
}

.sponsor-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: 0.3s ease;
}

.sponsor-logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ========== Our Clients ========== */
.clients {
  margin-bottom: 215px;
}

.head-line-4 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 65px;
}

.head-line-4 h1 {
  color: rgba(22, 130, 179, 1);
  font-size: 58px;
  font-weight: 600;
  position: relative;
  top: 30px;
}

.head-line-4 img {
  width: 640px;
}

.hrr-1,
.hrr-2 {
  width: 550px;
  height: 0.5px;
  border: none;
  margin: 20px 0;
  margin-left: 20px;
  opacity: 1;
}

.hrr-1 {
  background-color: rgb(0, 0, 0);
}

.hrr-2 {
  background-color: #ffffff;
}

.client-brag,
.client-brag-2 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  margin-left: 25px;
  opacity: 1;
}

.client-brag {
  color: rgba(0, 0, 0, 1) !important;
}

.client-brag-2 {
  color: #fff;
}

.client-img {
  margin: 60px 20px;
}

.clien-1,
.clien-2 {
  margin-left: 20px;
}

.clien-1 h6,
.clien-2 h6 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 12px;
}

.clien-1 h6 {
  color: rgba(30, 30, 30, 1);
}

.clien-1 small {
  color: rgba(13, 59, 102, 1);
}

.clien-2 h6 {
  color: rgba(13, 59, 102, 1);
}

small {
  font-size: 18px;
}

.card-client-2 {
  background-color: rgba(22, 130, 179, 1);
}

.sliders .slider-2,
.sliders .slider-1 {
  position: absolute;
  top: 39%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

.sliders .slider-2 {
  left: -40px;
}

.sliders .slider-1 {
  right: -40px;
}

.button-slider-1,
.button-slider {
  border-radius: 8px;
  border: none;
  height: 8px;
  margin-top: 45px;
}

.button-slider-1 {
  background-color: rgba(22, 130, 179, 1);
  width: 64px;
}

.button-slider {
  background-color: rgba(217, 217, 217, 1);
  width: 25px;
  margin-left: 15px;
}

.transition {
  transition: transform 0.6s ease-in-out;
}

.slider-wrapper {
  overflow: hidden;
}

.slider-card {
  min-width: 50%;
  box-sizing: border-box;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Footer */

.footer-bg {
  height: auto;
  background-image: url("../imgs/Footer.png");
  background-size: 100% 100%;
  padding-top: 50px;
}

.footer-links {
  margin-top: 73px;
}

.footer-links ul {
  margin-left: 260px;
}

.footer-links ul li {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  list-style: none;
  margin-bottom: 27px;
}

.footer-links ul li a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: rgb(190, 190, 190);
}

.footer-links-2 {
  margin-top: 73px;
}

.footer-links-2 ul {
  margin-left: 260px;
  width: 100%;
}

.footer-links-2 ul li {
  font-size: 18px;
  font-weight: 500;
  color: rgb(190, 190, 190);
  list-style: none;
  margin-bottom: 27px;
}

.footer-icon {
  margin-top: 100px;
  margin-left: 45%;
}

.footer-icon i {
  cursor: pointer;
}

.footer-icon i:hover {
  color: rgba(22, 130, 179, 1) !important;
}

/* About Page */
.sec-about-bg,
.projects-bg {
  height: 80vh;
  background-image: url(../imgs/pexels-curtis-adams-1694007-4258275.jpg);
  background-size: 100% 100%;
  position: relative;
  object-fit: contain;
  overflow: hidden;
}

.sec-about-bg::before,
.projects-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.1);
  z-index: 0;
}

.sec-about-bg > *,
.projects-bg > * {
  position: relative;
  z-index: 1;
}

.sec-about {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec-about h1 {
  font-size: 56px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
}

.sec-caption-about {
  margin-top: 100px;
}

.sec-caption p {
  font-size: 22px;
  font-weight: 400;
  color: rgba(30, 30, 30, 1);
  line-height: 1.8;
  /* padding-right: 30px; */
}

/* .sec-caption-img {
    margin-bottom: 100px;
    height: 324px;
    width: 324px;
} */

.sec-about-card {
  display: flex;
  justify-content: space-between;
}

.sec-card-1 {
  /* width: 650px; */
  min-height: 480px;
  padding: 33px;
  background-color: rgba(197, 224, 236, 1);
  border-radius: 10px;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.sec-card-1 h2 {
  font-size: 42px;
  font-weight: 600;
  color: rgba(13, 59, 102, 1);
}

.sec-card-1 img {
  height: 25px;
  /* width: 220px; */
  position: absolute;
  bottom: -20px;
}

.sec-card-1 p {
  margin-top: 60px;
  font-size: 25px;
  font-weight: 400;
  color: #272727 !important;
}

.sec-head-card {
  position: relative;
}

.sec-head-card-2 {
  position: relative;
}

.sec-card-2 {
  /* width: 650px; */
  margin-left: 15px;
  min-height: 480px;
  padding: 33px;
  background-color: rgba(255, 244, 214, 1);
  border-radius: 10px;
  margin-bottom: 100px;
  position: relative;
  z-index: 6;
}

.sec-card-2 h2 {
  font-size: 42px;
  font-weight: 600;
  color: rgba(22, 130, 179, 1);
}

.sec-card-2 img {
  height: 25px;
  width: 220px;
  position: absolute;
  bottom: -20px;
}

.sec-card-2 p {
  margin-top: 60px;
  font-size: 25px;
  font-weight: 400;
  color: #272727 !important;
}

.sec-cards {
  position: relative;
}

.sec-about-desgin {
  opacity: 0.2;
  position: absolute;
  top: 170px;
  left: 0px;
  z-index: 1;
}

.sec-Our-Goals {
  position: relative;
  z-index: 5;
  padding-bottom: 90px;
  background-color: rgba(22, 130, 179, 1);
}

.sec-head-goals {
  position: relative;
  display: flex;
  justify-content: center;
}

.sec-head-goals h1 {
  margin-top: 80px;
  font-size: 56px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  position: relative;
  z-index: 3;
}

.sec-head-goals img {
  position: absolute;
  top: 132px;
  left: 40%;
  z-index: 2;
}

.sec-goals-prag p {
  margin-top: 37px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  padding: 0 190px;
  margin-bottom: 64px;
}

.sec-goals-1 {
  text-align: center;
  width: 281px;
  border-radius: 10px;
  height: 265px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.15);
}

.sec-goals-1 h3 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin-top: 56px !important;
  margin: auto;
  line-height: 1.8;
}

.sec-goals-1 h4 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin-top: 34px;
  margin: auto;
}

.sec-goals-2 {
  width: 281px;
  text-align: center;
  border-radius: 10px;
  height: 265px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: auto;
}

.sec-goals-2 h3 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin-top: 56px !important;
  margin: auto;
  line-height: 1.8;
}

.sec-goals-2 h4 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin-top: 34px;
  margin: auto;
}

.sec-goals-3 {
  text-align: center;
  width: 281px;
  border-radius: 10px;
  height: 265px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.15);
}

.sec-goals-3 h3 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin-top: 56px !important;
  margin: auto;
  line-height: 1.8;
}

.sec-goals-3 h4 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin-top: 34px;
  margin: auto;
}

.sec-goals-4 {
  text-align: center;
  width: 281px;
  border-radius: 10px;
  height: 265px;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.15);
}

.sec-goals-4 h3 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin-top: 56px !important;
  margin: auto;
  line-height: 1.8;
}

.sec-goals-4 h4 {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  margin-top: 34px;
  margin: auto;
}

.sec-Companies {
  margin-top: 100px;
  position: relative;
  margin-bottom: 75px;
}

.sec-Companies h1 {
  font-size: 58px;
  font-weight: 600;
  color: rgba(22, 130, 179, 1);
  position: relative;
  z-index: 3;
}

.sec-Companies img {
  position: absolute;
  top: 130px;
  z-index: 2;
}

.sec-item-prag {
  padding-left: 40px;
}

.sec-item-prag h3 {
  font-size: 32px;
  font-weight: 600;
  color: rgba(22, 130, 179, 1);
}

.sec-item-prag p {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 400;
  color: rgba(30, 30, 30, 1);
}

.sec-test {
  margin-top: 70px;
}

/* Contact Page */
.sec-heat-contact {
  text-align: center;
}

.sec-heat-contact h1 {
  font-size: 40px;
  font-weight: bold;
  color: rgba(30, 30, 30, 1);
}

.sec-heat-contact p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(113, 113, 113, 1);
  margin-bottom: 50px;
}

.sec-full-body {
  background-color: #fff;
  max-width: 80%;
  border-radius: 10px;
  margin-bottom: 112px;
}

.sec-contact-info {
  background-image: url("../imgs/blue-2.jpg");
  background-size: 100% 100%;
  border-radius: 10px;
  height: 790px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sec-head-info {
  padding: 0 0 0 10px;
}

.sec-head-info h1 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}

.sec-head-info p {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 400;
  color: rgba(201, 201, 201, 1);
}

.sec-information {
  padding-bottom: 100px;
}

.sec-information i {
  font-size: 20px;
  color: #fff;
  padding-top: 6px;
  padding-right: 25px;
  margin-left: 10px;
}

.sec-information p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.sec-data {
  margin-bottom: 25px;
}

.sec-data p {
  font-size: 20px;
  overflow-wrap: anywhere;
}

.sec-icons {
  margin-left: 48px;
  padding-bottom: 50px;
}

.sec-icons i {
  padding: 6px;
  margin-right: 24px;
  color: var(--main-color);
  background-color: transparent;
  border-radius: 50%;
  font-size: 26px;
}

.sec-contact-form {
  margin-top: 60px;
}

.sec-contact-form label {
  color: #272727;
  font-size: 16px;
}

.sec-form-1 {
  margin-bottom: 45px;
}

.sec-email {
  margin-bottom: 45px;
}

.form-control {
  border: none;
  border-bottom: 2px solid #888;
  border-radius: 0;
  box-shadow: none;
}

.form-control:focus {
  border-color: #dbdbdb;
  box-shadow: none;
}

.sec-text-start {
  display: flex;
  justify-content: right;
  margin-top: 70px;
}

.sec-text-start button {
  width: 230px;
  height: 65px;
  background-color: rgba(22, 130, 179, 1);
  color: #fff;
  font-size: 22px;
  border: none;
  position: relative;
  z-index: 5;
  transition: 1s;
}

.sec-text-start button:hover {
  background: linear-gradient(to right, #ffffff, rgba(22, 130, 179, 1));
  transition: 1s;
}

.sec-plane-p {
  position: relative;
}

.sec-plane {
  background-image: url("../imgs/plane.png");
  background-size: 100% 100%;
  width: 360px;
  height: 330px;
  position: absolute;
  bottom: -20px;
  left: 61%;
}

/* ----------Media Guery---------- */

@media (min-width: 1024px) and (max-width: 1160px) {
  .hrr-2,
  .hrr-1 {
    width: auto;
  }

  .about {
    width: auto;
    margin-bottom: 20px;
  }

  .about-2 {
    width: 50%;
  }

  .title-about h1 {
    font-size: 50px;
  }

  .head-line img {
    width: 400px;
  }

  .title-about p {
    font-size: 20px;
    padding: 18px 0px;
  }

  .about-img {
    width: 50%;
  }

  .design-bg {
    width: 250px;
  }

  .head-line-2 {
    position: relative;
  }

  .head-line-2 img {
    position: absolute;

    top: 50px;
  }

  .work-bg {
    height: auto;
  }

  .btn-work {
    margin-bottom: 30px;
  }

  .our-spon .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .head-line-3 {
    margin-top: 50px;
  }

  .our-spon .row .icon-2 {
    padding-left: 50px;
  }

  .client-brag-2 br {
    display: none;
  }

  .client-num1 {
    width: 48%;
  }

  .client-num2 {
    width: 48%;
  }

  .sliders .slider-1 {
    position: absolute;
    top: 39%;
    right: 0px;
  }

  .sliders .slider-2 {
    position: absolute;
    top: 39%;
    left: 0px;
  }

  .footer-links ul {
    margin-left: 250px;
  }

  .footer-links-2 ul {
    margin-left: 120px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* * {
      border: 1px solid red !important;
    } */
  /*
    body{
      background-color: blue;
    } */

  .a-b-c {
    position: relative;
  }

  .about .about-2 {
    width: 49%;
  }

  .about .about-img {
    width: 49%;
  }

  .hrr-2,
  .hrr-1 {
    width: auto;
  }

  .head-line img {
    position: absolute;
    left: 0;
    top: 50px;
  }

  .title-about {
    position: relative;
  }

  .head-line-2 {
    position: relative;
  }

  .head-line-2 img {
    position: absolute;
  }

  .title-about h1 {
    font-size: 54px;
  }

  .title-about p {
    font-size: 17px;
  }

  .design-bg img {
    width: 200px;
  }

  .work-bg {
    height: auto;
  }

  .btn-work {
    margin-bottom: 30px;
  }

  .tickets .project-1 {
    width: 49%;
  }

  .head-line-3 {
    margin-top: 0px;
  }

  .head-line-4 {
    margin-top: 0;
  }

  .our-spon .row .icon-2 {
    padding-left: 50px;
  }

  .icon-4 {
    padding-left: 20px;
  }

  .footer-links ul {
    margin-left: 0;
  }

  .footer-links-2 ul {
    margin-left: 10px;
  }

  .clients {
    margin-bottom: 50px;
  }

  .global-icon {
    display: none;
  }

  .navbar-collapse {
    display: none;
  }

  .navbar-collapse.show {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: rgb(194, 194, 194);
    padding: 10px 20px;
    z-index: 10;
    transition: 0.5s;
  }

  .navbar-nav {
    flex-direction: row;
    align-items: flex-start;
  }

  .navbar-nav .nav-item {
    margin: 10px 0;
  }

  .main-nav {
    justify-content: space-between;
    align-items: center;
  }

  .nav-item li a {
    color: rgba(13, 59, 102, 1);
  }
}

@media (max-width: 768px) {
  .slider-card {
    min-width: 100%;
  }

  .about {
    margin-top: 60px;
    margin-bottom: 60px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-img {
    width: 100% !important;
    height: auto !important;
    display: flex;
    justify-content: center;
  }

  .about-img img {
    width: 100%;
    max-width: 360px;
    height: auto;
  }

  .about-2 {
    width: 100%;
    padding: 0 15px;
  }

  .img-underline {
    max-width: 100%;
    width: 280px;
    left: 50%;
    transform: translateX(-50%);
  }

  .title-about p {
    font-size: 20px;
  }

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

  .btn-about {
    width: 100%;
    max-width: 280px;
    font-size: 20px;
    margin: 0 auto;
    margin-top: 30px;
  }

  .arrow {
    margin-left: 20px;
    margin-bottom: 6px;
  }

  .project-card {
    max-width: 330px;
    margin: 0 auto;
  }

  .project-card img {
    height: 240px;
  }
}

/* === Responsive Styles === */
@media (max-width: 1200px) {
  /* .sec-about {
        left: 35%;
        width: 60%;
    } */
  .sec-card-1,
  .sec-card-2 {
    /* width: 100%; */
    height: auto;
    padding: 20px;
  }

  .sec-goals-prag p {
    padding: 0 100px;
  }
}

@media (max-width: 992px) {
  /* .sec-caption-about {
        flex-direction: column;
    } */
  /* .sec-caption-img {
        margin: 0 auto 40px;
        width: 200px;
        height: auto;
    } */
  .sec-about-card {
    flex-direction: column;
    gap: 20px;
  }

  .sec-card-2 {
    margin-left: 0;
  }

  .sec-goals-prag p {
    padding: 0 50px;
  }

  .sec-goals-1,
  .sec-goals-2,
  .sec-goals-3,
  .sec-goals-4 {
    width: 100%;
    margin-bottom: 30px;
  }

  .sec-goals-2 {
    margin: 0 0 30px;
  }

  .sec-head-goals img {
    left: 25%;
  }

  .footer-links ul,
  .footer-links-2 ul {
    margin-left: 0;
    padding-left: 0;
    text-align: center;
  }

  .footer-links,
  .footer-links-2 {
    margin-top: 40px;
  }

  .footer-icon {
    margin-left: 0;
    margin-top: 50px;
    text-align: center;
  }

  .footer-icon i {
    margin: 0 10px;
  }

  .footer-bg {
    height: auto;
    padding-bottom: 30px;
  }

  .sec-full-body {
    max-width: 100%;
    margin: 0 10px 80px 10px;
  }

  .sec-contact-info {
    height: auto;
    padding-top: 30px;
  }

  .sec-icons {
    margin-left: 0;
    text-align: center;
  }

  .sec-plane {
    display: none;
  }

  .sec-text-start {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .sec-about h1 {
    font-size: 38px;
  }

  .sec-caption p {
    font-size: 18px;
    padding: 0;
  }

  .sec-head-card h2,
  .sec-head-card-2 h2 {
    font-size: 32px;
  }

  .sec-card-1 p,
  .sec-card-2 p {
    font-size: 20px;
    margin-top: 40px;
  }

  .sec-goals-prag p {
    font-size: 18px;
    padding: 0 20px;
  }

  .sec-Companies h1 {
    font-size: 36px;
  }

  .sec-item-prag h3 {
    font-size: 24px;
  }

  .sec-item-prag p {
    font-size: 16px;
  }

  .sec-head-goals h1 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .sec-about h1,
  .sec-head-goals h1,
  .sec-Companies h1 {
    font-size: 28px;
  }

  /* .sec-caption-img {
        width: 150px;
        margin-bottom: 20px;
    } */
  .sec-card-1,
  .sec-card-2 {
    padding: 15px;
  }

  .sec-card-1 p,
  .sec-card-2 p {
    font-size: 16px;
  }

  .sec-goals-1 h3,
  .sec-goals-2 h3,
  .sec-goals-3 h3,
  .sec-goals-1 h4,
  .sec-goals-2 h4,
  .sec-goals-3 h4,
  .sec-goals-4 h3,
  .sec-goals-4 h4 {
    font-size: 18px;
  }

  .sec-item-prag {
    padding-left: 0;
  }

  .sec-item-prag h3 {
    font-size: 20px;
  }

  .sec-item-prag p {
    font-size: 14px;
  }

  .footer-links ul li,
  .footer-links-2 ul li {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .footer-icon i {
    font-size: 18px;
  }

  .sec-head-info h1 {
    font-size: 24px;
    text-align: center;
  }

  .sec-head-info p {
    font-size: 18px;
    text-align: center;
  }

  .sec-heat-contact h1 {
    font-size: 30px;
  }

  .sec-heat-contact p {
    font-size: 16px;
  }

  .sec-icons i {
    margin: 0 10px;
    font-size: 22px;
  }

  .sec-text-start button {
    width: 100%;
  }

  .sponsor-logo {
    max-width: 100px;
  }
}

/* Projects Page */
.projects-bg {
  background-image: url("../imgs/Rectangle 3851.png");
}

.filter-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 15px;
}

.filter-exercise {
  display: flex;
  flex-wrap: wrap;
  border-radius: 6px;
  overflow: hidden;
  gap: 0;
  justify-content: center;
}

.filter-btn {
  padding: 10px 20px;
  background: #fff;
  color: #1682b3 !important;
  font-family: var(--secondary-font);
  font-size: 1.3rem;
  color: var(--main-color);
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 0;
  flex: 1 1 auto;
  min-width: 120px;
  text-align: center;
  border: 1px solid #f2f2f2;
}

/* LTR */
.ltr-filters .filter-btn:first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.ltr-filters .filter-btn:last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* RTL */
.rtl-filters .filter-btn:first-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.rtl-filters .filter-btn:last-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.filter-btn.active {
  background-color: #1682b3;
  color: #fff !important;
}

.footer-icon {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-icon a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-icon a:hover {
  background-color: var(--main-color);
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(40, 162, 40, 0.45);
}

.footer-icon a i {
  transition: transform 0.3s ease;
}

.footer-icon a:hover i {
  transform: scale(1.1);
}

/* Aos Style */

[data-aos="fade-right"] {
  transform: translate3d(30px, 0, 0) !important;
}

[data-aos="fade-left"] {
  transform: translate3d(-30px, 0, 0) !important;
}

[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0) !important;
}

[data-aos="fade-down"] {
  transform: translate3d(0, -30px, 0) !important;
}

[data-aos].aos-animate {
  transform: none !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .navbar-nav li a {
    font-size: 20px !important;
  }
}

.project-slider-wrapper {
  margin-top: 20px;
}

.projectSwiper {
  padding: 10px 0 60px;
  padding-bottom: 80px !important;
  position: relative;
}

.projectSwiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
}

.projectSwiper .swiper-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.projectSwiper .swiper-slide:hover img {
  transform: scale(1.05);
}

.projectSwiper .swiper-button-next,
.projectSwiper .swiper-button-prev {
  color: var(--main-color);
}

.projectSwiper .swiper-pagination-bullet {
  background: #f2f2f2;
}

.projectSwiper .swiper-pagination {
  position: absolute;
  bottom: 0 !important;
  left: 0;
  width: 100%;
  margin-top: 20px;
}
