@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

a {
  color: #009ee2;
  text-decoration: none;
}

a:hover {
  color: #009ee2;
  text-decoration: none;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.heading {
  font-size: 14px;
  color: #1dc2ef;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
}

.section-title {
  font-weight: 900;
  color: #0e2b5c;
  font-size: 2.5rem;
  /* line-height: 1.2em; */
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #009ee2;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #21df41;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .page-title-inner {
    font-size: 2.5rem;
  }
  .subtitle {
      font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #111;
}

#header .logo a span {
  color: #009ee2;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin-left: 20px;
  border-left: 1px solid #c4c4c4;
}

.header-social-links a {
  color: #a0a0a0;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  padding-left: 20px;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #009ee2;
}

@media (max-width: 768px) {
  .header-social-links {
    padding: 0 15px 0 0;
    border-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Mulish", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #009ee2;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  font-family: "Mulish", sans-serif;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #009ee2;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #111;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #009ee2;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #009ee2;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #009ee2;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  /* background-color: rgba(0, 0, 0, 0.8); */
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  position: absolute;
  bottom: 60px;
  top: 70px;
  left: 55px;
  right: 55px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#hero .carousel-content {
  margin-left: 50px;
  /* background: rgba(4, 4, 4, 0.4); */
  padding: 20px;
  color: #fff;
}

#hero .carousel-content h2 {
  color: #fff;
  /* margin-bottom: 20px; */
  font-size: 70px;
  font-weight: 900;
}

#hero .carousel-content p {
  color: #fff;
  /* margin-bottom: 20px; */
  font-size: 40px;
  font-weight: 300;
}

#hero .carousel-content .line {
  border: 1px solid #fff;
  width: 100px;
  margin-bottom: 20px;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

/* #hero .carousel-content a {
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
  padding: 5px;
  background: transparent;
  height: auto;
  line-height: 1;
  border: none;
} */

#hero .carousel-content a {
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #009ee2;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 5px;
  margin: 0 -.25rem;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

#hero .carousel-content a:hover {
  color: #fff;
  box-shadow: inset 500px 0 0 0 #009ee2;
}

/* Presentational styles */
/* #hero .carousel-content a {
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out 0s;
  line-height: 1.5;
  text-decoration: none;
} */


/* #hero .carousel-content a:hover {
  background-color: #009ee2;
  border-color: #fc5546;
} */

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev-icon {
  /* background: none; */
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: #fff;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: 0.3s;
  color: #009ee2;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
}

#hero .carousel-control-next-icon {
  /* background: none; */
  right: 0;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: #fff;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  transition: 0.3s;
  color: #009ee2;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: #fff;
  color: #009ee2;
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #009ee2;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 4%;
  }
}

