     @font-face {
         font-family: 'Golos';
         src: url('fonts/GolosText.ttf') format('truetype');
         font-weight: normal;
         font-style: normal;
    }
    .flex-base {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    .flex-center {
        align-items: center;
        -webkit-box-align: center;
    }

    .flex-start{
        align-items: start;
    }

    .flex-space {
        justify-content: space-between;
    }

    .flex-base-column {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .flex-center-column {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }
    
    
   body {
            font-family: 'Golos';
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 20px;
            margin-left: 5%;
            margin-right: 5%;
            margin-top: 16px;
        }

    header {
        position: sticky;
        top: 0;
        background-color: #FFFFFF;
        padding: 8px;
        width: 100%;
        z-index: 100;
    }

    h2 {
        font-size: 36px;
        font-style: black;
        font-weight: 900;
        line-height: 43px;   
    }

    a {
        text-decoration: none;
        color: black;
    }

    a:hover {
        text-decoration: underline;
        text-decoration-color:#010066;
        color:#010066;
   }

    nav {
        background-color: #F4F4F4;
        border-radius: 10px;
        padding-top: 16px;
        padding-left: 32px;
        padding-right: 32px;
        padding-bottom: 16px;
    }

    .anchor {
        scroll-margin-top: 150px;
    }

    .not-visible {
        display: none;
    }

    .visible {
        display: block;
    }

    .arrow-visible {
        display: block;
        transition: 0.4s transform;
    }

    .arrow-not-visible {
        display: none;
        transition: 0.4s transform;
    }

     .bold {
        font-weight: bold;
    }

    .margin {
        margin-left: 16px;
        margin-right: 8px;
    }

    .margin1 {
        margin: 16px;
        margin-top: 0px;
    }

    .margintop {
        margin-top: 16px;
    }

    .telephone {
        background-color: #F4F4F4;
        border-radius: 10px;
        padding: 16px;
    }

    .button a{
        color: #FFFFFF;
        background-color: #010066;
        font-size: 20px;
        border-radius: 10px;
        border: 2px solid #010066;
        padding: 12px;

    }

    .button a:hover {
        border-color: #010066;
        background-color: #FFFFFF;
        color: #010066;
        text-decoration: none;
    }

    .registration-parent {
        background: url("/images//Background.svg") center no-repeat;
        border-radius: 10px;
        justify-content: center;
        padding-bottom: 32px;
        margin-bottom: 16px;
    }

    .registration-parent p {
        text-align: center;
        margin-bottom: 40px;
        margin-top: 0px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
    }

    .services {
        background-color: #F4F4F4;
        border-radius: 10px;
        padding-top: 8px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 8px;
    }
    
    .services-blocks {
        background-color: #FFFFFF;
        border-radius: 10px;
        padding: 8px;
        margin-bottom: 8px;
    }


    .reviews {
        background-color: #F4F4F4;
        border-radius: 10px;
        height: fit-content;
        padding: 8px;
        padding-top: 0px;
        margin-bottom: 16px;
        overflow: hidden;
    }

    .review-block {
        background-color: #FFFFFF;
        border-radius: 25px;
        padding: 8px;
        margin: 8px;
        
    }

  .slider-container {
        display: flex;
        align-items: center;
        max-width: 100%;
    }

    .slider {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        gap: 100px;
        padding: 10px 0;
    }

    .slide {
        scroll-snap-align: start;
        flex: 0 0 auto;
        width: 100%;
        height: 600px;
        display: flex;
        overflow: hidden;
    }

    .slider-arrow {
        background: #F4F4F4;
        color: black;
        border: none;
        padding: 30px 30px;
        cursor: pointer;
        z-index: 1;
        border-radius: 100px;
    }

    .slider-arrow:hover {
        background: rgba(0, 0, 0, 0.8);
        color: #FFFFFF;
    }

    .left-arrow {
        margin-right: 10px;
    }

    .right-arrow {
        margin-left: 10px;
    }

    .img {
        float: left;
    }

    .map-parent {
        background-color: #F4F4F4;
        border-radius: 10px;
        padding: 8px;
    }

    iframe {
        border-radius: 32px;
        border: 0px;
        width: 95%;
        height: 100%;
        padding-bottom: 16px;
        padding-top: 16px;
    }

   .desktop-hidden {
        display: none;
    }
