.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #85d2d0;
    text-align: center;
}



.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    font-family: "Lora", serif;

}

.navbar {
    z-index: 10;
    /* Ensure navbar stays above other content */
    background-color: #85d2d0;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: #85d2d0 !important;
    font-family: "Lora", serif;
    font-size: large;

}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
    font-family: 'Varela Round';
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
        color: #887bb0;
        font-family: 'Varela Round';
    }
}

h2 {
    font-size: 36px;
    color: #85d2d0 !important;
    margin-bottom: 30px;
    font-family: 'Lora';
}

/* INIZIO BANNER */
.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #887bb0;
}

.image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
    transition: filter 0.5s ease-in-out;
}

.banner-section:hover .image-layer {
    filter: brightness(0.5);
}

.auto-container {
    max-width: 1200px;
    padding: 0 15px;
    width: 100%;
    text-align: center;
}

.content-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: fadeIn 1.5s ease-in-out;
}

.content .inner {
    max-width: 800px;
}

.services-title {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: slideInLeft 1s ease;
}

h1 {
    font-size: 48px;
    margin: 0;
    line-height: 1.2;
    animation: slideInRight 1s ease;
    font-family: "Lora", serif;
    color: #85d2d0;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.scroll-down .scroll-to-target {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.scroll-down .icon {
    font-size: 16px;
    color: #887bb0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    .services-title {
        font-size: 14px;
    }

    .scroll-down .scroll-to-target {
        width: 30px;
        height: 30px;
    }
}

/* FINE BANNNER */

p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
    font-size: 25px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

header {
    background: #85d2d0;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

h1,
h2,
h3 {
    color: #85d2d0;
}

.section {
    padding: 20px 0;
}

.section:nth-child(even) {
    background-color: #887bb0;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #85d2d0 !important;
    display: inline-block;
    margin: 0 10px;
}

.link-box {
    text-align: center;
}

.theme-btn {
    background-color: #85d2d0;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.theme-btn:hover {
    background-color: #73b7b5;
    transform: scale(1.1);
}

/* SECTION PROCESS */
.align-items-center {
    align-items: center !important;
    background-color: lavender;
}

/* SECTION PROCESS */

/* FAQ SECTION */
.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    margin-bottom: 10px;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 1rem;
    color: black;
    text-align: left;
    background-color: lavender;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
    font-family: 'Lora', serif;
    font-size: 20px;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #85d2d0;
    outline: 0;
    box-shadow: #85d2d0;
}


.team-section {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-around;
}

.team-member {
    flex: 0 0 45%;
    background: #fff;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member img {
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    width: 10%;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member:hover img {
    transform: rotate(10deg);
}

.special-section {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border: 2px solid #85d2d0;
    border-radius: 10px;
    margin: 20px 0;
    animation: fadeInUp 1s ease;
}

.special-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease;
    font-family: 'Lora';
}

.special-section p {
    font-size: 18px;
    margin: 10px 0;
    animation: fadeInRight 1s ease;
}

.special-section ul {
    list-style-type: none;
    padding: 0;
    animation: fadeIn 1.5s ease;
}

.special-section ul li {
    margin: 10px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInLi 2s forwards;
}

.special-section ul li:nth-child(1) {
    animation-delay: 0.2s;
}

.special-section ul li:nth-child(2) {
    animation-delay: 0.4s;
}

.special-section ul li:nth-child(3) {
    animation-delay: 0.6s;
}

.special-section ul li:nth-child(4) {
    animation-delay: 0.8s;
}

.special-section ul li:nth-child(5) {
    animation-delay: 1s;
}

.special-section ul li:nth-child(6) {
    animation-delay: 1.2s;
}

.special-section ul li:nth-child(7) {
    animation-delay: 1.4s;
}

.special-section ul li:nth-child(8) {
    animation-delay: 1.6s;
}

.special-section ul li:nth-child(9) {
    animation-delay: 1.8s;
}

.special-section ul li:nth-child(10) {
    animation-delay: 2s;
}

.special-section ul li:nth-child(11) {
    animation-delay: 2.2s;
}

