/* Google importeret font */
    @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
    @import url("https://fonts.googleapis.com/css2?family=Creepster&display=swap");

    /* Ret disse variabler til for at ændre udseende af template */
    :root {
        /* Colours */
        --color-primary: 218,202,169;
        --color-secondary: 218,202,169;
        --color-tertiary: 255,255,255;
        --color-text: 218,202,169;
        --color-text-gradient: linear-gradient(
            45deg,
            rgb(var(--color-primary)),
            rgb(var(--color-secondary)) 20%
        );
        --color-site-bg: 45,82,91;
        --color-alternative-bg: 0,6,106;

        /* Site */
        --site-bg: rgb(var(--color-site-bg));
        --site-color: rgb(var(--color-text));
        --max-width: 1800px;
        --locations-pattern-bg: url("/horrordrivethru/pattern.png");
        --locations-pattern-bg-size: unset;

        /* Header */
        --header-color: white;
        --header-overlay: rgb(var(--color-secondary));

        /* Fonts, Typography */
        --ff-body: "Arial", sans-serif;
        --ff-heading: "Hiragino Sans", sans-serif;
        --ff-heading-weight: 900;
			
			/* YouTube splats */
        --youtubesplat: none; /* none eller block for at vise eller skjule splats ved YouTube video */
			
			
    }

html,
body {
    margin: 0;
    overflow-x: hidden;
    width: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--ff-body);
    background-color: var(--site-bg);
    color: var(--site-color);
    font-size: 16px;
    line-height: 28px;
}

a {
    color: rgb(var(--color-tertiary));
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--ff-heading);
    color: rgb(var(--color-text));
    font-weight: 400;
    font-style: normal;
    margin-top: 0;
    text-transform: uppercase;
}

h2 {
    font-size: 35px;
    line-height: 40px;
}

.site {
    margin: auto;
    width: 100%;
}

.text-gradient {
    display: inline-block;
    flex: 0;
    background-image: var(--color-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400%;
    background-position: 0%;
}


.header {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--header-color);
    position: relative;
    background-color: var(--site-bg);
    margin-bottom: 140px;
}

.header:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--site-bg);
    opacity: 0.24;
}

.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.header:after {
    /* Gradient fade out */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg,
            rgba(var(--color-site-bg), 0) 0%,
            rgba(var(--color-site-bg), 1) 100%);
}


.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: var(--max-width);
    width: 100%;
    margin-top: 130px;
    padding-bottom: 100px;
    padding: 0 20px 100px 20px;
}

.header-content img {
    width: 100%;
    max-width: 842px;
    max-height: 597px;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .header-content img {
        max-width: 240px;
        max-height: 240px;
    }
}

.header-content p {
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 660px;
    text-align: center;
    margin-bottom: 40px;
}

.header-date {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
}

.btn {
    background-color: rgb(var(--color-primary));
    padding: 15px 50px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-decoration: none;
}


.columns {
    position: relative;
    max-width: 1220px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    gap: 70px;
    display: grid;
    margin-bottom: 70px;
    grid-template-columns: 1fr;
}


@media (min-width: 768px) {
    .columns {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "image content";

    }

    .columns.image-align-right {
        grid-template-areas: "content image";
    }

    .columns-content {
        grid-area: content;
    }

    figure.columns-image {
        grid-area: image;
    }
}

@media (min-width: 960px) {
    .columns {
        gap: 100px;
        margin-bottom: 140px;
    }
}


figure.columns-image {
    width: 100%;
    margin: 0;

}

.columns-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.youtube-video {
    margin-bottom: 70px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 920px;
    padding: 0 20px;
}

.youtube-video iframe {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 16/9;
}

@media (min-width: 960px) {
    .youtube-video {
        margin-bottom: 180px;
    }
}

