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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  font-family: "Montserrat", sans-serif;
}

.btn.btn-primary {
  background-color: #0c2ddf;
  color: #ffffff;
}

.btn.btn-primary:hover {
  background-color: #0923af;
}

.btn.btn-secondary {
  background-color: #ffffff;
  color: #0c2ddf;
  border: 2px solid #0c2ddf;
}

.btn.btn-secondary:hover {
  background-color: rgba(12, 45, 223, 0.05);
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  max-width: 400px;
  padding: 20px;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup .cookie-content h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.cookie-popup .cookie-content p {
  margin-bottom: 20px;
  font-size: 14px;
}

.cookie-popup .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.cookie-popup .cookie-content .cookie-buttons .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .logo {
  font-size: 22px;
  font-weight: 700;
  color: #0c2ddf;
}

.header .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.header .nav ul a {
  color: #333333;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .nav ul a:hover {
  color: #0c2ddf;
}

@media (max-width: 768px) {
  .header .nav ul {
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .header .nav ul {
    gap: 10px;
    font-size: 14px;
  }
}

.hero {
  background-color: #0c2ddf;
  background-image: linear-gradient(135deg, #0c2ddf, #000105);
  color: #ffffff;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assets/1.png");
  opacity: 0.1;
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero .hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .hero-content p {
  margin-bottom: 30px;
  font-size: 16px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }
  .hero .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 30px;
  }
  .hero .hero-content p {
    font-size: 15px;
  }
}

.partners {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.partners h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  color: #333333;
}

.partners .partners-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

.partners .partners-logos .partner-logo {
  max-width: 150px;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.partners .partners-logos .partner-logo:hover {
  opacity: 1;
}

.partners .partners-logos .partner-logo img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .partners {
    padding: 40px 0;
  }
  .partners .partners-logos {
    gap: 30px;
  }
  .partners .partners-logos .partner-logo {
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .partners .partners-logos .partner-logo {
    max-width: 100px;
  }
}

.team {
  padding: 0;
}

.team .team-gallery {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.team .team-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.expertise {
  padding: 60px 0;
}

.expertise h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333333;
}

.expertise p {
  margin-bottom: 20px;
  max-width: 800px;
}

.expertise p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .expertise {
    padding: 40px 0;
  }
  .expertise h2 {
    font-size: 24px;
  }
}

.case-studies {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.case-studies .case-study {
  background-color: #ffffff;
  border-radius: 4px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.case-studies .case-study:last-child {
  margin-bottom: 0;
}

.case-studies .case-study .case-study-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.case-studies .case-study .case-study-content .case-tag {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  color: #0c2ddf;
}

.case-studies .case-study .case-study-content p {
  margin-bottom: 10px;
}

.case-studies .case-study .case-study-content p:last-child {
  margin-bottom: 0;
}

.case-studies .case-study .case-study-number {
  font-size: 32px;
  font-weight: 700;
  color: #0c2ddf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .case-studies {
    padding: 40px 0;
  }
  .case-studies .case-study {
    padding: 20px;
  }
  .case-studies .case-study .case-study-content .case-tag {
    font-size: 16px;
  }
  .case-studies .case-study .case-study-number {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .case-studies .case-study {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .case-studies .case-study .case-study-number {
    padding-left: 0;
    padding-top: 15px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.blog {
  padding: 60px 0;
}

.blog h2 {
  margin-bottom: 40px;
  font-size: 28px;
}

.blog .blog-posts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
}

.blog .blog-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.blog .blog-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog .blog-post .blog-post-content {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  padding-right: 30px;
}

.blog .blog-post .blog-post-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333333;
}

.blog .blog-post .blog-post-content p {
  color: #666666;
}

.blog .blog-post .blog-post-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.blog .blog-post .blog-post-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .blog {
    padding: 40px 0;
  }
  .blog h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .blog .blog-post .blog-post-content {
    padding-right: 20px;
  }
  .blog .blog-post .blog-post-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .blog .blog-post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .blog .blog-post .blog-post-content {
    padding-right: 0;
    padding-top: 20px;
  }
}

.contact {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.contact h2 {
  margin-bottom: 40px;
  font-size: 28px;
}

.contact .contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.contact .contact-container form {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.contact .contact-container form .form-group {
  margin-bottom: 20px;
}

.contact .contact-container form .form-group input,
.contact .contact-container form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.contact .contact-container form .form-group input:focus,
.contact .contact-container form .form-group textarea:focus {
  outline: none;
  border-color: #0c2ddf;
}

.contact .contact-container form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact .contact-container form button {
  width: 100%;
}

.contact .contact-container .contact-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact .contact-container .contact-info p {
  margin-bottom: 10px;
  color: #666666;
}

@media (max-width: 768px) {
  .contact {
    padding: 40px 0;
  }
  .contact h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .contact .contact-container {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .contact .contact-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .contact-container .contact-info {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 20px;
  }
}

.footer {
  background-color: #0c2ddf;
  color: #ffffff;
  padding: 40px 0 20px;
}

.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.footer .footer-content .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.footer .footer-content .footer-links a {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .footer-content .footer-links a:hover {
  opacity: 1;
}

.footer .footer-content .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.footer .footer-content .footer-social a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .footer-content .footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer .footer-content .footer-social a .social-icon {
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer .footer-content .footer-social a .social-icon.facebook {
  background-image: url("./assets/facebook-icon.svg");
}

.footer .footer-content .footer-social a .social-icon.twitter {
  background-image: url("./assets/twitter-icon.svg");
}

.footer .footer-content .footer-social a .social-icon.linkedin {
  background-image: url("./assets/linkedin-icon.svg");
}

.footer .footer-copyright {
  font-size: 14px;
  opacity: 0.7;
  text-align: center;
}

@media (max-width: 768px) {
  .footer .nav {
    display: none;
  }
  .footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .footer .footer-content .footer-links,
  .footer .footer-content .footer-social {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 375px) {
  .header .logo {
    font-size: 18px;
  }
  .header .nav ul {
    gap: 8px;
    font-size: 12px;
  }
  .hero .hero-content h1 {
    font-size: 26px;
  }
  .hero .hero-content p {
    font-size: 14px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
}

.page {
  padding-top: 100px;
  padding-bottom: 100px;
}

.page h1 {
  margin-bottom: 32px;
}

.page p {
  margin-bottom: 24px;
}
/*# sourceMappingURL=style.css.map */