@media (max-width: 992px) {
  #hero .carousel-container {
    top: 58px;
  }

  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  #hero .carousel-content p {
    font-size: 15px;
  }

  #hero .carousel-content .line {
    border: 0.5px solid #fff;
    width: 50px;
    margin-bottom: 10px;
  }

  #hero .carousel-content a {
    font-size: 12px;
  }

  hero .carousel-control-prev-icon,
  .carousel-control-nect-icon {
    height: 30px;
    width: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

@media only screen and (max-width: 480px) {
  #hero .carousel-content {
    margin-left: 0px;
  }

  #hero {
    height: 50vh;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.service-item {
  border-top: 1px solid #F4F4F4;
  border-right: 1px solid #F4F4F4;
  transition: 0.3s;
  position: relative;
  z-index: 10;
}

.service-item .colored-box {
  display: inline-block;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 8px;
  color: #51B56D;
  background-color: rgba(81, 181, 109, 0.2);
}

.service-item:hover {
  box-shadow: 0px 25px 65px 0px rgba(0, 0, 0, 0.1) !important;
}

.service-item .service-title {
  font-weight: 600;
  transition: color 0.3s;
  font-size: 20px;
}

.service-item .service-description {
  color: #888888;
  font-weight: 300 !important;
}

.service-item a:hover .service-title {
  color: #009ee2;
}

.service-item a:hover .service-description {
  color: #888888;
}

.service-item .block {
  padding: 35px 39px;
}

@media (min-width: 991px) {

  .service-item:nth-child(2),
  .service-item:nth-child(4) {
    border-left: 1px solid #F4F4F4;
  }

  .service-item:nth-child(4),
  .service-item:nth-child(5),
  .service-item:nth-child(6) {
    border-bottom: 1px solid #F4F4F4;
  }
}

@media (max-width: 991px) {

  .service-item:nth-child(2),
  .service-item:nth-child(3),
  .service-item:nth-child(5) {
    border-left: 1px solid #F4F4F4;
  }

  .service-item:nth-child(6),
  .service-item:nth-child(5) {
    border-bottom: 1px solid #F4F4F4;
  }
}

@media (max-width: 767px) {
  .service-item {
    border: 1px solid #F4F4F4;
    border-bottom: 0;
  }
}

.service-item:nth-child(even) .colored-box {
  color: #009ee2;
  background-color: #009ee232;
}

.service-item:hover {
  border-color: transparent;
}

/*--------------------------------------------------------------
# Industries Section
--------------------------------------------------------------*/
.icon-box {
  font-size: 15px;
  line-height: 150%;
  background: transparent;
  padding: 10%;
  border: 1px solid rgba(255, 255, 255, .1);
  position: relative;
  z-index: 2;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s;
}

.box-icon {
  order: 1;
  margin: 0 0 30px 0;
  height: auto;
  transition: all 0.4s;
}

.box-title {
  color: #fff;
  order: 2;
  margin: 0 0 15px 0;
  font-weight: 500;
  text-transform: none;
  font-size: 1rem;
  line-height: 1.35em;
}

.detail-box {
  order: 3;
  font-size: 15px;
  line-height: 150%;
}

.icon-box:hover {
  border-color: transparent;
  background-color: #261b2d;
}

.icon-box:hover .box-icon {
  animation: scale-shake 1s ease-in-out forwards;
}

@keyframes scale-shake {

  0%,
  100% {
    transform: scale(1.2);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.2) translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: scale(1.2) translateX(5px);
  }
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/

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

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}

.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slider .slide {
  height: 100px;
  width: 250px;
}

.why-us-box {
  position: relative;
  display: flex;
  margin-right: 50px;
}

.why-us-box h4 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #0e2b5c;
  font-size: 1.25rem;
  transition: 0.3s;
}

.why-us-box p {
  font-size: 15px;
  line-height: 150%;
  color: #53606a;
  font-weight: 300;
}

.why-us-box .icon-list img {
  width: 45px;
  margin-right: 30px;
}

.why-us-box:hover h4 {
  color: #009ee2;
}

.why-us-box:hover .icon-list img {
  animation: scale-shake 1s ease-in-out forwards;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 50px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #4d4643;
  transition: all 0.3s;
  border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #009ee2;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #111;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #444444;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #2b2b2b;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #009ee2;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #009ee2;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #009ee2;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #009ee2;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-color: #f4f6fa;
}

.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, #37517e, transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, #009ee2, transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, #009ee2, transparent 85%);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #009ee2;
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  background-color: #ffffff;
  background-image: url(../images/home/content-bottom-bg.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: scroll;
  padding-top: 100px;
  padding-right: 0px;
  padding-bottom: 20%;
  padding-left: 0px;
  text-align: center;
}

.cta-wrapper {
  font-style: normal;
  color: rgba(14, 43, 92, 0.8);
  text-transform: none;
  font-size: 1.125rem;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  padding: 0 20%;
}

.widget-title {
  color: #009ee2;
  text-transform: none;
  font-size: 1.125rem;
  line-height: 1.1em;
  letter-spacing: 0px;
  margin-bottom: 30px;
}

.text-cta h2 {
  font-weight: 700;
  color: #0e2b5c;
  font-size: 2.25rem;
  line-height: 1.2em;
}

.text-cta p {
  margin-bottom: 40px;
  font-style: normal;
  color: rgba(14, 43, 92, 0.8);
  text-transform: none;
  font-size: 1.125rem;
}

.primary-button {
  appearance: button;
  background-color: #1899D6;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: din-round, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .8px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 13px 16px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: filter .2s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
}

