/* Fontes */

@font-face {
  font-family: 'Poppins';
  src: url('/assets/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Geral */

*,
*::before,
*::after {
  margin: 0px;
  padding: 0px;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  width: fit-content;
}

h1, h2, h3, h4, h5, p, span {
    margin: 0px;
    line-height: 1;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    padding: 0px;
    margin: 0px;
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

.column { flex-direction: column; }
.row { flex-direction: row; }

.center { justify-content: center; align-items: center; }
.jc-center { justify-content: center; }
.jc-between { justify-content: space-between; }
.jc-around { justify-content: space-around; }
.jc-end { justify-content: flex-end; }

.ai-center { align-items: center; }
.ai-start { align-items: flex-start; }
.ai-end { align-items: flex-end; }

.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-80 { gap: 80px; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bold { font-weight: 700; }
.reg { font-weight: 400; }
.semibold { font-weight: 600; }
.light { font-weight: 300; }

.upper { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }

.hidden { display: none; }
.overflow-hidden { overflow: hidden; }

.btn-primary{
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: inset 0 -2px 0 #fff;
    padding: 16px 12px;
    background-color: #ffffff1a;
    color: #fff;
    text-decoration: none;
    transition: box-shadow .3s ease, color .3s ease;
}

.small{
    display: none;
}

.btn-primary svg {
    fill: #fff;
    transition: fill .3s ease;
}

.btn-primary:hover {
    box-shadow: inset 0 -58px 0 #fff;
    color: #000;
}

.btn-primary:hover svg {
    fill: #000;
}

.btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    background-color: #4267b2;
    width: fit-content;
    padding: 12px 16px;
    border-radius: 80px;
    transition: background-color .5s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary svg {
    background-color: #fff;
    border-radius: 50%;
    fill: #4267b2;
    transition: fill .5s ease;
}

.btn-secondary:hover {
    background-color: #25d366;
}

.btn-secondary:hover svg {
    fill: #25d366;
}

.section-container {
    background-color: #fff;
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}


/* Hero */

#hero {
    height: 704px;
    width: 100%;
    background: linear-gradient(to right, #00000040, #00000040), url(assets/hero_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

#hero header {
    width: 100%;
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
    padding: 32px 0px;
}

.hero-content {
    width: fit-content;
    color: #fff;
    margin: 0px 0px 120px 120px;
}

.hero-text {
    gap: 20px;
}

.hero-text h1 {
    font-size: 72px;
}

.hero-text p {
    font-size: 21px;
    opacity: .9;
    line-height: 0px;
    opacity: .9;
    filter: blur(0);
}

/* Slider */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-80%);
    }
}

#plans-slider {
    position: relative;
    height: 100px;
    background: #4267b2;
    display: flex;
    align-items: center;
    z-index: 99;
}

.slider {
    position: relative;
    overflow: hidden;
    width: 800px;
}