@media (min-width: 960px) {
    .youtube-video::before {
        content: '';
				display: var(--youtubesplat);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='361' height='440' viewBox='0 0 361 440' fill='none'%3E%3Cpath d='M149.814 438.027C149.814 436.155 152.546 429.577 154.975 432.107C158.466 435.547 149.814 443.694 149.814 438.027ZM73.465 392.792C67.5959 396.688 64.8637 401.697 57.1732 401.697C50.3428 401.697 54.5928 391.122 45.2832 397.295C44.0689 392.994 51.9618 394.867 49.0273 390.465C46.8011 389.554 46.1939 388.086 47.1047 386.012C47.5094 384.545 50.6463 381.914 49.3815 380.598C41.6403 373.059 64.5602 368.657 64.5602 366.886C64.7119 366.886 66.8876 373.362 69.0126 369.112C71.7447 369.112 74.1227 371.541 74.6287 374.02C74.9829 375.488 75.4382 392.792 73.465 392.792ZM195.755 388.339C193.781 392.337 193.427 393.5 189.278 393.5C187.255 393.5 184.421 393.045 182.802 394.614C180.121 397.397 179.969 392.64 176.528 396.081C174.656 397.953 173.796 396.435 172.076 396.435C172.076 393.652 166.004 390.414 164.284 388.845C161.552 386.265 158.87 382.976 157.555 379.384C155.734 374.374 156.037 367.24 158.87 362.737C160.742 359.701 162.21 358.031 165.397 356.412C167.876 356.412 169.091 358.385 169.091 354.591C169.091 349.885 171.57 353.477 174.302 353.477C177.692 353.477 175.719 348.114 180.778 350.138C190.29 353.933 206.076 359.448 203.951 371.996C200.662 371.996 200.713 388.289 195.755 388.289M100.888 391.983C103.013 394.108 100.078 398.206 97.7509 395.879C94.8669 392.944 100.888 390.11 100.888 391.983ZM154.975 389.756C154.975 391.983 154.165 395.474 151.079 393.652C144.501 389.706 154.975 385.253 154.975 389.756ZM240.228 234.066C244.478 234.673 250.044 236.09 251.966 240.442C254.193 245.501 250.6 247.475 250.6 251.877C257.734 257.19 246.249 268.979 240.987 270.396C241.24 269.181 241.443 267.916 241.746 266.702C235.826 266.702 233.448 280.212 228.692 283.197C225.556 285.17 223.431 283.703 220.294 283.703C216.802 283.703 219.383 287.245 215.841 283.703C210.174 294.986 200.915 267.208 194.844 275.405C191.555 279.807 197.171 280.06 199.145 279.655C205.671 278.188 206.177 283.753 206.177 288.864C207.139 288.661 208.151 288.408 209.163 288.105C208.859 289.775 209.365 290.989 210.63 291.849C210.63 285.423 222.52 292.355 225.454 293.316C227.984 292.507 229.704 282.944 232.133 282.944C232.133 284.765 230.666 285.828 230.666 287.397C234.005 287.397 236.889 290.129 235.422 293.569C234.056 296.808 231.425 294.834 229.148 294.834C224.291 299.692 228.439 302.677 233.6 299.287C232.791 299.287 232.184 314.112 231.779 315.175C230.767 317.907 227.175 330.455 229.907 330.455C234.562 330.455 232.133 324.535 235.118 324.535C236.94 324.535 239.874 330.607 241.594 327.116C243.315 323.675 244.984 320.842 249.184 320.842C254.597 320.842 253.383 326.256 255.103 329.747C260.365 329.747 255.913 331.417 256.773 336.578C257.127 338.703 258.038 340.98 259.404 342.599C261.63 345.23 259.455 345.635 260.618 348.62C261.377 350.745 264.109 350.391 265.88 350.644C270.08 351.352 263.806 354.692 263.755 354.844C262.035 357.829 265.88 359.043 264.413 361.978C262.743 365.368 266.234 365.216 266.234 367.544C266.234 369.871 261.074 367.797 261.074 371.237C261.074 374.273 261.58 374.779 258.999 377.613C252.523 384.747 243.466 386.872 234.207 385.506C229.249 384.798 231.02 388.137 227.934 390.667C224.948 393.096 224.898 388.896 226.264 387.176C229.451 383.128 221.457 379.586 218.118 381.256C214.627 383.027 215.892 379.384 215.892 377.916C215.892 374.729 212.603 372.907 209.972 371.996C213.362 368.657 207.847 367.948 206.279 367.19C203.395 365.722 211.439 361.725 211.439 359.397C211.439 355.603 206.279 360.207 206.279 356.412C207.645 354.388 211.439 356.868 211.439 353.477C209.264 351.251 213.21 348.822 211.844 346.09C211.136 345.584 210.427 345.129 209.618 344.775C208.505 343.105 209.972 341.132 209.972 339.411C209.972 342.346 200.207 336.072 199.6 335.718C195.552 335.718 200.865 346.09 194.389 346.09C190.898 346.09 191.454 340.676 189.127 339.057C184.269 335.768 181.689 346.596 181.133 349.025C182.701 349.025 181.436 345.23 181.284 344.876C179.716 342.346 177.186 341.536 174.403 341.182C164.841 339.867 168.028 345.078 162.615 350.492C162.615 345.635 171.064 337.944 161.856 335.718C159.376 335.718 153.305 339.006 150.725 336.426C150.725 332.226 158.921 335.718 158.921 331.973C154.975 331.973 156.644 329.949 152.85 332.985C149.105 335.971 146.879 329.747 144.097 329.747C145.918 327.976 148.448 326.964 150.775 326.003C150.775 325.244 147.841 324.788 149.864 323.422C151.079 322.613 153.356 322.916 153.76 324.485C157.707 314.719 151.382 309.811 144.855 304.499V305.258C138.632 305.258 127.096 300.805 122.695 296.403C117.23 290.938 133.724 294.834 135.445 295.593C141.213 298.275 148.144 299.844 154.418 297.769C156.796 296.96 154.57 283.855 152.293 282.286C156.998 277.581 160.591 277.125 166.359 277.125C165.954 275.911 165.701 274.696 165.6 273.431C165.903 274.545 166.409 275.506 167.067 276.417C168.079 276.063 168.585 275.354 168.534 274.19C168.838 274.19 169.9 274.949 170.052 274.949C170.052 268.574 168.787 269.232 164.841 265.285C165.6 267.512 163.93 268.473 161.856 266.398C159.022 265.892 164.841 260.883 164.841 265.285C164.841 260.934 169.698 261.946 172.278 261.592C172.278 259.972 163.626 258.05 162.463 257.695C154.064 255.368 157.909 261.389 154.924 263.565C150.168 266.955 147.79 271.509 141.87 273.482C137.367 273.482 132.965 272.723 128.513 272.723H130.031C130.031 271.711 121.43 267.36 120.317 266.247C117.837 263.818 111.665 255.419 114.903 251.826C117.686 248.79 119.861 248.79 118.141 244.034C116.623 239.834 117.584 240.846 120.367 240.846C124.87 240.846 127.754 235.129 127.754 231.233C127.754 226.881 125.477 228.247 130.082 225.515C132.409 224.149 134.534 222.53 136.254 220.455C139.442 216.661 137.721 212.107 135.9 208.211C135.495 207.401 128.564 192.626 132.207 192.626C140.201 196.624 139.492 208.362 146.98 212.613C150.168 211.803 155.379 210.336 156.948 207.047C158.314 204.163 155.126 204.062 155.126 201.481C155.126 193.993 163.424 199.457 166.257 197.787C167.876 196.219 164.841 192.626 167.775 192.626C170.71 192.626 169.293 196.371 170.76 197.787C172.987 195.612 175.972 198.546 177.439 200.014C177.894 199.255 178.4 198.496 178.906 197.787C179.918 197.99 180.88 198.192 181.891 198.546C181.891 195.511 181.487 192.677 181.487 189.641C181.487 186.352 179.665 185.897 179.665 182.962C180.627 183.974 181.639 184.936 182.65 185.948C184.472 184.885 186.445 184.43 188.57 184.48C191.555 184.48 192.82 191.159 198.234 191.159C199.6 189.844 200.46 185.391 198.993 183.924C195.401 180.281 198.993 180.787 198.993 176.334C198.993 178.712 204.66 182.001 205.671 184.531C209.719 183.772 212.907 179.319 216.752 179.319C219.029 179.319 225.606 183.114 222.672 185.998C220.344 188.376 224.038 191.969 224.898 194.144C226.517 194.144 225.859 191.311 228.49 192.272C231.02 193.284 233.499 194.6 236.029 195.612C240.228 191.463 242.404 196.27 245.085 200.419C246.502 202.645 247.919 204.922 249.032 207.351C249.841 209.172 247.868 209.678 247.868 211.196C249.943 213.776 248.526 216.104 249.386 218.583C244.782 221.72 247.16 221.012 247.16 224.503C244.832 224.503 241.24 228.247 239.773 226.73C240.532 228.399 241.493 229.867 242.758 231.182C241.999 232.194 241.291 233.155 240.532 234.117M14.2175 383.178C14.2175 389.554 5.46442 389.756 0.860214 390.616C-3.99697 385.759 12.9526 378.321 14.2175 383.178ZM76.4501 369.821C76.4501 368.758 78.7269 367.797 76.096 366.835C73.5156 365.975 77.715 362.686 76.8549 360.561C74.3757 354.641 74.1227 353.933 80.9025 349.784C80.9025 340.98 84.3936 348.924 87.9353 345.331C93.1467 340.17 97.5991 341.435 103.873 344.572C104.379 343.307 104.885 342.093 105.34 340.828V342.346C111.715 342.346 107.566 342.397 107.566 346.799C107.566 350.593 113.183 350.087 115.156 348.165C122.29 341.435 131.448 327.521 142.376 327.521C142.376 335.11 125.427 345.078 120.215 349.328C116.674 352.213 112.778 353.983 113.739 358.942C114.245 361.826 119.406 361.118 119.406 362.332C119.406 366.633 116.421 362.737 115.51 364.103C114.093 366.228 112.677 368.353 111.26 370.478C109.843 372.654 108.427 374.779 107.01 376.904C105.239 379.535 105.34 373.615 103.316 378.169C102.557 379.89 103.468 381.306 102.406 383.077C100.837 382.521 99.5723 381.509 98.7122 380.092C97.1944 381.155 95.5753 381.812 93.7538 382.065C88.6943 382.926 84.2925 381.458 82.3698 376.398C80.9025 377.764 79.1823 378.473 77.2091 378.625C77.8668 377.613 80.1436 375.336 80.1942 374.223C80.1942 371.389 76.5007 372.604 76.5007 369.77M123.909 349.784C130.233 339.209 141.617 348.114 137.519 358.335C136.355 361.219 138.48 369.466 131.346 364.862C125.68 361.219 123.909 356.311 123.909 349.784ZM148.397 342.346C145.969 348.873 134.281 344.167 137.823 337.387C139.239 334.706 143.54 334.554 145.766 335.819C149.46 337.944 148.397 339.057 148.397 342.346ZM221.761 335.667C211.794 335.667 221.761 344.775 221.761 335.667V335.667ZM224.695 334.908C226.365 333.744 226.618 332.53 225.454 331.214C224.493 331.822 223.076 333.188 222.469 334.2C223.228 334.453 223.987 334.706 224.695 334.959M243.972 300.147C246.755 301.21 250.6 305.055 250.6 308.293C250.6 310.823 244.276 301.159 243.972 300.147ZM124.668 306.826C124.668 309.862 112.828 308.648 111.665 305.764C109.034 299.287 122.897 305.511 124.668 306.826ZM275.089 280.11C280.148 280.11 287.535 286.081 282.678 291.343C277.264 297.213 273.419 290.281 269.928 286.789C272.559 285.777 272.458 281.831 275.089 280.11ZM353.664 283.855C353.664 280.971 354.979 275.253 359.229 278.643C364.289 282.691 357.56 287.751 353.664 283.855ZM148.347 278.643C148.347 281.932 142.275 283.753 140.15 282.337C141.213 279.706 146.525 277.479 148.347 278.643ZM176.883 265.69C172.228 265.69 175.365 268.827 177.54 271.003C178.856 272.318 177.237 272.774 176.528 273.482C176.528 276.063 179.412 277.024 181.436 277.429C183.915 277.935 187.71 278.643 190.088 277.429C192.567 276.214 192.82 272.065 190.392 270.699C185.838 268.169 181.335 270.547 176.883 265.69ZM178.755 274.19C178.755 265.032 186.142 274.19 178.755 274.19V274.19ZM252.118 222.327C255.913 218.988 256.975 215.649 262.49 215.649C266.234 215.649 271.041 220.152 271.851 223.592C274.836 236.343 254.344 240.846 254.344 231.233C250.803 231.992 252.118 225.06 252.118 222.378M300.285 180.837C303.27 180.837 305.497 179.319 306.205 176.385C308.026 178.206 313.592 177.65 313.794 179.724C313.997 182.001 315.768 181.799 317.69 181.394C319.815 180.938 319.36 182.305 321.738 183.822C326.443 186.808 322.345 189.085 325.431 192.525C328.417 195.915 326.544 202.038 324.521 205.428C321.788 210.083 316.931 213.017 312.074 214.94C310.05 214.94 303.372 213.27 302.107 214.535C303.068 213.523 294.619 211.702 293.657 211.297C288.648 209.273 294.113 202.341 286.877 202.341C286.877 199.305 290.773 200.064 289.559 196.725C288.8 195.662 288.193 194.6 287.636 193.436C287.636 191.665 289.863 191.007 289.863 188.983C290.976 185.543 295.226 175.879 300.235 180.837M86.8222 209.779C86.8222 217.268 75.0335 211.145 73.212 207.401C68.1019 197.029 86.3669 209.779 86.8222 209.779ZM346.226 206.086C347.491 204.821 357.357 199.305 357.357 203.859C357.357 206.187 347.795 207.654 346.226 206.086ZM106.099 193.487C106.099 196.725 102.052 198.395 99.2688 194.802C94.0068 187.971 103.418 188.073 106.099 193.487ZM69.0632 187.567C66.9381 189.742 57.9321 188.073 57.9321 184.632C57.9321 181.191 69.0632 184.075 69.0632 187.567ZM266.184 186.099C268.41 183.165 269.776 180.837 273.065 179.066C275.19 177.852 282.223 174.259 279.895 180.078C278.529 183.418 267.752 191.716 266.184 186.099ZM156.492 186.099C152.04 186.099 142.73 180.129 148.751 174.968C155.076 169.604 167.118 175.271 169.091 183.114C166.713 183.114 164.487 182.254 163.171 180.179C161.046 182.76 159.984 185.239 156.492 186.099ZM223.936 157.208C227.377 157.208 229.198 154.982 232.993 156.297C236.585 157.512 238.457 160.294 240.886 162.976C243.719 166.063 241.645 176.334 236.181 177.65C231.728 178.763 217.258 175.373 219.838 168.845C221.002 166.012 219.484 167.328 219.484 165.354C219.484 162.015 223.936 160.193 223.936 157.208ZM211.338 175.777C211.035 174.563 211.338 173.551 212.097 172.792C214.627 173.855 215.841 174.512 215.841 177.245C214.121 177.346 212.654 176.891 211.389 175.777M191.403 173.5C185.231 173.5 180.323 164.241 188.064 164.241C189.734 164.747 196.362 173.5 191.403 173.5ZM218.067 163.128C218.067 166.164 216.398 169.301 215.133 172.033C209.365 172.033 218.067 155.235 218.067 163.128ZM201.017 166.822C200.561 166.619 200.055 166.366 199.549 166.113C200.966 165.202 201.371 161.661 203.243 161.661C206.177 161.661 201.674 166.619 201.017 166.822ZM160.237 151.288C160.237 159.282 149.004 146.127 147.992 143.546C146.677 140.055 149.308 138.689 152.445 139.853C156.594 141.523 159.376 147.19 160.237 151.237M218.067 136.412C220.8 136.412 225.809 126.647 230.514 133.983C236.636 143.597 230.16 146.026 221.811 146.026C225.96 150.276 218.523 156.601 219.686 147.948C219.788 147.291 221.66 145.52 221.811 145.267C218.675 143.749 218.067 139.448 218.067 136.362M278.124 150.428C279.44 146.026 281.818 143.04 286.27 141.523C286.27 145.166 281.464 151.642 278.124 150.428ZM223.987 108.937C223.987 102.461 232.892 102.056 232.892 108.128C232.892 112.833 223.987 113.188 223.987 108.937ZM86.4681 104.08C86.4681 109.848 74.4769 97.0469 78.6763 97.0469C82.3698 94.9218 85.7091 102.056 86.4681 104.08ZM215.791 83.6891C215.791 78.3763 224.392 73.1141 226.163 79.793C228.439 88.3441 220.648 87.0285 222.064 93.5051C222.672 96.2879 222.57 99.4756 221.71 102.208C220.901 104.637 216.701 105.547 216.297 102.36C215.538 95.6808 215.74 90.368 215.74 83.6385M72.7567 30.4094C72.7567 32.7875 74.4769 27.3229 74.5275 27.2723C76.1466 25.299 77.5126 28.942 75.337 29.6504C71.2894 31.0166 77.462 37.9991 78.2716 39.517C80.346 43.6155 76.7031 46.3477 78.6763 49.6872C75.3876 49.6872 73.7686 52.6725 69.9739 53.7351C64.0542 55.4048 59.0958 49.333 56.6166 44.678C54.3398 40.4278 54.3398 35.621 57.7297 31.8767C61.1702 28.0819 68.1524 30.4094 72.7061 30.4094M144.602 34.8114C144.602 28.2843 150.522 37.7967 150.927 39.6182C153.052 49.4848 145.614 37.4931 144.602 34.8114ZM66.837 12.5989C70.3281 9.15823 72.8578 18.1141 73.5156 19.9862C73.5156 24.4388 66.837 15.5842 66.837 12.5989ZM122.442 0C126.843 0 128.867 5.46458 123.909 6.67893C123.555 6.37535 115.965 0 122.442 0Z' fill='%23DF0000'/%3E%3C/svg%3E");
        background-size: contain;
        width: 360px;
        height: 440px;
        position: absolute;
        z-index: -1;
        bottom: 0;
        left: 0;
        transform: translate(-55%, 25%);
    }

    .youtube-video::after {
        content: '';
				display: var(--youtubesplat);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='276' height='452' viewBox='0 0 276 452' fill='none'%3E%3Cpath d='M117.322 451.78C114.609 451.12 117.835 448.994 119.889 449.434C122.162 450.021 119.595 452.88 117.322 451.78ZM186.762 431.841C189.109 431.841 190.135 431.694 191.528 433.087C193.142 434.7 195.195 436.459 195.855 438.732C197.541 444.596 191.162 444.523 191.162 448.261C188.815 447.455 187.935 448.701 185.516 448.408C182.289 447.968 181.116 445.402 180.309 442.617C179.796 440.711 178.77 440.491 179.063 438.292C180.236 434.773 182.729 431.841 186.689 431.841M2.56658 440.124C-0.58645 441.737 -1.39304 437.559 3.00654 437.559C2.85988 438.365 2.85988 439.391 2.56658 440.124ZM123.115 421.285C123.115 413.075 132.574 421.871 123.775 423.191C123.922 422.385 123.702 421.798 123.115 421.285ZM228.778 404.132C228.778 401.712 231.344 403.179 230.611 404.791C229.878 404.791 229.365 404.132 228.778 404.132ZM51.9885 393.209C54.3349 393.209 54.7749 391.963 56.9013 392.329C61.0076 392.989 58.8811 394.749 57.4146 396.874C56.3147 398.487 52.7951 400.026 51.0352 398.707C48.1022 396.508 51.9885 395.701 51.9885 393.282M64.014 391.23C64.014 388.957 65.9938 387.491 66.8004 390.277C65.8471 390.423 64.8939 390.717 64.014 391.23ZM188.082 372.904C190.575 372.904 194.095 372.61 196.368 374.076C199.961 376.422 200.181 382.287 197.101 385.072C194.095 387.858 189.695 387.858 187.055 384.412C183.536 379.721 188.082 377.082 188.082 372.904ZM151.346 383.093C152.959 383.093 154.939 383.826 155.525 385.439C154.425 385.439 151.346 384.632 151.346 383.093ZM149.732 380.527C148.632 384.999 138.587 385.952 142.913 379.574C144.526 377.155 146.726 375.469 149.732 375.469C153.325 375.469 152.079 379.648 149.732 380.601M202.234 378.328C197.981 375.103 207.807 369.165 207.807 376.202C207.807 379.281 204.214 382.14 202.234 378.328ZM15.032 358.316C21.0448 361.101 14.1521 365.353 10.2658 364.4C4.76637 363.007 11.1457 356.41 15.032 358.316ZM154.645 182.53C155.818 185.902 158.312 187.808 160.731 190.227C163.371 192.866 159.118 194.772 159.118 197.924C160.145 197.631 161.245 197.484 162.344 197.484C162.344 198.804 160.951 197.704 160.218 198.364C161.978 200.123 163.078 201.223 165.351 200.49C165.351 200.49 164.838 202.689 164.911 202.322V202.762C166.817 202.322 167.331 202.762 168.357 202.762C168.211 203.935 168.944 207.674 170.484 207.674C172.464 207.674 170.997 197.704 176.496 197.704C181.996 197.704 166.304 207.16 175.103 204.888C175.103 206.867 172.61 207.82 172.17 209.653C171.73 211.852 173.05 211.412 172.537 213.318C170.777 219.622 180.163 212.218 180.896 215.957C178.256 216.544 175.69 217.203 173.05 217.79C173.93 218.449 174.81 219.182 175.617 219.916C175.397 219.769 173.417 219.256 173.05 219.256C173.05 219.989 172.537 223.214 173.637 223.654C175.983 224.607 177.01 224.167 179.21 224.754C181.116 225.267 183.169 228.566 179.796 228.566C176.643 228.566 175.543 225.194 172.61 224.167C172.39 225.413 171.877 226.586 171.217 227.613C174.37 227.613 175.25 234.063 178.183 235.236C179.943 235.896 182.436 234.503 183.756 236.263C185.662 238.755 181.263 239.268 179.576 238.828C175.983 237.875 175.323 232.891 171.73 232.304C167.404 232.304 163.884 237.069 160.585 239.268C162.271 241.76 163.298 239.928 164.984 241.101C164.984 242.567 167.037 242.054 167.037 242.713C167.037 244.913 166.377 246.819 165.717 248.944C164.838 252.097 165.571 254.369 169.384 254.369C171.657 254.369 172.683 253.123 174.223 251.437C175.983 249.531 177.596 247.625 179.356 245.719C182.069 242.713 183.976 246.525 182.876 248.871C181.189 252.17 180.676 248.871 178.256 250.997C176.79 252.316 173.637 254.955 173.637 257.155C177.596 256.422 181.556 256.128 185.516 255.689C186.395 255.689 187.129 255.395 187.789 254.882C189.182 253.489 189.842 253.929 190.795 253.929C192.115 253.929 194.095 256.202 195.781 256.715C198.054 257.375 202.014 255.688 203.627 257.888C203.92 258.841 204.214 259.794 204.434 260.82C205.387 262.652 207.88 263.972 209.64 264.852C211.473 265.805 215.799 266.978 215.213 269.69C214.186 274.381 219.539 279.146 219.539 283.911C223.205 283.911 226.358 286.037 228.338 289.702C227.238 290.289 226.212 290.802 225.112 291.315C224.452 290.875 223.719 290.362 223.059 289.922C219.979 289.922 220.419 294.98 222.105 294.98C225.698 294.98 231.271 286.403 233.984 291.461C236.844 296.886 232.298 298.645 227.825 296.52C226.725 296.006 223.205 293.294 223.939 296.886C224.378 298.865 225.038 301.651 227.458 300.331C226.945 300.991 228.558 301.284 226.505 301.284C226.505 302.897 229.145 301.284 230.318 301.724C230.685 301.871 233.838 303.483 232.738 303.19C235.157 303.557 238.017 304.436 238.53 307.149C236.184 307.149 230.391 307.809 230.391 311.107C236.991 311.107 232.444 318.731 231.051 320.637C230.611 321.223 232.591 326.721 233.031 327.088C234.498 328.261 241.097 330.9 241.097 332.952C240.657 332.952 240.144 333.392 239.704 333.392C239.704 333.612 245.936 333.392 244.103 335.225C243.003 336.324 238.97 334.712 238.09 333.832C238.457 333.685 238.75 333.465 239.044 333.099C238.09 333.099 228.851 327.161 228.851 331.266C229.878 331.266 237.211 332.512 237.211 333.832C233.838 333.832 228.998 331.559 226.945 333.832C224.452 336.691 222.692 338.303 225.332 340.503C228.338 340.942 237.211 342.115 237.211 346.294C235.084 346.294 234.497 344.681 232.591 344.681C229.365 344.681 225.698 341.236 223.059 339.55C223.059 340.283 222.912 340.429 222.619 339.99C223.499 342.189 225.992 343.655 224.378 346.294C221.812 350.399 225.258 351.132 227.751 352.671C230.098 354.211 229.658 356.483 226.798 356.483C223.572 356.483 225.625 354.357 224.672 352.818C223.719 351.205 220.052 349.446 220.052 352.745C220.052 355.53 222.839 356.556 221.225 359.562C219.759 362.348 216.313 359.562 214.039 360.075C211.62 360.662 209.86 361.028 207.807 360.662C206.047 360.662 205.974 355.97 203.847 355.97C202.821 355.97 201.941 356.483 200.841 356.483C200.841 358.682 192.628 358.169 191.455 358.023C187.495 357.436 185.956 359.562 182.583 357.803C179.649 356.263 176.863 354.431 174.223 352.451C173.563 351.938 169.457 347.247 169.457 351.132C172.61 351.132 175.47 352.891 171.804 355.457C170.41 356.41 168.797 356.996 167.111 357.436C164.031 357.436 165.937 354.651 165.937 353.038C164.251 352.745 159.411 351.352 159.411 354.211C159.411 355.75 159.631 356.63 161.831 357.363C169.09 359.782 157.505 366.819 156.112 363.447C155.598 362.348 156.405 359.562 156.845 358.169C156.845 354.064 152.005 355.604 152.592 356.41C155.085 360.662 148.926 358.096 148.999 358.023C147.459 358.829 146.799 353.698 144.16 353.698C141.666 353.698 139.027 354.284 136.754 355.237C134.334 356.263 134.114 361.834 132.354 361.834C130.814 361.834 129.788 358.462 130.154 357.29C131.474 353.404 127.588 352.598 124.948 352.085C124.948 353.698 120.988 355.384 119.742 354.651C117.469 353.184 117.029 347.54 113.436 352.085C111.383 354.724 110.869 353.404 109.77 351.352C109.11 350.032 106.103 345.634 106.103 345.121C106.617 344.828 107.13 344.461 107.496 343.948C106.763 343.142 106.103 342.335 105.443 341.529C104.563 340.723 103.39 341.456 102.144 341.456C101.117 344.021 93.9311 349.886 91.438 350.326C93.6378 343.875 104.857 343.215 99.2839 335.005C97.8907 333.026 97.3041 334.272 95.6176 335.225C92.4646 337.497 89.3849 338.523 85.6452 339.183C85.7919 337.424 87.2584 334.272 87.2584 332.879C87.2584 331.633 86.2318 330.973 87.845 329.873C88.7982 329.214 93.2711 328.041 93.2711 327.088C93.2711 324.229 85.5719 330.753 85.5719 326.648C85.5719 323.203 93.9311 322.616 89.0182 317.778C86.6718 315.432 83.2254 317.778 80.2191 315.506C80.8057 314.479 81.4656 313.453 82.0522 312.5C80.879 312.06 80.2191 311.254 80.2191 309.934C82.1989 308.028 83.5188 308.542 85.5719 309.934C85.3519 308.688 86.0852 307.442 86.0852 306.709C86.0852 306.489 79.3392 301.211 83.8854 300.771C85.1319 300.698 85.7185 298.939 84.472 298.352C82.5655 297.472 81.9789 297.619 79.7791 297.619C78.1659 297.619 78.8259 299.012 77.1394 298.719C74.9396 298.279 73.3997 298.865 70.98 297.912C72.2265 294.76 74.8663 294.907 77.506 294.907C78.0926 294.907 78.6792 294.98 79.2658 295.053C80.8057 295.2 80.879 293.001 82.4189 293.001C84.9853 293.001 86.5985 293.294 86.5985 289.995C84.9853 289.995 81.9056 284.131 81.0257 283.251C79.4125 281.639 76.9927 280.319 77.946 277.533C78.9725 274.455 81.5389 275.921 82.9321 277.753C84.6187 280.099 90.0448 284.864 90.0448 278.633C89.0182 277.607 84.692 274.968 84.692 273.282C84.692 270.643 87.5517 271.302 89.0915 271.742C90.7047 272.255 92.0246 274.308 93.7111 272.549C94.7377 271.596 94.591 268.517 93.4911 267.417C97.0841 267.417 94.811 264.045 93.4911 262.872C90.2648 260.087 89.9715 261.553 86.5251 260.673C86.5251 263.605 84.1054 263.972 81.6856 263.972C79.8524 260.38 81.6123 261.48 82.1256 258.181C78.3859 257.448 79.1925 254.149 81.5389 255.102C84.1787 256.202 86.8918 256.348 89.3115 256.348C88.4316 254.882 85.2786 252.61 83.5188 252.61C82.4922 252.61 79.7791 254.002 79.7791 251.437C79.7791 249.531 82.7122 249.604 83.0055 247.478C83.0055 244.693 78.6059 244.986 78.6059 242.127C80.5857 242.567 81.5389 240.881 79.9991 239.341C78.7525 238.095 73.6197 235.236 78.6059 234.357C82.1256 233.77 81.1723 227.099 79.2658 225.194C80.7324 225.194 80.879 223.361 82.9321 223.361C85.6452 223.361 85.4252 218.669 85.9385 216.617C83.8854 216.617 84.032 209.726 87.6983 212.658C88.8716 213.538 90.7047 213.025 91.8779 212.512C94.8843 211.339 92.2446 208.846 92.2446 206.794C96.4242 207.6 97.964 209.506 101.117 205.548C101.924 204.595 99.3572 199.61 101.997 199.61C103.17 200.783 103.83 202.762 105.223 203.568C106.91 204.521 107.79 203.275 109.403 203.275C110.649 203.275 115.416 203.568 115.416 200.929C116.662 202.616 121.575 205.548 123.775 205.548C126.268 205.548 129.641 200.783 130.521 198.51C131.694 195.285 133.821 194.772 133.821 190.96C133.821 189.201 136.24 186.635 136.167 185.609C139.247 183.776 142.18 181.357 144.966 180.624C148.559 179.744 151.419 181.797 154.719 182.603M199.814 357.949C199.814 357.509 200.327 357.949 199.814 357.949V357.949ZM247.183 351.425C247.183 347.98 252.022 347.32 252.022 350.692C252.022 353.551 247.476 354.064 247.183 351.425ZM251.583 345.414C250.043 345.121 248.869 345.267 248.356 343.581C250.043 343.581 251.069 343.728 251.583 345.414ZM50.8886 322.689C50.8886 324.522 47.0023 324.522 45.8291 324.522C46.6357 322.543 49.0554 322.543 50.8886 322.689ZM233.691 312.207C233.691 310.447 235.817 308.395 237.137 311.034C239.19 315.139 234.864 315.139 233.691 312.207ZM85.0586 311.034C85.0586 311.034 85.4986 310.521 85.4986 310.081C85.2786 310.374 85.1319 310.667 85.0586 311.034ZM246.523 303.63C246.523 304.143 248.649 304.656 248.649 306.416C248.649 308.395 247.55 310.814 245.13 310.814C240.73 310.814 241.83 303.63 246.523 303.63ZM241.683 307.075C241.683 309.275 239.63 310.008 239.63 307.075C240.29 307.075 241.097 306.929 241.683 307.075ZM81.6123 300.771C82.7122 304.07 78.3859 306.929 76.3328 303.63C74.353 300.625 79.1925 297.472 81.6123 300.771ZM65.1139 297.766C64.6739 300.478 59.3211 302.017 59.3211 298.645C59.3211 294.76 64.1606 297.766 65.1139 297.766ZM51.6218 297.326C51.6218 300.405 47.2223 297.839 47.4422 298.499C47.4422 299.525 34.9035 290.582 41.6495 290.582C44.3625 290.582 42.0894 284.864 45.6824 283.618C49.7154 282.152 57.6346 283.764 55.9481 289.042C55.2882 291.095 53.015 291.901 51.1819 292.488C50.7419 292.121 51.6218 297.326 51.6218 297.399M25.371 284.644C26.9842 284.644 27.7175 286.183 27.7175 287.65C25.591 287.283 19.9449 284.351 19.5783 282.518C21.6314 283.105 23.1713 284.644 25.371 284.644ZM224.672 283.471C226.285 281.345 227.751 283.471 229.511 283.471C228.265 284.717 225.845 284.717 224.672 283.471ZM222.545 278.56C222.545 276.947 227.458 276.874 227.458 278.56H222.545ZM14.6654 277.607C12.099 280.246 6.15956 275.847 12.4656 274.455C16.5719 273.575 19.6516 275.921 14.6654 277.607ZM63.6473 271.302C63.354 272.989 62.7674 272.622 61.5209 272.255C61.8142 270.569 63.2807 271.009 63.6473 271.302ZM50.8886 264.339C46.5623 264.339 50.8886 270.13 50.8886 264.339V264.339ZM217.632 266.904C217.632 265.218 221.885 263.752 223.132 264.558C225.552 266.171 218.219 266.904 217.632 266.904ZM31.0905 258.034C30.6505 261.773 24.4178 260.38 22.9513 260.38C20.4582 260.38 14.6654 253.489 19.8716 252.39C23.3912 251.657 31.0905 253.416 31.0905 258.108M233.178 258.108C233.178 256.202 235.304 258.108 235.744 256.715C235.671 258.327 234.571 257.594 233.178 258.108ZM245.716 251.363C245.716 249.531 247.55 251.363 247.843 251.803C244.323 251.803 242.27 256.202 238.09 256.202C239.044 253.783 243.297 251.29 245.79 251.29M43.2626 254.809C43.2626 254.442 36.0767 249.238 43.0427 249.238C44.2892 249.238 45.6824 249.604 46.049 250.924C46.929 254.222 46.929 254.736 43.2626 254.736M242.563 248.211C242.637 248.725 242.783 248.798 243.077 248.431C242.343 250.411 238.237 254.002 236.771 254.002C236.771 251.95 240.804 248.651 242.563 248.211ZM155.012 239.708C154.499 240.001 153.912 240.221 153.399 240.514C156.332 243.447 155.598 245.206 156.698 247.698C156.038 247.038 155.452 246.452 154.792 245.866C154.499 246.819 154.499 247.772 154.792 248.798C155.378 251.217 156.845 248.505 157.798 248.211C160.438 253.416 162.711 248.211 163.591 244.766C163.591 242.42 156.772 238.388 155.012 239.781M49.5687 249.384C44.1426 249.384 45.0225 243.593 49.7887 243.593C53.895 243.593 53.5283 249.384 49.5687 249.384ZM262.508 242.2C262.508 240.294 265.954 239.415 267.274 238.828C269.621 237.802 270.427 239.415 272.041 241.101C272.407 241.467 272.994 243.153 272.994 243.593C274.754 242.713 275.267 242.567 276 244.033C272.114 244.033 271.674 248.944 267.421 248.944C262.875 248.944 262.581 245.792 262.581 242.2M144.6 247.332C145.919 247.552 147.239 247.845 148.559 248.285C148.046 245.572 145.479 243.153 144.6 247.332ZM194.535 247.772C194.535 247.185 193.508 247.185 193.142 247.332C193.142 239.928 199.081 245.792 194.535 247.772ZM175.983 238.682C177.303 241.394 174.663 241.027 173.197 240.514C171.804 238.828 175.47 235.676 175.983 238.682ZM72.3732 235.163C73.3997 235.163 74.4263 235.383 75.3795 235.676C74.2063 237.216 72.8131 236.629 72.3732 235.163ZM73.0331 223.581C73.0331 227.173 66.6537 226.293 65.7738 223.654C64.6006 219.842 73.0331 217.13 73.0331 223.581ZM218.219 220.135C218.806 218.303 219.759 216.983 221.665 216.397C221.665 217.716 219.172 224.534 217.266 224.534C217.266 224.241 216.826 223.288 216.826 222.701C216.826 221.675 217.999 221.382 218.219 220.135ZM176.643 220.135C178.696 220.135 184.342 219.036 184.342 221.968C184.342 225.927 177.156 220.722 176.643 220.135ZM236.331 220.355C235.451 219.769 234.791 219.109 234.204 218.23C236.037 218.23 237.651 218.816 239.337 219.402C239.044 219.329 242.93 221.235 240.437 221.235C239.264 221.235 237.431 220.649 236.257 220.282M46.049 218.889C43.7026 218.889 41.8694 221.382 41.8694 217.277C42.7494 216.983 43.7026 216.837 44.6558 216.837C45.6091 216.837 47.8822 218.963 46.049 218.963M175.617 210.606C176.35 208.846 180.089 205.768 181.629 208.48C182.949 210.826 175.03 211.632 173.49 211.999C174.003 211.266 174.737 210.826 175.543 210.606M166.744 195.505C166.744 196.165 162.931 197.044 162.344 197.338C163.078 195.871 166.744 191.033 168.064 190.447C171.73 188.834 170.19 194.699 166.744 195.432M190.648 185.462C189.915 188.394 187.642 184.509 187.642 183.629C187.642 181.357 188.522 179.231 189.035 177.105C192.702 177.105 191.748 183.556 190.648 185.462ZM226.652 180.551C226.505 179.671 226.138 179.011 225.478 178.425C226.725 178.425 229.365 181.943 228.045 181.943C227.385 181.724 226.872 181.21 226.652 180.551ZM209.933 178.425C210.666 178.132 211.473 177.985 212.28 177.985C211.84 179.818 209.933 181.504 209.933 178.425ZM258.915 165.45C260.822 161.711 262.728 163.177 261.702 166.329C258.402 168.822 258.035 174.833 253.562 176.079C253.562 174.76 258.402 165.376 258.915 165.376M207.147 164.863C207.147 167.136 207.733 172.34 205.094 173.44C205.094 171.314 205.094 165.743 207.147 164.863ZM101.484 168.089C101.19 169.995 100.017 171.094 98.4773 172.047C98.4773 170.068 99.6505 168.675 101.484 168.089ZM148.412 148.37C153.912 150.202 149.292 162.737 144.746 162.737C140.567 162.737 138.293 162.371 134.774 160.612V160.832C132.354 160.832 131.767 153.648 131.767 152.255C131.767 148.37 134.994 145.804 138.22 144.265C140.713 143.092 141.666 142.798 143.793 144.265C145.773 145.657 147.459 144.265 148.486 148.296M268.081 153.354C268.081 147.27 273.214 152.475 268.081 153.354V153.354ZM171.95 138.473C174.81 134.222 174.297 146.83 174.737 147.343C174.737 147.71 174.59 149.249 174.297 150.129C171.73 149.103 170.557 140.673 171.95 138.547M103.463 114.136C103.463 116.262 98.1107 116.409 98.1107 114.869C99.9438 114.869 101.63 114.136 103.463 114.136ZM255.176 104.606C255.176 102.847 257.229 94.1238 259.282 95.0034C260.528 95.5899 259.795 98.742 259.795 98.8153C259.502 99.6217 257.155 106.732 255.176 104.606ZM242.123 100.648C244.91 103.434 238.164 104.46 238.164 101.601C238.017 101.601 241.39 96.3962 242.123 100.648ZM89.7515 72.1322C90.7781 72.1322 90.8514 71.6924 90.4847 71.1793C92.5379 71.1793 90.1181 73.3051 89.7515 73.525V72.1322ZM119.009 37.5322C119.742 36.8724 124.361 37.3856 124.728 37.8987C126.561 41.0508 129.348 40.1712 130.668 44.7894C131.987 49.4076 129.788 52.633 125.901 54.9788C125.241 55.4186 123.408 57.1047 122.895 56.7381C122.235 56.2983 119.962 57.3979 120.182 57.178C120.182 56.8114 115.196 54.4657 114.682 54.0991C111.969 51.9733 112.703 50.1407 111.823 47.4284C110.723 45.2292 112.189 43.1767 113.363 41.0508C114.682 38.705 118.129 39.2182 119.009 37.4589M86.0118 43.9097C86.7451 44.0563 87.1851 44.4229 87.405 45.0826C87.405 47.3551 85.0586 44.3495 85.0586 44.3495C86.5251 44.3495 85.1319 44.5695 86.0118 43.9097ZM39.303 28.5889C39.303 32.5474 35.5634 24.4105 35.5634 22.5779C38.3498 22.5779 39.303 26.3898 39.303 28.5889ZM32.997 9.52956C32.997 7.2571 36.8099 4.10498 37.9832 7.11049C38.7897 9.08973 37.6165 8.42999 36.4433 9.52956C34.7568 11.2156 34.6101 9.52956 32.997 9.52956ZM43.2626 1.09946C45.6091 -2.41919 46.269 4.10498 43.2626 1.09946V1.09946Z' fill='%23DF0000'/%3E%3C/svg%3E");
        background-size: contain;
        width: 276px;
        height: 452px;
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
        transform: translate(40%, -55%);
    }
}

