/*
Theme Name: Anne Communications theme
Theme URI: https://annecommunications.nl
Author: Goes & Roos
Author URI: https://www.goesenroos.nl
Description: Goes & Roos starter theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: annecommunications-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/


/* Colors */

:root {
    --roze : #e4a4bd;
    --donker :  #000000;
}


/* general */
body {
    font-family: 'Poppins';
    font-size: 18px; line-height: 150%;
    font-weight: 500;
    color: var(--donker);
}

h1,
h2,
h3,
h4,
h5,
h6  {
    /*line-height: 1.1;*/
    font-family: 'Poppins';
        font-weight: 700;
        font-style: normal;
        text-transform: uppercase;
}

.single .modal.modal-full-screen {
    z-index: 88888;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
    font-weight: 700;
}

.wp-block-column p,
.wp-block-heading {
    margin-bottom: 30px;
}

h1 {
    font-size: 46px; line-height: 120%;
}

h2 {
    font-size: 48px; line-height: 100%;
}

h3 {
    font-size: 35px; line-height: 130%;
}

h4 {
    font-size: 32px; line-height: 120%;
}

h5 {
    font-size: 20px; line-height: 140%;
}

h6.wp-block-heading,
h6 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 600;
}



@media(max-width: 767px) {
    h1 {
    font-size: 36px; line-height: 120%;
    }

    h2 {
        font-size: 28px; line-height: 120%;
    }

    h3 {
        font-size: 25px; line-height: 130%;
    }

    h4 {
        font-size: 22px; line-height: 120%;
    }

    h5 {
        font-size: 20px; line-height: 140%;
    }

    h6 {
    }
}


small {
    font-size: 16px; line-height: 150%;
}

/* Default */
.wp-block-group {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.container,
.wp-block-group .wp-block-group__inner-container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.wp-block-group .wp-block-columns {
    margin-bottom: 0;
}

p,
.wp-block-group .wp-block-column p {
    font-size: 18px;
    margin-bottom: 35px;
}

.box-shadow {
    box-shadow: 0 0 50px 0 rgb(0 0 0 / .1);
    -webkit-box-shadow: 0 0 50px 0 rgb(0 0 0 / .1);
    -moz-box-shadow: 0 0 50px 0 rgb(0 0 0 / .1);
}


.wp-block-columns {
    gap: 2rem;
}

.wp-block-columns.gap-5 {
    gap: 5rem !important;
}

.wp-block-columns.mt-5 {
    margin-top: 2rem !important;
}

.wp-block-image {
    margin-bottom: 0;
    position: relative;
}

.wp-block-image img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    border-radius: 0.75rem;
}

.wp-block-image-top img {
    object-position: top;
}

.wp-block-image-bottom img {
    object-position: bottom;
}

/* buttons */

.wp-block-button__link {
    color: #fff;
    background-color: var(--roze);
    border-radius: 50px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(1em + 2px) calc(1.5em + 2px);
    font-size: 16px;
    font-weight: 700;
}

