/* global */

body {
    margin: 0;
    padding: 0;
    color: #515151;
    background: #fff;
    font-family: omnes-pro, sans-serif;
}

h1,
h2 {
    font-family: omnes-narrow, sans-serif;
}

h3,
h4,
h5 {
    font-family: omnes-pro, sans-serif;
}

p {
    font-family: omnes-pro, sans-serif;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* end of global */

@media(min-width: 1366px) {
    .first-fold {
        position: relative;
        margin: 0;
        width: 100%;
        background: #9700e3;
    }
    .slideshow {
        width: 100%;
        height: 350px;
    }
    .slideshow-image {
        border-radius: 10px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 350px;
        width: 100%;
    }
    .slideshow-texts {
        position: absolute;
        border-radius: 10px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.35);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .slideshow-texts h1 {
        color: #fff;
        text-align: center;
        font-size: 90px;
        font-weight: 600;
        letter-spacing: 4px;
        text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.64);
        margin: 20px 0;
        line-height: 1;
    }
    .slideshow-texts h2 {
        font-family: omnes-pro, sans-serif;
        color: #fff;
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.48);
        margin: 20px 0;
        line-height: 0.5;
    }
    .slideshow-texts a {
        color: #fff;
        background-color: #9700e3;
        text-align: center;
        font-size: 25px;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;
        padding: 20px 40px;
        margin: 20px 0;
        border-radius: 50px;
    }
    .slider-main {
        width: 100%;
        margin: 50px auto;
        background: linear-gradient(90deg, rgba(63, 94, 189, 0.01), rgba(63, 94, 189, 0.48), rgba(63, 94, 189, 0.01));
    }
    .slider-nav {
        width: 100%;
        margin: 50px auto;
        background: linear-gradient(90deg, rgba(63, 94, 189, 0.01), rgba(63, 94, 189, 0.48), rgba(63, 94, 189, 0.01));
    }
    .main-img {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        height: 400px !important;
    }
    .track-img {
        margin: 0 25px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        height: 300px !important;
    }
    .about-container {
        margin: 50px auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    .about-left img {
        margin: 0;
        width: 500px;
    }
    .about-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .about-left h3 {
        margin: 0;
        color: #9700e3;
        font-weight: 600;
        font-size: 40px;
        text-align: center;
    }
    .about-left h4 {
        margin: 0;
        color: #9700e3;
        font-weight: 600;
        font-size: 30px;
        text-align: center;
    }
    .about-right {
        padding-left: 50px;
        max-width: 50%;
    }
    .about-right p {
        font-size: 20px;
        margin: 0 0 20px 0;
    }
    .about-right span {
        font-size: 1.8rem;
        font-weight: 500;
        color: #9700e3;
    }
    .local-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
        margin: 50px 0;
    }
    .local-item {
        background-color: #f9f9f6;
        box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
    }
    .local-pic {
        position: relative;
        width: 100%;
        min-height: 300px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .local-pic h3 {
        position: absolute;
        bottom: 0;
        left: 0;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.48);
        margin: 0;
        padding: 20px;
    }
    .local-item p {
        margin: 0;
        padding: 20px;
    }
    .show-more {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        margin: 50px auto;
        background: #9700e3;
        color: #fff;
        font-size: 20px;
        font-family: omnes-narrow, sans-serif;
        font-weight: 600;
        padding: 20px 40px;
        border: none;
    }
    .blog-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
    }
    .blog-item {
        padding: 0 0 25px 0;
        background: #fff;
        box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.15);
        border-radius: 2px;
        overflow: hidden;
    }
    .blog-image {
        width: 100%;
        height: 200px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .blog-texts {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .blog-title {
        margin: 10px auto;
        font-size: 20px;
        font-weight: 600;
        color: #9700e3;
        text-decoration: none;
        text-align: center;
    }
    .blog-title:hover {
        text-decoration: underline;
    }
    .blog-item p {
        font-family: poppins, sans-serif;
        margin: 10px auto;
        font-size: 15px;
        font-weight: 500;
        color: #515151;
        text-align: center;
    }
    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0;
    }
    .contact-right {
        align-self: flex-start;
        width: calc(50% - 25px);
    }
    .contact-right h3 {
        color: #9700e3;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }
    .contact-right h4 {
        color: #414141;
        font-size: 20px;
        font-weight: 600;
        margin: 0;
    }
    .contact-right ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .contact-right li {
        font-size: 18px;
        margin: 0;
    }
    .contact-right a {
        font-size: 18px;
        text-decoration: none;
        color: #9700e3;
        background: #f9f9f6;
        padding: 10px 20px;
        display: inline-block;
        margin: 0 20px 20px 0;
        border-radius: 2px;
    }
    .contact-right a:hover {
        background: #9700e3;
        color: #fff;
    }
    #question-form {
        align-self: flex-start;
        width: calc(50% - 25px);
        margin: 0 auto;
        background: #fff;
        border: 4px solid #9700e3;
        padding: 50px 25px;
        border-radius: 10px;
    }
    .faq-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
        margin: 50px 0 0 0;
    }
    .faq-item {
        min-height: 0;
        min-width: 0;
        background-color: #fff;
    }
    .faq-question {
        width: 100%;
        margin: 0;
        padding: 20px 0;
        background: #9700e3;
        color: #fff;
        text-align: center;
        font-size: 20px;
    }
    .faq-answer {
        color: #515151;
        margin: 0;
        padding: 25px;
        font-size: 18px;
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .first-fold {
        position: relative;
        margin: 0;
        width: 100%;
        background: #9700e3;
    }
    .slideshow {
        width: 100%;
        height: 350px;
    }
    .slideshow-image {
        border-radius: 10px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 350px;
        width: 100%;
    }
    .slideshow-texts {
        position: absolute;
        border-radius: 10px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.35);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .slideshow-texts h1 {
        color: #fff;
        text-align: center;
        font-size: 80px;
        font-weight: 600;
        letter-spacing: 4px;
        text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.64);
        margin: 20px 0;
        line-height: 1;
    }
    .slideshow-texts h2 {
        font-family: omnes-pro, sans-serif;
        color: #fff;
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.48);
        margin: 20px 0;
        line-height: 0.5;
    }
    .slideshow-texts a {
        color: #fff;
        background-color: #9700e3;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;
        padding: 15px 40px;
        margin: 20px 0;
        border-radius: 50px;
    }
    .slider-main {
        width: 100%;
        margin: 50px auto;
        background: linear-gradient(90deg, rgba(63, 94, 189, 0.01), rgba(63, 94, 189, 0.48), rgba(63, 94, 189, 0.01));
    }
    .slider-nav {
        width: 100%;
        margin: 50px auto;
        background: linear-gradient(90deg, rgba(63, 94, 189, 0.01), rgba(63, 94, 189, 0.48), rgba(63, 94, 189, 0.01));
    }
    .main-img {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        height: 400px !important;
    }
    .track-img {
        margin: 0 25px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        height: 300px !important;
    }
    .about-container {
        margin: 50px auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    .about-left img {
        margin: 0;
        width: 400px;
    }
    .about-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .about-left h3 {
        margin: 0;
        color: #9700e3;
        font-weight: 600;
        font-size: 40px;
        text-align: center;
    }
    .about-left h4 {
        margin: 0;
        color: #9700e3;
        font-weight: 600;
        font-size: 30px;
        text-align: center;
    }
    .about-right {
        padding-left: 50px;
        max-width: 50%;
    }
    .about-right p {
        font-size: 17px;
        margin: 0 0 15px 0;
    }
    .about-right span {
        font-size: 1.8rem;
        font-weight: 500;
        color: #9700e3;
    }
    .local-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
        margin: 50px 0;
    }
    .local-item {
        background-color: #f9f9f6;
        box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
    }
    .local-pic {
        position: relative;
        width: 100%;
        min-height: 300px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .local-pic h3 {
        position: absolute;
        bottom: 0;
        left: 0;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.48);
        margin: 0;
        padding: 20px;
    }
    .local-item p {
        margin: 0;
        padding: 20px;
    }
    .show-more {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        margin: 50px auto;
        background: #9700e3;
        color: #fff;
        font-size: 20px;
        font-family: omnes-narrow, sans-serif;
        font-weight: 600;
        padding: 20px 40px;
        border: none;
    }
    .blog-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
    }
    .blog-item {
        padding: 0 0 25px 0;
        background: #fff;
        box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.15);
        border-radius: 2px;
        overflow: hidden;
    }
    .blog-image {
        width: 100%;
        height: 200px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .blog-texts {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .blog-title {
        margin: 10px auto;
        font-size: 18px;
        font-weight: 600;
        color: #9700e3;
        text-decoration: none;
        text-align: center;
    }
    .blog-title:hover {
        text-decoration: underline;
    }
    .blog-item p {
        font-family: poppins, sans-serif;
        margin: 10px auto;
        font-size: 15px;
        font-weight: 500;
        color: #515151;
        text-align: center;
    }
    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0;
    }
    .contact-right {
        align-self: flex-start;
        width: calc(45% - 25px);
    }
    .contact-right h3 {
        color: #9700e3;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }
    .contact-right h4 {
        color: #414141;
        font-size: 20px;
        font-weight: 600;
        margin: 0;
    }
    .contact-right ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .contact-right li {
        font-size: 18px;
        margin: 0;
    }
    .contact-right a {
        font-size: 18px;
        text-decoration: none;
        color: #9700e3;
        background: #f9f9f6;
        padding: 10px 20px;
        display: inline-block;
        margin: 0 20px 20px 0;
        border-radius: 2px;
    }
    .contact-right a:hover {
        background: #9700e3;
        color: #fff;
    }
    #question-form {
        align-self: flex-start;
        width: calc(55% - 25px);
        margin: 0 auto;
        background: #fff;
        border: 4px solid #9700e3;
        padding: 50px 25px;
        border-radius: 10px;
    }
    .faq-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
        margin: 50px 0 0 0;
    }
    .faq-item {
        min-height: 0;
        min-width: 0;
        background-color: #fff;
    }
    .faq-question {
        width: 100%;
        margin: 0;
        padding: 20px 0;
        background: #9700e3;
        color: #fff;
        text-align: center;
        font-size: 20px;
    }
    .faq-answer {
        color: #515151;
        margin: 0;
        padding: 25px;
        font-size: 18px;
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .first-fold {
        position: relative;
        margin: 60px 0 0 0;
        width: 100%;
        background: #9700e3;
    }
    .slideshow {
        width: 100%;
        height: 350px;
    }
    .slideshow-image {
        border-radius: 10px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 350px;
        width: 100%;
    }
    .slideshow-texts {
        position: absolute;
        border-radius: 10px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.35);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .slideshow-texts h1 {
        color: #fff;
        text-align: center;
        font-size: 60px;
        font-weight: 600;
        letter-spacing: 4px;
        text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.64);
        margin: 20px 0;
        line-height: 1;
    }
    .slideshow-texts h2 {
        font-family: omnes-pro, sans-serif;
        color: #fff;
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.48);
        margin: 20px 0;
        line-height: 0.5;
    }
    .slideshow-texts a {
        color: #fff;
        background-color: #9700e3;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;
        padding: 15px 40px;
        margin: 20px 0;
        border-radius: 50px;
    }
    .slider-main {
        width: 100%;
        margin: 50px auto;
        background: linear-gradient(90deg, rgba(63, 94, 189, 0.01), rgba(63, 94, 189, 0.48), rgba(63, 94, 189, 0.01));
    }
    .slider-nav {
        width: 100%;
        margin: 50px auto;
        background: linear-gradient(90deg, rgba(63, 94, 189, 0.01), rgba(63, 94, 189, 0.48), rgba(63, 94, 189, 0.01));
    }
    .main-img {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        height: 400px !important;
    }
    .track-img {
        margin: 0 25px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        height: 300px !important;
    }
    .about-container {
        margin: 50px auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    .about-left img {
        margin: 0;
        width: 300px;
    }
    .about-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .about-left h3 {
        margin: 0;
        color: #9700e3;
        font-weight: 600;
        font-size: 40px;
        text-align: center;
    }
    .about-left h4 {
        margin: 0;
        color: #9700e3;
        font-weight: 600;
        font-size: 30px;
        text-align: center;
    }
    .about-right {
        padding-left: 50px;
        max-width: 50%;
    }
    .about-right p {
        font-size: 16px;
        margin: 0 0 15px 0;
    }
    .about-right span {
        font-size: 1.8rem;
        font-weight: 500;
        color: #9700e3;
    }
    .local-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 50px;
        margin: 50px 0;
    }
    .local-item {
        background-color: #f9f9f6;
        box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
    }
    .local-pic {
        position: relative;
        width: 100%;
        min-height: 300px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .local-pic h3 {
        position: absolute;
        bottom: 0;
        left: 0;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.48);
        margin: 0;
        padding: 20px;
    }
    .local-item p {
        margin: 0;
        padding: 20px;
    }
    .show-more {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        margin: 50px auto;
        background: #9700e3;
        color: #fff;
        font-size: 20px;
        font-family: omnes-narrow, sans-serif;
        font-weight: 600;
        padding: 20px 40px;
        border: none;
    }
    .blog-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 25px;
    }
    .blog-item {
        padding: 0 0 25px 0;
        background: #fff;
        box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.15);
        border-radius: 2px;
        overflow: hidden;
    }
    .blog-image {
        width: 100%;
        height: 200px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .blog-texts {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .blog-title {
        margin: 10px auto;
        font-size: 18px;
        font-weight: 600;
        color: #9700e3;
        text-decoration: none;
        text-align: center;
    }
    .blog-title:hover {
        text-decoration: underline;
    }
    .blog-item p {
        font-family: poppins, sans-serif;
        margin: 10px auto;
        font-size: 15px;
        font-weight: 500;
        color: #515151;
        text-align: center;
    }
    .contact-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 0;
    }
    .contact-right {
        align-self: flex-start;
        width: calc(50% - 25px);
    }
    .contact-right h3 {
        color: #9700e3;
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }
    .contact-right h4 {
        color: #414141;
        font-size: 20px;
        font-weight: 600;
        margin: 0;
    }
    .contact-right ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .contact-right li {
        font-size: 18px;
        margin: 0;
    }
    .contact-right a {
        font-size: 18px;
        text-decoration: none;
        color: #9700e3;
        background: #f9f9f6;
        padding: 10px 20px;
        display: inline-block;
        margin: 0 20px 20px 0;
        border-radius: 2px;
    }
    .contact-right a:hover {
        background: #9700e3;
        color: #fff;
    }
    #question-form {
        align-self: flex-start;
        width: calc(50% - 25px);
        margin: 0 auto;
        background: #fff;
        border: 4px solid #9700e3;
        padding: 50px 25px;
        border-radius: 10px;
    }
    .faq-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
        margin: 50px 0 0 0;
    }
    .faq-item {
        min-height: 0;
        min-width: 0;
        background-color: #fff;
    }
    .faq-question {
        width: 100%;
        margin: 0;
        padding: 20px 0;
        background: #9700e3;
        color: #fff;
        text-align: center;
        font-size: 20px;
    }
    .faq-answer {
        color: #515151;
        margin: 0;
        padding: 25px;
        font-size: 18px;
    }
}

