 /* Reset and base */
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     font-family: 'Inter', sans-serif;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 a:hover {
     text-decoration: underline;
 }

 /* Container */
 .container {
     max-width: 1200px;
     margin: auto;
     padding: 0 5px;
 }

 /* Header */
 header {
     background: transparent;
     padding: 20px 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: black;
     font-weight: 600;
     font-size: 1rem;
 }

 header .logo {
     font-weight: 700;
     font-size: 1.2rem;
     letter-spacing: -0.05em;
     cursor: pointer;
 }

 header nav {
     display: flex;
     gap: 2rem;
     font-weight: 600;
 }

 header .btn-hero {
     background: #ff4d6d;
     padding: 8px 14px;
     border-radius: 4px;
     font-weight: 600;
     color: black;
     transition: background-color 200ms ease;
 }

 header .btn-hero:hover {
     background: #ff1a44;
 }




 /* Features Section */
 .features {
     background-color: #1f1e2e;
     padding: 30px 0 60px 0;
     display: flex;
     justify-content: space-around;
     text-align: center;
     flex-wrap: wrap;
     gap: 12px;
 }

 .feature-item {
     color: #b9b9b9;
     flex-grow: 1;
     flex-basis: 15%;
     min-width: 150px;
     user-select: none;
     font-weight: 600;
     cursor: pointer;
 }

 .feature-item span {
     font-weight: 400;
     display: block;
     margin-top: 0.3rem;
     font-size: 0.85rem;
     opacity: 0.7;
 }

 .feature-item:hover {
     color: black;
 }

 /* Services Section */
 .services-section {
     max-width: 1200px;
     margin: 80px auto 100px auto;
     padding: 0 20px;
 }

 .section-title {
     font-weight: 700;
     font-size: 2rem;
     margin-bottom: 3rem;
     text-align: center;
     color: #22222A;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
     gap: 30px;
 }

 .service-card {
     background-color: #fefefe;
     border-radius: 12px;
     padding: 32px 30px 32px 30px;
     color: #22222A;
     box-shadow: 0 0 9px rgb(0 0 0 / 0.1);
     display: flex;
     flex-direction: column;
     gap: 15px;
     transition: box-shadow 0.3s ease;
 }

 .service-card:hover {
     box-shadow: 0 0 15px rgb(255 77 109 / 0.4);
 }

 .service-card h4 {
     font-weight: 600;
     font-size: 1.2rem;
 }

 .service-card p {
     font-weight: 500;
     font-size: 1rem;
     opacity: 0.75;
     flex-grow: 1;
 }

 .service-card button {
     align-self: flex-start;
     padding: 9px 26px;
     background-color: #ff4d6d;
     border-radius: 6px;
     border: none;
     font-weight: 600;
     color: black;
     cursor: pointer;
     transition: background-color 0.2s ease;
 }

 .service-card button:hover {
     background-color: #ff1a44;
 }

 .service-icon {
     min-height: 48px;
     display: flex;
     align-items: center;
     justify-content: flex-start;
 }

 /* Service icons illustrations styled */
 .service-icon svg {
     width: 40px;
     height: 40px;
     stroke: #ff4d6d;
     fill: none;
     stroke-width: 2;
     stroke-linecap: round;
     stroke-linejoin: round;
 }

 /* Our values section */
 .values-section {
     background-color: #1f1e2e;
     padding: 60px 20px;
     max-width: 1200px;
     margin: auto;
     margin-bottom: 4rem;
 }

 .values-grid {
     display: flex;
     justify-content: center;
     gap: 3rem;
     flex-wrap: wrap;
     max-width: 900px;
     margin: auto;
 }

 .value-card {
     flex-basis: 280px;
     background-color: transparent;
     border-radius: 10px;
     border: 1px solid rgba(255 255 255 / 0.15);
     padding: 25px 30px;
     text-align: center;
     cursor: default;
     user-select: none;
     transition: background-color 0.3s ease;
 }

 .value-card:hover {
     background-color: rgba(255 77 109 / 0.2);
     border-color: #ff4d6d;
 }

 .value-card h4 {
     font-weight: 700;
     font-size: 1.2rem;
     margin-bottom: 0.8rem;
     color: black;
 }

 .value-card p {
     font-weight: 500;
     font-size: 0.95rem;
     opacity: 0.8;
     user-select: none;
 }

 /* Clients section */
 .clients-section {
     padding: 2rem 0;
     max-width: 900px;
     margin: 1rem auto 100px auto;
     text-align: center;
     color: black;
 }

 .clients-section p {
     font-weight: 600;
     font-size: 1.05rem;
     margin-bottom: 1rem;
     opacity: 0.8;
 }

 .clients-logos {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     gap: 3rem;
     align-items: center;
     margin-top: 1rem;
     user-select: none;
 }

 .client-logo {
     filter: brightness(0) invert(1);
     max-height: 40px;
     max-width: 110px;
     opacity: 0.7;
     transition: opacity 0.3s ease;
 }

 .client-logo:hover {
     opacity: 1;
 }

 /* History section */
 .history-section {
     max-width: 1200px;
     padding: 0 20px;
     margin: 4rem auto 100px auto;
 }

 .history-timeline {
     display: flex;
     justify-content: space-between;
     gap: 2rem;
     flex-wrap: wrap;
 }

 .history-item {
     flex-basis: 280px;
     background-color: #1f1e2e;
     border-radius: 10px;
     padding: 20px 25px;
     color: black;
     cursor: default;
     user-select: none;
     box-shadow: 0 0 7px rgb(0 0 0 / 0.2);
     transition: box-shadow 0.3s ease;
 }

 .history-item:hover {
     box-shadow: 0 0 14px #ff4d6d;
 }

 .history-year {
     font-weight: 700;
     font-size: 1.75rem;
     margin-bottom: 0.5rem;
     color: #ff4d6d;
 }

 .history-desc {
     font-weight: 500;
     font-size: 1rem;
     opacity: 0.85;
     line-height: 1.3;
 }

 /* How we build section */
 .how-we-build-section {
     background-color: #fefefe;
     color: #22222a;
     max-width: 1200px;
     margin: auto;
     display: flex;
     max-height: 480px;
     border-radius: 20px;
     overflow: hidden;
     margin-bottom: 5rem;
     box-shadow: 0 0 20px rgb(0 0 0 / 0.1);
 }

 .how-left {
     flex: 1.35;
     padding: 40px 60px;
     display: flex;
     flex-direction: column;
     gap: 2rem;
     justify-content: center;
 }

 .how-left h2 {
     font-weight: 700;
     font-size: 2.4rem;
     margin-bottom: 20px;
 }

 .how-left ol {
     counter-reset: step-counter;
     list-style: none;
     padding-left: 0;
     margin-left: 0;
     margin-top: 0 !important;
     margin-bottom: 0 !important;
 }

 .how-left ol li {
     counter-increment: step-counter;
     position: relative;
     padding-left: 55px;
     margin-bottom: 30px;
     font-size: 1.1rem;
     font-weight: 600;
 }

 .how-left ol li::before {
     content: counter(step-counter);
     position: absolute;
     left: 0;
     top: 2px;
     background: #ff4d6d;
     border-radius: 25px;
     color: #fff;
     font-weight: 700;
     font-size: 1.1rem;
     width: 38px;
     height: 38px;
     line-height: 38px;
     text-align: center;
     box-shadow: 0 0 8px rgb(255 77 109/0.3);
 }

 .how-left p {
     font-weight: 500;
     font-size: 1rem;
     opacity: 0.75;
     margin-top: -10px;
 }

 .how-left button {
     background-color: #ff4d6d;
     border-radius: 6px;
     border: none;
     color: black;
     font-weight: 700;
     font-size: 1.1rem;
     padding: 12px 40px;
     cursor: pointer;
     align-self: flex-start;
     transition: background-color 0.2s ease;
 }

 .how-left button:hover {
     background-color: #ff1a44;
 }

 .how-right {
     flex: 1.2;
     background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=800&q=60') center center/cover no-repeat;
     border-radius: 0 20px 20px 0;
 }



 /* Podcast Section */
 .podcast-section {
     max-width: 1200px;
     margin: 4rem auto 3rem auto;
     padding: 0 20px;
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     justify-content: center;
 }

 .podcast-card-left {
     flex-basis: 450px;
     background: linear-gradient(90deg, #ff7f50, #ff4d6d);
     color: black;
     border-radius: 20px;
     padding: 40px 30px;
     box-shadow: 0 0 20px rgb(255, 77, 109, 0.65);
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 20px;
     min-height: 320px;
 }

 .podcast-card-left h3 {
     font-size: 1.6rem;
     font-weight: 700;
 }

 .podcast-card-left p {
     font-weight: 600;
     font-size: 1rem;
     line-height: 1.4;
 }

 .podcast-card-left a {
     color: black;
     font-weight: 600;
     cursor: pointer;
     margin-top: 5px;
     text-decoration: underline;
     max-width: 160px;
 }

 .podcast-card-right {
     flex: 1 1 500px;
     background-color: #1f1e2e;
     border-radius: 20px;
     padding: 35px 28px;
     box-shadow: 0 0 10px rgb(0 0 0 / 0.3);
     color: black;
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 18px;
     min-height: 320px;
 }

 .podcast-card-right h3 {
     font-weight: 700;
     font-size: 1.3rem;
     margin-bottom: 8px;
 }

 .podcast-card-right p {
     font-weight: 500;
     font-size: 1rem;
     opacity: 0.85;
     line-height: 1.3;
 }

 .podcast-card-right a {
     color: #ff4d6d;
     font-weight: 600;
     cursor: pointer;
     margin-top: 12px;
     text-decoration: underline;
     max-width: 160px;
 }

 .partner-logo:hover {
     opacity: 1;
 }

 /* Success stories */
 .success-stories {
     max-width: 900px;
     margin: 2rem auto 4rem auto;
     padding: 0 20px;
     color: #fefefe;
 }

 .story-card {
     background-color: #6f41ff;
     border-radius: 18px;
     padding: 40px 38px;
     color: black;
     margin-bottom: 2rem;
     box-shadow: 0 0 15px rgb(111 65 255 / 0.7);
 }

 .story-card h3 {
     font-weight: 700;
     font-size: 1.5rem;
     margin-bottom: 10px;
     max-width: 500px;
 }

 .story-desc {
     opacity: 0.9;
     font-weight: 600;
     font-size: 1rem;
     max-width: 500px;
     margin-bottom: 20px;
     line-height: 1.3;
 }

 .story-button {
     background-color: #f8ce46;
     padding: 11px 34px;
     border-radius: 8px;
     border: none;
     font-weight: 700;
     cursor: pointer;
     color: #22222a;
     transition: background-color 0.3s ease;
     display: inline-block;
 }

 .story-button:hover {
     background-color: #c9a823;
 }

 /* Call to action */
 .cta-section {
     max-width: 1200px;
     margin: auto;
     background: linear-gradient(90deg, #ff7f50, #ff4d6d);
     border-radius: 20px;
     padding: 30px;
     text-align: center;
     margin-bottom: 5rem;
     color: black;
     font-weight: 700;
     font-size: 1.25rem;
     box-shadow: 0 0 15px rgba(255, 77, 109, 0.7);
 }

 .cta-section button {
     margin-left: 18px;
     background: transparent;
     border: 2px solid black;
     color: black;
     padding: 10px 28px;
     font-weight: 700;
     cursor: pointer;
     border-radius: 8px;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .cta-section button:hover {
     background: black;
     color: #ff4d6d;
     border-color: #ff4d6d;
 }

 /* Let’s build together Section */
 .build-together-section {
     max-width: 1200px;
     margin: 3rem auto 8rem auto;
     background: linear-gradient(90deg, #6f41ff, #2800ff);
     border-radius: 20px;
     padding: 50px 40px 60px 40px;
     color: black;
     box-shadow: 0 0 30px rgb(111 65 255 / 0.7);
 }

 .build-together-section h2 {
     font-weight: 700;
     font-size: 2rem;
     margin-bottom: 1rem;
 }

 .build-together-section p {
     font-weight: 600;
     font-size: 1.1rem;
     margin-bottom: 3rem;
     opacity: 0.9;
     max-width: 460px;
 }

 .build-form {
     max-width: 520px;
 }

 .build-form label {
     display: block;
     font-weight: 600;
     font-size: 1rem;
     margin-bottom: 6px;
     opacity: 0.9;
 }

 .build-form input,
 .build-form select,
 .build-form textarea {
     width: 100%;
     border-radius: 6px;
     border: none;
     padding: 14px 20px;
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 20px;
     outline: none;
 }

 .build-form textarea {
     resize: vertical;
     min-height: 120px;
 }

 .build-form button {
     background-color: #ff4d6d;
     border: none;
     padding: 14px 40px;
     border-radius: 6px;
     color: black;
     font-weight: 700;
     font-size: 1.2rem;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }

 .build-form button:hover {
     background-color: #ff1a44;
 }

 /* Footer */


 /* Responsive */
 @media screen and (max-width: 768px) {
     header nav {
         gap: 1rem;
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
     }

     .features {
         justify-content: center;
     }

     .how-we-build-section {
         flex-direction: column;
         max-height: none;
         border-radius: 20px 20px 20px 20px;
     }

     .how-right {
         height: 240px;
         border-radius: 0 0 20px 20px;
     }

     .how-left {
         padding: 28px 30px;
     }

     .services-grid {
         grid-template-columns: 1fr;
     }

     .team-grid {
         flex-direction: row;
         justify-content: center;
     }

     .team-member {
         flex-basis: 140px;
     }
 }

 @media screen and (max-width: 480px) {
     header nav {
         gap: 0.8rem;
     }



     .services-section {
         margin: 3rem auto 5rem auto;
     }
 }




 @media (max-width: 560px) {
     .contact-info h3 {
         font-size: 16px;
     }

     .left-side h2 {
         font-size: 25px !important;
         margin-bottom: 10px;
     }

     .contact-person img {
         width: 80px;
         height: auto;
     }
 }

 .cases-wrapper {
     padding: 0 75px 40px 75px;
     margin: 0 auto;
     max-width: 1400px;
     display: flex;
     flex-direction: column;
     gap: 40px;
 }

 .case-card {
     min-height: 600px;
     border-radius: 24px;
     display: flex;
     overflow: hidden;
 }

 /* Company Theme Styles */
 .flashgrid {
     background: linear-gradient(93deg, #5E308C 0%, #74308C 100%);
     color: #fff;
 }

 .instreamatic {
     background: #E8E9F1;
     color: #111;
 }

 .good2go {
     background: linear-gradient(90deg, #E8E9F1 0%, #FFF 63.69%);
     color: #111;
 }

 /* Layout inside */
 .item__content {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: 48px 40px 48px 48px;
 }

 .item__logo img {
     max-height: 80px;
     max-width: 100%;
     display: block;
 }

 .item__tags {
     display: flex;
     gap: 10px;
     margin-bottom: 16px;
     flex-wrap: wrap;
 }

 .item__text {
     display: flex;
     flex-direction: column;
     gap: 24px;
     margin-bottom: 32px;
 }

 .item__tags-item {
     padding: 7px 16px;
     border-radius: 16px;
     font-size: 12px;
     font-weight: 500;
     background: rgba(255, 255, 255, 0.18);
     color: #fff;
 }

 .instreamatic .item__tags-item {
     background: rgba(25, 20, 120, 0.13);
     color: #884098;
 }

 .good2go .item__tags-item {
     background: #f7f7fa;
     color: #472e8a;
 }

 .item__title h3 {
     margin: 0;
     padding: 0;
     font-size: 31px;
     font-weight: 700;
     line-height: 36px;
 }

 .item__review {
     margin-top: auto;
     padding: 16px 0 0 16px;
 }

 .item__review-text {
     max-width: 530px;
 }

 .item__review-text p {
     margin: 0;
     padding: 0;
     font-size: 18px;
     font-weight: 700;
     line-height: 24px;
     margin-bottom: 16px;

 }

 .item__review-author {
     display: flex;
     flex-direction: row;
     gap: 16px;
 }

 .item__review-author-picture {
     width: 48px;
 }

 .item__review-author-picture img {
     max-height: 48px;
     max-width: 100%;
 }

 .item__review-author-name {
     font-size: 16px;
     font-weight: 700;
     line-height: 24px;
 }

 .item__review-author-position {
     font-family: Inter, sans-serif;
     font-size: 14px;
     font-weight: 400;
     line-height: 22px;
     letter-spacing: -.28px;
 }

 .item__actions a {
     display: inline-block;
     padding: 14px 24px;
     border-radius: 8px;
     font-weight: 600;
     font-size: 14px;
     text-decoration: none;
     transition: 0.3s;
     margin-top: 26px;
 }

 .flashgrid .item__actions a {
     background: #fff;
     color: #6c3ba5;
 }

 .instreamatic .item__actions a,
 .good2go .item__actions a {
     background: #111;
     color: #fff;
 }

 .case-card .media {
     flex: 1 1 350px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .case-card .media img {
     height: auto;
     max-height: 600px;
     display: block;
 }

 /* Responsive adjustments */
 @media (max-width: 1280px) {

     /* Card layout column */
     .case-card {
         flex-direction: column;
         min-height: auto;
     }

     /* Image below content, centered, 60% width */
     .case-card .media img {
         width: 60%;
         max-width: 60%;
         object-fit: contain;
         height: auto;
     }

     /* Content padding adjustments */
     .item__content {
         padding: 32px 24px;
     }

     /* Title font adjustments */
     .item__title h3 {
         font-size: 28px;
         line-height: 34px;
     }

     /* Testimonial text */
     .item__review-text p {
         font-size: 16px;
         line-height: 22px;
     }

     /* Author info fonts */
     .item__review-author-name {
         font-size: 15px;
     }

     .item__review-author-position {
         font-size: 13px;
     }

     /* Buttons */
     .item__actions a {
         font-size: 13px;
         padding: 12px 20px;
     }
 }

 /* Tablet / mobile adjustments */
 @media (max-width: 768px) {
     .cases-wrapper {
         padding: 0 20px 40px 20px;
     }

     h2.section-title {
         font-size: 24px;
         margin: 40px 0 32px;
     }

     .item__title h3 {
         font-size: 24px;
         line-height: 30px;
     }

     .item__review-text p {
         font-size: 15px;
         line-height: 21px;
     }

     .item__review-author-name {
         font-size: 14px;
     }

     .item__review-author-position {
         font-size: 12px;
     }

     .item__actions a {
         font-size: 12px;
         padding: 10px 16px;
     }

     .case-card .media img {
         width: 100%;
         max-width: 100%;
     }
 }

 @media (max-width: 480px) {
     .item__title h3 {
         font-size: 20px;
         line-height: 26px;
     }

     .item__review-text p {
         font-size: 14px;
         line-height: 20px;
     }

     .item__tags-item {
         font-size: 11px;
         padding: 6px 12px;
     }
 }

 /* Reset */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
 }

 .prarent {
     margin: 0;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     line-height: 1.5;
     text-align: center;
     padding: 40px 75px;
     color: black;

     background-size: cover;
 }

 @media (min-width: 1600px) {
     .prarent {
         padding: 0 120px;
         margin-bottom: 60px;
     }
 }

 /* Tablet Landscape */
 @media (max-width: 1199px) {
     .prarent {
         padding: 0 60px;
     }
 }

 /* Tablet Portrait */
 @media (max-width: 991px) {
     .prarent {
         padding: 0 40px;
         margin-bottom: 80px;
     }
 }

 /* Mobile Large */
 @media (max-width: 767px) {
     .prarent {
         padding: 0 30px;
         margin-bottom: 60px;
         gap: 60px;
     }
 }

 /* Mobile Small */
 @media (max-width: 575px) {
     .prarent {
         padding: 0 20px;
         margin-bottom: 40px;
         gap: 40px;
     }
 }

 h2.Our-section-title {
     font-family: Gilroy, sans-serif;
     font-size: 36px;
     font-style: normal;
     font-weight: 700;
     line-height: 44px;
     letter-spacing: -0.8px;
     margin-bottom: 15px;
 }

 /* Container for the three cards */
 .values-container {
     display: flex;
     justify-content: space-between;
     gap: 24px;
     margin: 0 auto 80px;
 }

 @media(min-width: 1500px) {
     .values-container {
         justify-content: center;
         gap: 50px;
     }
 }

 .image-icon {
     max-width: 49px;
     height: 45px;
     margin-bottom: 20px;
 }

 .value-card-1 {
     background: #bb0a1f1d;
     border-radius: 10px;
     padding: 29px;
     display: flex;
     flex-direction: column;
     max-width: 417px;
     text-align: left;
     box-shadow: 0 0 10px #bb0a1f27;
     position: relative;
     height: 317px;
     transition: background-color 0.3s ease;
 }

 @media(max-width: 1100px) {
     .value-card-1 {
         padding: 14px;
     }
 }

 .value-icon {
     width: 28px;
     height: 28px;
     margin-bottom: 18px;
     display: block;
     /* Icon gradient fill */
     fill: url(#icon-gradient);
 }

 .value-title {
     font-size: 24px;
     font-style: normal;
     font-family: gilory, sans-serif;
     font-weight: 700;
     line-height: 28px;
     margin-bottom: 16px;
     white-space: nowrap;

 }

 @media (max-width: 768px) {
     .value-title {
         font-size: 17px;
     }
 }

 .value-desc {
     font-family: Inter, sans-serif;
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: 24px;
     letter-spacing: 0.68px;
     margin: 0 auto;
 }

 /* Clients section */
 .clients-section-1 {
     background-color: #f6f7f8;
     margin: 0 auto;
 }

 .clients-title-1 {
     font-family: poppins, sans-serif;
     font-size: 40px;
     font-style: normal;
     font-weight: 700;
     line-height: 48px;
     text-align: center;
     margin-bottom: 64px;
 }

 /* Clients logos container */
 .clients-logos-1 {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     gap: 50px 51px;
     /* better spacing between rows/columns */
     max-width: 1100px;
     margin: 0 auto;
 }

 /* Make logos uniform */
 .client-logo-1 {
     max-height: 64px;
     /* taller for visibility */
     max-width: 100%;
     object-fit: contain;
     filter: brightness(100%) contrast(100%) saturate(0%) invert(100%);
     opacity: 1;
     transition: all 0.3s ease;
 }

 .client-logo-1:hover {
     filter: none;
     opacity: 1;
     transform: scale(1.05);
 }

 /* Responsive for mobile */
 @media (max-width: 768px) {
     .prarent {
         padding: 32px 34px 64px;
     }

     .values-container {
         flex-direction: column;
         max-width: 100%;
         margin-bottom: 60px;
         gap: 32px;
     }

     .value-card-1 {
         max-width: 100%;
         min-height: auto;
         padding: 28px 20px 32px;
     }

     .clients-logos-1 {
         display: flex;
         flex-wrap: nowrap;
         /* no wrapping */
         overflow-x: auto;
         /* scroll horizontally */
         -ms-overflow-style: none;
         /* hide scrollbar (IE/Edge) */
         scrollbar-width: none;
         /* hide scrollbar (Firefox) */
         justify-content: flex-start;
         gap: 24px;
         /* spacing between logos */
     }

     .clients-logos-1::-webkit-scrollbar {
         display: none;
         /* hide scrollbar (Chrome/Safari) */
     }

     .client-logo-1 {
         flex: 0 0 auto;
         /* keep logos inline */
         max-height: 40px;
         max-width: 120px;
     }
 }

 @import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono|IBM+Plex+Sans:100,700|IBM+Plex+Serif');

 .about {
     position: fixed;
     z-index: 10;
     bottom: 10px;
     right: 10px;
     width: 40px;
     height: 40px;
     display: flex;
     justify-content: flex-end;
     align-items: flex-end;
     transition: all 0.2s ease;
 }

 .about .bg_links {
     width: 40px;
     height: 40px;
     border-radius: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     background-color: rgba(0, 0, 0, 0.2);
     backdrop-filter: blur(5px);
     position: absolute;
 }

 .about .logo {
     width: 40px;
     height: 40px;
     z-index: 9;
     background-image: url(https://rafaelalucas91.github.io/assets/codepen/logo_white.svg);
     background-size: 50%;
     background-repeat: no-repeat;
     background-position: 10px 7px;
     opacity: 0.9;
     transition: all 1s 0.2s ease;
     bottom: 0;
     right: 0;
 }

 .about .social {
     opacity: 0;
     right: 0;
     bottom: 0;
 }

 .about .social .icon {
     width: 100%;
     height: 100%;
     background-size: 20px;
     background-repeat: no-repeat;
     background-position: center;
     background-color: transparent;
     display: flex;
     transition: all 0.2s ease, background-color 0.4s ease;
     opacity: 0;
     border-radius: 100%;
 }

 .about .social.portfolio {
     transition: all 0.8s ease;
 }

 .about .social.portfolio .icon {
     background-image: url(https://rafaelalucas91.github.io/assets/codepen/link.svg);
 }

 .about .social.dribbble {
     transition: all 0.3s ease;
 }

 .about .social.dribbble .icon {
     background-image: url(https://rafaelalucas91.github.io/assets/codepen/dribbble.svg);
 }

 .about .social.linkedin {
     transition: all 0.8s ease;
 }

 .about .social.linkedin .icon {
     background-image: url(https://rafaelalucas91.github.io/assets/codepen/linkedin.svg);
 }

 .about:hover {
     width: 105px;
     height: 105px;
     transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
 }

 .about:hover .logo {
     opacity: 1;
     transition: all 0.6s ease;
 }

 .about:hover .social {
     opacity: 1;
 }

 .about:hover .social .icon {
     opacity: 0.9;
 }

 .about:hover .social:hover {
     background-size: 28px;
 }

 .about:hover .social:hover .icon {
     background-size: 65%;
     opacity: 1;
 }

 .about:hover .social.portfolio {
     right: 0;
     bottom: calc(100% - 40px);
     transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
 }

 .about:hover .social.portfolio .icon:hover {
     background-color: #698fb7;
 }

 .about:hover .social.dribbble {
     bottom: 45%;
     right: 45%;
     transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
 }

 .about:hover .social.dribbble .icon:hover {
     background-color: #ea4c89;
 }

 .about:hover .social.linkedin {
     bottom: 0;
     right: calc(100% - 40px);
     transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
 }

 .about:hover .social.linkedin .icon:hover {
     background-color: #0077b5;
 }

 body {
     font-family: 'IBM Plex Serif', serif;
     margin: 0;

 }

 /* swiper */
 .swiper-container {
     padding: 0;
     height: 700px;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 @media screen and (max-width: 768px) {
     .swiper-container {
         height: 500px;
     }
 }

 .swiper-slide {
     width: 100%;
     background-size: cover;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .swiper-slide:after {
     content: '';
     background-image: linear-gradient(0deg, #57040e, #57040e, #57040e);
     position: absolute;
     width: 100%;
     height: 100%;
     bottom: 0;
     z-index: 1;
     opacity: 0.3;
 }

 .swiper-slide:before {
     content: '';
     background-color: rgba(69, 69, 78, 0.2);
     background-image: linear-gradient(180deg, rgba(255, 234, 213, 0.3), rgba(241, 244, 255, 0.3));
     position: absolute;
     width: 100%;
     height: 100%;
     bottom: 0;
     z-index: 1;
 }

 /* swiper arrows */
 .swiper-button-prev,
 .swiper-button-next {
     width: 50px;
     height: 50px;
     background-image: none;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .swiper-button-prev {
     left: 30px;
 }

 .swiper-button-next {
     right: 30px;
 }

 .swiper-button-prev span,
 .swiper-button-next span {
     width: 10px;
     height: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: transparent;
     position: absolute;
     border: solid 2px white;
     border-left: 0;
     border-bottom: 0;
     transition: all 0.3s ease;
 }

 .swiper-button-prev span {
     transform: rotate(-135deg);
     left: 50%;
 }

 .swiper-button-next span {
     transform: rotate(45deg);
     right: 50%;
 }

 .swiper-button-prev span:after,
 .swiper-button-next span:after {
     content: '';
     position: absolute;
     background-color: white;
     width: 0px;
     height: 2px;
     transition: all 0.3s ease;
     transform: rotate(-45deg);
 }

 .swiper-button-prev:hover span {
     left: 30%;
 }

 .swiper-button-next:hover span {
     right: 30%;
 }

 .swiper-button-prev:hover span:after,
 .swiper-button-next:hover span:after {
     width: calc(20px - 4px);
 }

 /* swiper arrows mobile */
 @media screen and (max-width: 768px) {
     .swiper-button-prev {
         left: 0px;
     }

     .swiper-button-next {
         right: 0px;
     }

     .swiper-button-prev:hover span {
         left: 50%;
     }

     .swiper-button-next:hover span {
         right: 50%;
     }

     .swiper-button-prev:hover span:after,
     .swiper-button-next:hover span:after {
         display: none;
     }
 }

 /* swiper pagination */
 .swiper-pagination {
     height: 40px;
 }

 .swiper-pagination-bullet {
     background-color: transparent;
     border: solid 1px white;
     opacity: 1;
     transition: all 0.3s ease-in-out;
 }

 .swiper-pagination-bullet:hover {
     background-color: white;
 }

 .swiper-pagination-bullet-active {
     width: 20px;
     border-radius: 50px;
     transition: all 0.3s ease-in-out;
     left: 0;
     background-color: transparent;
     border: solid 1px white;
 }

 /* text content */
 .slide-text {
     text-align: center;
     color: white;
     opacity: 1;
     z-index: 2;
     font-family: 'IBM Plex Sans', sans-serif;
     width: 80%;
     max-width: 500px;
 }

 .slide-text h1 {
     font-family: 'IBM Plex Sans', sans-serif;
     font-size: 30px;
     letter-spacing: 0.03em;
 }

 .slide-text p {
     font-size: 16px;
     font-family: 'IBM Plex Mono', monospace;
 }

 /* text mobile */
 @media screen and (max-width: 768px) {
     .slide-text {
         width: 60%;
     }

     .slide-text h1 {
         font-size: 20px;
         letter-spacing: 0.02em;
     }

     .slide-text p {
         font-size: 14px;
     }
 }

 /* button */
 .slide-text .btn {
     font-family: 'IBM Plex Mono', monospace;
     background-color: transparent;
     border: solid 1px white;
     padding: 15px 30px;
     min-width: 100px;
     width: fit-content;
     font-size: 14px;
     letter-spacing: 2px;
     color: white;
     position: relative;
     border-radius: 80px;
     transition: all 0.3s ease-in-out;
     cursor: pointer;
     margin-top: 20px;
 }

 .slide-text .btn:after {
     content: '';
     background-color: rgba(255, 255, 255, 0.1);
     width: 100%;
     height: 100%;
     display: block;
     position: absolute;
     z-index: 2;
     left: 0px;
     top: 0px;
     border-radius: inherit;
     transition: all 0.3s ease-in-out;
 }

 .slide-text .btn:hover::after {
     left: 4px;
     top: 5px;
     background-color: rgba(255, 255, 255, 0.3);
 }

 .slide-text .btn:hover {
     font-weight: 800;
 }

 @media screen and (max-width: 768px) {
     .slide-text .btn:hover::after {
         left: 0px;
         top: 0px;
         background-color: rgba(255, 255, 255, 0.1);
     }
 }

 button:focus {
     outline: 0;
 }

 /* Geography section */
 .geo-map {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
 }

 .geo-map img {
     height: 100%;
     width: 100%;
 }

 .map-heading {
     font-size: 40px;
     font-family: poppins, sans-serif;
     color: black;
     display: block;
 }

 .map-desc {
     color: gray;
 }

 /* Example geo-point positions */
 .geo-na {
     top: 40%;
     left: 25%;
 }

 .geo-eu {
     top: 40%;
     left: 55%;
 }

 .geo-me {
     top: 55%;
     left: 75%;
 }

 /* Stats next to map */
 .geo-stats b {
     font-family: "Bebas Neue", sans-serif;
     font-style: normal;
     font-weight: 400;
     font-size: 90px;
     line-height: 90%;
     text-transform: capitalize;
     color: #27273d;
     margin: 0;
 }

 .geo-stats span {
     font-family: "Bebas Neue", sans-serif;
     font-style: normal;
     color: #8585ff;
     font-weight: 300;
     font-size: 20px;
     line-height: 36px;
     letter-spacing: 0.28px;
 }

 /* ---------------- RESPONSIVE ---------------- */

 /* Tablets (≤ 1024px) */
 @media (max-width: 1024px) {
     .map-heading {
         font-size: 2.2rem;
     }

     .geo-stats b {
         font-size: 70px;
         line-height: 85%;
     }

     .geo-stats span {
         font-size: 18px;
         line-height: 30px;
     }
 }

 /* Mobile landscape (≤ 768px) */
 @media (max-width: 768px) {
     .map-heading {
         font-size: 1.8rem;
     }

     .map-desc {
         font-size: 0.95rem;
     }

     .geo-stats b {
         font-size: 55px;
         line-height: 80%;
     }

     .geo-stats span {
         font-size: 16px;
         line-height: 28px;
     }
 }

 /* Mobile portrait (≤ 480px) */
 @media (max-width: 480px) {
     .map-heading {
         font-size: 1.5rem;
     }

     .map-desc {
         font-size: 0.85rem;
     }

     .geo-stats b {
         font-size: 40px;
         line-height: 75%;
     }

     .geo-stats span {
         font-size: 14px;
         line-height: 24px;
     }
 }

 .expert-img img {
     object-fit: cover;
     height: 300px;
 }

 .linkedin-icon i {
     transition: transform 0.3s ease;
 }

 .linkedin-icon:hover i {
     transform: scale(1.2);
 }