custom/plugins/EmovaTheme/src/Resources/views/storefront/layout/footer/footer.html.twig line 1

Open in your IDE?
  1. {% block layout_footer_inner_container %}
  2.     <div class="almarenaRegular social-media-footer" style="width: 100%;">
  3.         <div class="container">
  4.             {% block layout_footer_payment_shipping_logos %}
  5.               {% sw_include '@Storefront/storefront/layout/footer/social-pages-footer.html.twig' %}
  6.                 {# <div class="footer-logos" >
  7.                     {% block layout_footer_payment_logos %}
  8.                         {% for paymentMethod in page.salesChannelPaymentMethods %}
  9.                             {% block layout_footer_payment_logo %}
  10.                                 {% if paymentMethod.media %}
  11.                                     <div class="footer-logo is-payment">
  12.                                         {% sw_thumbnails 'footer-payment-image-thumbnails' with {
  13.                                             media: paymentMethod.media,
  14.                                             sizes: {
  15.                                                 'default': '100px'
  16.                                             },
  17.                                             attributes: {
  18.                                                 'class': 'img-fluid footer-logo-image',
  19.                                                 'alt': (paymentMethod.media.translated.alt ?: paymentMethod.translated.name),
  20.                                                 'title': (paymentMethod.media.translated.title ?: paymentMethod.translated.name)
  21.                                             }
  22.                                         } %}
  23.                                     </div>
  24.                                 {% endif %}
  25.                             {% endblock %}
  26.                         {% endfor %}
  27.                     {% endblock %}
  28.                     {% block layout_footer_shipping_logos %}
  29.                         {% for shippingMethod in page.salesChannelShippingMethods %}
  30.                             {% block layout_footer_shipping_logo %}
  31.                                 {% if shippingMethod.media %}
  32.                                     <div class="footer-logo is-shipping">
  33.                                         {% sw_thumbnails 'footer-shipping-image-thumbnails' with {
  34.                                             media: shippingMethod.media,
  35.                                             sizes: {
  36.                                                 'default': '100px'
  37.                                             },
  38.                                             attributes: {
  39.                                                 'class': 'img-fluid footer-logo-image',
  40.                                                 'alt': (shippingMethod.media.translated.alt ?: shippingMethod.translated.name),
  41.                                                 'title': (shippingMethod.media.translated.title ?: shippingMethod.translated.name)
  42.                                             }
  43.                                         } %}
  44.                                     </div>
  45.                                 {% endif %}
  46.                             {% endblock %}
  47.                         {% endfor %}
  48.                     {% endblock %}
  49.                 </div> #}
  50.             {% endblock %}
  51.         </div>
  52.     </div>
  53.     <div class="footer-bottom almarenaRegular" style="background-color: #27282C; padding-top:75px; padding-bottom: 75px;">
  54.                 {% block layout_footer_service_menu %}
  55.                  <div class="container emova-newsletters-footer">
  56.                     <div style="max-width: 700px; margin:0 auto; color: white;">
  57.                         <h2 style="font-size: 60px;line-height: 1.2;margin-bottom: 30px;color:#fff">Jetzt zum Newsletter anmelden</h2>
  58.                         <div style="font-size: 16px; line-height: 24px; margin-bottom: 40px; font-weight: 400;">
  59.                             Melden Sie sich jetzt für unseren Newsletter an und erhalten Sie regelmäßig die aktuellsten News zu allen Entwicklungen rund um EMOVA und Ihre Brennstoffe.
  60.                         </div>
  61.                         <script charset="utf-8" type="text/javascript" src="//js-eu1.hsforms.net/forms/embed/v2.js"></script>
  62.                         <script>
  63.                             function applyStyles(){
  64.                                 // Find the iframe
  65.                                 var iframe = document.getElementById("hs-form-iframe-0");
  66.                                 // Access the contentDocument of the iframe
  67.                                 var iframeDocument = iframe.contentDocument || iframe.contentWindow.document;
  68.                                 var emailLabel = iframeDocument.querySelector('label[for="email-0c41aaf9-fd25-4c5e-98c0-0c1ff9f09bcd"]');
  69.                                 // Hide the label
  70.                                 if (emailLabel) {
  71.                                     emailLabel.style.display = "none";
  72.                                 }
  73.                                 var paragraphs = iframeDocument.querySelectorAll("p");
  74.                                 if (paragraphs) {
  75.                                     paragraphs.forEach(function (paragraph) {
  76.                                         paragraph.style.fontSize = ".875rem";
  77.                                         paragraph.style.lineHeight = "1.5em";
  78.                                         paragraph.style.opacity = ".5";
  79.                                         paragraph.style.wordBreak = "break-word";
  80.                                         paragraph.style.color = "white";
  81.                                         paragraph.style.fontFamily = "'Almarena W05', -apple-system, system-ui, BlinkMacSystemFont, sans-serif"
  82.                                     });
  83.                                 }
  84.                                 var buttonElement = iframeDocument.querySelector('.hs-button.primary.large');
  85.                                 // Apply the specified styles to the button
  86.                                 function applyButtonStyles() {
  87.                                     buttonElement.style.backgroundColor = "#F74551";
  88.                                     buttonElement.style.borderRadius = "24px";
  89.                                     buttonElement.style.borderColor = "#F74551";
  90.                                     buttonElement.style.color = "white";
  91.                                     buttonElement.style.fontSize = "16px";
  92.                                     buttonElement.style.fontWeight = "700";
  93.                                     buttonElement.style.fontStretch = "100%";
  94.                                     buttonElement.style.height = "50px";
  95.                                     buttonElement.style.border = "hidden";
  96.                                     buttonElement.style.textTransform = "uppercase";
  97.                                     buttonElement.style.textAlign = "center";
  98.                                     buttonElement.style.verticalAlign = "middle";
  99.                                     buttonElement.style.display = "grid";
  100.                                     buttonElement.style.alignItems = "center";
  101.                                     buttonElement.style.fontFamily = "'Almarena W05', -apple-system, system-ui, BlinkMacSystemFont, sans-serif"
  102.                                 }
  103.                                 // Apply hover styles on mouseover
  104.                                 buttonElement.addEventListener("mouseover", function () {
  105.                                     buttonElement.style.backgroundColor = "black";
  106.                                     buttonElement.style.borderColor = "black";
  107.                                 });
  108.                                 // Restore original styles on mouseout
  109.                                 buttonElement.addEventListener("mouseout", function () {
  110.                                     applyButtonStyles();
  111.                                 });
  112.                                 // Apply initial styles
  113.                                 applyButtonStyles();
  114.                                 // Find the checkbox input element within the iframe
  115.                                 // Find the checkbox input inside the iframe
  116.                                 var checkboxInput = iframeDocument.querySelector('.hs-input[type="checkbox"]');
  117.                                 // Check if the checkbox input exists
  118.                                 if (checkboxInput) {
  119.                                     // Create a checkbox icon element
  120.                                     var checkboxIcon = document.createElement('div');
  121.                                     checkboxIcon.className = 'custom-checkbox-icon';
  122.                                     // Set the initial scale to 0
  123.                                     checkboxIcon.style.transform = "translate(-50%, -50%) scale(0)";
  124.                                     // Append the checkbox icon to the checkbox's parent element
  125.                                     checkboxInput.parentNode.appendChild(checkboxIcon);
  126.                                     // Apply styles to the checkbox input
  127.                                     checkboxInput.style.appearance = "none";
  128.                                     checkboxInput.style.webkitAppearance = "none";
  129.                                     checkboxInput.style.mozAppearance = "none";
  130.                                     checkboxInput.style.height = "40px";
  131.                                     checkboxInput.style.width = "40px"; // Set the width as specified
  132.                                     checkboxInput.style.border = "2px solid #fff";
  133.                                     checkboxInput.style.outline = "none";
  134.                                     checkboxInput.style.cursor = "pointer";
  135.                                     checkboxInput.style.position = "relative";
  136.                                     checkboxInput.style.borderRadius = "5px";
  137.                                     checkboxInput.style.background = "transparent";
  138.                                     // Apply styles to the checkbox icon
  139.                                     checkboxIcon.style.content = "''";  // Set content property to an empty string
  140.                                     checkboxIcon.style.display = "block";
  141.                                     checkboxIcon.style.width = "45px";
  142.                                     checkboxIcon.style.height = "45px";
  143.                                     checkboxIcon.style.backgroundImage = "url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"40\" height=\"40\" fill=\"%23fff\"><path d=\"m31.293 10.382 1.414 1.414-16.555 16.556-1.414-1.415\"/><path d=\"m14.464 23.817-1.414 1.414-5.657-5.657 1.414-1.414\"/></svg>')";
  144.                                     checkboxIcon.style.backgroundSize = "contain";
  145.                                     checkboxIcon.style.backgroundRepeat = "no-repeat";
  146.                                     checkboxIcon.style.backgroundPosition = "center";
  147.                                     checkboxIcon.style.position = "absolute";
  148.                                     checkboxIcon.style.marginTop = "45px";
  149.                                     checkboxIcon.style.left = "25px";
  150.                                     checkboxIcon.style.transform = "translate(-50%, -50%) scale(0)";
  151.                                     checkboxIcon.style.transition = "transform 0.3s ease";
  152.                                     // Add an event listener to the checkbox
  153.                                     checkboxInput.addEventListener("change", function () {
  154.                                         // Toggle the visibility of the checkbox icon based on the checkbox state
  155.                                         checkboxIcon.style.transform = checkboxInput.checked ? "translate(-50%, -50%) scale(1)" : "translate(-50%, -50%) scale(0)";
  156.                                     });
  157.                                 } else {
  158.                                 }
  159.                                 // Find the input element with class "hs-input" within the iframe
  160.                                 var hsInput = iframeDocument.querySelector(".hs-input");
  161.                                 // Add the "InputMail" class to the input within the iframe
  162.                                 if (hsInput) {
  163.                                     hsInput.classList.add("InputMail");
  164.                                     hsInput.classList.add("almarenaRegular")
  165.                                     hsInput.style.marginBottom = "25px";
  166.                                     hsInput.style.marginTop = "25px";
  167.                                     hsInput.placeholder = "E-Mail eintragen*";
  168.                                     // Add custom styles within the iframe
  169.                                     hsInput.style.width = "100%";
  170.                                     hsInput.style.background = "transparent 0% 0% no-repeat padding-box";
  171.                                     hsInput.style.border = "1px solid white";
  172.                                     hsInput.style.borderRadius = "25px";
  173.                                     hsInput.style.opacity = "1";
  174.                                     hsInput.style.fontFamily = "'Almarena W05', -apple-system, system-ui, BlinkMacSystemFont, sans-serif";
  175.                                     hsInput.style.letterSpacing = "0.32px";
  176.                                     hsInput.style.color = "white";
  177.                                     hsInput.style.padding = "10px 26px";
  178.                                     iframeDocument.styleSheets[0].insertRule(".hs-input::placeholder { font-family: ''Almarena W05', -apple-system, system-ui, BlinkMacSystemFont, sans-serif'; }", 0);
  179.                                 }
  180.                                 const sheet = iframeDocument.styleSheets[iframeDocument.styleSheets.length-1];
  181.                                 sheet.insertRule(".hs-form a:link, .hs-form a:visited {font-weight: 700; text-decoration: none; color: #fff; opacity: 1;}", sheet.cssRules.length);
  182.                                 sheet.insertRule(".hs-form a:hover, .hs-form a:focus, .hs-form a:active { opacity: .7; }", sheet.cssRules.length);
  183.                                 sheet.insertRule(".hs-form-required { color: #fff; }", sheet.cssRules.length);
  184.                                 sheet.insertRule(".hs-input { height: 50px; }", sheet.cssRules.length);
  185.                                 sheet.insertRule(".inputs-list .hs-form-booleancheckbox label { display: grid; align-items: center; grid-template-columns: 40px 1fr; }", sheet.cssRules.length);
  186.                             }
  187.                             hbspt.forms.create({
  188.                                 region: "eu1",
  189.                                 portalId: "25399637",
  190.                                 formId: "0c41aaf9-fd25-4c5e-98c0-0c1ff9f09bcd",
  191.                                 onFormReady: applyStyles
  192.                             });
  193.                         </script>
  194.                         {# <div>
  195.                             <input style="margin-bottom:25px; margin-top:25px" class="InputMail" placeholder="E-Mail eintragen*">
  196.                         </div>
  197.                         <div style="font-size: .875rem; line-height: 1.5em; opacity: .5; word-break: break-word;">
  198.                             <p style="margin-bottom: 10px;">Die von Ihnen in das Kontaktformular angegebenen persönlichen Daten werden von Emova zur Bearbeitung Ihres Anliegens gespeichert und verarbeitet. Weitere Informationen und Widerrufshinweise finden Sie in unserer Datenschutzerklärung.</p>
  199.                             <p>Von Zeit zu Zeit möchten wir Sie gerne über unsere Produkte und Dienstleistungen sowie andere Inhalte, die für Sie von Interesse sein könnten, informieren. Wenn Sie unseren Newsletter per E-Mail erhalten möchten, können Sie diesen mit Zustimmung der untenstehenden Checkbox abonnieren:</p>
  200.                         </div>
  201.                         <div class="checkbox-container">
  202.                              <input type="checkbox" class="custom-checkbox">
  203.                               <p style="opacity: .5; margin-bottom: 0 !important; display: flex; align-items: center;">Ich stimme zu, den Newsletter von Emova zu erhalten.</p>
  204.                               <span>*</span>
  205.                         </div>
  206.                         <div style="padding-top: 20px; word-break: break-word;opacity: .5">
  207.                             <p>Sie können diese Benachrichtigungen jederzeit abbestellen. Weitere Informationen finden Sie in unserer <a href="https://www.emova.de/datenschutz-1" target="_blank" rel="noopener">Datenschutzerklärung</a>.</p>
  208.                         </div>
  209.                         <div style="margin-top: 30px;">
  210.                             <a style="text-align: center; vertical-align: middle; display: grid; align-items: center;" class="hs-button-submit" href="https://www.emova.de/privatkunden" rel="noopener noreferrer">Newsletter bestellen</a>
  211.                         </div> #}
  212.                     </div>
  213.                     {# <div class="container" style="max-width: 800px; text-align:center">
  214.                         <div class="almarenaRegular" style="text-align: left; font: normal normal normal 60px/66px; letter-spacing: 1.2px; color: #FFFFFF; opacity: 1;">
  215.                             Call to action.<br> Jetzt Newsletter anmelden.
  216.                         </div>
  217.                         <div class="row" style="margin-top: 75px;">
  218.                             <div class="col-md-8">
  219.                                 <input style="margin-bottom:30px" class="InputMail" placeholder="E-Mail eintragen"/>
  220.                             </div>
  221.                             <div class="col-md-4">
  222.                                 <button style="background: transparent 0% 0% no-repeat padding-box;
  223.                                 border-radius: 27px; border: 2px solid #F74551 !important; outline: none;
  224.                                 opacity: 1; float:right; width:200px; height:38px"><span class="almarenaRegular" style="text-align: left;
  225.                                 font: normal normal bold 16px/24px;
  226.                                 letter-spacing: 0px;
  227.                                 color: #FFFFFF;
  228.                                 opacity: 1;">anfragen</span></button>
  229.                             </div>
  230.                         </div>
  231.                         <div style="margin-top: 35px;">
  232.                             <div style="text-align: start;">
  233.                                 <label class="almarenaRegular" style="font: normal normal normal 14px/21px; letter-spacing: 0.29px; color: #FFFFFF; opacity: 0.5; padding-left: 40px; text-indent: -40px; position:relative" for="scales">
  234.                                     <input style="border: 2px solid #FFFFFF; border-radius: 4px; opacity: 1; width:23px; height:23px; position:absolute" type="checkbox" id="scales" name="scales">
  235.                                     <span style="position: relative; margin-left: 40px;">Ich möchte über die neuesten Inhalte von EMOVA informiert werden.</span>
  236.                                 </label>
  237.                             </div>
  238.                         </div>
  239.                         <div style="margin-top: 35px; margin-bottom:75px">
  240.                             <div style="text-align: start;">
  241.                                 <label class="almarenaRegular" style="font: normal normal normal 14px/21px; letter-spacing: 0.29px; color: #FFFFFF; opacity: 0.5; padding-left: 40px; text-indent: -40px; position:relative" for="scales1">
  242.                                     <input style="border: 2px solid #FFFFFF; border-radius: 4px; opacity: 1; width:23px; height:23px; position:absolute" type="checkbox" id="scales1" name="scales1">
  243.                                     <span style="position: relative; margin-left: 40px;">Um Ihnen die gewünschten Inhalte zusenden zu können, müssen wir Ihre Daten speichern und verarbeiten. Sie können bei uns Einsicht in die über Sie gespeicherten Daten erhalten und jederzeit die Löschung Ihrer Daten verlangen. Weitere Informationen finden Sie in unseren Datenschutzbestimmungen.</span>
  244.                                 </label>
  245.                             </div>
  246.                         </div> #}
  247.                         {# {% block layout_footer_service_menu_content %}
  248.                             {% apply spaceless %}
  249.                                 <ul class="footer-service-menu-list list-unstyled">
  250.                                     {% for serviceMenuItem in page.header.serviceMenu %}
  251.                                         {% block layout_footer_service_menu_item %}
  252.                                             <li class="footer-service-menu-item">
  253.                                                 <a class="footer-service-menu-link"
  254.                                                 href="{{ category_url(serviceMenuItem) }}"
  255.                                                 {% if category_linknewtab(serviceMenuItem) %}target="_blank"{% endif %}
  256.                                                 title="{{ serviceMenuItem.translated.name }}">
  257.                                                     {{ serviceMenuItem.translated.name }}
  258.                                                 </a>
  259.                                             </li>
  260.                                         {% endblock %}
  261.                                     {% endfor %}
  262.                                 </ul>
  263.                             {% endapply %}
  264.                         {% endblock %} #}
  265.                     </div>
  266.                 {% endblock %}
  267.                 {# {% block layout_footer_vat %}
  268.                     <div class="footer-vat">
  269.                         {% if context.taxState == "gross" %}
  270.                             <p>
  271.                                 {{ "footer.includeVat"|trans({
  272.                                     '%url%': path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') })
  273.                                 })|raw }}
  274.                             </p>
  275.                         {% else %}
  276.                             <p>
  277.                                 {{ "footer.excludeVat"|trans({
  278.                                     '%url%': path('frontend.cms.page',{ id: config('core.basicInformation.shippingPaymentInfoPage') })
  279.                                 })|raw }}
  280.                             </p>
  281.                         {% endif %}
  282.                     </div>
  283.                 {% endblock %}
  284.                 {% block layout_footer_copyright %}
  285.                     <div class="footer-copyright">
  286.                         {% sw_icon 'shopware' style {'size':'xs'} %}
  287.                         {{ "footer.copyrightInfo"|trans|sw_sanitize }}
  288.                     </div>
  289.                 {% endblock %} #}
  290.     </div>
  291.     <div class="second-footer">
  292.         <div class="container">
  293.             {% block layout_footer_payment_shipping_logos1 %}
  294.                 <div>
  295.         {#
  296.                     <iframe style="border: none;width: 1px; min-width: 100%" id="ifrm" src="/faq-heizoel.php" allowfullscreen></iframe>
  297.                     <script>
  298.                         window.addEventListener("load", ()=>iFrameResize([], "#ifrm"));
  299.                     </script>
  300.         #}
  301.                 </div>
  302.                 <div class="second_footer_padding">
  303.                     <div class="second_footer_row_one">
  304.             <h2 class="aa-title h1 color-white">
  305.                     Bleiben Sie in Kontakt
  306.                 </h2>
  307.                     </div>
  308.                     <div class="row second_footer_row_two">
  309.                         <div class="col-md-6 col-lg-3 footer-item">
  310.                             <h4 class="h4-white">So erreichen Sie uns</h4>
  311.                             <div class="footer_small_font">
  312.                                 <p><strong style="letter-spacing: 0.32px">DS EMOVA GmbH</strong><br/>
  313.                                 Daimlerstraße 2 <br> D-85748 Garching b. München <br><br><a href="tel:+498987190" target="_blank" rel="noopener"> +49 89 8719-0</a> <br><a href="mailto:einfach@emova.de" rel="noopener"> einfach@emova.de </a></p>
  314.                             </div>
  315.                         </div>
  316.                         <div class="col-md-6 col-lg-3 footer-item">
  317.                             <h4 class="h4-white">Rufen Sie uns gratis an</h4>
  318.                             <div class="footer_small_font">
  319.                               <a href="tel:08008500400" rel="noopener">0800 8500400</a>
  320.                             </div>
  321.                         </div>
  322.                         <div class="col-md-6 col-lg-3 footer-item">
  323.                             <h4 class="h4-white">Finden Sie Ihr regionales Verkaufsbüro</h4>
  324.                             <div class="footer_small_font">
  325.                                 <div style="margin-bottom: 60px;">
  326.                                 <a href="https://www.emova.de/standorte" rel="noopener">Zu den Standorten</a></div>
  327.                                 <div><svg width="165" height="216" viewBox="0 0 165 216" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M135.414 62.3711L131.346 62.9902L129.4 64.5825L128.692 69.1819L138.422 70.3319L139.13 67.6635L137.36 65.3785L135.414 62.3711Z" stroke="#707070"></path> <path d="M145.911 41.0255L146.394 41.1564L146.521 40.6893L146.058 40.5474L145.911 41.0255ZM137.833 38.5488L137.979 38.0708L137.627 37.9629L137.42 38.2667L137.833 38.5488ZM132.997 45.625L133.13 46.1069L133.307 46.0582L133.41 45.9071L132.997 45.625ZM125.685 47.6447L125.542 48.1238L125.68 48.1649L125.818 48.1267L125.685 47.6447ZM110.471 43.0968L110.615 42.6177L110.318 42.5289L110.106 42.7556L110.471 43.0968ZM106.226 47.6447V48.1447H106.443L106.591 47.9859L106.226 47.6447ZM103.572 47.6447V47.1447H103.264L103.126 47.4198L103.572 47.6447ZM101.98 50.8068L101.533 50.5819L101.366 50.9148L101.637 51.1705L101.98 50.8068ZM103.926 52.6423L103.583 53.006L103.592 53.0142L103.601 53.0219L103.926 52.6423ZM107.641 55.8265L107.316 56.2062L107.414 56.2902L107.54 56.3163L107.641 55.8265ZM113.656 57.0649L114.156 57.0784L114.167 56.6597L113.757 56.5752L113.656 57.0649ZM113.479 63.6104L113.908 63.8677L113.975 63.7551L113.979 63.6239L113.479 63.6104ZM112.417 65.3794L111.989 65.1222L111.743 65.531L112.14 65.7955L112.417 65.3794ZM115.071 67.1485L115.567 67.2116L115.606 66.9043L115.348 66.7324L115.071 67.1485ZM113.833 76.8782L113.337 76.8151L113.293 77.1577L113.598 77.3198L113.833 76.8782ZM119.494 79.8856L119.259 80.3271L119.285 80.3408L119.312 80.3514L119.494 79.8856ZM129.931 83.9544L130.43 83.9306L130.415 83.6064L130.113 83.4885L129.931 83.9544ZM130.108 87.6694L130.508 87.9694L130.616 87.8254L130.607 87.6457L130.108 87.6694ZM127.985 90.4999L127.585 90.1999L127.315 90.56L127.645 90.8663L127.985 90.4999ZM130.462 92.7997L130.95 92.6912L130.916 92.5393L130.802 92.4333L130.462 92.7997ZM131.346 96.78L130.858 96.8885L130.994 97.4976L131.558 97.2328L131.346 96.78ZM134.177 95.4532L134.236 94.9567L134.094 94.9398L133.964 95.0005L134.177 95.4532ZM145.322 96.78L145.262 97.2765L145.621 97.3192L145.774 96.992L145.322 96.78ZM147.268 92.6227L147.153 92.1359L146.917 92.1912L146.815 92.4107L147.268 92.6227ZM158.589 89.9692L158.704 90.456L159.175 90.3456L159.08 89.8712L158.589 89.9692ZM157.528 84.662H157.028V84.7116L157.038 84.7601L157.528 84.662ZM157.528 75.463H158.028V75.3604L157.988 75.266L157.528 75.463ZM155.405 70.5096H154.905V70.6122L154.946 70.7066L155.405 70.5096ZM155.405 65.9101H155.905V65.8349L155.883 65.7631L155.405 65.9101ZM153.99 61.3106L154.468 61.1636L154.431 61.0449L154.344 60.9571L153.99 61.3106ZM146.914 54.2343L146.442 54.0684L146.338 54.3653L146.56 54.5879L146.914 54.2343ZM150.275 44.6815L150.747 44.8475L151.004 44.117L150.232 44.1834L150.275 44.6815ZM144.791 45.1533L144.308 45.0223L144.121 45.7128L144.834 45.6514L144.791 45.1533ZM138.422 70.3318L138.364 70.8284L138.794 70.8793L138.906 70.46L138.422 70.3318ZM128.693 69.1819L128.198 69.1059L128.12 69.6177L128.634 69.6785L128.693 69.1819ZM129.4 64.5824L129.084 64.1954L128.935 64.3169L128.906 64.5064L129.4 64.5824ZM131.346 62.9902L131.271 62.4959L131.136 62.5165L131.03 62.6033L131.346 62.9902ZM135.415 62.3711L135.835 62.0995L135.659 61.8282L135.34 61.8768L135.415 62.3711ZM137.361 65.3785L136.941 65.6501L136.953 65.6679L136.966 65.6846L137.361 65.3785ZM139.13 67.6635L139.613 67.7916L139.677 67.5528L139.525 67.3574L139.13 67.6635ZM146.058 40.5474L137.979 38.0708L137.686 39.0269L145.765 41.5035L146.058 40.5474ZM137.42 38.2667L132.584 45.3429L133.41 45.9071L138.245 38.8309L137.42 38.2667ZM132.864 45.143L125.552 47.1628L125.818 48.1267L133.13 46.1069L132.864 45.143ZM125.829 47.1657L110.615 42.6177L110.328 43.5759L125.542 48.1238L125.829 47.1657ZM110.106 42.7556L105.86 47.3035L106.591 47.9859L110.837 43.438L110.106 42.7556ZM106.226 47.1447H103.572V48.1447H106.226V47.1447ZM103.126 47.4198L101.533 50.5819L102.427 51.0317L104.019 47.8696L103.126 47.4198ZM101.637 51.1705L103.583 53.006L104.269 52.2785L102.323 50.4431L101.637 51.1705ZM103.601 53.0219L107.316 56.2062L107.966 55.4469L104.251 52.2626L103.601 53.0219ZM107.54 56.3163L113.555 57.5546L113.757 56.5752L107.742 55.3368L107.54 56.3163ZM113.156 57.0514L112.979 63.5969L113.979 63.6239L114.156 57.0784L113.156 57.0514ZM113.05 63.3532L111.989 65.1222L112.846 65.6367L113.908 63.8677L113.05 63.3532ZM112.14 65.7955L114.794 67.5645L115.348 66.7324L112.695 64.9634L112.14 65.7955ZM114.575 67.0853L113.337 76.8151L114.329 76.9414L115.567 67.2116L114.575 67.0853ZM113.598 77.3198L119.259 80.3271L119.728 79.444L114.067 76.4367L113.598 77.3198ZM119.312 80.3514L129.749 84.4202L130.113 83.4885L119.675 79.4197L119.312 80.3514ZM129.432 83.9781L129.608 87.6932L130.607 87.6457L130.43 83.9306L129.432 83.9781ZM129.708 87.3694L127.585 90.1999L128.385 90.7999L130.508 87.9694L129.708 87.3694ZM127.645 90.8663L130.121 93.1661L130.802 92.4333L128.325 90.1335L127.645 90.8663ZM129.974 92.9082L130.858 96.8885L131.834 96.6716L130.95 92.6912L129.974 92.9082ZM131.558 97.2328L134.389 95.9059L133.964 95.0005L131.134 96.3273L131.558 97.2328ZM134.118 95.9497L145.262 97.2765L145.381 96.2835L134.236 94.9567L134.118 95.9497ZM145.774 96.992L147.72 92.8347L146.815 92.4107L144.869 96.5681L145.774 96.992ZM147.382 93.1095L158.704 90.456L158.475 89.4824L147.153 92.1359L147.382 93.1095ZM159.08 89.8712L158.018 84.564L157.038 84.7601L158.099 90.0673L159.08 89.8712ZM158.028 84.662V75.463H157.028V84.662H158.028ZM157.988 75.266L155.865 70.3127L154.946 70.7066L157.069 75.66L157.988 75.266ZM155.905 70.5096V65.9101H154.905V70.5096H155.905ZM155.883 65.7631L154.468 61.1636L153.512 61.4576L154.927 66.0571L155.883 65.7631ZM154.344 60.9571L147.267 53.8808L146.56 54.5879L153.636 61.6642L154.344 60.9571ZM147.386 54.4003L150.747 44.8475L149.803 44.5156L146.442 54.0684L147.386 54.4003ZM150.232 44.1834L144.748 44.6551L144.834 45.6514L150.318 45.1797L150.232 44.1834ZM145.274 45.2843L146.394 41.1564L145.429 40.8945L144.308 45.0223L145.274 45.2843ZM138.481 69.8353L128.751 68.6854L128.634 69.6785L138.364 70.8284L138.481 69.8353ZM129.187 69.2579L129.894 64.6585L128.906 64.5064L128.198 69.1059L129.187 69.2579ZM129.717 64.9694L131.663 63.3772L131.03 62.6033L129.084 64.1954L129.717 64.9694ZM131.421 63.4845L135.49 62.8654L135.34 61.8768L131.271 62.4959L131.421 63.4845ZM134.995 62.6427L136.941 65.6501L137.781 65.1069L135.835 62.0995L134.995 62.6427ZM136.966 65.6846L138.735 67.9696L139.525 67.3574L137.756 65.0724L136.966 65.6846ZM138.647 67.5353L137.939 70.2037L138.906 70.46L139.613 67.7916L138.647 67.5353Z" fill="#707070"></path
  328. > <path fill-rule="evenodd" clip-rule="evenodd" d="M88.1815 30.5278L88.4468 34.1543L91.012 35.7464V38.975L86.324 44.3264L88.4764 45.3288L93.4886 49.2797L97.4395 49.8104L97.8523 51.4025L102.279 52.3976L103.926 52.6409L101.98 50.8055L103.572 47.6434H106.226L110.472 43.0954L125.685 47.6434L132.997 45.6236L137.833 38.5475L145.911 41.0241L144.791 45.1519L150.275 44.6802L146.914 31.2354L142.668 29.1125L144.791 25.9283L139.484 20.9749L134.177 22.3901L131.7 20.9749L130.285 17.7906L137.007 15.3139L134.884 11.0683L129.931 6.46875L125.685 16.0215L115.779 14.2525L111.179 19.9134L101.98 21.6825L98.4421 26.9897H90.3044L89.9505 28.9356L88.1815 30.5278Z" stroke="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M50.677 1.16211L57.3994 12.8378L51.7384 14.9606V17.4374L55.9842 18.8526L54.9227 22.3907L57.3994 23.8059L55.2765 25.9287L56.338 30.5282H63.4142L69.4289 38.2237L77.5666 34.3759L78.9818 36.8968L77.9203 38.9755L80.6624 41.9387L86.3234 44.3269L91.0113 38.9755V35.747L88.4462 34.1549L88.1808 30.5282L89.9498 28.9362L90.3038 26.9902L88.1808 25.2211L93.9598 21.3882L94.9032 12.1302L87.5842 16.7129L74.7361 11.4225V2.93115L61.6451 1.16211H50.677Z" stroke="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M78.9818 36.8978L77.5667 34.377L69.429 38.2246L73.6747 42.0428L76.8884 41.5563L78.628 43.001L80.6624 41.9396L77.9204 38.9764L78.9818 36.8978Z" stroke="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M72.6729 118.213L75.3854 113.26L75.5034 110.193L78.5697 108.837L78.4518 107.127L79.4543 104.179L74.5599 100.405L75.0464 97.8099H72.0832L69.5771 100.405L67.8375 98.6355L69.5771 92.267L64.4174 91.4414L61.8228 94.2719H58.2847L56.5157 97.6921L51.0905 100.641L52.9774 104.179L48.2601 110.429L42.1273 117.27L42.2453 120.749L40.3583 121.161L40.1814 124.11L41.7735 128.061L36.7612 130.95L37.6458 132.483L35.287 134.37L36.7612 136.847L41.066 135.55L44.1028 136.729L46.3731 143.334L45.0757 144.513L46.3731 147.815L49.7932 149.702V147.933L51.7982 147.343V149.82L53.8031 150.41V153.225L55.6901 152.061V150.056L57.3411 150.881L58.7563 148.641L57.8129 147.343L58.2847 143.098L56.9873 133.427L62.6483 132.955L64.4174 134.37L66.3044 133.427V129.653H68.8989L70.9039 126.41V124.582H73.8523L76.0635 121.043V118.213H72.6729Z" stroke="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M129.931 83.9539L119.494 79.885L113.833 76.8777L115.071 67.1479L112.417 65.3788L113.479 63.6097L113.656 57.0642L107.641 55.826L103.926 52.6417L102.279 52.3984L101.228 53.2608V54.6761L98.0291 56.4156L96.7318 55.59H93.0758L88.4763 57.3591L88.5942 59.2461L92.1323 64.1995L91.8964 67.6638L93.4296 70.3322L92.84 71.5114L94.0193 75.9931L92.0144 79.1774H87.4149L86.324 80.3568L87.4149 81.772L86.324 84.2486V87.9047L87.4149 91.4428H91.5425L93.1348 96.7793L101.007 98.9907V102.706L102.279 105.625L115.071 110.047L114.658 105.713L113.597 103.944L112.535 96.7793L114.422 93.3298L124.565 89.32L127.985 90.4993L130.108 87.6689L129.931 83.9539Z" stroke="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M102.279 105.623L101.007 102.704V98.9894L93.1351 96.778L91.5429 91.4414H87.415L86.3241 93.2104L82.5207 92.8566L75.0464 97.8099L74.56 100.405L79.4543 104.179L78.4518 107.127L78.5699 108.837L75.5035 110.193L75.3856 113.26L72.673 118.213H76.0638V121.043L79.4543 120.808L81.2823 122.459L84.9385 126.41L87.2971 130.007L90.0096 128.356L88.7124 126.41H94.845L95.4347 128.356H97.9114V123.225L99.7985 121.633L102.279 125.289L109.115 124.11L110.413 122.223L109.115 121.397L110.649 119.157L112.536 120.218L116.192 117.152L115.189 114.557L122.206 110.193L116.899 105.004L114.658 105.712L115.071 110.046L102.279 105.623Z" stroke="#707070"
  329. ></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M114.422 93.3302L112.535 96.7799L113.597 103.944L114.658 105.714L116.899 105.006L122.206 110.195L115.189 114.559L116.191 117.153L112.535 120.22L110.648 119.158L109.115 121.399L110.412 122.225L109.115 124.112L114.01 128.357L116.84 131.011L119.67 125.881L130.816 122.166L137.361 116.859L142.668 115.443L152.752 108.986L151.16 107.129H155.052L160.005 111.817L163.72 100.141L162.481 93.6841L158.589 89.969L147.268 92.6224L145.322 96.7799L134.177 95.4531L131.346 96.7799L130.462 92.7993L127.985 90.4998L124.565 89.3203L114.422 93.3302Z" stroke="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M77.4789 202.746L76.6828 199.65L76.8597 189.39C76.8597 189.39 74.2946 182.933 74.2946 182.667C74.2946 182.402 76.6828 180.102 76.6828 180.102L81.1054 178.599V173.734H84.2897L83.4052 166.687L79.2774 162.441L79.5133 160.318L77.3904 159.257L77.0366 149.704L75.2676 151.237L73.7344 150.884L72.5551 149.704L72.9088 147.109L71.0219 144.397L68.781 146.136L68.0735 143.1H63.4739L64.4174 146.136L61.2331 148.525L58.7565 148.643L57.3412 150.884L55.6901 150.058V152.063L53.8031 153.227V150.412L51.7982 149.822V147.345L49.7933 147.935V149.704L46.3731 147.817L47.1397 153.227L45.0169 160.952L41.066 166.687L35.1691 173.999L29.2723 190.746L28.093 199.237L30.4517 205.134L45.3116 205.37L48.8498 203.483L45.7835 200.181L49.3215 199.473L50.7368 202.068L68.0735 205.96L72.3486 202.746H77.4789Z" stroke="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M47.139 153.226L46.3724 147.816L45.0751 144.513L46.3724 143.334L44.1021 136.73L41.0653 135.55L36.7606 136.848L35.2864 134.371L37.6451 132.484L36.7606 130.951L41.7729 128.061L40.1807 124.11L40.3577 121.162L42.2447 120.749L42.1267 117.27L39.5321 114.911L36.4657 110.43L29.0357 116.327L16.6524 122.223V125.526L9.10442 126.41L3.53198 133.309L7.42386 138.97L11.1389 142.066L8.21996 148.169L12.8195 148.921L19.763 146.135L25.2912 148.302C25.2912 148.302 24.8933 152.105 24.8933 152.238C24.8933 152.371 27.3699 154.405 27.3699 154.405L27.0603 156.174L25.6009 157.28L26.4411 160.317L41.0653 166.685L45.0162 160.951L47.139 153.226Z" stroke="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M102.278 125.29L99.798 121.634L97.9109 123.226V128.357H95.4343L94.8447 126.411H88.7119L90.0092 128.357L87.2967 130.008L84.9379 126.411L81.2819 122.46L79.4538 120.809L76.0632 121.045L73.8518 124.583H70.9035V126.411L68.8986 129.654H66.304V133.428L64.4169 134.371L62.6479 132.956L56.987 133.428L58.2843 143.099L57.8125 147.344L58.756 148.642L61.2327 148.524L64.4169 146.136L63.4735 143.099H68.073L68.7806 146.136L71.0215 144.396L72.9084 147.109L72.5546 149.703L73.7339 150.882L75.2672 151.236L77.0362 149.703L77.39 159.256L79.5128 160.318L79.277 162.44L83.4048 166.686L84.2893 173.733H81.105V178.598L76.6824 180.101C76.6824 180.101 74.2942 182.401 74.2942 182.667C74.2942 182.932 76.8593 189.389 76.8593 189.389L76.6824 199.649L77.4785 202.745H72.3482L68.073 205.959L73.616 207.256L78.8052 214.45L84.1124 210.441L84.3482 206.077L98.7365 210.441L104.751 205.959L116.309 204.19L117.606 201.713L126.57 203.01L127.749 206.549L132.702 207.728L133.056 200.888L130.579 199.944L131.995 196.996L127.631 188.858L138.599 182.725L139.071 177.89H144.142L146.029 174.706L145.793 169.163L141.665 165.507L138.363 164.445L137.42 160.907L129.164 153.359H125.744L119.375 142.863L121.38 138.027L120.083 136.376L115.292 132.691L113.832 129.86L114.009 128.357L109.115 124.111L102.278 125.29Z" stroke="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M16.6528 122.223L29.0362 116.326L36.4661 110.429L39.5325 114.911L42.127 117.27L48.2598 110.429L52.9772 104.179L51.0903 100.641L56.5154 97.692L58.2844 94.2719H61.8225L64.4171 91.4414V84.1294L57.3409 73.0433L59.9355 67.1465L54.5104 69.5052L52.1517 67.1465H46.7266L48.8495 75.6379L38.7069 78.7043L38.4711 70.9203L33.9895 67.1465L29.0362 71.1564L23.2573 72.0999L16.8886 78.4683L18.4808 80.5912L11.4047 82.7141L8.57409 81.299L3.44393 83.2448L8.04343 93.6823L5.92059 100.758L1.32098 107.127L4.68221 109.958L3.53231 113.319L5.03601 117.211L9.10485 126.41L16.6528 125.525V122.223Z" stroke="#707070"></path
  330. > <path d="M33.9893 67.1465L34.3114 66.7641L33.9956 66.4982L33.6747 66.7579L33.9893 67.1465ZM38.471 70.9204L38.9707 70.9053L38.964 70.6819L38.793 70.5379L38.471 70.9204ZM38.7068 78.7043L38.207 78.7194L38.2268 79.3718L38.8515 79.1829L38.7068 78.7043ZM48.8493 75.6379L48.994 76.1165L49.4499 75.9787L49.3344 75.5166L48.8493 75.6379ZM46.7265 67.1465V66.6465H46.0861L46.2414 67.2678L46.7265 67.1465ZM52.1516 67.1465L52.5051 66.793L52.3587 66.6465H52.1516V67.1465ZM54.5103 69.5052L54.1567 69.8587L54.3974 70.0995L54.7096 69.9637L54.5103 69.5052ZM59.9354 67.1465L60.3931 67.3479L60.9076 66.1787L59.7361 66.688L59.9354 67.1465ZM57.3409 73.0433L56.8832 72.8419L56.7755 73.0868L56.9194 73.3123L57.3409 73.0433ZM64.417 84.1293H64.917V83.9834L64.8385 83.8603L64.417 84.1293ZM64.417 91.4413H63.917V91.8677L64.338 91.9351L64.417 91.4413ZM69.5767 92.267L70.059 92.3987L70.2058 91.8613L69.6557 91.7732L69.5767 92.267ZM67.8372 98.6356L67.3549 98.5038L67.2791 98.7811L67.4807 98.9861L67.8372 98.6356ZM69.5767 100.405L69.2202 100.755L69.5799 101.121L69.9363 100.752L69.5767 100.405ZM72.0829 97.81V97.31H71.8707L71.7233 97.4626L72.0829 97.81ZM75.0461 97.81V98.31H75.1967L75.3223 98.2268L75.0461 97.81ZM82.5203 92.8566L82.5666 92.3587L82.391 92.3424L82.244 92.4398L82.5203 92.8566ZM86.3237 93.2104L86.2774 93.7082L86.5864 93.737L86.7493 93.4728L86.3237 93.2104ZM87.4146 91.4413L87.8401 91.7038L87.9592 91.5107L87.8924 91.294L87.4146 91.4413ZM86.3237 87.9033H85.8237V87.9787L85.8459 88.0506L86.3237 87.9033ZM86.3237 84.2472L85.8661 84.0456L85.8237 84.142V84.2472H86.3237ZM87.4146 81.7706L87.8721 81.9721L87.9918 81.7004L87.8106 81.4653L87.4146 81.7706ZM86.3237 80.3553L85.9566 80.0158L85.6698 80.326L85.9277 80.6606L86.3237 80.3553ZM87.4146 79.176V78.676H87.1959L87.0475 78.8365L87.4146 79.176ZM92.0142 79.176V79.676H92.2902L92.4373 79.4424L92.0142 79.176ZM94.0191 75.9917L94.4422 76.2581L94.5578 76.0744L94.5026 75.8644L94.0191 75.9917ZM92.8397 71.5101L92.3925 71.2865L92.3082 71.4551L92.3561 71.6374L92.8397 71.5101ZM93.4294 70.3308L93.8766 70.5544L93.9967 70.3144L93.863 70.0817L93.4294 70.3308ZM91.8962 67.6624L91.3974 67.6285L91.3871 67.7799L91.4627 67.9115L91.8962 67.6624ZM92.132 64.1981L92.6309 64.232L92.6431 64.0532L92.5389 63.9074L92.132 64.1981ZM88.594 59.2446L88.095 59.2758L88.1039 59.4187L88.1871 59.5352L88.594 59.2446ZM88.476 57.3577L88.2965 56.8911L87.9541 57.0228L87.977 57.3889L88.476 57.3577ZM93.0756 55.5887V55.0887H92.9828L92.8961 55.122L93.0756 55.5887ZM96.7316 55.5887L97.0001 55.1669L96.8772 55.0887H96.7316V55.5887ZM98.0289 56.4142L97.7605 56.8361L98.009 56.9942L98.2678 56.8535L98.0289 56.4142ZM101.228 54.6747L101.467 55.1139L101.728 54.9719V54.6747H101.228ZM101.228 53.2594L100.911 52.873L100.728 53.023V53.2594H101.228ZM102.278 52.397L102.596 52.7835L103.387 52.1338L102.388 51.9092L102.278 52.397ZM97.8519 51.4019L97.3679 51.5274L97.4445 51.8228L97.7423 51.8897L97.8519 51.4019ZM97.4392 49.8098L97.9232 49.6844L97.8389 49.359L97.5058 49.3143L97.4392 49.8098ZM93.4884 49.2791L93.1789 49.6717L93.2863 49.7564L93.4218 49.7746L93.4884 49.2791ZM88.476 45.3282L88.7855 44.9355L88.7398 44.8995L88.6871 44.8749L88.476 45.3282ZM86.3237 44.3257L86.5348 43.8725L86.5265 43.8686L86.518 43.8651L86.3237 44.3257ZM80.6628 41.9376L80.8571 41.4769L80.6402 41.3854L80.4315 41.4943L80.6628 41.9376ZM78.6284 42.999L78.3089 43.3836L78.5648 43.5961L78.8596 43.4423L78.6284 42.999ZM76.8888 41.5541L77.2083 41.1695L77.0357 41.0262L76.814 41.0598L76.8888 41.5541ZM73.675 42.0407L73.3406 42.4125L73.5163 42.5704L73.7498 42.5351L73.675 42.0407ZM69.4293 38.2225L69.0353 38.5304L69.0623 38.565L69.0949 38.5943L69.4293 38.2225ZM63.4145 30.5272L63.8085 30.2193L63.6583 30.0272H63.4145V30.5272ZM56.3383 30.5272L56.1413 30.9867L56.2357 31.0272H56.3383V30.5272ZM51.385 28.4043L51.582 27.9447L51.1111 27.7429L50.9208 28.2186L51.385 28.4043ZM49.2621 33.7114L48.7979 33.5257L48.7405 33.6691L48.774 33.8199L49.2621 33.7114ZM49.9698 36.8957L49.4817 37.0042L49.5451 37.2894L49.8247 37.3742L49.9698 36.8957ZM52.8887 37.7803H53.3887V37.4093L53.0337 37.3018L52.8887 37.7803ZM52.8887 39.9916L53.2887 40.2916L53.3887 40.1582V39.9916H52.8887ZM52.0926 41.053L51.8391 41.4839L52.2244 41.7106L52.4926 41.353L52.0926 41.053ZM50.5889 40.1685L50.1145 40.3266L50.1738 40.5044L50.3354 40.5994L50.5889 40.1685ZM49.616 37.2496L50.0903 37.0915L49.986 36.7788L49.6575 36.7514L49.616 37.2496ZM45.3702 36.8957L45.4118 36.3974L44.9973 36.3629L44.8879 36.7641L45.3702 36.8957ZM44.3088 40.7877L43.8416 40.9657L44.3876 42.399L44.7912 40.9192L44.3088 40.7877ZM41.4783 33.3576L41.9456 33.1796L41.8143 32.8349L41.4462 32.8586L41.4783 33.3576ZM30.5102 34.0652L30.478 33.5663L30.2899 33.5784L30.1567 33.7117L30.5102 34.0652ZM26.7069 37.8687L26.3533 37.5152L26.2523 37.6162L26.2199 37.7553L26.7069 37.8687ZM25.2031 44.3257L24.7161 44.2123L24.5733 44.8257H25.2031V44.3257ZM28.7412 44.3257L29.228 44.4397L29.3717 43.8257H28.7412V44.3257ZM26.7952 52.6403L27.276 52.7777L27.2793 52.766L27.2821 52.7543L26.7952 52.6403ZM23.9647 62.5469L23.894 63.0419L24.3257 63.1035L24.4455 62.6842L23.9647 62.5469ZM19.0114 61.8393L19.0821 61.3443L18.6275 61.2794L18.5242 61.7269L19.0114 61.8393ZM17.95 66.4388L17.4628 66.3264L17.3624 66.7617L17.7836 66.9103L17.95 66.4388ZM23.9647 68.5618L24.455 68.6598L24.5401 68.2346L24.1312 68.0903L23.9647 68.5618ZM23.2571 72.0999L22.7668 72.0018L22.6252 72.7096L23.3377 72.5933L23.2571 72.0999ZM29.036 71.1563L29.1166 71.6498L29.2475 71.6284L29.3506 71.5449L29.036 71.1563ZM55.7634 49.3233L55.9104 48.8454L55.9029 48.8431L55.8952 48.841L55.7634 49.3233ZM58.0632 50.0309L58.5486 50.1509L58.662 49.692L58.2102 49.553L58.0632 50.0309ZM57.0901 53.967L56.9146 54.4352L57.4407 54.6325L57.5755 54.087L57.0901 53.967ZM53.1983 52.5076L52.7957 52.804L52.8837 52.9236L53.0227 52.9757L53.1983 52.5076ZM49.616 47.6428L49.7478 47.1605L48.3606 46.7812L49.2133 47.9392L49.616 47.6428ZM33.6673 67.529L38.1489 71.3029L38.793 70.5379L34.3114 66.7641L33.6673 67.529ZM37.9712 70.9356L38.207 78.7194L39.2066 78.6891L38.9707 70.9053L37.9712 70.9356ZM38.8515 79.1829L48.994 76.1165L48.7047 75.1593L38.5621 78.2257L38.8515 79.1829ZM49.3344 75.5166L47.2116 67.0253L46.2414 67.2678L48.3643 75.7591L49.3344 75.5166ZM46.7265 67.6465H52.1516V66.6465H46.7265V67.6465ZM51.798 67.5001L54.1567 69.8587L54.8638 69.1516L52.5051 66.793L51.798 67.5001ZM54.7096 69.9637L60.1348 67.6051L59.7361 66.688L54.3109 69.0466L54.7096 69.9637ZM59.4778 66.9452L56.8832 72.8419L57.7985 73.2446L60.3931 67.3479L59.4778 66.9452ZM56.9194 73.3123L63.9955 84.3984L64.8385 83.8603L57.7623 72.7743L56.9194 73.3123ZM63.917 84.1293V91.4413H64.917V84.1293H63.917ZM64.338 91.9351L69.4977 92.7607L69.6557 91.7732L64.496 90.9476L64.338 91.9351ZM69.0944 92.1352L67.3549 98.5038L68.3195 98.7673L70.059 92.3987L69.0944 92.1352ZM67.4807 98.9861L69.2202 100.755L69.9332 100.054L68.1937 98.285L67.4807 98.9861ZM69.9363 100.752L72.4425 98.1574L71.7233 97.4626L69.2171 100.057L69.9363 100.752ZM72.0829 98.31H75.0461V97.31H72.0829V98.31ZM75.3223 98.2268L82.7965 93.2733L82.244 92.4398L74.7698 97.3932L75.3223 98.2268ZM82.474 93.3544L86.2774 93.7082L86.37 92.7125L82.5666 92.3587L82.474 93.3544ZM86.7493 93.4728L87.8401 91.7038L86.989 91.1789L85.8981 92.948L86.7493 93.4728ZM87.8924 91.294L86.8015 87.756L85.8459 88.0506L86.9367 91.5887L87.8924 91.294ZM86.8237 87.9033V84.2472H85.8237V87.9033H86.8237ZM86.7813 84.4487L87.8721 81.9721L86.957 81.569L85.8661 84.0456L86.7813 84.4487ZM87.8106 81.4653L86.7197 80.0501L85.9277 80.6606L87.0185 82.0758L87.8106 81.4653ZM86.6907 80.6949L87.7816 79.5155L87.0475 78.8365L85.9566 80.0158L86.6907 80.6949ZM87.4146 79.676H92.0142V78.676H87.4146V79.676ZM92.4373 79.4424L94.4422 76.2581L93.5959 75.7253L91.5911 78.9096L92.4373 79.4424ZM94.5026 75.8644L93.3232 71.3829L92.3561 71.6374L93.5355 76.1189L94.5026 75.8644ZM93.2869 71.7338L93.8766 70.5544L92.9822 70.1072L92.3925 71.2865L93.2869 71.7338ZM93.863 70.0817L92.3297 67.4133L91.4627 67.9115L92.9959 70.5799L93.863 70.0817ZM92.3951 67.6964L92.6309 64.232L91.6332 64.1641L91.3974 67.6285L92.3951 67.6964ZM92.5389 63.9074L89.0008 58.954L88.1871 59.5352L91.7252 64.4887L92.5389 63.9074ZM89.093 59.2134L88.975 57.3265L87.977 57.3889L88.095 59.2758L89.093 59.2134ZM88.6555 57.8244L93.2551 56.0554L92.8961 55.122L88.2965 56.8911L88.6555 57.8244ZM93.0756 56.0887H96.7316V55.0887H93.0756V56.0887ZM96.4632 56.0105L97.7605 56.8361L98.2974 55.9924L97.0001 55.1669L96.4632 56.0105ZM98.2678 56.8535L101.467 55.1139L100.989 54.2354L97.7901 55.975L98.2678 56.8535ZM101.728 54.6747V53.2594H100.728V54.6747H101.728ZM101.545 53.6458L102.596 52.7835L101.961 52.0106L100.911 52.873L101.545 53.6458ZM102.388 51.9092L97.9616 50.9141L97.7423 51.8897L102.169 52.8849L102.388 51.9092ZM98.3359 51.2765L97.9232 49.6844L96.9552 49.9353L97.3679 51.5274L98.3359 51.2765ZM97.5058 49.3143L93.555 48.7835L93.4218 49.7746L97.3727 50.3054L97.5058 49.3143ZM93.7979 48.8864L88.7855 44.9355L88.1665 45.7209L93.1789 49.6717L93.7979 48.8864ZM88.6871 44.8749L86.5348 43.8725L86.1126 44.779L88.2649 45.7814L88.6871 44.8749ZM86.518 43.8651L80.8571 41.4769L80.4684 42.3982L86.1293 44.7864L86.518 43.8651ZM80.4315 41.4943L78.3971 42.5557L78.8596 43.4423L80.8941 42.3809L80.4315 41.4943ZM78.9478 42.6143L77.2083 41.1695L76.5694 41.9388L78.3089 43.3836L78.9478 42.6143ZM76.814 41.0598L73.6001 41.5463L73.7498 42.5351L76.9637 42.0485L76.814 41.0598ZM74.0093 41.6689L69.7636 37.8508L69.0949 38.5943L73.3406 42.4125L74.0093 41.6689ZM69.8232 37.9146L63.8085 30.2193L63.0206 30.8351L69.0353 38.5304L69.8232 37.9146ZM63.4145 30.0272H56.3383V31.0272H63.4145V30.0272ZM56.5352 30.0676L51.582 27.9447L51.188 28.8639L56.1413 30.9867L56.5352 30.0676ZM50.9208 28.2186L48.7979 33.5257L49.7264 33.8971L51.8492 28.59L50.9208 28.2186ZM48.774 33.8199L49.4817 37.0042L50.4579 36.7872L49.7502 33.603L48.774 33.8199ZM49.8247 37.3742L52.7437 38.2588L53.0337 37.3018L50.1148 36.4172L49.8247 37.3742ZM52.3887 37.7803V39.9916H53.3887V37.7803H52.3887ZM52.4887 39.6916L51.6926 40.753L52.4926 41.353L53.2887 40.2916L52.4887 39.6916ZM52.3461 40.622L50.8424 39.7375L50.3354 40.5994L51.8391 41.4839L52.3461 40.622ZM51.0632 40.0103L50.0903 37.0915L49.1416 37.4077L50.1145 40.3266L51.0632 40.0103ZM49.6575 36.7514L45.4118 36.3974L45.3287 37.394L49.5744 37.7479L49.6575 36.7514ZM44.8879 36.7641L43.8264 40.6561L44.7912 40.9192L45.8526 37.0272L44.8879 36.7641ZM44.7761 40.6097L41.9456 33.1796L41.0111 33.5356L43.8416 40.9657L44.7761 40.6097ZM41.4462 32.8586L30.478 33.5663L30.5424 34.5642L41.5105 33.8566L41.4462 32.8586ZM30.1567 33.7117L26.3533 37.5152L27.0604 38.2223L30.8638 34.4188L30.1567 33.7117ZM26.2199 37.7553L24.7161 44.2123L25.6901 44.4392L27.1938 37.9821L26.2199 37.7553ZM25.2031 44.8257H28.7412V43.8257H25.2031V44.8257ZM28.2543 44.2118L26.3084 52.5264L27.2821 52.7543L29.228 44.4397L28.2543 44.2118ZM26.3144 52.503L23.484 62.4095L24.4455 62.6842L27.276 52.7777L26.3144 52.503ZM24.0354 62.0519L19.0821 61.3443L18.9407 62.3343L23.894 63.0419L24.0354 62.0519ZM18.5242 61.7269L17.4628 66.3264L18.4372 66.5513L19.4986 61.9517L18.5242 61.7269ZM17.7836 66.9103L23.7983 69.0333L24.1312 68.0903L18.1164 65.9674L17.7836 66.9103ZM23.4744 68.4637L22.7668 72.0018L23.7474 72.1979L24.455 68.6598L23.4744 68.4637ZM23.3377 72.5933L29.1166 71.6498L28.9555 70.6628L23.1765 71.6064L23.3377 72.5933ZM29.3506 71.5449L34.3039 67.5352L33.6747 66.7579L28.7214 70.7677L29.3506 71.5449ZM55.6164 49.8012L57.9161 50.5088L58.2102 49.553L55.9104 48.8454L55.6164 49.8012ZM57.5778 49.9109L56.6048 53.8471L57.5755 54.087L58.5486 50.1509L57.5778 49.9109ZM57.2657 53.4989L53.3738 52.0394L53.0227 52.9757L56.9146 54.4352L57.2657 53.4989ZM53.6009 52.2111L50.0186 47.3463L49.2133 47.9392L52.7957 52.804L53.6009 52.2111ZM49.4841 48.1251L55.6315 49.8056L55.8952 48.841L49.7478 47.1605L49.4841 48.1251Z" fill="#707070"></path
  331. > <path d="M53.1983 52.5074L52.7957 52.8039L52.8837 52.9234L53.0227 52.9756L53.1983 52.5074ZM49.616 47.6426L49.7478 47.1603L48.3606 46.7811L49.2133 47.9391L49.616 47.6426ZM55.7634 49.3231L55.9104 48.8452L55.9029 48.8429L55.8952 48.8408L55.7634 49.3231ZM58.0632 50.0308L58.5486 50.1508L58.662 49.6919L58.2102 49.5529L58.0632 50.0308ZM57.0901 53.9669L56.9146 54.4351L57.4407 54.6323L57.5755 54.0869L57.0901 53.9669ZM52.0926 41.0538L51.8391 41.4847L52.2244 41.7114L52.4926 41.3538L52.0926 41.0538ZM52.8887 39.9924L53.2887 40.2924L53.3887 40.159V39.9924H52.8887ZM52.8887 37.781H53.3887V37.4101L53.0337 37.3025L52.8887 37.781ZM49.9698 36.8965L50.1148 36.418L49.828 36.3311L49.6162 36.543L49.9698 36.8965ZM49.616 37.2504L49.2624 36.8969L49.0439 37.1154L49.1416 37.4085L49.616 37.2504ZM50.5889 40.1693L50.1146 40.3274L50.1738 40.5052L50.3354 40.6002L50.5889 40.1693ZM53.6009 52.2109L50.0186 47.3461L49.2133 47.9391L52.7957 52.8039L53.6009 52.2109ZM49.4841 48.1249L55.6315 49.8054L55.8952 48.8408L49.7478 47.1603L49.4841 48.1249ZM55.6164 49.801L57.9162 50.5087L58.2102 49.5529L55.9104 48.8452L55.6164 49.801ZM57.5778 49.9108L56.6048 53.8469L57.5755 54.0869L58.5486 50.1508L57.5778 49.9108ZM57.2657 53.4987L53.3738 52.0393L53.0227 52.9756L56.9146 54.4351L57.2657 53.4987ZM52.4926 41.3538L53.2887 40.2924L52.4887 39.6924L51.6926 40.7538L52.4926 41.3538ZM53.3887 39.9924V37.781H52.3887V39.9924H53.3887ZM53.0337 37.3025L50.1148 36.418L49.8247 37.375L52.7437 38.2595L53.0337 37.3025ZM49.6162 36.543L49.2624 36.8969L49.9696 37.6039L50.3234 37.25L49.6162 36.543ZM49.1416 37.4085L50.1146 40.3274L51.0632 40.0111L50.0903 37.0923L49.1416 37.4085ZM50.3354 40.6002L51.8391 41.4847L52.3461 40.6228L50.8424 39.7383L50.3354 40.6002Z" fill="#707070"></path> <path fill-rule="evenodd" clip-rule="evenodd" d="M27.0606 156.176L27.3702 154.407C27.3702 154.407 24.8935 152.373 24.8935 152.24C24.8935 152.107 25.2916 148.304 25.2916 148.304L19.7633 146.137L12.8198 148.923L8.22025 148.171L6.86401 150.648L10.4021 152.063L14.1761 158.432L20.5446 160.083L26.4415 160.319L25.6012 157.282L27.0606 156.176Z" stroke="#707070"></path> </svg></div>
  332.                             </div>
  333.                         </div>
  334.                         <div class="col-md-6 col-lg-3 footer-item">
  335.                             <h4 class="h4-white">Sie möchten sich bei uns bewerben?</h4>
  336.                              <div class="footer_small_font">
  337.                                 <a href="https://www.ds-bremen.com/karriere" target="_blank" rel="noopener">Zu den konzernweiten Stellenangeboten</a>
  338.                              </div>
  339.                         </div>
  340.                     </div>
  341.                     <div class="row second_footer_row_four">
  342.                         <div class="col-md-6 logo">
  343.                             <img src="/media/6c/c4/31/1705523757/EMOVA_multicolor_logo_footer.png"/>
  344.                         </div>
  345.                         <div class="col-md-6 subheading">
  346.                             <span>Energie. So einfach.</span>
  347.                         </div>
  348.                     </div>
  349.                 </div>
  350.             {% endblock %}
  351.         </div>
  352.     </div>
  353.     {% block layout_footer_bottom %}
  354.         <div style="width: 100%; background-color: #16161A; padding-bottom:50px">
  355.             <div class="container" style="background-color: #16161A;">
  356.                 {% block layout_footer_navigation %}
  357.                     <div id="footerColumns" class="almarenaRegular row"
  358.                         class="row footer-columns"
  359.                         data-collapse-footer="true"
  360.                         role="list" >
  361.                         {# {% block layout_footer_navigation_hotline %}
  362.                             <div class="col-md-3 footer-column js-footer-column">
  363.                                 {% block layout_footer_navigation_hotline_headline %}
  364.                                     <div class="footer-column-headline footer-headline js-footer-column-headline js-collapse-footer-column-trigger"
  365.                                         id="collapseFooterHotlineTitle"
  366.                                         {{ dataBsTargetAttr }}="#collapseFooterHotline"
  367.                                         aria-expanded="true"
  368.                                         aria-controls="collapseFooterHotline"
  369.                                         role="listitem"
  370.                                         style="font-size: 45px;">
  371.                                         {{ 'footer.serviceHotlineHeadline'|trans|sw_sanitize }}
  372.                                         {% block layout_footer_navigation_hotline_icons %}
  373.                                             <div class="footer-column-toggle">
  374.                                                 <span class="footer-plus-icon">
  375.                                                     {% sw_icon 'plus' %}
  376.                                                 </span>
  377.                                                 <span class="footer-minus-icon">
  378.                                                     {% sw_icon 'minus' %}
  379.                                                 </span>
  380.                                             </div>
  381.                                         {% endblock %}
  382.                                     </div>
  383.                                 {% endblock %}
  384.                                 {% block layout_footer_navigation_hotline_content %}
  385.                                     <div id="collapseFooterHotline"
  386.                                         class="footer-column-content collapse js-footer-column-content footer-contact"
  387.                                         aria-labelledby="collapseFooterHotlineTitle">
  388.                                         <div class="footer-column-content-inner">
  389.                                             <p class="footer-contact-hotline">
  390.                                                 {{ 'footer.serviceHotline'|trans|sw_sanitize }}
  391.                                             </p>
  392.                                         </div>
  393.                                         <div class="footer-contact-form">
  394.                                             {{ 'footer.serviceContactLink'|trans({
  395.                                                 '%url%': path('frontend.cms.page', { id: config('core.basicInformation.contactPage') })
  396.                                             })|raw }}
  397.                                         </div>
  398.                                     </div>
  399.                                 {% endblock %}
  400.                             </div>
  401.                         {% endblock %} #}
  402.                         {% block layout_footer_navigation_columns %}
  403.                             {% for root in page.footer.navigation.tree %}
  404.                                 {% block layout_footer_navigation_column %}
  405.                                     <div class="col-md-2 footer-column js-footer-column">
  406.                                         {% block layout_footer_navigation_information_headline %}
  407.                                             <div
  408.                                                 class="footer-column-headline footer-headline js-collapse-footer-column-trigger"
  409.                                                 {{ dataBsTargetAttr }}="#collapseFooterTitle{{ loop.index }}"
  410.                                                 aria-expanded="true"
  411.                                                 aria-controls="collapseFooter{{ loop.index }}">
  412.                                                 {% if root.category.type == 'folder' %}
  413.                                                     {{ root.category.translated.name }}
  414.                                                 {% else %}
  415.                                                     <a style="color: #FFFFFF !important; text-decoration: none;" href="{{ category_url(root.category) }}"
  416.                                                     {% if category_linknewtab(root.category) %}target="_blank"{% endif %}
  417.                                                     title="{{ root.category.translated.name }}">
  418.                                                         {{ root.category.translated.name }}
  419.                                                     </a>
  420.                                                 {% endif %}
  421.                                                 {% block layout_footer_navigation_information_icons %}
  422.                                                     <div style="color: #FFFFFF !important; text-decoration: none" class="footer-column-toggle">
  423.                                                         <span class="footer-plus-icon">
  424.                                                             {% sw_icon 'plus' %}
  425.                                                         </span>
  426.                                                         <span class="footer-minus-icon">
  427.                                                             {% sw_icon 'minus' %}
  428.                                                         </span>
  429.                                                     </div>
  430.                                                 {% endblock %}
  431.                                             </div>
  432.                                         {% endblock %}
  433.                                         {% block layout_footer_navigation_information_content %}
  434.                                             <div
  435.                                                 id="collapseFooter{{ loop.index }}"
  436.                                                 class="footer-column-content collapse js-footer-column-content"
  437.                                                 aria-labelledby="collapseFooterTitle{{ loop.index }}">
  438.                                                 <div class="footer-column-content-inner">
  439.                                                     {% block layout_footer_navigation_information_links %}
  440.                                                         <ul class="list-unstyled">
  441.                                                             {% for treeItem in root.children %}
  442.                                                                 {% set category = treeItem.category %}
  443.                                                                 {% set name = category.translated.name %}
  444.                                                                 {# @deprecated tag:v6.5.0 - Use "category.translated.externalLink" directly or category_url function instead. #}
  445.                                                                 {% set externalLink = category.translated.externalLink %}
  446.                                                                 {% block layout_footer_navigation_information_link_item %}
  447.                                                                     <li class="footer-link-item">
  448.                                                                         {% block layout_footer_navigation_information_link %}
  449.                                                                             {% if category.type == 'folder' %}
  450.                                                                                 <span>{{ name }}</span>
  451.                                                                             {% else %}
  452.                                                                                 <a class="footer-link"
  453.                                                                                 href="{{ category_url(category) }}"
  454.                                                                                 {% if category_linknewtab(category) %}target="_blank"{% endif %}
  455.                                                                                 title="{{ name }}">
  456.                                                                                     {{ name }}
  457.                                                                                 </a>
  458.                                                                             {% endif %}
  459.                                                                         {% endblock %}
  460.                                                                     </li>
  461.                                                                 {% endblock %}
  462.                                                             {% endfor %}
  463.                                                         </ul>
  464.                                                     {% endblock %}
  465.                                                 </div>
  466.                                             </div>
  467.                                         {% endblock %}
  468.                                     </div>
  469.                                 {% endblock %}
  470.                             {% endfor %}
  471.                         {% endblock %}
  472.                     </div>
  473.                 {% endblock %}
  474.                  {# <div class="almarenaRegular row" style="padding-top: 35px; padding-bottom:35px; color:white">
  475.                     <div class="col-sm-2">
  476.                         <span>© 2022 Emova</span>
  477.                     </div>
  478.                     <div class="col-sm-10">
  479.                         <div class="row">
  480.                         <div class="col-sm-2">
  481.                         </div>
  482.                         <div class="col-sm-2">
  483.                             <a href="https://www.emova.de/faq">FAQs</a>
  484.                         </div>
  485.                          <div class="col-sm-2">
  486.                             <a href="https://www.emova.de/impressum">Impressum</a>
  487.                         </div>
  488.                           <div class="col-sm-2">
  489.                             <a href="https://www.emova.de/datenschutz">Datenschutz</a>
  490.                         </div>
  491.                          <div class="col-sm-2">
  492.                             <a href="https://www.emova.de/agb">Allgemeine Geschäftsbedingungen</a>
  493.                         </div>
  494.                           <div class="col-sm-2">
  495.                             <a href="https://www.emova.de/whistleblowing-prozess">Whistleblowing-Prozess</a>
  496.                         </div>
  497.                         </div>
  498.                     </div>
  499.                 </div> #}
  500.                 <div class="secondary-footer">
  501.                     <div class="aa-site-footer__link-column">
  502.                         © 2024 Emova
  503.                     </div>
  504.                     <div class="aa-site-footer__link-column">
  505.                         <a class="second-footer-a" target="_blank" href="https://www.emova.de/impressum">Impressum</a>
  506.                         <a class="second-footer-a" target="_blank" href="https://www.emova.de/datenschutz">Datenschutz</a>
  507.                         <a class="second-footer-a" target="_blank" href="https://www.emova.de/agb">Allgemeine Geschäftsbedingungen</a>
  508.                         <a class="second-footer-a" target="_blank" href="https://www.emova.de/widerruf">Widerruf</a>
  509.                         <a class="second-footer-a" target="_blank" href="https://www.emova.de/reklamation">Reklamation</a>
  510.                         <a class="second-footer-a" target="_blank" href="https://www.emova.de/faq">FAQs</a>
  511.                         <a class="second-footer-a" target="_blank" href="https://www.emova.de/whistleblowing-prozess">Whistleblowing-Prozess</a>
  512.                     </div>
  513.                 </div>
  514.             </div>
  515.         </div>
  516.     {% endblock %}
  517. {% endblock %}
  518. <style>
  519. .footer_small_font{
  520.     font-size: 1rem;
  521.     line-height: 1.5em;
  522. }
  523. .hs-button-submit{
  524.     width: 235px;
  525.     background-color: #F74551;
  526.     border-radius: 24px;
  527.     border-color: #F74551;
  528.     color: white;
  529.     font-size: 16px;
  530.     font-weight: 700;
  531.     font-stretch: 100%;
  532.     height: 50px;
  533.     border:hidden;
  534.     text-transform: uppercase;
  535. }
  536. .hs-button-submit:hover{
  537.     background-color: black;
  538.     border-radius: 24px;
  539.     border-color: black;
  540. }
  541. /* Hide the default checkbox */
  542. .footer-bottom .custom-checkbox {
  543.   appearance: none;
  544.   -webkit-appearance: none;
  545.   -moz-appearance: none;
  546.   width: 40px;
  547.   height: 40px;
  548.   border: 2px solid #fff; /* White border */
  549.   outline: none;
  550.   cursor: pointer;
  551.   position: relative;
  552.   border-radius: 5px;
  553. }
  554. /* Create the custom checkbox mark using an SVG background image */
  555. .footer-bottom .custom-checkbox::before {
  556.   content: '';
  557.   display: block;
  558.   width: 45px;
  559.   height: 45px;
  560.   background-image: url('data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'40\' height=\'40\'%3E%3Cg fill=\'%23fff\'%3E%3Cpath d=\'m31.293 10.382 1.414 1.414-16.555 16.556-1.414-1.415z\'/%3E%3Cpath d=\'m14.464 23.817-1.414 1.414-5.657-5.657 1.414-1.414z\'/%3E%3C/g%3E%3C/svg%3E'); /* Updated SVG image data URI */
  561.   background-size: contain;
  562.   background-repeat: no-repeat;
  563.   background-position: center;
  564.   position: absolute;
  565.   top: 50%;
  566.   left: 50%;
  567.   transform: translate(-50%, -50%) scale(0); /* Start as invisible */
  568.   transition: transform 0.3s ease;
  569. }
  570. /* Show the custom checkbox mark when checked */
  571. .footer-bottom .custom-checkbox:checked::before {
  572.   transform: translate(-50%, -50%) scale(1); /* Scale to make it visible */
  573. }
  574. /* Style the container to position the text */
  575. .footer-bottom .checkbox-container {
  576.   display: flex;
  577. }
  578. /* Style the text */
  579. .footer-bottom .checkbox-container p {
  580.   margin-left: 10px; /* Adjust the spacing between checkbox and text as needed */
  581.   color: #fff; /* White text color */
  582. }
  583. .color-white{
  584.      color: white !important;
  585. }
  586. .inputZipCode{
  587.     width: 100%;
  588.     background: transparent 0 0 no-repeat padding-box;
  589.     border: 1px solid white;
  590.     border-radius: 25px;
  591.     opacity: 1;
  592.     font-family: var(--almarena-display);
  593.     letter-spacing: 0.32px;
  594.     color: white;
  595.     padding: 5px 10px 5px 10px;
  596. }
  597. .InputMail{
  598.     width: 100%;
  599.     background: transparent 0 0 no-repeat padding-box;
  600.     border: 1px solid white;
  601.     border-radius: 25px;
  602.     opacity: 1;
  603.     font-family: var(--almarena-display);
  604.     letter-spacing: 0.32px;
  605.     color: white;
  606.     padding: 10px 26px;
  607. }
  608. .second_footer_row_one{
  609.     border-bottom:1px solid #707070;
  610.     text-align: left;
  611.     font-family: var(--almarena-display);
  612.     letter-spacing: 1.2px;
  613.     color: #FFFFFF;
  614.     opacity: 1;
  615.     padding-bottom: 20px;
  616. }
  617. .second_footer_row_two{
  618.     text-align: left;
  619.     font-family: var(--almarena-display);
  620.     letter-spacing: 0;
  621.     color: #FFFFFF;
  622.     opacity: 1;
  623.     padding-top: 30px;
  624. }
  625. .second_footer_padding{
  626.     padding-top: 35px;
  627.     padding-bottom: 35px;;
  628. }
  629. </style>