.primary-button:after {
  background-clip: padding-box;
  background-color: #1CB0F6;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  bottom: -4px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.primary-button:main,
.primary-button:focus {
  user-select: auto;
}

.primary-button:hover:not(:disabled) {
  filter: brightness(1.1);
  -webkit-filter: brightness(1.1);
}

.primary-button:disabled {
  cursor: auto;
}

.primary-button:active {
  border-width: 4px 0 0;
  background: none;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #130c1a;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #191122;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: lowercase;
}

#footer .footer-top .footer-info h3 span {
  color: #009ee2;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #130c1a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #009ee2;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #009ee2;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #009ee2;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #009ee2;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #21df41;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/*--------------------------------------------------------------
# Common Breadcrumb Section
--------------------------------------------------------------*/

.breadcrumb-section {
  margin-top: 60px;
  position: relative;
  text-align: center;
  background-position: center;
  background-size: cover;
  padding: 30px 0;
  background-attachment: scroll;
  padding-top: 80px;
  padding-bottom: 80px;
}

.breadcrumb-header:before {
  content: "";
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  background: #231834;
  -webkit-opacity: .7;
  -khtml-opacity: .7;
  -moz-opacity: .7;
  opacity: .7;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  filter: alpha(opacity=70);
}

.breadcrumb-inner {
  min-height: 30vh;
  width: 1170px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}

.page-title-wrapper {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.page-title-inner {
  color: #fff;
  text-transform: uppercase;
  font-size: 5rem;
  line-height: 1em;
  letter-spacing: 1px;
  font-weight: 900;
}

.subtitle {
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  margin-top: 10px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}

/* Tablet Optimization */
@media (max-width: 991px) {
  .breadcrumb-inner {
    min-height: 25vh;
    max-width: 95%;
  }
  
  .page-title-wrapper {
    padding: 0 15px;
  }
  
  .page-title-inner {
    font-size: 3rem;
  }
  
  .subtitle {
    font-size: 0.95rem;
    margin-top: 12px;
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .breadcrumb-inner {
    min-height: 20vh;
    max-width: 95%;
  }
  
  .page-title-wrapper {
    padding: 0 20px;
  }
  
  .page-title-inner {
    font-size: 2rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  
  .subtitle {
    font-size: 0.85rem;
    margin-top: 10px;
    line-height: 1.4;
  }
}

/* Small Mobile Optimization */
@media (max-width: 480px) {
  .breadcrumb-inner {
    min-height: 18vh;
    max-width: 100%;
  }
  
  .page-title-wrapper {
    padding: 0 15px;
  }
  
  .page-title-inner {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  
  .subtitle {
    font-size: 0.75rem;
    margin-top: 8px;
    line-height: 1.4;
  }
  
  .breadcrumb-section {
    background-size: cover !important;
    background-position: center !important;
  }
}

/*--------------------------------------------------------------
# About Page CSS
--------------------------------------------------------------*/
.about-title {
  font-size: 32px;
  text-align: left;
  color: #0e2b5c;
  font-weight: 900;
  line-height: 1.2em;
}

.about-description {
  line-height: 150%;
  font-size: 18px;
  color: #627792;
  font-weight: 400;
}

.kpi-card {
  display: flex;
  align-items: center;
}

.kpi-icon {
  color: #009ee2;
  font-size: 50px;
  transition: all 0.5s;
}

.kpi-card h3 {
  font-size: 0.8rem;
  color: #627792;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

.kpi-card h1 {
  font-size: 2rem;
  color: #0e2b5c;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0;
}

.mission-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 35px rgba(0, 0, 0, .1);
  padding-top: 12%;
  padding-right: 12%;
  padding-bottom: 12%;
  padding-left: 12%;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}

.mission-card i {
  position: relative;
  margin-bottom: 20px;
  font-size: 40px;
  color: #009ee2;
}

.mission-item-content h6,h2,h3 {
  margin: 0 0 15px 0;
  font-weight: 500;
  color: #009ee2;
  text-transform: none;
  font-size: 1rem;
  line-height: 1.35em;
}

.mission-item-content p {
  margin-bottom: 0;
  font-size: 15px;
  font-style: normal;
  color: #627792;
  line-height: 1.625em;
}

.mission-card:hover {
  box-shadow: none;
}

.teams .position-relative {
  z-index: 1;
}

.section-title {
  margin-bottom: 30px;
}

.card-img {
  position: relative;
  overflow: hidden;
}

.card-social {
  margin-bottom: 0;
  background-color: #fff;
  box-shadow: 0px 25px 65px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  display: inline-block;
  padding: 12px 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -100px;
  transition: 0.2s ease;
  white-space: nowrap;
}

.card-social a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  background-color: #fff;
  color: #233242;
  border: 1px solid #ddd;
  display: block;
  border-radius: 6px;
  font-size: 15px;
}

.card-social a:hover {
  color: #009ee2;
}

.card:hover .card-social {
  bottom: 20px;
}

.card-body h3 {
  font-size: 18px;
  color: #0e2b5c;
  font-weight: 500;
}

.card-body p {
  color: #009ee2;
}


/*--------------------------------------------------------------
# Services Page CSS
--------------------------------------------------------------*/

.services .icon-box {
  /* text-align: center; */
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  width: 100%;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.know-more {
  color: #009ee2;
  transition: all 0.2s;
}

.know-more:hover {
  color: #1bbd36;
  text-decoration: underline;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Technologies
--------------------------------------------------------------*/
.technologies .icon-box {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 10px !important;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: ease-in-out 0.3s;
}

.technologies .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.technologies .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.technologies .icon-box h3 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.technologies .icon-box h3 a:hover {
  color: #1bbd36;
}

/*--------------------------------------------------------------
# Detail Breadcrumbs
--------------------------------------------------------------*/
.detail-breadcrumbs {
  padding: 22px 0;
  background: #0e2b5c;
  min-height: 40px;
  margin-top: 72px;
}

.detail-breadcrumbs h2 {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
}

.detail-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
}

.detail-breadcrumbs ol a {
  color: #fff;
  transition: all 0.3s;
}

.detail-breadcrumbs ol a:hover {
  color: #009ee2;
}

.detail-breadcrumbs ol li+li {
  padding-left: 10px;
}

.detail-breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

@media (max-width: 991px) {
  .detail-breadcrumbs {
    margin-top: 58px;
  }

  .detail-breadcrumbs .d-flex {
    display: block !important;
  }

  .detail-breadcrumbs ol {
    display: block;
  }

  .detail-breadcrumbs ol li {
    display: inline-block;
    margin-top: 10px;

  }
}


/*--------------------------------------------------------------
# Service Detail Page CSS
--------------------------------------------------------------*/

.section-sm {
  padding-top: 5px;
  padding-bottom: 100px;
}

.has-line-end {
  display: inline-block;
  position: relative;
  font-weight: 900;
  color: #0e2b5c;
}

.has-line-end::before {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 1px;
  width: 30px;
  background-color: #0e2b5c;
}

#TableOfContents ul {
  margin-bottom: 0;
  margin-top: 15px;
}

#TableOfContents ul ul {
  margin-top: 0;
}

#TableOfContents a {
  display: block;
  padding: 8px 0;
  color: #040404;
  font-weight: 400;
  transition: 0.2s ease;
}

#TableOfContents a.active {
  color: #009ee2;
}

#TableOfContents a:hover {
  color: #009ee2;
}