.slider::before,
.slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.slider::before {
    left: 0;
    background: linear-gradient(to right, #4267b2 0%, #4267b200 100%);
}

.slider::after {
    right: 0;
    background: linear-gradient(to left, #4267b2 0%, #4267b200 100%);
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
    will-change: transform;
}

.slider-group {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-right: 60px;
}

.slide {
    display: flex;
    align-items: center;
}

.slide img{
    width: 120px;
    display: block;
}

/* Tipos de Seguros */

.plans-types {
    background: linear-gradient(to bottom, #ebebeb 80%, #ebebeb0f);
}

.svg-container {
    position: absolute;
    margin: 12px 0px 0px -4px;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.type-container {
    position: relative;
    display: flex;
    gap: 80px;
    z-index: 2;
}

.type-container.small{
    display: none;
}

.type-container img {
    height: 320px;
    border-radius: 20px;
}

.type-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    width: 552px;
}

.type-container h2 {
    font-size: 60px;
    font-weight: 500;
    line-height: 80px;
}

.type-container:first-child h2 {
    font-size: 72px;
}

.type-container p {
    font-size: 17px;
    opacity: .8;
}

/* Porque Greice */

.why-title h2{
    font-size: 50px;
    font-weight: 500;
}

.why-container {
    height: 500px;
    background: url(assets/why_greice_bg.webp);
    background-position: center bottom;
    background-size: 680px;
    background-repeat: no-repeat;
}

.why-image {
    height: 384px;
    border-radius: 24px 12px;
}

.why-image:first-child {
    margin-top: 40px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 280px;
    border-radius: 16px;
    padding: 20px 30px;
    background: #fff;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    max-height: 70px;
    transition: max-height .5s ease, transform .5s ease, box-shadow .5s ease;
}

.feature-card:not(.active) {
    padding: 12px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.feature-card:not(.active) h3,
.feature-card:not(.active) p {
    display: none;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.icon {
    width: 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b5bdb;
    font-size: 16px;
}

.number {
    font-size: 14px;
    font-weight: 500;
    color: #2f4fc4;
    height: 24px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2f4fc4;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.4;
    color: #2f4fc4d9;
    transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease;
}

.feature-card.active,
.feature-card:hover {
    max-height: fit-content;
}

.feature-card.active p,
.feature-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* CTA */

#cta {
    position: relative;
    z-index: -1;
    height: 520px;
    width: 100%;
    background: linear-gradient(to right, #00000040, #00000040), url(assets/cta_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: end;
}

.cta-content {
    width: 100%;
    color: #fff;
    margin: 0px 0px 60px 80px;
}

.cta-text h1 {
    font-size: 52px;
    line-height: 1;
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 18px;
    font-weight: 400;
    opacity: .9;
    filter: blur(0);
}

/* Como funciona */

.svg-container.dois{
    position: absolute;
    margin: -80px 0px 0px 8px;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hiw-title{
    width: fit-content;
    padding: 16px 16px;
    border-radius: 12px 12px 8px 8px;
    background-color: rgb(66, 103, 178, .2);
    color: #4267B2;
    border-bottom: 4px solid #4267B2;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
}

.cards-container{
    position: relative;
    margin: 60px 0px;
    width: 1400px;
    height: 1000px;
}

.hiw-card{
    position: relative;
    color: #fff;
    width: 412px;
    height: 200px;
    border-radius: 22px;
    background-color: #4267B2;
}

.hiw-card.one{
    position: absolute;
    left: 120px;
    top: 80px;
}

.hiw-card.two{
    position: absolute;
    right: 100px;
    top: 156px;
}

.hiw-card.three{
    position: absolute;
    left: 80px;
    top: 516px;
}

.hiw-card.four{
    position: absolute;
    right: 240px;
    top: 680px;
}

.hiw-card .title{
    font-size: 52px;
    font-weight: 600;
    line-height: 1.6;
}

.hiw-card .text{
    font-size: 16px;
    opacity: .9;
}

.hiw-card-text{
    width: 352px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hiw-icon{
    position: absolute;
    top: -20px;
    right: -20px;
}

.hiw-icon img{
    height: 80px;
}

/* FAQ */

.highlight-line {
    width: 900px;
    height: 5px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(to right, #4267b233 0%, #4267B2 50%, #4267b200 100%);
    box-shadow: 0 -4px 28px rgba(66, 103, 178, 1);
    position: absolute;
    bottom: 0;
}

.highlight-line:first-child{
    transform: rotateX(180deg);
    top: 0;
}

.faq-title{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-right: 100px;
}

.fade-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;

    background: linear-gradient(to right,
            #000 0%,
            #000 70%,
            rgba(0, 0, 0, 0.3) 85%,
            rgba(0, 0, 0, 0.05) 800%);

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-title h2{
    font-size: 70px;
    font-weight: 500;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 500px;
    background: url(assets/faq-bg.png);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: center center;
}

.faq-item {
    border-radius: 16px;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 22px;
    border-radius: 16px;
    font-size: 22px;
    color: #2f4fc4;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(66, 103, 178, 0.15);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    color: #2f4fc4ef;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 16px 20px 16px 20px;
}

.faq-item.active .faq-question {
    box-shadow: 0px 2px 10px rgba(66, 103, 178, 0.15);;
}

/* Footer */

.footer-header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    padding: 20px 0px 0px 0px;
}

.footer-header .upper{
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 22px;
}

.footer-header .rights{
    font-weight: 500;
}

.footer-icons{
    fill: #000;
}

.footer-icons:hover{
    fill: #2f4fc4;
}

.contact-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: fit-content;
}

.contact-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: contactScroll 24s linear infinite;
    line-height: 1;
    transition: animation-play-state 2s ease;
}

.contact-track:hover{
    animation-play-state: paused;
}

.contact-btn {
    font-size: 140px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 4px #000;
    text-decoration: none;
    white-space: nowrap;
}

@keyframes contactScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Media Queries */

/* Tablets */
@media (max-width: 1104px) {
    .btn-primary {
        font-size: 12px;
        align-items: center;
    }

    .btn-primary svg {
        height: 16px;
    }

    .small {
        display: flex;
    }

    .pc{
        display: none;
    }

    #hero {
        height: 632px;
        background-position: right;
    }

    .btn-secondary {
        font-size: 12px;
    }

    .btn-secondary svg {
        height: 20px;
        width: 20px;
    }

    .hero-content {
        margin: 60px auto;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-text p {
        font-size: 16px;
        margin-top: 16px;
    }

    #cta {
        height: 520px;
        background-position: center;
    }

    .cta-text h1 {
        font-size: 40px;
        line-height: 1;
        margin-bottom: 16px;
    }

    .cta-text p {
        margin-bottom: 16px;
    }

    .svg-container {
        display: none;
    }

    .type-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .type-container.small {
        display: flex;
    }

    .small{
        display: flex;
    }

    .pc{
        display: none;
    }

    .type-container img {
        height: 280px;
        width: 280px;
    }

    .type-content {
        gap: 8px;
        display: flex;
        align-items: center;
    }

    .type-container h2 {
        font-size: 32px;
        width: 340px;
        text-align: center;
        line-height: 1;
    }

    .type-container:first-child h2 {
        font-size: 32px;
        text-align: center;
    }

    .type-container p {
        text-align: center;
        width: 340px;
        font-size: 16px;
        opacity: .8;
    }

    .why-title h2{
        font-size: 24px;
    }

    .why-container {
        background-position: center top;
        background-size: 440px;
    }

    .hiw-title{
        font-size: 24px;
    }

    .cards-container{
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: 100%;
        height: 100%;
    }

    .hiw-card{
        color: #fff;
        width: 320px;
        height: 150px;
    }

    .hiw-card.one{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card.two{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card.three{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card.four{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card .title{
        font-size: 32px;
        font-weight: 600;
        line-height: 1.6;
    }

    .hiw-card .text{
        font-size: 12px;
        opacity: .9;
    }

    .hiw-card-text{
        width: 280px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hiw-icon{
        position: absolute;
        top: -20px;
        right: -20px;
    }

    .hiw-icon img{
        height: 60px;
    }

    .highlight-line{
        width: 380px;
        height: 2px;
    }

    .faq-title{
        margin: -100px auto 6px auto;
    }

    .faq-title{
        align-items: center;
        width: 380px;
    }

    .faq-title h2{
        font-size: 20px;
    }

    .faq-container{
        flex-direction: column;
        gap: 32px;
    }

    .faq {
        width: fit-content;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 12px;
    }
}

/* Telas pequenas / celulares grandes */
@media (max-width: 768px) {
    .btn-primary {
        font-size: 12px;
        align-items: center;
    }

    .btn-primary svg {
        height: 16px;
    }

    .small {
        display: flex;
    }

    .pc{
        display: none;
    }

    #hero {
        height: 632px;
        background-position: right;
    }

    .btn-secondary {
        font-size: 12px;
    }

    .btn-secondary svg {
        height: 20px;
        width: 20px;
    }

    .hero-content {
        display: flex;
        align-items: center;
        width: 328px;
        color: #fff;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 44px;
        text-align: center;
    }

    .hero-text p {
        font-size: 16px;
        opacity: .9;
        line-height: 1;
        filter: blur(0);
    }

    #cta {
        height: 520px;
        background-position: center;
    }

    .cta-content {
        display: flex;
        align-items: center;
        width: 328px;
        color: #fff;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .cta-text{
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .cta-text h1 {
        font-size: 24px;
        text-align: center;
        line-height: 1;
        margin-bottom: 0px;
    }

    .cta-text p {
        font-size: 14px;
        opacity: .9;
        line-height: 1;
        filter: blur(0);
    }

    .svg-container {
        display: none;
    }

    .type-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .type-container.small {
        display: flex;
    }

    .small{
        display: flex;
    }

    .pc{
        display: none;
    }

    .type-container img {
        height: 280px;
        width: 280px;
    }

    .type-content {
        gap: 8px;
        display: flex;
        align-items: center;
    }

    .type-container h2 {
        font-size: 32px;
        width: 340px;
        text-align: center;
        line-height: 1;
    }

    .type-container:first-child h2 {
        font-size: 32px;
        text-align: center;
    }

    .type-container p {
        text-align: center;
        width: 340px;
        font-size: 16px;
        opacity: .8;
    }

    .why-title h2{
        font-size: 24px;
    }

    .why-container {
        background-position: center top;
        background-size: 440px;
    }

    .hiw-title{
        font-size: 24px;
    }

    .cards-container{
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: 100%;
        height: 100%;
    }

    .hiw-card{
        color: #fff;
        width: 320px;
        height: 150px;
    }

    .hiw-card.one{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card.two{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card.three{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card.four{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card .title{
        font-size: 32px;
        font-weight: 600;
        line-height: 1.6;
    }

    .hiw-card .text{
        font-size: 12px;
        opacity: .9;
    }

    .hiw-card-text{
        width: 280px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hiw-icon{
        position: absolute;
        top: -20px;
        right: -20px;
    }

    .hiw-icon img{
        height: 60px;
    }

    .highlight-line{
        width: 380px;
        height: 2px;
    }

    .faq-title{
        margin: -100px auto 6px auto;
    }

    .faq-title{
        align-items: center;
        width: 380px;
    }

    .faq-title h2{
        font-size: 20px;
    }

    .faq-container{
        flex-direction: column;
        gap: 32px;
    }

    .faq {
        width: fit-content;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 12px;
    }

    .footer-header{
        gap: 10px;
    }

    .footer-header .upper{
        font-size: 22px;
    }

    .footer-header .rights{
        width: 290px;
        font-size: 12px;
    }

    .footer-icons-container{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .footer-icons{
        fill: #000;
    }

    .footer-icons:hover{
        opacity: .8;
    }
}

/* Celulares */
@media (max-width: 480px) {
    .btn-primary {
        font-size: 12px;
        align-items: center;
    }

    .btn-primary svg {
        height: 16px;
    }

    .small {
        display: flex;
    }

    .pc{
        display: none;
    }

    #hero {
        height: 632px;
        background-position: right;
    }

    .btn-secondary {
        font-size: 12px;
    }

    .btn-secondary svg {
        height: 20px;
        width: 20px;
    }

    .hero-content {
        display: flex;
        align-items: center;
        width: 328px;
        color: #fff;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 44px;
        text-align: center;
    }

    .hero-text p {
        font-size: 16px;
        opacity: .9;
        line-height: 1;
        filter: blur(0);
    }

    #cta {
        height: 520px;
        background-position: center;
    }

    .cta-content {
        display: flex;
        align-items: center;
        width: 328px;
        color: #fff;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .cta-text{
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .cta-text h1 {
        font-size: 24px;
        text-align: center;
        line-height: 1;
        margin-bottom: 0px;
    }

    .cta-text p {
        font-size: 14px;
        opacity: .9;
        line-height: 1;
        filter: blur(0);
    }

    .svg-container {
        display: none;
    }

    .type-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .type-container.small {
        display: flex;
    }

    .small{
        display: flex;
    }

    .pc{
        display: none;
    }

    .type-container img {
        height: 280px;
        width: 280px;
    }

    .type-content {
        gap: 8px;
        display: flex;
        align-items: center;
    }

    .type-container h2 {
        font-size: 32px;
        width: 340px;
        text-align: center;
        line-height: 1;
    }

    .type-container:first-child h2 {
        font-size: 32px;
        text-align: center;
    }

    .type-container p {
        text-align: center;
        width: 340px;
        font-size: 16px;
        opacity: .8;
    }

    .why-title h2{
        font-size: 24px;
    }

    .why-container {
        background: none;
    }

    .hiw-title{
        font-size: 24px;
    }

    .cards-container{
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: 100%;
        height: 100%;
    }

    .hiw-card{
        color: #fff;
        width: 320px;
        height: 150px;
    }

    .hiw-card.one{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card.two{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card.three{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card.four{
        position: inherit;
        left: 0px;
        top: 0px;
    }

    .hiw-card .title{
        font-size: 32px;
        font-weight: 600;
        line-height: 1.6;
    }

    .hiw-card .text{
        font-size: 12px;
        opacity: .9;
    }

    .hiw-card-text{
        width: 280px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hiw-icon{
        position: absolute;
        top: -20px;
        right: -20px;
    }

    .hiw-icon img{
        height: 60px;
    }

    .highlight-line{
        width: 280px;
        height: 2px;
    }

    .faq-title{
        margin: -100px auto 6px auto;
    }

    .faq-title{
        align-items: center;
        width: 380px;
    }

    .faq-title h2{
        font-size: 20px;
    }

    .faq-container{
        flex-direction: column;
        gap: 32px;
    }

    .faq {
        width: fit-content;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 12px;
    }

    .footer-header{
        gap: 10px;
    }

    .footer-header .upper{
        font-size: 22px;
    }

    .footer-header .rights{
        width: 160px;
        font-size: 12px;
    }

    .footer-icons-container{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .footer-icons-container{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .footer-icons{
        fill: #000;
    }

    .footer-icons:hover{
        opacity: .8;
    }
}