.facts-section-content p {
    margin-bottom: 50px;
}

.facts-section-splat {
    margin: 0;
    display: flex;
    justify-content: center;
}

.facts-box {
    background-color: #2E2E2E;
    border-radius: 10px;
    padding: 50px 40px 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 960px) {
    .facts-box {
        padding: 50px 55px 75px 55px;
    }
}

.facts-box-title {
    margin-bottom: 40px;
}

.facts-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 55px;
    width: 100%;
}


.facts-list-item {
    display: flex;
    flex-direction: column;
    column-gap: 40px;
    padding: 23px 0;
    border-top: solid 1px rgb(var(--color-primary));
    font-size: 18px;
}

@media (min-width: 960px) {
    .facts-list-item {
        display: grid;
        grid-template-columns: 4fr 6fr;
        padding: 23px 20px 23px 0;
    }
}

.facts-list-item:last-child {
    border-bottom: solid 1px rgb(var(--color-primary));
}

.facts-list-item-label {
    font-weight: 700;
    display: block;
}

.facts-list-item-value {
    display: block;
}

.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 150px;
}

@media (min-width: 960px) {
    .testimonials-section {
        margin-bottom: 200px;
    }
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 40px;
    max-width: 1220px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 100px;
}

@media (min-width: 960px) {
    .testimonials {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.testimonial {
    background-color: #2e2e2e;
    border-radius: 10px;
    padding: 66px 52px;
    font-size: 18px;
}

@media (min-width: 960px) {
    .testimonial {
        padding: 40px 30px;
    }
}

@media (min-width: 1024px) {
    .testimonial {
        padding: 66px 52px;
    }
}

.testimonial-stars {
    display: flex;
    flex-direction: row;
    margin-bottom: 25px;
}

.testimonial-star {
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='32' viewBox='0 0 160 32' fill='none'%3E%3Cpath d='M15.0489 2.92705C15.3483 2.00574 16.6517 2.00574 16.9511 2.92705L19.3677 10.3647C19.5016 10.7768 19.8855 11.0557 20.3188 11.0557H28.1392C29.1079 11.0557 29.5107 12.2953 28.727 12.8647L22.4001 17.4615C22.0496 17.7161 21.903 18.1675 22.0369 18.5795L24.4535 26.0172C24.7529 26.9385 23.6984 27.7047 22.9147 27.1353L16.5878 22.5385C16.2373 22.2839 15.7627 22.2839 15.4122 22.5385L9.08533 27.1353C8.30162 27.7047 7.24714 26.9385 7.54649 26.0172L9.96315 18.5795C10.097 18.1675 9.95036 17.7161 9.59987 17.4615L3.27299 12.8647C2.48928 12.2953 2.89206 11.0557 3.86078 11.0557H11.6812C12.1145 11.0557 12.4984 10.7768 12.6323 10.3647L15.0489 2.92705Z' fill='%23DF0000'/%3E%3C/svg%3E");
}

.testimonial p {
    margin-bottom: 35px;
}

.testimonial-name {
    font-size: 16px;
}


.sponsors {
    margin-bottom: 160px;
    text-align: center;
}

.sponsors h2 {
    margin-bottom: 60px;
}

.sponsors-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

@media (max-width: 960px) {
    .sponsors-items {
        flex-direction: column;
        gap: 42px;
    }
}

.sponsors-item {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
}

.sponsors-item img {
    display: block;
    width: 100%;
}

.footer {
    background-color: rgba(12, 12, 12, 1);
    padding: 100px 0;
}

.footer-inner {
    display: flex;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1220px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 960px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-logo {
    max-width: 350px;
    margin: 0;
}

.footer-logo img {
    width: 100%;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

@media (min-width: 960px) {
    .footer-links {
        text-align: left;
    }
}

.footer-links li a {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 18px;
}

.footer-links li a:hover {
    text-decoration: underline;
}

.footer .btn {
    display: block;
    margin-top: 20px;
}