@media(max-width: 769px) {
    .first-fold {
        position: relative;
        margin: 60px 0 0 0;
        width: 100%;
        background: #9700e3;
    }
    .slideshow {
        width: 100%;
        height: 350px;
    }
    .slideshow-image {
        border-radius: 10px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        height: 350px;
        width: 100%;
    }
    .slideshow-texts {
        position: absolute;
        border-radius: 10px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.35);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .slideshow-texts h1 {
        color: #fff;
        text-align: center;
        font-size: 40px;
        font-weight: 600;
        letter-spacing: 4px;
        text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.64);
        margin: 15px 0;
        line-height: 1;
    }
    .slideshow-texts h2 {
        font-family: omnes-pro, sans-serif;
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.48);
        margin: 15px 0;
        line-height: 0.5;
    }
    .slideshow-texts a {
        color: #fff;
        background-color: #9700e3;
        text-align: center;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;
        padding: 15px 40px;
        margin: 15px 0;
        border-radius: 50px;
    }
    .slider-main {
        width: 100%;
        margin: 50px auto;
        background: linear-gradient(90deg, rgba(63, 94, 189, 0.01), rgba(63, 94, 189, 0.48), rgba(63, 94, 189, 0.01));
    }
    .slider-nav {
        width: 100%;
        margin: 50px auto;
        background: linear-gradient(90deg, rgba(63, 94, 189, 0.01), rgba(63, 94, 189, 0.48), rgba(63, 94, 189, 0.01));
    }
    .main-img {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        height: 200px !important;
    }
    .track-img {
        margin: 0 25px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        height: 150px !important;
    }
    .about-container {
        margin: 50px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .about-left img {
        margin: 0 auto;
        width: 100%;
    }
    .about-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .about-left h3 {
        margin: 0;
        color: #9700e3;
        font-weight: 600;
        font-size: 40px;
        text-align: center;
    }
    .about-left h4 {
        margin: 0;
        color: #9700e3;
        font-weight: 600;
        font-size: 30px;
        text-align: center;
    }
    .about-right {
        padding-left: 0;
        max-width: 100%;
    }
    .about-right p {
        font-size: 16px;
        margin: 0 0 15px 0;
    }
    .about-right span {
        font-size: 1.8rem;
        font-weight: 500;
        color: #9700e3;
    }
    .local-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
        margin: 50px 0;
    }
    .local-item {
        background-color: #f9f9f6;
        box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
    }
    .local-pic {
        position: relative;
        width: 100%;
        min-height: 300px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .local-pic h3 {
        position: absolute;
        bottom: 0;
        left: 0;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.48);
        margin: 0;
        padding: 20px;
    }
    .local-item p {
        margin: 0;
        padding: 20px;
    }
    .show-more {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
        margin: 50px auto;
        background: #9700e3;
        color: #fff;
        font-size: 15px;
        font-family: omnes-narrow, sans-serif;
        font-weight: 600;
        padding: 20px 40px;
        border: none;
    }
    .blog-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }
    .blog-item {
        padding: 0 0 25px 0;
        background: #fff;
        box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.15);
        border-radius: 2px;
        overflow: hidden;
    }
    .blog-image {
        width: 100%;
        height: 220px;
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .blog-texts {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .blog-title {
        margin: 10px auto;
        font-size: 18px;
        font-weight: 600;
        color: #9700e3;
        text-decoration: none;
        text-align: center;
    }
    .blog-title:hover {
        text-decoration: underline;
    }
    .blog-item p {
        font-family: poppins, sans-serif;
        margin: 10px auto;
        font-size: 15px;
        font-weight: 500;
        color: #515151;
        text-align: center;
    }
    .contact-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin: 0;
    }
    .contact-right {
        align-self: flex-start;
        width: 100%;
    }
    .contact-right h3 {
        color: #9700e3;
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }
    .contact-right h4 {
        color: #414141;
        font-size: 15px;
        font-weight: 600;
        margin: 0;
    }
    .contact-right ul {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .contact-right li {
        font-size: 15px;
        margin: 0;
    }
    .contact-right a {
        font-size: 15px;
        text-decoration: none;
        color: #9700e3;
        background: #f9f9f6;
        padding: 10px 20px;
        display: inline-block;
        margin: 0 20px 20px 0;
        border-radius: 2px;
    }
    .contact-right a:hover {
        background: #9700e3;
        color: #fff;
    }
    #question-form {
        align-self: flex-start;
        width: 100%;
        margin: 0 auto 50px auto;
        background: #fff;
        border: 4px solid #9700e3;
        padding: 50px 25px;
        border-radius: 10px;
    }
    .faq-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
        margin: 50px 0 0 0;
    }
    .faq-item {
        min-height: 0;
        min-width: 0;
        background-color: #fff;
    }
    .faq-question {
        width: 100%;
        margin: 0;
        padding: 20px 0;
        background: #9700e3;
        color: #fff;
        text-align: center;
        font-size: 20px;
    }
    .faq-answer {
        color: #515151;
        margin: 0;
        padding: 25px;
        font-size: 15px;
    }
}