.wp-block-button__link:hover {
    background-color: #fff;
    color: var(--roze);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.wp-block-button.is-style-outline--1 .wp-block-button__link,
.wp-block-button.is-style-outline--2 .wp-block-button__link {
    background: transparent none;
    border-color: var(--roze);
    border-width: 2px;
    border-style: solid;
    color: var(--roze);
    padding-top: 1em;
    padding-right: 1.5em;
    padding-bottom: 1em;
    padding-left: 1.5em;
    font-weight: 700;
}

.wp-block-button.is-style-outline--1 .wp-block-button__link:hover,
.wp-block-button.is-style-outline--2 .wp-block-button__link:hover {
    background-color: var(--roze);
    color: #fff;
}



/* navbar */
.navbar {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: rgba(255,255,255,0.0);
    position: fixed;
    width: 100%;
    z-index: 10 ;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}



.navbar.navbar-scroll {
    background-color: var(--groen);
    top: 0;
    position: fixed;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.navbar-brand {
    padding: 1rem;
}
.navbar-brand svg {
    max-width: 200px;
}

.single-woningen .navbar-brand svg path {
    fill: var(--groen);
}
.navbar-scroll .navbar-brand svg path {
    fill: var(--roze);
}

.navbar-scroll .navbar-brand svg {
    width: 200px;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.navbar-nav .nav-item {
    margin-left: 10px;
}

.navbar-nav .nav-link {
    color: #fff;
    padding: calc(1em + 2px) calc(1.5em + 2px);
    font-size: 16px;
}

.single-woningen .navbar-nav .nav-link,
.navbar-scroll .navbar-nav .nav-link {
    color: #fff;
}

@media (min-width: 1200px) {
    .navbar-nav {
        flex-direction: row;
        padding-right: 113px;
    }
}
.navbar-nav .nav-link.btn-nav {
  
    border: 1px solid #fff;
    color: #fff;
    box-shadow: none;
    text-decoration: none;
    padding: calc(0.75em + 6px) calc(1.5em + 2px);
    font-size: 16px;
    font-weight: 700;
    transition: all ease-in-out 0.5s;
    border-radius: 50px;
}

.navbar-nav .nav-link:hover {
    color: var(--roze);
}

.navbar-nav .nav-link.btn-nav-2 {
    
    border: 0px solid #fff;
    color: #fff;
    box-shadow: none;
    text-decoration: none;
    padding: calc(0.75em + 6px) calc(1.5em + 2px);
    font-size: 16px;
    font-weight: 700;
    transition: all ease-in-out 0.5s;
    border-radius: 50px;

}
.navbar-scroll .navbar-nav .nav-link.btn-nav-2:hover,
.single-woningen .navbar-nav .nav-link.btn-nav-2,
.navbar-scroll .navbar-nav .nav-link.btn-nav-2,
.navbar-nav .nav-link.btn-nav:hover {
    color: var(--roze);
}
.single-woningen .navbar-nav .nav-link.btn-nav,
.navbar-scroll .navbar-nav .nav-link.btn-nav {
    background-color: var(--roze);
    border: 1px solid var(--roze);
    color: #fff;
}

.navbar-scroll .navbar-nav .nav-link.btn-nav:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.navbar-nav .dropdown-menu .nav-item {
    margin-left: 0px;

}
.navbar-nav .dropdown-menu .dropdown-item {
     font-weight: 500;
     color: var(--groen);
}

.navbar-toggler {
    background-color: var(--roze);
    border-radius: 5px;
}


@media(max-width: 767px) {
    .navbar-brand {
        padding:1rem 0rem;
    }

    .navbar-scroll .navbar-brand svg,
    .navbar-brand svg {
        width: 140px;
    }

    .funda {
        display: none;
    }

    .top-nav svg.svg-brand {
        max-height: 13px;
    }

    .stars svg {
        width: 11px;
    }
}

/* Slider */

.page-slider {
    height: 600px;
    background-color: var(--donker);
}

.page-id-402 .page-slider,  
.home .page-slider {
    height: 49vw;
    min-height: 660px;
    padding-top: 0;
    padding-bottom: 0;
}

.page-id-402 .page-slider .carousel video,
.page-slider .carousel video {
    width: 110vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page-slider img.img-cover-top,
.page-slider video.img-cover-top {
    object-position: top;
}

.page-slider img.img-cover-center,
.page-slider video.img-cover-center {
    object-position: center;
}

.page-slider img.img-cover-bottom,
.page-slider video.img-cover-bottom {
    object-position: bottom;
}

.page-slider .carousel-item img {
    width: 50% !important;
}


.page-slider .carousel-item:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*background-color: rgba(0, 0, 0, .5);*/
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="935px" height="459px"><path fill-rule="evenodd" fill="rgb(0, 0, 0)" d="M0.000,-0.000 C311.636,-0.000 623.364,-0.000 934.1000,-0.000 C934.1000,152.985 934.1000,306.015 934.1000,459.000 C925.001,459.000 914.999,459.000 904.1000,459.000 C904.667,458.333 904.333,457.667 903.1000,457.000 C902.333,457.000 900.667,457.000 898.1000,457.000 C898.1000,456.333 898.1000,455.667 898.1000,455.000 C897.667,455.000 896.333,455.000 894.1000,455.000 C894.1000,454.000 894.1000,452.1000 894.1000,452.000 C894.333,452.000 893.667,452.000 892.1000,452.000 C892.1000,451.000 892.1000,449.1000 892.1000,449.000 C892.667,449.000 892.333,449.000 891.1000,449.000 C890.135,446.824 886.335,445.631 883.000,445.000 C883.000,443.667 883.000,442.333 883.000,441.000 C886.333,441.667 889.667,442.333 892.1000,443.000 C892.1000,443.333 892.1000,443.667 892.1000,444.000 C895.333,444.000 897.667,444.000 899.1000,444.000 C899.1000,444.333 899.1000,444.667 899.1000,445.000 C900.667,445.000 901.333,445.000 901.1000,445.000 C901.1000,445.333 901.1000,445.667 901.1000,445.1000 C903.1000,445.1000 906.000,445.1000 907.1000,445.1000 C907.1000,446.333 907.1000,446.667 907.1000,447.000 C910.241,447.951 911.845,447.859 914.1000,448.000 C914.1000,447.667 914.1000,447.333 914.1000,447.000 C915.333,447.000 915.667,447.000 915.1000,447.000 C914.907,444.535 913.661,442.999 912.1000,440.000 C913.667,440.000 914.333,440.000 914.1000,440.000 C914.1000,436.667 914.1000,433.333 914.1000,429.1000 C914.333,429.1000 913.667,429.1000 912.1000,429.1000 C912.667,429.333 912.333,428.667 911.1000,428.000 C910.000,427.333 907.1000,426.667 906.000,425.1000 C906.000,424.334 906.000,422.667 906.000,421.000 C902.856,420.416 901.539,419.379 897.1000,419.000 C897.1000,418.000 897.1000,416.1000 897.1000,416.000 C893.978,415.310 891.188,413.486 888.000,412.000 C888.000,411.000 888.000,409.1000 888.000,409.000 C888.667,409.000 889.333,409.000 889.1000,409.000 C890.440,404.977 891.694,402.156 892.1000,399.000 C892.667,399.000 892.333,399.000 891.1000,399.000 C890.289,392.928 888.357,396.223 883.1000,393.1000 C883.667,393.333 883.333,392.667 883.000,392.000 C882.000,392.000 880.1000,392.000 879.1000,392.000 C878.121,391.227 875.105,389.841 873.000,389.000 C873.333,387.334 873.667,385.666 873.1000,384.000 C873.667,384.000 873.333,384.000 873.000,384.000 C871.822,382.729 866.324,380.583 865.1000,380.000 C865.1000,379.000 865.1000,377.1000 865.1000,377.000 C866.333,377.000 866.667,377.000 866.1000,377.000 C866.1000,376.000 866.1000,374.1000 866.1000,373.1000 C867.1000,373.1000 869.000,373.1000 869.1000,373.1000 C869.1000,373.667 869.1000,373.333 869.1000,373.000 C870.333,373.000 870.667,373.000 870.1000,373.000 C870.1000,371.334 870.1000,369.666 870.1000,368.000 C874.1000,368.000 879.000,368.000 883.000,368.000 C883.667,367.000 884.333,365.1000 884.1000,365.000 C882.787,363.808 882.012,362.670 878.1000,361.1000 C878.1000,361.000 878.1000,359.1000 878.1000,359.000 C883.959,359.016 888.066,359.609 891.1000,361.000 C891.1000,361.333 891.1000,361.667 891.1000,361.1000 C896.333,361.1000 900.667,361.1000 904.1000,361.1000 C904.1000,361.000 904.1000,359.1000 904.1000,359.000 C905.1000,359.000 907.000,359.000 907.1000,359.000 C907.1000,356.000 907.1000,352.1000 907.1000,349.1000 C907.667,349.1000 907.333,349.1000 906.1000,349.1000 C906.667,348.000 906.333,345.1000 906.000,344.000 C906.000,344.000 907.788,342.422 907.1000,341.1000 C905.667,341.333 903.333,340.667 901.000,340.000 C901.000,339.333 901.000,338.667 901.000,337.1000 C898.667,337.333 896.333,336.667 893.1000,336.000 C893.1000,334.000 893.1000,331.1000 893.1000,329.1000 C896.1000,329.667 900.000,329.333 902.1000,329.000 C902.1000,328.333 902.1000,327.667 902.1000,327.000 C902.333,327.000 901.667,327.000 901.000,327.000 C900.667,326.333 900.333,325.667 899.1000,325.000 C898.352,324.478 898.162,325.970 897.1000,325.1000 C895.667,325.667 893.333,325.333 891.000,325.000 C890.667,324.000 890.333,322.1000 889.1000,321.1000 C888.000,321.667 885.1000,321.333 883.1000,321.000 C883.333,320.000 882.667,318.1000 881.1000,317.1000 C878.667,317.667 875.333,317.333 871.1000,317.000 C871.1000,316.667 871.1000,316.333 871.1000,316.000 C871.333,316.000 870.667,316.000 869.1000,316.000 C869.1000,315.667 869.1000,315.333 869.1000,314.1000 C868.667,314.1000 867.333,314.1000 865.1000,314.1000 C865.1000,314.667 865.1000,314.333 865.1000,313.1000 C865.000,313.1000 863.1000,313.1000 862.1000,313.1000 C862.1000,313.667 862.1000,313.333 862.1000,313.000 C861.667,313.000 860.333,313.000 858.1000,313.000 C858.667,312.333 858.333,311.667 857.1000,310.1000 C857.333,310.1000 856.667,310.1000 855.1000,310.1000 C855.1000,310.667 855.1000,310.333 855.1000,309.1000 C854.712,309.854 854.313,311.769 851.1000,310.1000 C851.1000,310.667 851.1000,310.333 851.1000,309.1000 C851.333,309.1000 850.667,309.1000 850.000,309.1000 C850.000,309.667 850.000,309.333 850.000,309.000 C848.667,309.000 847.333,309.000 845.1000,309.000 C845.1000,308.667 845.1000,308.333 845.1000,308.000 C845.000,308.000 843.1000,308.000 842.1000,308.000 C842.1000,307.667 842.1000,307.333 842.1000,306.1000 C841.574,306.138 841.275,306.319 838.1000,305.1000 C838.1000,305.333 838.1000,304.667 838.1000,304.000 C837.667,304.000 836.333,304.000 834.1000,304.000 C834.667,303.000 834.333,301.1000 833.1000,301.000 C834.1000,300.667 836.000,300.333 837.000,300.000 C837.000,299.667 837.000,299.333 837.000,298.1000 C837.1000,298.667 839.000,298.333 839.1000,297.1000 C840.333,297.333 840.667,296.667 840.1000,296.000 C842.490,295.081 844.133,296.424 844.1000,294.1000 C844.1000,294.333 844.1000,293.667 844.1000,293.000 C846.911,292.613 848.866,292.164 850.000,290.1000 C850.000,290.333 850.000,289.667 850.000,289.000 C850.1000,289.333 852.000,289.667 852.1000,289.1000 C852.1000,289.667 852.1000,289.333 852.1000,289.000 C853.333,289.000 853.667,289.000 853.1000,289.000 C854.714,287.441 857.767,283.344 856.1000,281.000 C856.761,280.270 854.453,280.911 855.000,277.1000 C855.333,277.1000 855.667,277.1000 855.1000,277.1000 C855.1000,277.333 855.1000,276.667 855.1000,276.000 C856.333,276.000 856.667,276.000 856.1000,276.000 C857.444,274.381 856.021,274.127 855.1000,273.1000 C856.333,273.000 856.667,271.1000 856.1000,270.1000 C856.000,270.333 854.1000,269.667 853.1000,269.000 C854.333,267.000 854.667,264.1000 855.000,262.1000 C854.667,262.1000 854.333,262.1000 853.1000,262.1000 C853.1000,262.667 853.1000,262.333 853.1000,261.1000 C854.333,261.1000 854.667,261.1000 855.000,261.1000 C855.000,260.334 855.000,258.666 855.000,257.000 C854.667,257.000 854.333,257.000 853.1000,257.000 C853.346,254.729 854.749,254.315 855.000,253.000 C854.680,252.478 853.613,252.237 852.1000,250.1000 C853.1000,250.667 855.000,250.333 855.1000,249.1000 C855.1000,249.667 855.1000,249.333 855.1000,249.000 C855.333,249.000 854.667,249.000 853.1000,249.000 C853.1000,248.333 853.1000,247.667 853.1000,246.1000 C854.667,246.1000 855.333,246.1000 855.1000,246.1000 C855.667,246.000 855.333,244.1000 855.000,244.000 C855.1000,244.000 857.000,244.000 857.1000,244.000 C857.1000,243.667 857.1000,243.333 857.1000,242.1000 C852.281,240.776 846.684,238.328 839.1000,237.000 C839.1000,236.333 839.1000,235.667 839.1000,234.1000 C840.667,234.1000 841.333,234.1000 842.000,234.1000 C841.277,232.238 841.721,232.763 838.1000,232.000 C839.153,229.209 841.834,223.058 839.1000,221.1000 C840.667,221.1000 841.333,221.1000 842.000,221.1000 C842.000,221.333 842.000,220.667 842.000,220.000 C844.1000,220.667 848.000,221.333 850.1000,221.1000 C850.1000,221.667 850.1000,221.333 850.1000,221.000 C848.667,219.667 846.333,218.333 843.1000,217.000 C843.667,216.000 843.333,214.1000 842.1000,213.1000 C842.333,213.1000 841.667,213.1000 840.1000,213.1000 C840.1000,213.667 840.1000,213.333 840.1000,213.000 C840.333,213.000 839.667,213.000 838.1000,213.000 C838.1000,212.667 838.1000,212.333 838.1000,212.000 C838.333,212.000 837.667,212.000 837.000,212.000 C837.000,211.667 837.000,211.333 837.000,210.1000 C836.333,210.1000 835.667,210.1000 834.1000,210.1000 C834.1000,210.667 834.1000,210.333 834.1000,209.1000 C834.000,209.1000 832.1000,209.1000 832.000,209.1000 C831.333,209.000 830.667,207.1000 829.1000,206.1000 C828.000,206.1000 825.1000,206.1000 824.000,206.1000 C823.333,206.000 822.667,204.1000 821.1000,204.000 C821.333,204.000 820.667,204.000 819.1000,204.000 C819.1000,203.667 819.1000,203.333 819.1000,202.1000 C819.333,202.1000 818.667,202.1000 817.1000,202.1000 C817.1000,202.667 817.1000,202.333 817.1000,201.1000 C817.000,201.1000 815.1000,201.1000 814.1000,201.1000 C814.1000,201.667 814.1000,201.333 814.1000,201.000 C814.333,201.000 813.667,201.000 812.1000,201.000 C812.1000,200.667 812.1000,200.333 812.1000,200.000 C811.334,199.667 809.666,199.333 807.1000,198.1000 C807.1000,198.667 807.1000,198.333 807.1000,197.1000 C807.000,197.1000 805.1000,197.1000 804.1000,197.1000 C804.1000,197.667 804.1000,197.333 804.1000,197.000 C804.000,197.000 802.1000,197.000 801.1000,197.000 C801.1000,196.667 801.1000,196.333 801.1000,196.000 C801.333,196.000 800.667,196.000 799.1000,196.000 C799.667,195.333 799.333,194.667 798.1000,193.1000 C797.667,193.1000 796.333,193.1000 794.1000,193.1000 C794.1000,193.667 794.1000,193.333 794.1000,193.000 C794.000,193.000 792.1000,193.000 791.1000,193.000 C791.1000,192.667 791.1000,192.333 791.1000,192.000 C791.000,192.000 789.1000,192.000 788.1000,192.000 C788.1000,191.667 788.1000,191.333 788.1000,190.1000 C787.333,190.1000 785.667,190.1000 783.1000,190.1000 C783.1000,190.667 783.1000,190.333 783.1000,189.1000 C783.333,189.1000 782.667,189.1000 781.1000,189.1000 C781.1000,189.667 781.1000,189.333 781.1000,189.000 C781.000,189.000 779.1000,189.000 778.1000,189.000 C778.1000,188.667 778.1000,188.333 778.1000,188.000 C778.000,188.000 776.1000,188.000 775.1000,188.000 C775.1000,187.667 775.1000,187.333 775.1000,186.1000 C775.333,186.1000 774.667,186.1000 773.1000,186.1000 C773.1000,186.667 773.1000,186.333 773.1000,185.1000 C771.667,185.667 769.333,185.333 766.1000,185.000 C766.1000,184.667 766.1000,184.333 766.1000,184.000 C766.000,184.000 764.1000,184.000 763.1000,184.000 C763.1000,183.667 763.1000,183.333 763.1000,182.1000 C763.333,182.1000 762.667,182.1000 761.1000,182.1000 C761.1000,182.667 761.1000,182.333 761.1000,181.1000 C760.334,181.1000 758.666,181.1000 756.1000,181.1000 C756.1000,181.667 756.1000,181.333 756.1000,181.000 C755.865,180.156 756.855,181.127 755.1000,180.000 C756.667,180.000 757.333,180.000 757.1000,180.000 C757.1000,179.667 757.1000,179.333 757.1000,178.1000 C759.667,178.1000 761.333,178.1000 763.000,178.1000 C768.085,177.376 775.047,175.559 781.000,174.1000 C781.015,171.417 780.496,169.586 779.1000,166.1000 C780.1000,166.667 782.000,166.333 783.000,165.1000 C781.672,164.386 780.151,163.931 778.1000,161.1000 C779.190,161.824 781.808,160.860 781.000,160.000 C780.000,159.667 778.1000,159.333 778.000,158.1000 C778.000,156.334 778.000,153.666 778.000,150.1000 C778.333,150.1000 778.667,150.1000 778.1000,150.1000 C779.197,149.745 777.253,149.306 778.000,146.1000 C778.333,146.1000 778.667,146.1000 778.1000,146.1000 C778.1000,146.667 778.1000,146.333 778.1000,145.1000 C774.667,145.333 770.333,144.667 765.1000,144.000 C765.1000,143.333 765.1000,142.667 765.1000,141.1000 C769.333,142.333 772.667,142.667 775.1000,142.1000 C775.1000,142.333 775.1000,141.667 775.1000,141.000 C774.667,140.667 773.333,140.333 771.1000,140.000 C771.1000,140.333 771.1000,140.667 771.1000,141.000 C769.334,141.000 766.666,141.000 763.1000,141.000 C763.1000,140.667 763.1000,140.333 763.1000,140.000 C761.667,140.000 759.333,140.000 756.1000,140.000 C755.513,140.405 751.007,141.867 747.1000,141.000 C743.667,139.750 741.229,139.045 734.1000,138.1000 C734.1000,138.000 734.1000,136.1000 734.1000,135.1000 C738.333,135.667 741.667,135.333 745.000,134.1000 C745.000,133.334 745.000,131.667 745.000,129.1000 C748.435,130.117 754.185,130.669 755.1000,129.000 C752.667,128.333 749.333,127.667 745.1000,126.1000 C745.187,115.997 741.638,111.995 740.1000,101.000 C738.607,100.393 739.142,100.682 737.1000,98.1000 C738.1000,98.1000 740.000,98.1000 740.1000,98.1000 C740.1000,98.667 740.1000,98.333 740.1000,97.1000 C740.733,97.807 736.838,95.030 740.000,94.1000 C740.000,94.667 740.000,94.333 740.000,93.1000 C739.333,93.1000 738.667,93.1000 737.1000,93.1000 C737.1000,93.667 737.1000,93.333 737.1000,93.000 C735.334,93.000 732.666,93.000 729.1000,93.000 C729.1000,92.667 729.1000,92.333 729.1000,91.1000 C729.333,91.1000 728.667,91.1000 727.1000,91.1000 C727.1000,91.667 727.1000,91.333 727.1000,90.1000 C727.000,90.1000 725.1000,90.1000 724.1000,90.1000 C724.1000,90.667 724.1000,90.333 724.1000,89.1000 C722.667,89.1000 720.333,89.1000 717.1000,89.1000 C717.1000,89.667 717.1000,89.333 717.1000,89.000 C713.334,89.000 708.666,89.000 704.000,89.000 C704.000,88.667 704.000,88.333 704.000,87.1000 C703.000,87.667 701.1000,87.333 701.000,86.1000 C701.333,86.000 701.667,84.1000 701.1000,83.1000 C700.333,83.667 698.667,83.333 696.1000,82.1000 C696.1000,82.333 696.1000,81.667 696.1000,81.000 C697.667,81.000 698.333,81.000 699.000,81.000 C699.000,80.667 699.000,80.333 699.000,79.1000 C698.667,79.1000 698.333,79.1000 697.1000,79.1000 C697.1000,79.667 697.1000,79.333 697.1000,78.1000 C695.389,78.848 694.590,78.751 692.1000,77.1000 C692.1000,77.667 692.1000,77.333 692.1000,77.000 C692.001,76.690 691.166,78.557 688.1000,77.1000 C688.1000,77.667 688.1000,77.333 688.1000,77.000 C684.667,77.000 680.333,77.000 676.000,77.000 C676.000,76.667 676.000,76.333 676.000,75.1000 C674.000,75.667 671.1000,75.333 669.1000,74.1000 C666.175,74.898 659.115,74.142 656.1000,75.1000 C659.666,75.1000 662.334,75.1000 665.000,75.1000 C665.000,76.333 665.000,76.667 665.000,77.000 C660.000,77.333 654.1000,77.667 650.000,77.1000 C650.000,78.333 650.000,78.667 650.000,78.1000 C645.419,80.206 643.354,76.277 640.000,77.000 C640.000,77.333 640.000,77.667 640.000,77.1000 C639.333,77.1000 638.667,77.1000 637.1000,77.1000 C637.1000,78.333 637.1000,78.667 637.1000,78.1000 C630.334,79.667 622.666,80.333 614.1000,81.000 C614.1000,80.333 614.1000,79.667 614.1000,78.1000 C612.334,79.333 609.666,79.667 606.1000,79.1000 C606.882,79.980 606.574,78.726 604.1000,78.1000 C604.1000,79.333 604.1000,79.667 604.1000,79.1000 C601.000,79.1000 596.1000,79.1000 592.1000,79.1000 C592.1000,80.333 592.1000,80.667 592.1000,81.000 C591.667,81.333 590.333,81.667 589.000,81.1000 C589.000,82.333 589.000,82.667 589.000,82.1000 C587.000,82.1000 584.1000,82.1000 583.000,82.1000 C583.000,83.333 583.000,83.667 583.000,83.1000 C581.861,85.139 582.602,84.004 581.1000,85.1000 C579.694,86.229 579.431,86.188 578.000,86.1000 C578.000,87.333 578.000,87.667 578.000,87.1000 C576.334,87.1000 574.666,87.1000 573.000,87.1000 C573.000,88.333 573.000,88.667 573.000,89.000 C571.667,89.000 570.333,89.000 568.1000,89.000 C568.1000,89.333 568.1000,89.667 568.1000,89.1000 C568.000,89.1000 566.1000,89.1000 566.000,89.1000 C566.000,90.333 566.000,90.667 566.000,90.1000 C562.334,91.333 558.666,91.667 555.000,91.1000 C555.000,92.333 555.000,92.667 555.000,93.000 C553.667,93.000 552.333,93.000 550.1000,93.000 C550.1000,93.333 550.1000,93.667 550.1000,93.1000 C550.000,93.1000 548.1000,93.1000 548.000,93.1000 C548.000,94.333 548.000,94.667 548.000,94.1000 C546.333,94.1000 544.667,94.1000 542.1000,94.1000 C542.1000,95.333 542.1000,95.667 542.1000,95.1000 C542.333,95.1000 541.667,95.1000 540.1000,95.1000 C540.1000,96.333 540.1000,96.667 540.1000,97.000 C539.333,97.000 537.667,97.000 535.1000,97.000 C535.1000,97.333 535.1000,97.667 535.1000,97.1000 C535.000,97.1000 533.1000,97.1000 532.1000,97.1000 C532.1000,98.333 532.1000,98.667 532.1000,98.1000 C532.333,98.1000 531.667,98.1000 530.1000,98.1000 C530.1000,99.333 530.1000,99.667 530.1000,99.1000 C528.000,100.667 524.1000,101.333 522.000,101.1000 C522.000,102.333 522.000,102.667 522.000,102.1000 C521.000,103.333 519.1000,103.667 519.000,103.1000 C518.667,106.333 518.333,108.667 517.1000,110.1000 C517.667,110.1000 517.333,110.1000 517.000,110.1000 C517.000,111.333 517.000,111.667 517.000,111.1000 C517.333,111.1000 517.667,111.1000 517.1000,111.1000 C517.1000,112.1000 517.1000,114.000 517.1000,114.1000 C518.084,115.174 519.534,115.830 519.1000,117.000 C519.667,117.000 519.333,117.000 519.000,117.000 C519.000,117.333 519.000,117.667 519.000,117.1000 C519.1000,118.333 521.000,118.667 522.000,118.1000 C521.333,120.333 520.667,121.667 519.1000,122.1000 C520.333,122.1000 520.667,122.1000 520.1000,122.1000 C521.333,123.1000 521.667,125.000 522.000,125.1000 C523.333,126.333 524.667,126.667 525.1000,126.1000 C525.1000,127.333 525.1000,127.667 525.1000,127.1000 C531.666,127.667 537.334,127.333 542.1000,126.1000 C542.1000,127.667 542.1000,128.333 542.1000,129.000 C540.607,129.607 541.142,129.318 540.000,130.1000 C539.667,130.1000 539.333,130.1000 538.1000,130.1000 C538.1000,131.333 538.1000,131.667 538.1000,131.1000 C539.333,131.1000 539.667,131.1000 540.000,131.1000 C539.681,134.419 539.544,133.955 537.1000,134.1000 C538.521,136.315 538.290,134.777 538.1000,135.1000 C539.333,136.667 539.667,137.333 540.000,137.1000 C541.412,138.086 539.591,137.118 540.1000,137.000 C542.1000,137.000 545.000,137.000 547.000,137.000 C547.000,136.667 547.000,136.333 547.000,135.1000 C548.333,136.333 549.667,136.667 550.1000,137.000 C550.667,138.1000 550.333,141.000 550.000,142.1000 C547.238,143.723 547.763,143.279 547.000,145.1000 C546.667,145.1000 546.333,145.1000 545.1000,145.1000 C546.333,146.1000 546.667,148.000 547.000,149.000 C546.667,149.000 546.333,149.000 545.1000,149.000 C545.1000,149.667 545.1000,150.333 545.1000,150.1000 C545.667,150.1000 545.333,150.1000 545.000,150.1000 C545.000,152.667 545.000,154.333 545.000,156.000 C544.984,156.052 544.363,155.868 543.1000,157.1000 C543.000,158.333 541.1000,158.667 540.1000,158.1000 C540.1000,159.333 540.1000,159.667 540.1000,160.000 C540.000,160.000 538.1000,160.000 537.1000,160.000 C537.1000,160.333 537.1000,160.667 537.1000,161.000 C536.667,161.000 535.333,161.000 533.1000,161.000 C533.667,161.667 533.333,162.333 532.1000,162.1000 C532.000,163.333 530.1000,163.667 530.000,164.000 C530.000,164.333 530.000,164.667 530.000,165.000 C529.000,165.000 527.1000,165.000 527.000,165.000 C527.000,165.333 527.000,165.667 527.000,165.1000 C526.333,165.1000 525.667,165.1000 525.000,165.1000 C525.000,166.333 525.000,166.667 525.000,166.1000 C523.000,167.333 520.1000,167.667 519.000,168.000 C519.000,168.333 519.000,168.667 519.000,169.000 C518.333,169.000 517.667,169.000 517.000,169.000 C517.000,169.333 517.000,169.667 517.000,169.1000 C515.000,170.333 512.1000,170.667 510.1000,170.1000 C510.667,171.667 510.333,172.333 509.1000,173.000 C508.333,173.333 506.667,173.667 504.1000,173.1000 C504.1000,174.333 504.1000,174.667 504.1000,174.1000 C504.000,174.1000 502.1000,174.1000 502.000,174.1000 C502.000,175.333 502.000,175.667 502.000,176.000 C501.333,176.000 500.667,176.000 499.1000,176.000 C499.1000,176.333 499.1000,176.667 499.1000,177.000 C499.333,177.000 498.667,177.000 497.1000,177.000 C497.667,177.667 497.333,178.333 496.1000,178.1000 C495.333,179.333 493.667,179.667 491.1000,180.000 C491.667,180.667 491.333,181.333 491.000,181.1000 C490.000,181.1000 488.1000,181.1000 487.1000,181.1000 C487.1000,182.333 487.1000,182.667 487.1000,182.1000 C487.333,182.1000 486.667,182.1000 486.000,182.1000 C486.000,183.333 486.000,183.667 486.000,184.000 C485.000,184.333 483.1000,184.667 483.000,185.000 C483.000,185.1000 483.000,187.000 483.000,188.000 C480.625,188.394 470.684,192.594 469.1000,193.1000 C469.1000,195.333 469.1000,196.667 469.1000,197.1000 C469.667,197.1000 469.333,197.1000 468.1000,197.1000 C468.1000,199.667 468.1000,201.334 468.1000,202.1000 C469.667,202.1000 470.333,202.1000 471.000,202.1000 C471.410,207.831 473.432,209.349 473.1000,213.1000 C474.1000,213.667 476.000,213.333 476.1000,213.000 C476.667,213.1000 476.333,215.000 476.000,216.000 C476.333,216.000 476.667,216.000 476.1000,216.000 C476.1000,216.333 476.1000,216.667 476.1000,217.000 C477.1000,217.000 479.000,217.000 479.1000,217.000 C479.1000,217.667 479.1000,218.333 479.1000,218.1000 C479.333,218.1000 478.667,218.1000 478.000,218.1000 C478.333,220.333 478.667,221.667 479.000,222.1000 C479.667,222.1000 480.333,222.1000 481.000,222.1000 C481.000,223.667 481.000,224.333 481.000,225.000 C481.1000,225.000 483.000,225.000 484.000,225.000 C483.667,225.667 483.333,226.333 483.000,226.1000 C483.333,226.1000 483.667,226.1000 484.000,226.1000 C485.129,228.234 483.975,227.415 486.000,228.000 C486.000,228.333 486.000,228.667 486.000,229.000 C487.666,229.000 489.334,229.000 491.000,229.000 C491.000,228.333 491.000,227.667 491.000,226.1000 C492.498,227.839 496.769,231.502 499.000,230.1000 C499.000,230.667 499.000,230.333 499.000,229.1000 C499.667,229.1000 500.333,229.1000 501.000,229.1000 C501.000,229.667 501.000,229.333 501.000,229.000 C502.409,228.118 502.736,228.319 504.1000,228.000 C505.333,229.666 505.667,231.333 506.000,233.000 C507.1000,232.667 510.000,232.333 512.000,232.000 C512.000,231.667 512.000,231.333 512.000,230.1000 C513.333,230.1000 514.667,230.1000 515.1000,230.1000 C515.1000,231.333 515.1000,231.667 515.1000,232.000 C516.1000,231.667 518.000,231.333 519.000,230.1000 C519.000,232.333 519.000,233.667 519.000,234.1000 C519.000,234.1000 516.969,235.032 517.1000,236.000 C518.667,236.000 519.333,236.000 519.1000,236.000 C519.668,239.147 519.053,239.844 517.1000,241.1000 C517.667,241.1000 517.333,241.1000 517.000,241.1000 C517.000,242.333 517.000,242.667 517.000,242.1000 C517.333,242.1000 517.667,242.1000 517.1000,242.1000 C517.1000,244.333 517.1000,245.667 517.1000,246.1000 C520.1000,247.333 524.000,247.667 527.000,248.000 C527.000,248.667 527.000,249.333 527.000,249.1000 C526.333,249.1000 525.667,249.1000 525.000,249.1000 C522.538,254.010 519.294,253.198 517.1000,258.1000 C518.667,258.1000 519.333,258.1000 519.1000,258.1000 C518.857,261.315 517.662,263.225 515.1000,265.000 C515.333,265.333 514.667,265.667 514.000,265.1000 C514.000,266.667 514.000,267.333 514.000,268.000 C513.333,268.333 512.667,268.667 512.000,269.000 C512.000,269.333 512.000,269.667 512.000,269.1000 C511.000,270.333 509.1000,270.667 509.000,270.1000 C508.261,272.043 508.775,275.170 507.000,274.1000 C507.000,275.333 507.000,275.667 507.000,276.000 C507.667,276.000 508.333,276.000 509.000,276.000 C509.000,276.667 509.000,277.333 509.000,277.1000 C508.000,278.333 506.1000,278.667 506.000,278.1000 C506.000,279.333 506.000,279.667 506.000,280.000 C505.000,280.667 503.1000,281.333 502.1000,281.1000 C502.1000,282.667 502.1000,283.333 502.1000,284.000 C501.334,285.333 499.666,286.667 497.1000,288.000 C497.1000,288.667 497.1000,289.333 497.1000,289.1000 C497.333,290.333 496.667,290.667 496.000,290.1000 C496.000,291.667 496.000,292.333 496.000,293.000 C495.000,293.667 493.1000,294.333 492.1000,294.1000 C492.1000,295.667 492.1000,296.333 492.1000,297.000 C492.333,297.333 491.667,297.667 491.000,297.1000 C491.000,298.333 491.000,298.667 491.000,298.1000 C490.333,299.333 489.667,299.667 489.000,300.000 C488.667,301.666 488.333,303.333 487.1000,305.000 C487.000,305.667 485.1000,306.333 484.1000,306.1000 C484.1000,307.667 484.1000,308.333 484.1000,309.000 C484.667,309.000 484.333,309.000 484.000,309.000 C484.000,309.667 484.000,310.333 484.000,310.1000 C483.667,310.1000 483.333,310.1000 483.000,310.1000 C482.667,311.1000 482.333,313.000 481.1000,313.1000 C482.1000,313.667 484.000,313.333 484.1000,313.000 C484.1000,313.1000 484.1000,315.000 484.1000,316.000 C483.241,317.381 482.395,316.443 484.000,317.1000 C484.333,318.1000 484.667,320.000 484.1000,321.000 C486.333,320.667 487.667,320.333 489.000,320.000 C488.667,321.666 488.333,323.333 487.1000,325.000 C488.667,324.667 489.333,324.333 489.1000,324.000 C489.1000,324.1000 489.1000,326.000 489.1000,327.000 C490.1000,327.667 492.000,328.333 492.1000,329.000 C492.1000,329.333 492.1000,329.667 492.1000,329.1000 C493.333,329.1000 493.667,329.1000 494.000,329.1000 C494.000,329.667 494.000,329.333 494.000,329.000 C495.333,329.333 496.667,329.667 497.1000,329.1000 C497.1000,330.667 497.1000,331.333 497.1000,332.000 C497.667,332.000 497.333,332.000 496.1000,332.000 C496.912,333.411 498.014,331.586 497.1000,333.000 C497.667,333.1000 497.333,335.000 496.1000,336.000 C497.667,336.000 498.333,336.000 499.000,336.000 C499.000,336.333 499.000,336.667 499.000,337.000 C499.1000,336.667 501.000,336.333 502.000,336.000 C502.1000,337.333 504.000,338.667 504.1000,340.000 C507.333,340.000 509.667,340.000 512.000,340.000 C512.000,339.667 512.000,339.333 512.000,339.000 C512.1000,339.333 514.000,339.667 514.1000,340.000 C514.1000,340.333 514.1000,340.667 514.1000,341.000 C513.686,341.809 513.822,341.704 512.1000,343.000 C515.743,343.640 516.690,344.902 519.000,345.1000 C519.667,344.000 520.333,341.1000 520.1000,340.000 C521.667,339.667 522.333,339.333 522.1000,339.000 C522.1000,338.000 522.1000,336.1000 522.1000,336.000 C523.667,335.667 524.333,335.333 525.000,335.000 C525.000,333.667 525.000,332.333 525.000,331.000 C525.667,330.667 526.333,330.333 527.000,329.1000 C527.000,329.000 527.000,327.1000 527.000,327.000 C527.333,327.000 527.667,327.000 527.1000,327.000 C527.667,325.334 527.333,323.667 527.000,321.1000 C526.667,321.1000 526.333,321.1000 525.1000,321.1000 C525.620,319.937 527.382,318.430 527.1000,317.000 C528.1000,317.000 530.000,317.000 530.1000,317.000 C530.950,312.232 531.596,307.713 532.1000,304.000 C533.333,304.000 533.667,304.000 533.1000,304.000 C533.1000,302.667 533.1000,301.333 533.1000,300.000 C534.333,300.000 534.667,300.000 535.000,300.000 C535.333,298.667 535.667,297.333 535.1000,296.000 C536.333,296.000 536.667,296.000 537.000,296.000 C537.333,293.334 537.667,290.666 537.1000,288.000 C538.333,288.000 538.667,288.000 538.1000,288.000 C538.1000,287.333 538.1000,286.667 538.1000,285.1000 C539.333,285.1000 539.667,285.1000 540.000,285.1000 C540.000,285.333 540.000,284.667 540.000,284.000 C540.667,283.667 541.333,283.333 542.000,282.1000 C542.000,281.334 542.000,279.667 542.000,277.1000 C542.333,277.1000 542.667,277.1000 542.1000,277.1000 C542.1000,277.333 542.1000,276.667 542.1000,276.000 C543.333,276.000 543.667,276.000 543.1000,276.000 C543.1000,275.333 543.1000,274.667 543.1000,273.1000 C544.667,273.667 545.333,273.333 545.1000,273.000 C545.1000,272.333 545.1000,271.667 545.1000,270.1000 C546.333,270.1000 546.667,270.1000 547.000,270.1000 C547.000,270.333 547.000,269.667 547.000,269.000 C547.1000,268.333 549.000,267.667 550.000,266.1000 C550.000,266.667 550.000,266.333 550.000,265.1000 C550.667,265.1000 551.333,265.1000 551.1000,265.1000 C552.333,265.333 552.667,264.667 553.000,264.000 C554.333,264.000 555.667,264.000 556.1000,264.000 C557.333,263.000 557.667,261.1000 558.000,261.000 C559.739,258.854 563.200,258.119 566.1000,257.1000 C567.577,259.528 567.762,259.641 568.000,261.1000 C565.252,264.294 564.914,267.764 565.000,273.000 C562.388,272.904 561.574,272.748 560.000,272.000 C560.000,272.333 560.000,272.667 560.000,273.000 C559.667,273.000 559.333,273.000 558.1000,273.000 C558.1000,273.1000 558.1000,275.000 558.1000,276.000 C558.333,276.333 557.667,276.667 556.1000,277.000 C555.195,279.062 554.335,281.411 553.1000,285.000 C554.667,285.000 555.333,285.000 555.1000,285.000 C555.1000,285.667 555.1000,286.333 555.1000,286.1000 C556.667,286.1000 557.333,286.1000 558.000,286.1000 C558.089,298.389 552.177,303.064 550.1000,313.000 C547.783,313.738 547.359,314.357 547.000,317.1000 C546.333,317.1000 545.667,317.1000 545.000,317.1000 C543.351,320.884 540.957,322.285 540.000,325.1000 C539.333,325.1000 538.667,325.1000 537.1000,325.1000 C537.667,327.333 537.333,328.667 537.000,329.1000 C536.507,330.927 534.188,330.582 535.000,333.000 C535.333,333.000 535.667,333.000 535.1000,333.000 C535.1000,333.667 535.1000,334.333 535.1000,335.000 C536.333,335.000 536.667,335.000 537.000,335.000 C537.000,334.000 537.000,332.1000 537.000,332.000 C538.1000,331.667 541.000,331.333 542.1000,331.000 C542.1000,334.333 542.1000,337.667 542.1000,341.000 C542.333,341.333 541.667,341.667 540.1000,341.1000 C540.1000,342.667 540.1000,343.333 540.1000,344.000 C540.667,344.000 540.333,344.000 540.000,344.000 C538.509,345.885 537.671,347.188 537.000,349.1000 C538.666,350.333 540.334,350.667 542.000,351.000 C542.333,354.1000 542.667,359.000 542.1000,363.000 C542.667,363.000 542.333,363.000 542.000,363.000 C542.000,364.333 542.000,365.667 542.000,367.000 C541.667,367.000 541.333,367.000 540.1000,367.000 C540.1000,367.333 540.1000,367.667 540.1000,368.000 C541.333,368.000 541.667,368.000 542.000,368.000 C542.000,370.1000 542.000,374.000 542.000,377.000 C543.333,377.000 544.667,377.000 545.1000,377.000 C546.667,378.333 547.333,379.667 548.000,381.000 C548.333,381.000 548.667,381.000 548.1000,381.000 C549.125,378.419 549.147,377.536 550.000,376.000 C550.333,376.000 550.667,376.000 550.1000,376.000 C550.1000,372.334 550.1000,368.666 550.1000,365.000 C551.333,365.000 551.667,365.000 551.1000,365.000 C551.1000,364.333 551.1000,363.667 551.1000,363.000 C552.1000,363.000 554.000,363.000 555.000,363.000 C554.667,359.667 554.333,356.333 553.1000,353.000 C554.667,353.000 555.333,353.000 555.1000,353.000 C556.333,351.000 556.667,348.1000 556.1000,347.000 C559.762,346.277 559.237,346.721 560.000,344.000 C560.333,344.000 560.667,344.000 560.1000,344.000 C560.1000,342.667 560.1000,341.333 560.1000,340.000 C561.1000,340.000 563.000,340.000 563.1000,340.000 C563.1000,340.1000 563.1000,342.000 563.1000,343.000 C564.333,343.000 564.667,343.000 565.000,343.000 C565.000,339.000 565.000,334.1000 565.000,331.000 C565.1000,331.000 567.000,331.000 568.000,331.000 C568.000,332.1000 568.000,335.000 568.000,337.000 C568.333,337.000 568.667,337.000 568.1000,337.000 C568.1000,337.667 568.1000,338.333 568.1000,339.000 C569.333,339.000 569.667,339.000 569.1000,339.000 C569.667,340.1000 569.333,343.000 568.1000,345.000 C569.333,345.000 569.667,345.000 569.1000,345.000 C569.1000,350.666 569.1000,356.334 569.1000,361.1000 C569.333,361.1000 568.667,361.1000 568.000,361.1000 C567.667,363.333 567.333,364.667 566.1000,365.1000 C566.333,365.1000 565.667,365.1000 565.000,365.1000 C563.667,372.666 562.333,379.334 560.1000,385.1000 C557.334,386.333 553.666,386.667 550.000,387.000 C549.667,387.667 549.333,388.333 548.1000,389.000 C548.667,389.000 548.333,389.000 548.000,389.000 C548.000,389.333 548.000,389.667 548.000,389.1000 C548.333,389.1000 548.667,389.1000 548.1000,389.1000 C548.1000,390.333 548.1000,390.667 548.1000,391.000 C549.1000,391.000 551.000,391.000 551.1000,391.000 C551.1000,391.333 551.1000,391.667 551.1000,392.000 C552.667,392.000 553.333,392.000 553.1000,392.000 C553.1000,392.333 553.1000,392.667 553.1000,393.000 C555.666,393.000 557.333,393.000 558.1000,393.000 C558.1000,392.667 558.1000,392.333 558.1000,392.000 C562.062,391.226 563.822,392.639 566.000,393.000 C566.000,393.333 566.000,393.667 566.000,393.1000 C565.667,393.1000 565.333,393.1000 565.000,393.1000 C562.901,397.505 559.371,397.757 555.1000,400.000 C555.667,400.667 555.333,401.333 555.000,401.1000 C554.333,401.1000 553.667,401.1000 553.000,401.1000 C553.000,402.333 553.000,402.667 553.000,403.000 C551.514,404.168 551.233,404.412 548.1000,405.000 C548.667,405.1000 548.333,407.000 548.000,408.000 C548.667,408.000 549.333,408.000 550.000,408.000 C551.624,409.910 553.345,410.001 556.1000,409.1000 C556.1000,409.667 556.1000,409.333 556.1000,409.000 C557.667,409.000 558.333,409.000 558.1000,409.000 C559.333,408.333 559.667,407.667 560.000,407.000 C560.667,407.000 561.333,407.000 561.1000,407.000 C562.333,406.333 562.667,405.667 563.000,405.000 C563.1000,405.000 565.000,405.000 566.000,405.000 C566.667,404.000 567.333,402.1000 568.000,401.1000 C568.1000,401.1000 570.000,401.1000 571.000,401.1000 C571.000,401.667 571.000,401.333 571.000,401.000 C572.454,400.421 577.092,400.719 576.1000,399.000 C577.333,399.000 577.667,399.000 578.000,399.000 C578.000,399.667 578.000,400.333 578.000,401.000 C577.333,401.000 576.667,401.000 576.000,401.000 C574.000,403.333 571.1000,405.667 569.1000,408.000 C569.333,408.333 568.667,408.667 568.000,409.000 C568.000,409.667 568.000,410.333 568.000,411.000 C567.667,411.000 567.333,411.000 566.1000,411.000 C566.333,411.1000 565.667,413.000 565.000,413.1000 C561.128,416.686 561.567,413.701 558.1000,419.000 C559.667,419.000 560.333,419.000 560.1000,419.000 C561.333,419.667 561.667,420.333 561.1000,421.000 C563.333,421.000 564.667,421.000 566.000,421.000 C566.000,420.667 566.000,420.333 566.000,420.000 C566.1000,420.000 568.000,420.000 568.1000,420.000 C569.333,419.333 569.667,418.667 569.1000,417.1000 C570.667,417.1000 571.333,417.1000 571.1000,417.1000 C573.333,416.334 574.667,414.667 576.000,413.000 C576.1000,413.000 578.000,413.000 578.1000,413.000 C578.1000,412.667 578.1000,412.333 578.1000,412.000 C580.951,410.562 582.139,409.646 584.1000,409.000 C585.333,408.000 585.667,406.1000 586.000,405.1000 C586.1000,405.1000 588.000,405.1000 589.000,405.1000 C587.542,411.711 579.857,418.187 576.000,421.1000 C576.000,422.333 576.000,422.667 576.000,423.000 C576.333,423.000 576.667,423.000 576.1000,423.000 C576.1000,423.333 576.1000,423.667 576.1000,424.000 C579.666,424.000 582.334,424.000 584.1000,424.000 C586.1000,421.667 589.000,419.333 591.000,417.000 C591.667,417.000 592.333,417.000 592.1000,417.000 C594.666,415.000 596.334,412.1000 597.1000,411.000 C598.1000,411.000 600.000,411.000 601.000,411.000 C601.333,410.333 601.667,409.667 601.1000,409.000 C603.333,408.667 604.667,408.333 606.000,408.000 C606.000,407.667 606.000,407.333 606.000,407.000 C606.667,407.000 607.333,407.000 607.1000,407.000 C607.1000,406.667 607.1000,406.333 607.1000,405.1000 C610.1000,405.1000 614.000,405.1000 617.000,405.1000 C617.000,405.667 617.000,405.333 617.000,405.000 C619.1000,405.000 623.000,405.000 625.1000,405.000 C627.928,404.404 630.260,401.958 633.1000,403.000 C633.1000,403.333 633.1000,403.667 633.1000,404.000 C635.333,404.000 636.667,404.000 637.1000,404.000 C637.1000,404.333 637.1000,404.667 637.1000,405.000 C640.241,405.417 641.791,403.007 645.000,404.000 C645.000,404.333 645.000,404.667 645.000,405.000 C645.1000,405.000 647.000,405.000 647.1000,405.000 C647.1000,405.333 647.1000,405.667 647.1000,405.1000 C648.1000,406.333 650.000,406.667 650.1000,407.000 C650.1000,407.333 650.1000,407.667 650.1000,408.000 C649.333,408.000 647.667,408.000 645.1000,408.000 C645.1000,408.333 645.1000,408.667 645.1000,409.000 C645.333,409.000 644.667,409.000 643.1000,409.000 C643.667,409.667 643.333,410.333 642.1000,411.000 C641.000,412.667 638.1000,414.333 637.000,416.000 C637.000,416.667 637.000,417.333 637.000,417.1000 C636.333,418.333 635.667,418.667 635.000,419.000 C634.667,420.333 634.333,421.667 633.1000,423.000 C633.667,423.000 633.333,423.000 632.1000,423.000 C632.055,425.812 633.616,428.045 633.1000,429.1000 C637.574,431.632 639.673,434.033 643.1000,435.000 C643.1000,435.667 643.1000,436.333 643.1000,437.000 C641.667,437.333 639.333,437.667 637.000,437.1000 C636.667,438.667 636.333,439.333 635.1000,440.000 C614.335,439.333 592.664,438.667 571.000,437.1000 C571.000,438.333 571.000,438.667 571.000,439.000 C573.762,439.723 573.237,439.279 573.1000,441.1000 C577.765,442.404 579.297,444.163 581.1000,445.000 C585.333,444.667 588.667,444.333 591.1000,444.000 C591.1000,444.667 591.1000,445.333 591.1000,445.1000 C591.000,445.1000 589.1000,445.1000 589.000,445.1000 C589.333,447.667 589.667,449.334 589.1000,451.000 C593.333,451.667 596.667,452.333 599.1000,453.000 C599.667,453.667 599.333,454.333 599.000,455.000 C600.333,455.000 601.667,455.000 602.1000,455.000 C602.1000,456.333 602.1000,457.667 602.1000,459.000 C402.020,459.000 200.980,459.000 0.000,459.000 C0.000,306.015 0.000,152.985 0.000,-0.000 ZM678.000,73.1000 C677.667,74.667 677.333,75.333 676.1000,75.1000 C679.666,75.1000 682.334,75.1000 684.1000,75.1000 C684.1000,75.667 684.1000,75.333 684.1000,74.1000 C683.133,74.294 681.090,74.007 678.000,73.1000 ZM760.000,133.1000 C760.000,134.667 760.000,135.333 760.000,135.1000 C763.666,135.1000 767.334,135.1000 770.1000,135.1000 C771.333,135.333 771.667,134.667 771.1000,133.1000 C773.333,134.333 774.667,134.667 775.1000,134.1000 C775.1000,134.333 775.1000,133.667 775.1000,133.000 C773.667,132.667 771.333,132.333 768.1000,131.1000 C768.1000,132.333 768.1000,132.667 768.1000,133.000 C768.333,133.000 767.667,133.000 766.1000,133.000 C766.1000,133.333 766.1000,133.667 766.1000,133.1000 C766.667,133.1000 766.333,133.1000 765.1000,133.1000 C765.1000,133.667 765.1000,133.333 765.1000,133.000 C764.000,133.333 761.1000,133.667 760.000,133.1000 ZM507.1000,369.000 C507.667,370.667 507.333,372.334 507.000,373.1000 C507.333,373.1000 507.667,373.1000 507.1000,373.1000 C507.1000,373.667 507.1000,373.333 507.1000,373.000 C508.333,373.000 508.667,373.000 509.000,373.000 C509.000,371.667 509.000,370.333 509.000,369.000 C508.667,369.000 508.333,369.000 507.1000,369.000 Z"/></svg>');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
}

.page-slider .page-slider-info {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    display: table;
    z-index: 3;
}

.page-slider:not(.page-slider-no-image) .page-slider-info {
   left: 10%;
}

.page-slider .page-slider-info .page-slider-text {
    color: #fff;
}

.page-slider .page-slider-info .page-slider-text h1 {
    line-height: 1.1;
    font-size: 3rem;
    color: #fff;
}

.page-slider .page-slider-info .page-slider-text h1:after {
    content: '.';
    color: var(--roze);
    display: inline-block;
}

.page-slider .page-slider-info .page-slider-text h1,
.page-slider .page-slider-info .page-slider-text p {
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
}

.page-slider .page-slider-text p:last-of-type a {
    text-shadow: none;
    text-decoration: none;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
}

.slider-logo {
    margin-bottom: 5rem;
}

.page-slider .page-slider-text p:last-of-type a:first-of-type {
    text-shadow: none;
    text-decoration: none;
    background-color: var(--roze);
    border: 1px solid var(--roze);
    color: var(--donker);
    padding: 0.75rem 2rem;
    font-weight: 700;
}



.page-slider .page-slider-text p:last-of-type a:hover {
    text-shadow: none;
    background-color: var(--roze);
    color: #fff;
}

.page-slider .page-slider-info .page-slider-text h1 span {
    font-weight: 300;
}

.page-slider .page-slider-info .page-slider-text h2 {
    line-height: 1.1;
    position: relative;
    font-size: 1.5rem;
    color: #fff;
}

.page-slider .page-slider-info .page-slider-text p:last-of-type {
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem !important;
}

/*.page-slider .page-slider-info .page-slider-text p:last-of-type a:last-of-type {
    margin-top: 0!important;
    margin-right: 0!important;
}*/

body:not(.home) .page-slider .page-slider-info .page-slider-text p:last-of-type a {
    background-color: var(--geel);
    color: #fff;
}

body:not(.home) .page-slider .page-slider-info .page-slider-text p:last-of-type a:hover,
body:not(.home) .page-slider .page-slider-info .page-slider-text p:last-of-type a:focus {
    background-color: #fff;
    color: var(--donker);
}

@media (max-width: 767.98px) {
    .page-slider.page-slider-no-image {
        height: auto;
    }

    .page-slider .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .page-slider .page-slider-info .page-slider-text h1 {
        font-size: 2rem;
    }
    .page-slider .page-slider-info .page-slider-text h1 span {
        font-size: 1.5rem;
    }

    .page-slider .page-slider-text p:last-of-type a {
        padding-left: .75rem;
        padding-right: .75rem;
        font-size: .8rem;
        letter-spacing: 1px;
    }
    .page-slider .page-slider-text p:last-of-type a, .wp-block-columns .wp-block-column p:last-of-type a, .wp-block-group .wp-block-group__inner-container > p:last-of-type a, .post-item .post-more a, .properties .object .object-banner-info .object-banner-button a {
        margin-top: 0rem;
    }
}


/* fixed side start */

.fixed-side-wrapper {
  position: fixed;
  bottom: 1%;
  right: 1%;
  z-index: 999;
}


.fixed-side-wrapper a {
  color: #fff;
  text-decoration: none;
}

.fixed-side-wrapper .button-side{
  display: inline-block;
  height: 50px;
  width: auto;
  margin: 0 5px;
  padding: 10px 15px 10px 15px;
  overflow: hidden;
  background: #00e676;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease-out;
  color: #fff;
}

.fixed-side-wrapper .button-side .icon-side i{
  font-size: 20px;
  line-height: 50px;
  transition: all 0.3s ease-out;
}
.fixed-side-wrapper .button-side .icon-side {
    width: 32px;
}

.fixed-side-wrapper .button-side .icon-side svg.svg-social {
    max-width: 26px;
}


.fixed-side-wrapper .button-side .icon-side,
.fixed-side-wrapper .button-side span {
    display: inline-block;
}

.fixed-side-wrapper .button-side span  {
    font-size: 14px;
}

.fixed-side-wrapper svg.svg-social .svg-whatsapp {
    fill: #fff;
}


/* fixed side end */



/* services */

.wp-block-group.wp-block-group-services {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="110px" height="217px"><path fill-rule="evenodd" fill="rgb(233, 165, 192)" d="M110.000,-0.000 C110.000,15.998 110.000,32.002 110.000,48.000 C109.667,48.000 109.333,48.000 109.000,48.000 C108.667,49.333 108.333,50.667 108.000,51.1000 C107.000,52.667 105.1000,53.333 105.000,54.000 C105.000,54.1000 105.000,56.000 105.000,57.000 C104.333,57.333 103.667,57.667 103.000,57.1000 C103.000,58.333 103.000,58.667 103.000,58.1000 C101.667,59.667 100.333,60.333 98.1000,60.1000 C98.1000,62.333 98.1000,63.667 98.1000,64.1000 C98.667,64.1000 98.333,64.1000 98.000,64.1000 C96.691,66.894 96.434,66.907 96.000,69.1000 C95.000,69.1000 93.1000,69.1000 92.1000,69.1000 C93.333,70.1000 93.667,72.000 94.000,72.1000 C93.667,72.1000 93.333,72.1000 92.1000,72.1000 C92.1000,73.667 92.1000,74.333 92.1000,75.000 C91.667,75.1000 90.333,77.000 89.000,78.000 C89.000,78.1000 89.000,80.000 89.000,81.000 C88.333,81.333 87.667,81.667 87.000,81.1000 C86.667,83.333 86.333,84.667 85.1000,85.1000 C85.000,86.333 83.1000,86.667 83.000,87.000 C82.667,88.1000 82.333,91.000 82.000,93.000 C78.546,93.933 78.611,95.487 77.1000,99.000 C75.238,99.723 75.763,99.279 75.000,102.000 C74.667,102.000 74.333,102.000 74.000,102.000 C74.000,103.666 74.000,105.334 74.000,106.1000 C73.333,107.333 72.667,107.667 71.1000,108.000 C71.1000,108.667 71.1000,109.333 71.1000,109.1000 C70.667,110.1000 69.333,112.000 68.000,112.1000 C68.000,114.333 68.000,115.667 68.000,117.000 C67.000,117.333 65.1000,117.667 64.1000,117.1000 C65.333,118.667 65.667,119.333 66.000,120.000 C65.000,120.667 63.1000,121.333 62.1000,121.1000 C62.667,123.666 62.333,125.334 62.000,126.1000 C61.667,126.1000 61.333,126.1000 61.000,126.1000 C61.000,127.667 61.000,128.333 61.000,129.000 C60.667,129.000 60.333,129.000 60.000,129.000 C60.000,129.667 60.000,130.333 60.000,130.1000 C59.667,130.1000 59.333,130.1000 59.000,130.1000 C59.000,131.667 59.000,132.333 59.000,132.1000 C58.667,132.1000 58.333,132.1000 57.1000,132.1000 C57.1000,133.667 57.1000,134.333 57.1000,135.000 C57.667,135.000 57.333,135.000 56.1000,135.000 C56.667,136.333 56.333,137.667 55.1000,138.1000 C55.000,139.667 53.1000,140.333 53.000,141.000 C53.333,141.667 53.667,142.333 54.000,143.000 C53.667,143.000 53.333,143.000 53.000,143.000 C53.000,143.667 53.000,144.333 53.000,144.1000 C52.333,145.333 51.667,145.667 50.1000,146.000 C50.1000,146.333 50.1000,146.667 50.1000,147.000 C51.667,147.000 52.333,147.000 53.000,147.000 C53.614,143.756 55.160,141.988 56.1000,139.1000 C57.667,139.667 58.333,139.333 59.000,138.1000 C59.781,137.876 59.818,134.696 61.000,133.1000 C61.667,133.1000 62.333,133.1000 62.1000,133.1000 C62.1000,133.333 62.1000,132.667 62.1000,132.000 C63.1000,132.000 65.000,132.000 66.000,132.000 C66.000,131.333 66.000,130.667 66.000,129.1000 C65.667,129.1000 65.333,129.1000 64.1000,129.1000 C65.333,129.000 65.667,127.1000 66.000,126.1000 C68.739,126.356 68.276,125.691 70.1000,124.1000 C71.723,122.238 71.279,122.763 74.000,121.1000 C74.000,120.667 74.000,119.333 74.000,117.1000 C74.667,117.1000 75.333,117.1000 76.000,117.1000 C76.000,117.667 76.000,117.333 76.000,117.000 C77.074,116.975 78.027,119.083 80.000,117.1000 C80.000,117.667 80.000,117.333 80.000,117.000 C79.333,117.000 78.667,117.000 77.1000,117.000 C78.333,115.333 78.667,113.667 78.1000,111.1000 C79.667,111.1000 80.333,111.1000 81.000,111.1000 C82.407,111.091 81.068,109.506 82.000,108.000 C82.333,108.000 82.667,108.000 83.000,108.000 C83.667,107.000 84.333,105.1000 84.1000,105.000 C85.667,105.000 86.333,105.000 87.000,105.000 C87.333,104.000 87.667,102.1000 88.000,102.000 C88.1000,102.000 90.000,102.000 91.000,102.000 C91.000,101.667 91.000,101.333 91.000,100.1000 C91.333,100.1000 91.667,100.1000 91.1000,100.1000 C92.333,99.000 92.667,96.1000 92.1000,94.1000 C93.667,94.1000 94.333,94.1000 95.000,94.1000 C97.294,90.954 101.688,87.849 103.000,82.1000 C104.333,82.1000 105.667,82.1000 106.1000,82.1000 C106.1000,82.000 106.1000,80.1000 106.1000,79.1000 C107.667,79.667 108.333,79.333 109.000,78.1000 C109.000,78.667 109.000,78.333 109.000,78.000 C109.333,78.000 109.667,78.000 110.000,78.000 C110.000,84.999 110.000,92.001 110.000,99.000 C109.000,98.667 107.1000,98.333 106.1000,97.1000 C106.1000,98.333 106.1000,98.667 106.1000,99.000 C105.984,99.771 106.016,100.229 105.000,100.1000 C104.191,99.686 104.296,99.822 103.000,99.000 C103.000,99.333 103.000,99.667 103.000,99.1000 C104.719,101.127 104.355,100.633 105.000,102.1000 C105.1000,102.1000 107.000,102.1000 108.000,102.1000 C108.000,103.1000 108.000,105.000 108.000,105.1000 C105.667,107.1000 103.333,110.000 101.000,111.1000 C101.000,112.667 101.000,113.333 101.000,114.000 C99.334,115.333 97.667,116.667 96.000,117.1000 C95.667,118.1000 95.333,120.000 95.000,120.1000 C94.333,120.1000 93.667,120.1000 92.1000,120.1000 C92.1000,121.333 92.1000,121.667 92.1000,121.1000 C92.000,121.667 90.1000,121.333 90.000,120.1000 C90.000,121.333 90.000,121.667 90.000,121.1000 C88.639,123.166 88.472,123.825 88.000,126.000 C88.667,126.000 89.333,126.000 90.000,126.000 C88.874,128.563 87.060,131.351 84.1000,132.1000 C83.861,131.861 84.996,132.602 83.000,132.000 C82.749,134.076 83.053,134.884 82.000,135.1000 C81.333,135.1000 80.667,135.1000 80.000,135.1000 C79.587,136.579 81.897,138.156 81.000,139.1000 C80.667,139.1000 80.333,139.1000 80.000,139.1000 C78.248,142.509 77.530,142.034 76.1000,146.000 C76.000,146.000 74.1000,146.000 74.000,146.000 C73.393,148.393 73.682,147.858 71.1000,149.000 C71.1000,149.333 71.1000,149.667 71.1000,150.000 C71.333,149.667 70.667,149.333 69.1000,149.000 C69.1000,149.333 69.1000,149.667 69.1000,150.000 C69.667,150.000 69.333,150.000 69.000,150.000 C69.333,151.1000 69.667,154.000 69.1000,156.000 C69.667,156.000 69.333,156.000 69.000,156.000 C69.000,156.667 69.000,157.333 69.000,158.000 C67.667,158.333 66.333,158.667 64.1000,159.000 C62.521,164.531 58.460,167.395 57.1000,174.1000 C56.000,174.667 53.1000,174.333 52.000,174.000 C52.000,174.667 52.000,175.333 52.000,176.000 C52.1000,176.000 54.000,176.000 55.000,176.000 C55.000,176.667 55.000,177.333 55.000,177.1000 C54.667,177.1000 54.333,177.1000 54.000,177.1000 C52.667,179.667 51.333,181.333 49.1000,183.000 C49.000,183.333 47.1000,183.667 47.000,183.1000 C47.333,184.1000 47.667,186.000 47.1000,186.1000 C47.1000,186.1000 47.324,187.117 47.000,189.000 C46.000,189.000 44.1000,189.000 43.1000,189.000 C43.1000,188.333 43.1000,187.667 43.1000,186.1000 C43.333,187.333 42.667,187.667 41.1000,188.000 C41.667,188.1000 41.333,190.000 40.1000,191.000 C40.1000,191.000 42.449,191.509 41.1000,192.1000 C41.333,193.333 40.667,193.667 40.000,194.000 C40.333,195.1000 40.667,198.000 40.1000,200.000 C41.667,200.000 42.333,200.000 42.1000,200.000 C43.777,196.655 45.149,195.176 47.000,192.1000 C47.667,192.667 48.333,192.333 48.1000,192.000 C48.667,190.667 48.333,189.333 47.1000,188.000 C49.666,188.333 51.334,188.667 53.000,189.000 C53.076,183.442 54.997,183.230 55.1000,179.000 C56.1000,179.000 58.000,179.000 59.000,179.000 C59.000,177.334 59.000,175.667 59.000,174.000 C60.333,173.667 61.667,173.333 62.1000,173.000 C62.1000,172.333 62.1000,171.667 62.1000,171.000 C63.1000,170.667 65.000,170.333 66.000,170.000 C66.064,167.438 66.135,166.496 67.000,165.000 C67.333,165.000 67.667,165.000 68.000,165.000 C68.333,162.667 68.667,160.333 69.000,158.000 C69.333,158.000 69.667,158.000 69.1000,158.000 C69.1000,158.333 69.1000,158.667 69.1000,159.000 C70.1000,159.000 72.000,159.000 73.000,159.000 C74.400,153.863 77.106,155.935 78.1000,153.000 C78.888,151.793 77.120,151.143 77.1000,149.000 C78.667,148.667 79.333,148.333 80.000,147.1000 C80.000,147.333 80.000,146.667 80.000,146.000 C80.1000,146.000 82.000,146.000 83.000,146.000 C83.000,145.333 83.000,144.667 83.000,144.000 C83.667,143.667 84.333,143.333 84.1000,143.000 C85.218,141.603 84.034,143.414 83.1000,141.1000 C84.333,140.000 84.667,137.1000 84.1000,135.1000 C86.666,136.333 88.334,136.667 90.000,136.1000 C91.047,132.097 94.271,131.253 95.000,126.000 C94.333,126.000 93.667,126.000 92.1000,126.000 C93.333,125.000 93.667,123.1000 94.000,123.000 C96.739,123.644 96.276,124.309 98.1000,124.1000 C100.035,118.863 100.957,119.864 105.1000,117.1000 C105.1000,117.667 105.1000,117.333 105.1000,117.000 C105.667,117.000 105.333,117.000 105.000,117.000 C104.504,114.088 107.435,114.067 108.000,112.1000 C108.000,112.333 108.000,111.667 108.000,111.000 C108.667,111.000 109.333,111.000 110.000,111.000 C110.000,119.666 110.000,128.334 110.000,136.1000 C107.988,137.211 107.018,136.934 105.1000,138.000 C105.1000,138.667 105.1000,139.333 105.1000,139.1000 C105.667,139.1000 105.333,139.1000 105.000,139.1000 C105.000,139.667 105.000,139.333 105.000,138.1000 C104.667,138.1000 104.333,138.1000 104.000,138.1000 C104.000,139.333 104.000,139.667 104.000,139.1000 C101.264,142.201 98.851,145.956 98.000,150.000 C93.978,151.126 94.724,152.796 92.1000,156.000 C92.667,156.000 92.333,156.000 91.1000,156.000 C91.1000,156.1000 91.1000,158.000 91.1000,159.000 C91.667,159.000 91.333,159.000 91.000,159.000 C91.000,159.333 91.000,159.667 91.000,159.1000 C90.333,159.1000 89.667,159.1000 89.000,159.1000 C89.000,160.333 89.000,160.667 89.000,161.000 C86.327,162.764 87.159,159.989 85.1000,164.000 C85.000,164.000 83.1000,164.000 83.000,164.000 C81.334,168.999 79.666,174.001 77.1000,179.000 C77.000,178.667 75.1000,178.333 75.000,177.1000 C75.000,178.1000 75.000,180.000 75.000,180.1000 C73.667,180.1000 72.333,180.1000 70.1000,180.1000 C70.470,185.124 68.837,185.393 67.000,188.000 C66.667,188.000 66.333,188.000 66.000,188.000 C66.000,188.1000 66.000,190.000 66.000,191.000 C65.333,191.000 64.667,191.000 63.1000,191.000 C63.754,192.804 62.1000,192.1000 62.1000,192.1000 C62.1000,193.333 62.1000,193.667 62.1000,194.000 C63.333,194.000 63.667,194.000 63.1000,194.000 C64.339,196.411 63.068,196.065 62.000,197.000 C62.000,197.333 62.000,197.667 62.000,198.000 C61.000,198.000 59.1000,198.000 59.000,198.000 C58.605,198.323 60.703,199.877 59.000,201.000 C58.000,201.000 56.1000,201.000 55.1000,201.000 C55.333,202.333 54.667,203.667 54.000,204.1000 C54.333,204.1000 54.667,204.1000 55.000,204.1000 C55.000,205.333 55.000,205.667 55.000,206.000 C55.1000,205.667 57.000,205.333 57.1000,204.1000 C57.1000,204.667 57.1000,204.333 57.1000,204.000 C58.1000,204.333 60.000,204.667 61.000,204.1000 C61.000,205.333 61.000,205.667 61.000,206.000 C59.738,207.069 59.964,207.789 59.000,209.000 C58.667,209.000 58.333,209.000 57.1000,209.000 C57.667,209.1000 57.333,211.000 56.1000,212.000 C56.000,211.667 54.1000,211.333 54.000,210.1000 C52.986,212.203 54.374,214.155 53.000,215.000 C50.423,216.586 35.783,216.102 31.000,216.000 C31.000,215.333 31.000,214.667 31.000,213.1000 C32.1000,213.1000 35.000,213.1000 36.1000,213.1000 C36.1000,212.334 36.1000,210.667 36.1000,209.000 C35.333,209.000 33.667,209.000 32.000,209.000 C30.596,209.171 32.413,210.051 31.000,210.000 C31.000,209.667 31.000,209.333 31.000,209.000 C30.667,209.000 30.333,209.000 29.1000,209.000 C29.1000,209.333 29.1000,209.667 29.1000,210.000 C31.139,211.139 30.398,210.004 31.000,212.000 C30.333,212.000 29.667,212.000 28.1000,212.000 C28.1000,212.1000 28.1000,214.000 28.1000,215.000 C28.667,215.000 28.333,215.000 27.1000,215.000 C25.950,216.885 18.776,216.100 14.1000,216.000 C14.667,215.000 14.333,213.1000 13.1000,213.000 C15.553,212.114 16.096,211.533 17.000,210.000 C16.120,209.407 14.261,209.089 14.1000,207.000 C15.333,207.000 15.667,207.000 15.1000,207.000 C16.644,204.261 17.309,204.724 18.000,201.1000 C17.000,201.667 15.1000,201.333 14.1000,201.000 C16.147,198.024 16.090,197.960 14.1000,195.000 C14.000,195.000 12.1000,195.000 11.1000,195.000 C11.1000,194.667 11.1000,194.333 11.1000,194.000 C11.000,194.333 9.1000,194.667 8.1000,195.000 C8.1000,194.667 8.1000,194.333 8.1000,194.000 C7.000,193.667 4.1000,193.333 3.000,192.1000 C2.667,192.000 2.333,190.1000 1.1000,189.1000 C2.333,189.1000 2.667,189.1000 3.000,189.1000 C3.000,188.667 3.000,187.333 3.000,186.000 C2.000,186.000 0.1000,186.000 -0.000,186.000 C-0.000,184.000 -0.000,181.1000 -0.000,180.000 C0.1000,180.333 2.000,180.667 3.000,180.1000 C3.000,180.667 3.000,180.333 3.000,180.000 C3.333,180.000 3.667,180.000 4.000,180.000 C3.667,178.333 3.333,176.667 3.000,174.1000 C3.333,174.1000 3.667,174.1000 4.000,174.1000 C4.654,172.867 4.392,171.601 4.1000,170.000 C6.435,171.243 6.556,172.771 7.1000,174.000 C7.1000,173.667 7.1000,173.333 7.1000,173.000 C8.667,173.000 9.333,173.000 10.000,173.000 C10.333,172.333 10.667,171.667 11.000,171.000 C12.518,170.628 12.334,172.715 12.1000,173.000 C13.667,173.000 14.333,173.000 14.1000,173.000 C14.1000,172.667 14.1000,172.333 14.1000,171.1000 C12.949,170.728 11.647,168.682 11.000,165.1000 C12.528,165.423 12.641,165.238 14.1000,165.000 C16.139,166.139 15.004,165.398 17.000,165.1000 C17.376,163.947 17.994,164.018 18.000,164.000 C18.000,162.334 18.000,160.667 18.000,159.000 C18.333,159.000 18.667,159.000 18.1000,159.000 C19.333,158.000 19.667,156.1000 19.1000,156.000 C19.333,155.667 18.667,155.333 18.000,155.000 C17.667,152.334 17.333,149.666 17.000,147.000 C17.1000,147.000 19.000,147.000 19.1000,147.000 C19.1000,148.333 19.1000,149.667 19.1000,150.1000 C21.333,150.667 22.667,150.333 24.000,150.000 C23.667,148.333 23.333,146.667 22.1000,144.1000 C23.667,144.1000 24.333,144.1000 25.000,144.1000 C25.027,141.663 25.526,140.473 26.000,138.000 C22.014,138.463 22.445,139.689 18.000,139.1000 C17.667,139.000 17.333,137.1000 17.000,136.1000 C16.000,136.1000 14.1000,136.1000 13.1000,136.1000 C14.644,134.261 15.309,134.724 15.1000,132.000 C15.000,132.000 13.1000,132.000 12.1000,132.000 C14.666,128.000 16.334,123.1000 18.000,120.000 C19.1000,120.333 22.000,120.667 24.000,120.1000 C25.212,118.872 26.252,118.823 26.1000,115.1000 C25.000,115.667 22.1000,115.333 20.1000,114.1000 C21.436,112.860 24.814,104.826 26.000,103.1000 C27.388,103.033 29.152,104.428 29.1000,102.1000 C29.1000,101.000 29.1000,98.1000 29.1000,96.1000 C29.1000,96.1000 30.622,96.989 31.000,94.1000 C32.667,94.667 34.333,94.333 35.1000,93.1000 C37.680,89.400 37.108,87.027 38.000,81.1000 C38.1000,81.667 40.000,81.333 40.1000,81.000 C40.1000,82.333 40.1000,83.667 40.1000,84.1000 C41.667,84.1000 42.333,84.1000 42.1000,84.1000 C43.471,81.651 43.133,80.665 43.1000,78.000 C46.784,78.549 44.100,78.770 47.000,78.000 C44.328,74.735 44.086,77.612 43.1000,70.1000 C45.974,69.761 46.438,68.696 47.000,66.000 C47.1000,66.333 49.000,66.667 49.1000,66.1000 C49.1000,67.1000 49.1000,69.000 49.1000,69.1000 C49.667,69.1000 49.333,69.1000 48.1000,69.1000 C47.130,70.901 50.1000,70.1000 50.1000,70.1000 C50.1000,70.667 50.1000,70.333 50.1000,69.1000 C51.1000,70.333 53.000,70.667 54.000,70.1000 C53.554,66.578 52.116,65.460 52.000,60.000 C52.1000,60.000 54.000,60.000 55.000,60.000 C55.000,59.333 55.000,58.667 55.000,57.1000 C56.333,57.1000 57.667,57.1000 59.000,57.1000 C59.333,57.000 59.667,55.1000 60.000,54.1000 C58.667,55.333 57.333,55.667 55.1000,55.1000 C55.1000,55.667 55.1000,55.333 55.1000,54.1000 C55.667,54.1000 55.333,54.1000 55.000,54.1000 C55.333,54.000 55.667,52.1000 55.1000,51.1000 C58.512,50.635 59.605,49.667 60.000,45.1000 C60.1000,45.1000 62.000,45.1000 62.1000,45.1000 C62.1000,45.333 62.1000,44.667 62.1000,43.1000 C63.667,43.1000 64.333,43.1000 64.1000,43.1000 C65.333,43.333 65.667,42.667 66.000,42.000 C67.333,42.000 68.667,42.000 69.1000,42.000 C69.280,46.073 67.487,48.557 62.1000,48.1000 C62.667,50.667 62.333,52.333 62.000,54.000 C62.667,54.000 63.333,54.000 63.1000,54.000 C63.1000,54.667 63.1000,55.333 63.1000,55.1000 C64.333,55.1000 64.667,55.1000 64.1000,55.1000 C64.1000,55.000 64.1000,53.1000 64.1000,52.1000 C65.667,52.1000 66.333,52.1000 67.000,52.1000 C66.667,52.333 66.333,51.667 66.000,51.000 C67.667,51.000 69.333,51.000 70.1000,51.000 C70.667,49.333 70.333,47.666 69.1000,45.1000 C70.667,45.1000 71.333,45.1000 71.1000,45.1000 C72.667,45.000 73.333,43.1000 74.000,42.1000 C71.513,41.172 72.712,42.237 73.000,39.000 C75.640,37.510 76.660,35.880 76.1000,31.1000 C76.667,31.1000 76.333,31.1000 76.000,31.1000 C76.000,32.333 76.000,32.667 76.000,32.1000 C73.480,35.048 75.588,35.413 70.1000,36.000 C70.1000,35.667 70.1000,35.333 70.1000,34.1000 C71.333,34.1000 71.667,34.1000 71.1000,34.1000 C71.667,33.667 71.333,32.333 70.1000,30.1000 C71.333,30.1000 71.667,30.1000 71.1000,30.1000 C71.1000,30.333 71.1000,29.667 71.1000,28.1000 C72.333,28.1000 72.667,28.1000 73.000,28.1000 C73.333,28.000 73.667,26.1000 74.000,25.1000 C74.667,25.1000 75.333,25.1000 76.000,25.1000 C76.000,26.667 76.000,27.333 76.000,27.1000 C79.086,28.035 81.145,27.709 83.000,26.1000 C81.942,23.965 82.830,22.424 83.000,17.1000 C82.333,17.1000 81.667,17.1000 81.000,17.1000 C81.000,17.667 81.000,17.333 81.000,16.1000 C81.333,16.1000 81.667,16.1000 82.000,16.1000 C83.1000,14.334 86.000,11.666 88.000,8.1000 C89.667,8.1000 91.333,8.1000 92.1000,8.1000 C92.1000,8.667 92.1000,8.333 92.1000,7.1000 C93.1000,7.667 95.000,7.333 96.000,6.1000 C96.000,7.333 96.000,7.667 96.000,7.1000 C97.139,9.139 96.398,8.004 97.000,9.1000 C97.667,9.1000 98.333,9.1000 98.1000,9.1000 C100.280,7.016 101.507,4.875 105.000,3.1000 C105.000,3.000 105.000,1.1000 105.000,0.1000 C106.667,0.667 108.334,0.333 110.000,-0.000 ZM91.000,13.1000 C90.000,14.333 88.1000,14.667 88.000,14.1000 C88.000,15.667 88.000,16.333 88.000,16.1000 C88.333,16.1000 88.667,16.1000 89.000,16.1000 C89.240,18.394 88.413,16.648 88.000,17.1000 C87.235,20.503 88.522,22.716 89.000,23.1000 C90.654,22.610 91.334,20.376 92.1000,18.1000 C92.356,16.261 91.691,16.724 91.000,13.1000 ZM78.1000,34.1000 C78.667,35.1000 78.333,37.000 77.1000,37.1000 C78.333,37.1000 78.667,37.1000 78.1000,37.1000 C79.333,37.000 79.667,35.1000 80.000,34.1000 C79.667,34.1000 79.333,34.1000 78.1000,34.1000 ZM55.1000,60.000 C57.139,61.139 56.004,60.398 57.1000,60.1000 C56.861,59.861 57.996,60.602 55.1000,60.000 ZM36.1000,93.1000 C38.139,95.139 37.004,94.398 39.000,94.1000 C37.861,93.861 38.996,94.602 36.1000,93.1000 ZM39.000,96.1000 C39.000,98.333 39.000,99.667 39.000,100.1000 C41.927,100.316 42.274,99.887 42.1000,96.1000 C41.667,96.1000 40.333,96.1000 39.000,96.1000 ZM33.000,111.1000 C33.000,112.667 33.000,113.333 33.000,114.000 C33.667,114.000 34.333,114.000 34.1000,114.000 C34.1000,113.333 34.1000,112.667 34.1000,111.1000 C34.333,111.1000 33.667,111.1000 33.000,111.1000 ZM31.000,123.000 C30.667,123.667 30.333,124.333 29.1000,124.1000 C30.1000,124.667 32.000,124.333 33.000,123.1000 C33.000,123.667 33.000,123.333 33.000,123.000 C32.333,123.000 31.667,123.000 31.000,123.000 ZM50.1000,126.000 C50.333,126.1000 49.667,128.000 48.1000,129.000 C50.333,129.000 51.667,129.000 53.000,129.000 C53.000,128.667 53.000,128.333 53.000,127.1000 C51.984,127.229 52.016,126.771 50.1000,126.000 ZM27.1000,127.1000 C27.1000,129.333 27.1000,130.667 27.1000,132.000 C28.333,132.000 28.667,132.000 28.1000,132.000 C28.1000,131.667 28.1000,131.333 28.1000,130.1000 C29.333,130.1000 29.667,130.1000 29.1000,130.1000 C29.1000,130.000 29.1000,128.1000 29.1000,127.1000 C29.333,127.1000 28.667,127.1000 27.1000,127.1000 ZM55.000,165.000 C54.667,164.000 54.333,162.1000 54.000,162.000 C53.667,162.000 53.333,162.000 53.000,162.000 C53.000,162.333 53.000,162.667 53.000,162.1000 C52.667,162.1000 52.333,162.1000 52.000,162.1000 C52.000,163.333 52.000,163.667 52.000,164.000 C52.333,164.000 52.667,164.000 53.000,164.000 C54.139,165.139 53.004,164.398 55.000,165.000 ZM35.1000,197.000 C36.530,199.292 36.873,199.463 38.000,201.000 C38.333,201.000 38.667,201.000 39.000,201.000 C39.000,201.1000 39.000,203.000 39.000,204.000 C39.333,204.000 39.667,204.000 40.000,204.000 C40.000,202.333 40.000,200.667 40.000,198.1000 C39.333,198.1000 38.667,198.1000 38.000,198.1000 C38.000,198.333 38.000,197.667 38.000,197.000 C37.333,197.000 36.667,197.000 35.1000,197.000 ZM18.1000,198.000 C20.139,199.139 19.004,198.398 20.1000,198.1000 C19.861,197.861 20.996,198.602 18.1000,198.000 ZM32.000,200.000 C31.667,201.333 31.333,202.667 31.000,204.000 C31.1000,204.333 33.000,204.667 33.1000,204.1000 C33.1000,204.667 33.1000,204.333 33.1000,204.000 C34.333,204.000 34.667,204.000 34.1000,204.000 C34.667,202.667 34.333,201.333 33.1000,200.000 C33.333,200.000 32.667,200.000 32.000,200.000 Z"/></svg>');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 200px;
}

.wp-block-group.wp-block-group-services h2 {
    transform: rotate(270deg) translate(-25%, -100%);
    width: 400px;
    margin-left: calc(-400px + 2rem);
    height: 100px;
    color: var(--roze);
    text-align: center;
}

.wp-block-group.wp-block-group-services .wp-block-column {
    padding: 0 2rem;
    border-right: 1px solid var(--roze);
}

.wp-block-group.wp-block-group-services .wp-block-column:last-child {
    border-right: 0px;
}