   :root {
       --brand: #2b6ef6;
       --brand-light: #5a8ef8;
       --brand-dark: #1a4fc4;
       --accent: #ff6b6b;
       --accent-light: #ff8e8e;
       --dark: #0f1724;
       --darker: #0a0f18;
       --light: #f8fafc;
       --muted: #6b7280;
       --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
       --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
       --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
   }

   :root {
       --primary: #2b6ef6;
       --secondary: #555555;
       --light: #F1F3FA;
       --dark: #1C2035;
       --black: #181818;
       --gray: #8E8E8E;
       --heading: #292626;
       --text: #686868;
   }

   body {
       font-family: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
       color: var(--dark);
       background: var(--light);
       line-height: 1.6;
       overflow-x: hidden;
   }

   h1,
   h2,
   h3,
   h4,
   h5,
   h6 {
       font-family: 'Poppins', sans-serif;
       font-weight: 700;
       line-height: 1.2;
   }

   .navbar {
       padding: 1rem 0;
       transition: var(--transition);
       background: rgba(255, 255, 255, 0.95);
       backdrop-filter: blur(10px);
   }

   .navbar.scrolled {
       padding: 0.5rem 0;
       box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
   }

   .navbar-brand {
       font-family: 'Poppins', sans-serif;
       font-weight: 800;
       font-size: 1.5rem;
   }

   .navbar-brand span {
       color: var(--brand);
       background: linear-gradient(90deg, var(--brand), var(--accent));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   /* Enhanced Mobile Menu */
   .nav-toggle {
       display: none;
       border: none;
       background: transparent;
       font-size: 1.5rem;
       color: var(--dark);
       width: 40px;
       height: 40px;
       border-radius: 8px;
       transition: var(--transition);
       position: relative;
       z-index: 1001;
   }

   /* .nav-toggle:hover {
            background: rgba(43, 110, 246, 0.1);
        } */

   .nav-toggle.active {
       transform: rotate(90deg);
   }

   .nav-toggle .fa-bars,
   .nav-toggle .fa-times {
       transition: all 0.3s ease;
   }

   .nav-toggle.active .fa-bars {
       opacity: 0;
       transform: rotate(90deg);
   }

   .nav-toggle:not(.active) .fa-times {
       opacity: 0;
       transform: rotate(-90deg);
   }

   .navbar-collapse {
       transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
   }

   @media (max-width: 991px) {
       .nav-toggle {
           display: flex;
           align-items: center;
           justify-content: center;
       }

       .navbar-collapse {
           position: fixed;
           top: 0;
           right: -100%;
           width: 85%;
           max-width: 400px;
           height: 100vh;
           background: white;
           box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
           padding: 6rem 2rem 2rem;
           z-index: 1000;
           overflow-y: auto;
           transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
       }

       .navbar-collapse.show {
           right: 0;
       }

       .navbar-collapse::before {
           content: '';
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: rgba(0, 0, 0, 0.5);
           opacity: 0;
           visibility: hidden;
           transition: all 0.3s ease;
           z-index: -1;
       }

       /* .navbar-collapse.show::before {
                opacity: 1;
                visibility: visible;
            } */

       .navbar-nav {
           flex-direction: column;
           gap: 0.5rem;
       }

       .nav-item {
           opacity: 0;
           transform: translateX(30px);
           transition: all 0.4s ease;
       }

       .navbar-collapse.show .nav-item {
           opacity: 1;
           transform: translateX(0);
       }

       .navbar-collapse.show .nav-item:nth-child(1) {
           transition-delay: 0.1s;
       }

       .navbar-collapse.show .nav-item:nth-child(2) {
           transition-delay: 0.15s;
       }

       .navbar-collapse.show .nav-item:nth-child(3) {
           transition-delay: 0.2s;
       }

       .navbar-collapse.show .nav-item:nth-child(4) {
           transition-delay: 0.25s;
       }

       .nav-link {
           font-size: 1.1rem;
           padding: 1rem 1.5rem;
           border-radius: 12px;
           transition: var(--transition);
           color: var(--dark);
           font-weight: 500;
           display: flex;
           align-items: center;
           gap: 1rem;
       }

       /* .nav-link::before {
                content: '';
                width: 6px;
                height: 6px;
                background: var(--brand);
                border-radius: 50%;
                transition: var(--transition);
            } */

       .nav-link:hover {
           background: rgba(43, 110, 246, 0.08);
           transform: translateX(10px);
           color: var(--brand);
       }

       .nav-link:hover::before {
           transform: scale(1.5);
       }

       .nav-link.btn {
           margin-top: 1rem;
           justify-content: center;
           background: linear-gradient(135deg, var(--brand), var(--brand-dark));
           color: white;
           border: none;
           box-shadow: 0 5px 20px rgba(43, 110, 246, 0.3);
       }

       .nav-link.btn:hover {
           transform: translateY(-3px);
           box-shadow: 0 10px 30px rgba(43, 110, 246, 0.4);
       }

       .hero-content {
           text-align: center;
       }

       .service-grid {
           display: block !important;
       }

       .service-card {
           margin-bottom: 2rem;
       }

   }

   .hero {
       padding: 8rem 0 6rem;
       background: linear-gradient(135deg, rgba(43, 110, 246, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
       position: relative;
       overflow: hidden;
   }





   .hero::before {
       content: '';
       position: absolute;
       top: -50%;
       right: -20%;
       width: 70%;
       height: 150%;
       background: radial-gradient(circle, rgba(43, 110, 246, 0.1) 0%, rgba(255, 107, 107, 0.05) 70%, transparent 100%);
       border-radius: 50%;
       z-index: 0;
   }

   .hero-content {
       position: relative;
       z-index: 1;
   }

   .hero .lead {
       font-size: 1.25rem;
       font-weight: 400;
   }

   .hero-badge {
       background: linear-gradient(90deg, var(--brand), var(--accent));
       color: white;
       padding: 0.5rem 1.25rem;
       border-radius: 50px;
       font-weight: 600;
       font-size: 0.9rem;
       display: inline-block;
       margin-bottom: 1.5rem;
       box-shadow: 0 5px 15px rgba(43, 110, 246, 0.3);
   }

   .services-section::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 1px;
       background: linear-gradient(90deg, transparent, rgba(43, 110, 246, 0.2), transparent);
   }

   .section-title {
       position: relative;
       display: inline-block;
       margin-bottom: 1.5rem;
       font-size: 2.5rem;
       background: linear-gradient(135deg, var(--dark), var(--brand-dark));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   .section-subtitle {
       font-size: 1.25rem;
       color: var(--muted);
       max-width: 700px;
       margin: 0 auto 4rem;
   }

   .service-card {
       background: white;
       border-radius: 20px;
       padding: 2.5rem;
       height: 100%;
       border: 1px solid rgba(43, 110, 246, 0.1);
       transition: var(--transition);
       position: relative;
       overflow: hidden;
   }

   .service-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 4px;
       background: linear-gradient(90deg, var(--brand), var(--accent));
       transform: scaleX(0);
       transition: transform 0.4s ease;
   }

   .service-card:hover::before {
       transform: scaleX(1);
   }

   .service-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 25px 50px rgba(43, 110, 246, 0.15);
       border-color: rgba(43, 110, 246, 0.2);
   }

   .service-number {
       font-size: 3rem;
       font-weight: 800;
       background: linear-gradient(135deg, var(--brand), var(--accent));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       line-height: 1;
       margin-bottom: 0rem;
       opacity: 0.7;
   }

   .service-icon {
       width: 50px;
       height: 50px;
       border-radius: 18px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 1.5rem;
       font-size: 1.8rem;
       background: linear-gradient(135deg, var(--brand), var(--brand-light));
       color: white;
       box-shadow: 0 10px 25px rgba(43, 110, 246, 0.3);
   }

   .service-title {
       font-size: 1.5rem;
       font-weight: 700;
       margin-bottom: 1rem;
       color: var(--dark);
   }

   .service-description {
       color: var(--muted);
       margin-bottom: 1.5rem;
       line-height: 1.7;
   }

   .service-features {
       list-style: none;
       padding: 0;
       margin: 0;
   }

   .service-features li {
       display: flex;
       align-items: center;
       margin-bottom: 0.8rem;
       color: var(--dark);
       font-weight: 500;
   }

   .service-features li i {
       color: var(--brand);
       margin-right: 0.75rem;
       font-size: 0.9rem;
   }

   .feature-badge {
       display: inline-block;
       background: rgba(43, 110, 246, 0.1);
       color: var(--brand);
       padding: 0.4rem 1rem;
       border-radius: 50px;
       font-size: 0.85rem;
       font-weight: 600;
       margin-right: 0.5rem;
       margin-bottom: 0.5rem;
       transition: var(--transition);
   }

   .feature-badge:hover {
       background: rgba(43, 110, 246, 0.2);
       transform: translateY(-2px);
   }

   .service-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
       gap: 2rem;
   }

   @media (max-width: 768px) {
       .service-grid {
           grid-template-columns: 1fr;
       }

       .service-card {
           padding: 2rem;
       }

       .section-title {
           font-size: 2rem;
       }
   }

   .why-creators {
       background: linear-gradient(135deg, var(--brand), var(--accent));
   }

   .why-creators h3 {
       color: #fff;
       font-size: 40px;
   }

   /* Animation for cards */
   .service-card {
       opacity: 0;
       transform: translateY(30px);
       transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
   }

   .service-card.animate {
       opacity: 1;
       transform: translateY(0);
   }

   .services-section {
       padding: 7rem 20px;
   }

   .check-icon {
       color: #10b981;
   }

   .badge-pill {
       background: rgba(43, 110, 246, 0.1);
       color: var(--brand);
       padding: 0.5rem 1rem;
       border-radius: 50px;
       font-weight: 500;
       font-size: 0.85rem;
       transition: var(--transition);
   }

   .badge-pill:hover {
       background: rgba(43, 110, 246, 0.2);
       transform: translateY(-2px);
   }

   .cta-bar {
       background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
       color: #fff;
       padding: 4rem 0;
       position: relative;
       overflow: hidden;
   }

   .cta-bar::before {
       content: '';
       position: absolute;
       top: -50%;
       left: -20%;
       width: 70%;
       height: 150%;
       background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, rgba(43, 110, 246, 0.05) 70%, transparent 100%);
       border-radius: 50%;
       z-index: 0;
   }

   .cta-content {
       position: relative;
       z-index: 1;
   }

   /* Enhanced Footer Styles */
   footer {
       background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
       color: white;
       padding: 4rem 0 2rem;
       position: relative;
       overflow: hidden;
   }

   footer::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 1px;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
   }

   .footer-brand {
       font-family: 'Poppins', sans-serif;
       font-size: 1.8rem;
       font-weight: 800;
       margin-bottom: 1rem;
       display: inline-block;
   }

   .footer-brand span {
       background: linear-gradient(90deg, var(--brand-light), var(--accent-light));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   .footer-tagline {
       color: rgba(255, 255, 255, 0.7);
       font-size: 1rem;
       margin-bottom: 2rem;
       max-width: 300px;
   }

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

   .footer-links li {
       margin-bottom: 0.8rem;
   }

   .footer-links a {
       color: rgba(255, 255, 255, 0.7);
       text-decoration: none;
       transition: var(--transition);
       display: flex;
       align-items: center;
       gap: 0.5rem;
   }

   .footer-links a:hover {
       color: white;
       transform: translateX(5px);
   }

   .footer-links a i {
       font-size: 0.8rem;
       opacity: 0.7;
   }

   .footer-heading {
       font-family: 'Poppins', sans-serif;
       font-size: 1.2rem;
       font-weight: 600;
       margin-bottom: 1.5rem;
       color: white;
       position: relative;
       display: inline-block;
   }

   .footer-heading::after {
       content: '';
       position: absolute;
       bottom: -8px;
       left: 0;
       width: 30px;
       height: 2px;
       background: linear-gradient(90deg, var(--brand), var(--accent));
       border-radius: 2px;
   }

   .social-links {
       display: flex;
       gap: 1rem;
       margin-top: 1.5rem;
   }

   .social-link {
       width: 40px;
       height: 40px;
       border-radius: 50%;
       background: rgba(255, 255, 255, 0.1);
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       text-decoration: none;
       transition: var(--transition);
       backdrop-filter: blur(10px);
   }

   .social-link:hover {
       background: var(--brand);
       transform: translateY(-3px);
       box-shadow: 0 10px 20px rgba(43, 110, 246, 0.3);
   }

   .newsletter-form {
       display: flex;
       gap: 0.5rem;
       margin-top: 1.5rem;
   }

   .newsletter-input {
       flex: 1;
       padding: 0.75rem 1rem;
       border: 1px solid rgba(255, 255, 255, 0.2);
       border-radius: 50px;
       background: rgba(255, 255, 255, 0.1);
       color: white;
       font-size: 0.9rem;
       backdrop-filter: blur(10px);
       transition: var(--transition);
   }

   .newsletter-input:focus {
       outline: none;
       border-color: var(--brand);
       background: rgba(255, 255, 255, 0.15);
   }

   .newsletter-input::placeholder {
       color: rgba(255, 255, 255, 0.6);
   }

   .footer-bottom {
       border-top: 1px solid rgba(255, 255, 255, 0.1);
       padding-top: 2rem;
       margin-top: 3rem;
       text-align: center;
   }

   .footer-bottom-text {
       color: rgba(255, 255, 255, 0.6);
       font-size: 0.9rem;
   }

   .footer-bottom-links {
       display: flex;
       justify-content: center;
       gap: 2rem;
       margin-top: 1rem;
   }

   .footer-bottom-links a {
       color: rgba(255, 255, 255, 0.6);
       text-decoration: none;
       font-size: 0.9rem;
       transition: var(--transition);
   }

   .footer-bottom-links a:hover {
       color: white;
   }

   /* Enhanced Button Styles */
   .btn {
       border-radius: 50px;
       padding: 0.75rem 1.75rem;
       font-weight: 600;
       transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
       position: relative;
       overflow: hidden;
       border: none;
       z-index: 1;
   }

   .btn::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
       transition: left 0.7s ease;
       z-index: -1;
   }

   .btn:hover::before {
       left: 100%;
   }

   .btn-primary {
       background: linear-gradient(135deg, var(--brand), var(--brand-dark));
       color: white;
       box-shadow: 0 8px 25px rgba(43, 110, 246, 0.3);
       position: relative;
       overflow: hidden;
   }

   .btn-primary::after {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(135deg, var(--brand-light), var(--brand));
       opacity: 0;
       transition: opacity 0.4s ease;
       z-index: -1;
   }

   .btn-primary:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 35px rgba(43, 110, 246, 0.4);
   }

   .btn-primary:hover::after {
       opacity: 1;
   }

   .btn-outline-primary {
       background: transparent;
       color: var(--brand);
       border: 2px solid var(--brand);
       position: relative;
       overflow: hidden;
   }

   .btn-outline-primary::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 0;
       height: 100%;
       background: linear-gradient(135deg, var(--brand), var(--brand-light));
       transition: width 0.4s ease;
       z-index: -1;
   }

   .btn-outline-primary:hover {
       color: white;
       border-color: transparent;
       transform: translateY(-5px);
       box-shadow: 0 10px 25px rgba(43, 110, 246, 0.3);
   }

   .btn-outline-primary:hover::before {
       width: 100%;
   }

   .btn-light {
       background: white;
       color: var(--dark);
       box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
       position: relative;
       overflow: hidden;
   }

   .btn-light::after {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(135deg, #f8fafc, #e2e8f0);
       opacity: 0;
       transition: opacity 0.4s ease;
       z-index: -1;
   }

   .btn-light:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
   }

   .btn-light:hover::after {
       opacity: 1;
   }

   .btn-outline-light {
       background: transparent;
       color: white;
       border: 2px solid rgba(255, 255, 255, 0.7);
       position: relative;
       overflow: hidden;
   }

   .btn-outline-light::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 0;
       height: 100%;
       background: white;
       transition: width 0.4s ease;
       z-index: -1;
   }

   .btn-outline-light:hover {
       color: var(--dark);
       border-color: white;
       transform: translateY(-5px);
       box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
   }

   .btn-outline-light:hover::before {
       width: 100%;
   }

   /* Pulse animation for CTA buttons */
   .pulse {
       animation: pulse 2s infinite;
       position: relative;
   }

   @keyframes pulse {
       0% {
           box-shadow: 0 0 0 0 rgba(43, 110, 246, 0.5);
       }

       70% {
           box-shadow: 0 0 0 15px rgba(43, 110, 246, 0);
       }

       100% {
           box-shadow: 0 0 0 0 rgba(43, 110, 246, 0);
       }
   }

   /* Button with icon animation */
   .btn-icon {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
   }

   .btn-icon .fa-arrow-right {
       transition: transform 0.3s ease;
   }

   .btn-icon:hover .fa-arrow-right {
       transform: translateX(5px);
   }

   /* Button size variations */
   .btn-lg {
       padding: 1rem 2.25rem;
       font-size: 1.1rem;
   }

   .btn-sm {
       padding: 0.5rem 1.25rem;
       font-size: 0.875rem;
   }

   .pill-list li {
       list-style: none;
       margin-bottom: 0.75rem;
       padding-left: 0;
       position: relative;
   }

   .pill-list li::before {
       content: '';
       position: absolute;
       left: -1rem;
       top: 0.6rem;
       width: 6px;
       height: 6px;
       border-radius: 50%;
       background: var(--brand);
   }

   /* small helper */
   .muted {
       color: var(--muted);
   }

   .section-title {
       position: relative;
       display: inline-block;
       margin-bottom: 1.5rem;
   }

   .section-title::after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 0;
       width: 50px;
       height: 4px;
       background: linear-gradient(90deg, var(--brand), var(--accent));
       border-radius: 2px;
   }

   .feature-card {
       transition: var(--transition);
       height: 100%;
   }

   .feature-card:hover {
       transform: translateY(-10px);
   }

   .floating {
       animation: floating 3s ease-in-out infinite;
   }

   @keyframes floating {
       0% {
           transform: translateY(0px);
       }

       50% {
           transform: translateY(-10px);
       }

       100% {
           transform: translateY(0px);
       }
   }

   .gradient-text {
       background: linear-gradient(90deg, var(--brand), var(--accent));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   .stats-counter {
       font-size: 2.5rem;
       font-weight: 800;
       background: linear-gradient(90deg, var(--brand), var(--accent));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   li {
       list-style: none;
   }

   /* contact css start  */
   footer a,
   footer a:hover {
       text-decoration: none;
       color: #fff;
   }

   .contact-banner {
       padding: 6rem 20px;
       text-align: center;
       background: linear-gradient(45deg, #1a4fc4, #2b6ef6);
       color: #fff;
       margin-top: 5rem;
   }

   .title h1 {
       color: #fff;
   }

   .contact-page {
       padding: 5rem 20px;
   }

   .contact-page a {
       color: #fff;
   }

   .contact-left img {
       max-width: 90%;
   }

   .contact-page .field-group {
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
       margin-bottom: 28px;
   }

   .contact-page .field-group .field {
       flex: 0 0 48%;
   }

   .contact-page .field-group .field input,
   .contact-page label {
       width: 100%;
       color: var(--text);
   }

   .contact-page .field-group .field input {
       height: 50px;
       border: 1px solid var(--text);
       border-radius: 4px;
       padding: 10px;
   }

   .contact-page textarea {
       height: 150px;
       resize: none;
       width: 100%;
       border: 1px solid var(--text);
       border-radius: 4px;
       padding: 10px;
   }

   textarea:focus-visible,
   input:focus-visible {
       outline: none !important;
   }

   .form-wrapper {
       background: #fff;
       padding: 0 0 0 20px;
       box-shadow: 1px 2px 19px 0px #0000001c;
       border-radius: 12px;
       max-width: 1100px;
       margin: auto;
   }

	.form-right-wrapper {
		background: url("https://estrategaldatario.com/wp-content/uploads/2025/12/customer-care-webpage-interface-word-min-scaled.jpg");
		background-size: cover;
		background-repeat: no-repeat;
		border-radius: 0 12px 12px 0px;
		height: 100%;
		background-position: center;
	}

   .form-right-wrapper .contact-info {
       display: flex;
       gap: 20px;
       margin-bottom: 16px;
   }

   .contact-page form .wpcf7-submit {
       border: 1px solid var(--text);
       background: none;
       padding: 10px 30px;
       color: var(--text);
       border-radius: 4px;
       transition: all .3s ease-in-out;
   }

   .contact-page form .wpcf7-submit:hover {
       border: 1px solid var(--primary);
       background: var(--primary);
       color: #fff;
   }

   .wpcf7-response-output {
       margin: 0 !important;
       border: none !important;
       color: green;
       padding: 0 !important;
   }

   .wpcf7-form.invalid .wpcf7-response-output {
       color: #dc3232;
   }

   .wpcf7-spinner {
       position: absolute;
       right: 4px;
       top: 10px;
       margin: 0;
   }

   .wpcf7-not-valid-tip {
       margin-top: 10px;
       position: absolute;
   }

   .wpcf7-captchar~.wpcf7-not-valid-tip {
       position: relative;
   }

   .wpcf7-response-output,
   .submit-btn {
       display: inline-block;
       position: relative;
       margin-right: 10px;
       margin-top: 16px;
   }

   .wpcf7-not-valid-tip {
       position: relative !important;
   }

   .contact-info-wrapper h5 {
       color: var(--primary);
       transition: all .3s ease-in-out;
   }

   .contact-map iframe {
       width: 100%;
       max-height: 450px;
   }

   .contact-map {
       transform: translateY(7px);
   }

   @media(max-width:767px) {

       .contact-page .field-group .field,
       .contact-page textarea {
           flex: 0 0 95%;
       }

       .contact-page textarea {
           width: 95%;
       }
   }