#TableOfContents ul {
  padding-left: 0;
}

#TableOfContents ul li {
  list-style-type: none;
  padding-left: 20px;
  position: relative;
  color: #040404;
}

#TableOfContents ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #009ee2;
  left: 3px;
  top: 15px;
}

.content * {
  word-break: break-word;
  overflow-wrap: break-word;
}

.content img {
  max-width: 100%;
  margin-top: 10px;
  margin-bottom: 35px;
}

.content h1,
.content .h1,
.content h2,
.content .h2,
.content h3,
.content .h3,
.content h4,
.content .h4,
.content h5,
.content .h5,
.content h6,
.content .h6 {
  font-weight: 700;
  color: #233242;
}

.content strong {
  font-weight: 800;
}

.content a {
  border-bottom: 1px dotted #51B56D;
}

.content a:hover {
  color: #51B56D;
  border-bottom: 1px solid #51B56D;
}

.content ol,
.content ul {
  margin-bottom: 25px;
  padding-left: 0;
  list-style-position: inside;
}

.content ol li,
.content ul li {
  margin-bottom: 10px;
}

.content ul {
  margin-bottom: 20px;
  list-style-type: none;
}

.content ul li {
  padding-left: 0;
  position: relative;
}

.content ul li::before {
  margin-right: 10px;
  font-size: 13px;
}