.special-section .price {
    font-size: 25px;
    font-weight: bold;
    margin-top: 20px;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInLi {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* INIZIO AFFIANCAMENTO SPIEGATO */
.anim-element {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
}

.anim-circle {
    width: 100px;
    height: 100px;
    background: #FFD700;
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.anim-diamond {
    width: 60px;
    height: 60px;
    background: #00BFFF;
    transform: rotate(45deg);
    animation: spin 5s infinite linear;
}

.anim-line {
    width: 100%;
    height: 4px;
    background: #32CD32;
    animation: slide 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* FINE AFFIANCAMENTO SPIEGATO */

/* INIZIO CTA  */
/* Base Styles */
.call-to-section {
    position: relative;
    padding: 100px 0;
    background-color: #f9f9f9;
    overflow: hidden;
    text-align: center;
    /* background-image: url('assets/img/home/CTA_IMAGE.png'); */
    background-color: #887bb0;
}

.section:nth-child(even) {
    background-color: #fff !important;
}

/* Timeline styles */
/* Animate.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

/* Timeline styles */
.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.timeline-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #85d2d0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    position: relative;
}

.timeline-content {
    margin-left: 20px;
    padding: 10px 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
}

.timeline-content h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
}

.timeline-content p {
    margin: 0;
    font-size: 20px;
    color: #000;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    height: 100%;
    width: 2px;
    background-color: #85d2d0;
}

.timeline-step:last-child::before {
    display: none;
}

.text-background {
    background-color: rgba(0, 0, 0, 0.5);
    /* Colore di sfondo con trasparenza */
    padding: 20px;
    /* Spaziatura interna */
    border-radius: 10px;
    /* Bordo arrotondato */
    color: white;
    /* Colore del testo */
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 20px;
}

.bubble-dotted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bubble-dotted .dotted {
    position: absolute;
    background-color: #887bb0;
    border-radius: 50%;
}

.dotted-1 {
    top: 10%;
    left: 10%;
    width: 20px;
    height: 20px;
}

.dotted-2 {
    top: 20%;
    left: 30%;
    width: 15px;
    height: 15px;
}

.dotted-3 {
    top: 40%;
    left: 60%;
    width: 25px;
    height: 25px;
}

.dotted-4 {
    top: 60%;
    left: 80%;
    width: 18px;
    height: 18px;
}

.dotted-5 {
    top: 80%;
    left: 50%;
    width: 22px;
    height: 22px;
}

.dotted-6 {
    top: 10%;
    left: 80%;
    width: 15px;
    height: 15px;
}

.dotted-7 {
    top: 30%;
    left: 20%;
    width: 20px;
    height: 20px;
}

.dotted-8 {
    top: 50%;
    left: 40%;
    width: 17px;
    height: 17px;
}

.dotted-9 {
    top: 70%;
    left: 70%;
    width: 30px;
    height: 30px;
}

.dotted-10 {
    top: 90%;
    left: 90%;
    width: 25px;
    height: 25px;
}

.auto-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.content {
    max-width: 700px;
    margin: 0 auto;
}

.sub-title {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Lora';
}

h2 {
    font-size: 36px;
    color: black;
    margin-bottom: 30px;
    font-family: 'Varela Round ';
}

.link-box {
    display: flex;
    justify-content: center;
}

.theme-btn {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 30px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.btn-style-one {
    color: #fff;
    background-color: #887bb0;
    border: none;
}

.btn-style-two {
    color: #887bb0;
    background-color: transparent;
    border: 2px solid #887bb0;
}

.theme-btn:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 767px) {
    .content {
        padding: 0 15px;
        /* Aggiunge spazio ai lati del contenuto */
    }
}

/* FINE CTA */

.gif-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gif-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* INIZIO SCROLL  */
/* INIZIO CASO STUDIO  */
h2 {
    font-size: 36px;
    color: black;
    margin-bottom: 30px;
    font-family: 'Varela Round ';
    text-align: center;
}

/* Contenitore della sezione */
.scroll-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.scroll-paragraph {
    list-style-type: none;
    padding-left: 0;
    font-size: 1rem;
}

.scroll-paragraph li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.scroll-paragraph li:before {
    content: " ";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.scroll-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.scroll-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    gap: 30px;
    background-color: #fff;
}

.scroll-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.text-column h2 {
    color: #887bb0;
    margin-bottom: 20px;
    font-size: 36px;
    font-family: "Varela Round", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.text-column p {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    font-family: "Varela Round", sans-serif;
}

.text-column ul {
    font-size: 25px;
    color: #000;
    line-height: 1;
    font-family: "Varela Round", sans-serif;
}

.media-column .media-video {
    width: 55%;
    height: auto;
    border-radius: 10px;
    background-color: #fff;
}

/* FINE CASO STUDIO */
/* FINE SCROLL */

/* COSA SI PUò AGGIUNGERE SECTION  */
.card-hover {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-hover:hover {
    transform: scale(1.05);
}

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: transform 0.6s ease;
    backface-visibility: hidden;
}

.card-front {
    background: #85d2d0;
    color: #fff;
    z-index: 2;
}

.card-back {
    background: #85d2d0;
    color: #000;
    transform: rotateY(180deg);
    z-index: 1;
}

.card-hover:hover .card-front {
    transform: rotateY(180deg);
}

.card-hover:hover .card-back {
    transform: rotateY(0);
}

.card-hover h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #887bb0;
}

.card-hover p {
    font-size: 1rem;
}

.card-hover ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-hover ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #fff;
}

.text-center {
    text-align: center !important;
    color: #887bb0;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
    font-size: 20px;
    text-align: center;
    color: #000;
}

/* COSA SI PUò AGGIUNGERE SECTION  */

/* INIZIO SEZIONE PODCAST */
.podcast-section {
    background-color: #fff;
    padding: 3rem 0;
}

.podcast-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    animation: fadeInDown 1s ease-in-out;
}