.content p {
  margin-bottom: 16px;
}

.content h1,
.content .h1,
.content h2,
.content .h2,
.content h3,
.content .h3,
.content h4,
.content .h4,
.content h5,
.content .h5,
.content h6,
.content .h6 {
  color: #233242;
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 700;
}

.content {
  font-size: 16px;
  color: #5c6977;
  font-weight: 350;
}

.content table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}

.content table td,
.content table th {
  padding: 0.6rem 1rem;
  vertical-align: top;
  margin-bottom: 0;
  border: 1px solid #e0e0e0;
}

.content tr:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}

.content th {
  font-weight: 500;
}

.content thead {
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
}

.content thead tr {
  border-bottom: 1px solid #e0e0e0;
}

.content tbody {
  margin-bottom: 0;
}

.content hr {
  margin: 30px 0;
}

.content.check-list ul li::before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  background-color: transparent;
  height: unset;
  width: unset;
  color: #51B56D;
  top: 0;
  left: 0;
}

/* Contact us CSS */

.form-control {
  color: #233242 !important;
}

.form-control::-moz-placeholder {
  opacity: 0.5;
}

.form-control::placeholder {
  opacity: 0.5;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #fff;
  cursor: no-drop;
}

.form-control:not(textarea) {
  height: 55px;
}

textarea.form-control {
  height: 140px;
}

.form-control:focus {
  border-color: #009ee2;
}

.form-group {
  position: relative;
  margin-top: 8px;
}

.form-group label {
  position: absolute;
  background-color: #fff;
  top: -13px;
  left: 12px;
  padding: 0 9px;
}

.contact-info {
  padding-left: 50px;
}

@media (max-width: 991px) {
  .contact-info {
    padding-left: 0;
  }
}

.contact-info .block .icon {
  margin-right: 15px;
  font-size: 18px;
  line-height: 0;
  position: relative;
  top: 5px;
}

.contact-info .block .social-links li {
  margin-right: 15px;
}

.contact-info .block .social-links a {
  font-size: 22px;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.social-icons a {
  display: inline-block;
  height: 45px;
  width: 45px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.social-icons a:hover i {
  color: #009ee2;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-section {
  background: #fdfdfd;
  min-height: 100vh;
  padding: 5vh 0 0;
}

.faq-title h2 {
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}

.faq-title h2::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 60px;
  height: 2px;
  background: #009ee2;
  bottom: -25px;
  margin-left: -30px;
}

.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}

.faq {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px dashed #CEE1F8;
}

.faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
  background: #009ee21a;
  padding-left: 10px;
}

.faq .card .card-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #3B566E;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq .card .card-header .faq-title .badge {
  display: inline-block;
  /* width: 20px;
  height: 20px; */
  line-height: 14px;
  float: left;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: #009ee2;
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
}

.faq .card .faq-card-body {
  padding: 10px;
  font-weight: 300;
  font-size: 14px;
  color: #6F8BA4;
  line-height: 22px;
  letter-spacing: 1px;
  border-top: 1px solid #F3F8FF;
}

.faq .card .faq-card-body p {
  margin-bottom: 14px;
}
.banner_title{
  color: #fff;font-size: 70px;font-weight: 900;
}

@media (max-width: 991px) {
  .faq {
    margin-bottom: 30px;
  }

  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}

.banner_title{
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: Arial, sans-serif;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #2ecc71;
    transform: translateY(-1px);
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid #bdc3c7;
}

.btn-decline:hover {
    background: #34495e;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text h4 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-buttons button {
        padding: 12px 24px;
        flex: 1;
        max-width: 150px;
    }
}