.podcast-section p {
    font-size: 1.25rem;
    color: #555;
    animation: fadeInUp 1s ease-in-out;
}

.video-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: zoomIn 0.8s ease-in-out;
}

.video-container video {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.video-container:hover video {
    transform: scale(1.05);
}

.social-icons {
    margin-top: 2rem;
    animation: fadeInUp 1s ease-in-out;
}

.social-icons a {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* FINE SEZIONE PODCAST */
.mb-4 {
    margin-bottom: 1.5rem !important;
    text-align: center;
}
.info-block .inner .social-links a {
    color: #00BFFF;
    margin: 0 5px;
}
.info-block .inner .social-links a {
    color: #000;
    margin: 0 5px;
}
/* INIZIO TIMELINE  */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.timeline-section {
    width: 100%;
    overflow-x: scroll;
    background-color: #fff;
    padding: 50px 0;
}

.timeline-container {
    /* display: flex; */
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
    padding: 0 20px;
    position: relative;
}

.timeline-step {
    flex: 0 0 auto;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-step.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    padding: 20px;
    text-align: center;
    background-color: #fff;
    color: #85d2d0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #887bb0;
}

.timeline-content p {
    font-size: 18px;
    color: #000;
}

/* FINE TIMELINE  */
/* INIZIO FOOTER */
/* Base Styles */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
}

a {
    color: #887bb0;
    text-decoration: none;
}

.auto-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.widgets-section {
    margin-bottom: 30px;
}

.column {
    margin-bottom: 30px;
}

.footer-widget h3 {
    font-size: 22px;
    color: #887bb0;
    margin-bottom: 20px;
}

.footer-widget .widget-content {
    color: #ccc;
}

.footer-widget ul {
    padding: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #887bb0;
}

.news-widget .news-post {
    margin-bottom: 20px;
}

.news-widget .news-post h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.news-widget .news-post .date {
    color: #999;
}

.news-widget .news-post .date .icon {
    margin-right: 5px;
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
}

.outer-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info-block {
    flex: 1 1 calc(25% - 30px);
    margin: 15px;
    text-align: center;
    vertical-align: middle;
}

.info-block .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-block .inner .icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.info-block .inner .info-title {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-block .inner .phone,
.info-block .inner .email,
.info-block .inner .address,
.info-block .inner .social-links {
    font-size: 20px;
    margin-bottom: 5px;
}

.info-block .inner .social-links a {
    color: #887bb0;
    margin: 0 5px;
}

.info-block .inner .social-links a:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .column {
        margin-bottom: 50px;
    }

    .footer-widget ul li {
        margin-bottom: 15px;
    }

    .info-block {
        flex: 1 1 50%;
    }
}

@media (max-width: 767px) {
    .info-block {
        flex: 1 1 100%;
    }
}

img,
svg {
    vertical-align: middle;
    width: 100%;
}

.text {
    font-size: 18px;
    color: #85d2d0;
}

.news-widget .news-post h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #887bb0;
}

.news-widget .news-post .date {
    color: #85d2d0;
}

.btn-style-two {
    color: white;
    background-color: #887bb0;
    border: 2px solid #887bb0;
}

/* FINE FOOTER */