@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Kallisto';
    src: url('../fonts/fonnts.com-Kallisto_Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Kallisto';
    src: url('../fonts/fonnts.com-Kallisto_Thin_Italic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Kallisto';
    src: url('../fonts/fonnts.com-Kallisto_Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Kallisto';
    src: url('../fonts/fonnts.com-Kallisto_Light_Italic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Kallisto';
    src: url('../fonts/fonnts.com-Kallisto_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Kallisto';
    src: url('../fonts/fonnts.com-Kallisto_Medium_Italic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Kallisto';
    src: url('../fonts/fonnts.com-Kallisto_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Kallisto';
    src: url('../fonts/fonnts.com-Kallisto_Bold_Italic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Kallisto';
    src: url('../fonts/fonnts.com-Kallisto_Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Kallisto';
    src: url('../fonts/fonnts.com-Kallisto_Heavy_Italic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

:root {
    --primary-blue: #1690CC;
    --primary-orange: #FF6300;
    --text-color: #2F424F;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
  

body {
    width: 100vw;
    font-family: "Poppins", sans-serif !important;
    font-size: 16px;
    color: var(--text-color);
    background-color: #EAEBEC;
}

#navbar {
    position: fixed;
    top: 50px;
    left: 0;
    display: flex;
    justify-content: center;
    width: 100vw;
    color: #2F424F;
    z-index: 10;
    background-color: transparent;
    transition: top 0.3s ease-in-out background-color 0.3s ease-in-out;
    font-family: "Poppins", sans-serif;

    @media (max-width: 768px) {
        justify-content: space-between;
    }

    @media (max-width: 480px) {
        padding-top: 5px;
    }
}

#navbar.fixed {
    top: 0;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1280px;
    width: 100%;
    padding: 0 1rem;
}

#logo-navbar {
    height: 4rem;
    width: auto;
    margin: auto 0;
    margin-right: 1rem;

    @media (max-width: 480px) {
        height: 3rem;
    }
}

#navbar .menu-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    @media (max-width: 480px) {
        flex-direction: row-reverse;;
    }
}

#navbar.scrolled {
    background-color: rgba(209, 225, 232, 0.9);
}

#navbar .options {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
    max-width: 1280px;
    width: 100%;
    margin: 3rem 0;
    padding: 0 1rem;
    font-size: 20px;

    @media (max-width: 1100px) {
        font-size: 18px;
    }
}

#navbar .options a {
    color: #2F424F;
    text-transform: uppercase;
}

#navbar .options .active {
    color: var(--primary-blue);
}
  

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
    padding: 10px;
    color: white;
}

@media (max-width: 768px) {
    #navbar ul.options {
        display: none;
        flex-direction: column;
        background-color: rgba(209, 225, 232, 0.9);
        position: absolute;
        width: 100vw;
        top: 0.9rem;
        left: 0;
        z-index: 1;
        padding: 0 2rem;
        gap: 0.2rem;
    }

    #navbar ul.options li {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-top: 1px solid #444;
    }

    .options .divisor {
        display: none;
    }

    .hamburger {
        display: block;
        padding: 1rem;
    }
}

#navbar ul.options.active {
    display: flex;
}

#presentation {
    display: flex;
    justify-content: center;
    width: 100vw;
    padding-top: 14rem;
    background: url('../images/bg-main-elements.webp');
    background-repeat: no-repeat;
    background-position: top left, top right;
    background-size: 100%;

    @media (max-width: 480px) {
        padding-top: 10rem;
    }
}

#presentation .presentation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media (max-width: 480px) {
        flex-direction: column;
        gap: 2rem;
    }
}

#presentation .left-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    width: 60%;

    @media (max-width: 480px) {
        width: 100%;
    }
}

#presentation .title {
    width: 80%;
    font-family: 'Kallisto';
    font-size: 40px;
    line-height: 3rem;
    font-weight: 700;
    color: var(--primary-blue);

    @media (max-width: 480px) {
        width: 100%;
        font-size: 28px;
        line-height: 2rem;
    }
}

#presentation .title span {
    color: var(--primary-orange);
}

#presentation .description {
    width: 80%;
    font-size: 22px;
    font-weight: 300;

    @media (max-width: 480px) {
        width: 100%;
    }
}

#presentation .buttons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;

    @media (max-width: 480px) {
        grid-template-columns: 1fr;
    }
}

#presentation .buttons-container button {
    width: 100%;
    height: 100%;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.8rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
}

#presentation .button-orange {
    background-color: var(--primary-orange);
    color: white;
    border: none;
}

#presentation .button-white {
    background: linear-gradient(#EAEBEC, #EAEBEC) padding-box, 
                linear-gradient(to right, #1690CC, #FF6300) border-box;
    border: 2px solid transparent;
    transition: border-color 0.4s ease-in-out;
    color: var(--primary-blue);
}

#presentation .right-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    position: relative;

    @media (max-width: 480px) {
        width: 100%;
    }
}

#presentation .right-container img {
    position: absolute;
    right: 0;
    width: 115%;
    height: auto;

    @media (max-width: 480px) {
        position: static;
    }
}

#presentation-video {
    width: 100%;
    margin: 6rem 0;
    border-radius: 2rem;
}

.bold {
    font-weight: 600;
}

#sectors {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    padding: 2rem 0 4rem 0;
}

#sectors .title {
    margin: 0 auto;
    text-align: center;
    font-family: 'Kallisto';
    font-size: 30px;
    line-height: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);

    @media (max-width: 480px) {
        font-size: 30px;
        line-height: 2.4rem;
    }
}

#sectors .title span {
    color: var(--primary-orange);
}

#sectors .sectors-boxes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 100%;
    margin: 4rem 0;

    @media (max-width: 480px) {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

#sectors .sectors-boxes img {
    width: 100%;
    height: auto;
}

.solution-topics {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

    @media (max-width: 480px) {
        flex-direction: column;
        gap: 2rem;
    }
}

.solution-topics .left-side {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;

    @media (max-width: 480px) {
        width: 100%;
    }
}

.solution-topics .left-side img {
    width: 100%;
    height: auto;
}

.solution-topics .right-side {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4rem;
    width: 50%;
    padding: 0 0 0 1.8rem;

    @media (max-width: 480px) {
        flex-direction: column;
        width: 100%;
        gap: 2rem;
    }
}

.solution-topics .right-side ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    width: 50%;
    list-style-type: disc;
    list-style-position: outside;

    @media (max-width: 480px) {
        width: 100%;
    }
}

.solution-topics .right-side li {
    line-height: 1.4rem;
    font-weight: 600;
}

.solution-topics .right-side li::marker {
    color: var(--primary-orange);
    font-size: 1.6rem;
}

#sectors .button-orange {
    font-family: "Kallisto", sans-serif;
    margin: 4rem auto 0 auto;
    padding: 0.4rem 8rem;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2rem;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    cursor: pointer;

    @media (max-width: 480px) {
        padding: 0.4rem 2rem;
        font-size: 20px;
    }
}

#advantages {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    padding: 5rem 0 4rem 0;
    background-color: #EAEBEC;
}

#advantages {
    position: relative;
}

#advantages::before {
    content: "";
    position: absolute;
    top: -20vh;
    left: 0;
    right: 0;
    bottom: -20vh;
    border-radius: inherit;
    background: linear-gradient(to right, #FF6300, #1690CC);
    z-index: -1;
    filter: blur(50vh);
    opacity: 0.2;
}

.advantage-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;

    @media (max-width: 480px) {
        flex-direction: column;
    }
}

.advantage-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 30%;
    height: 160px;

    @media (max-width: 480px) {
        width: 100%;
    }
}

.advantage-box {
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(to right, #1690CC, #FF6300) border-box;
    border: 1px solid transparent;
    transition: border-color 0.4s ease-in-out;
}

.advantage-box:hover {
    border-color: rgba(255, 255, 255, 0.5);
}
  

.advantage-box img {
    width: 35%;
    height: auto;
}

.advantage-box .description {
    width: 60%;
}

.advantage-box h3 {
    font-family: 'Kallisto';
    font-size: 26px;
    line-height: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

#advantages .button-orange {
    font-family: "Kallisto", sans-serif;
    margin: 4rem auto 0 auto;
    padding: 0.4rem 8rem;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2rem;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    cursor: pointer;

    @media (max-width: 480px) {
        padding: 0.4rem 2rem;
        font-size: 20px;
    }
}

#solution-impact {
    display: flex;
    justify-content: center;
    width: 100vw;
    padding-top: 6rem;
    background: url('../images/bg-solution-element.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: 30%;
}

#solution-impact .title {
    margin: 0 auto;
    text-align: center;
    font-family: 'Kallisto';
    font-size: 30px;
    line-height: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);

    @media (max-width: 480px) {
        font-size: 28px;
        line-height: 2.4rem;
    }
}

#solution-impact .title span {
    color: var(--primary-orange);
}

#solution-impact .solutions-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

#solution-impact .solution-box {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: 300px;
    background-color: var(--primary-orange);
    border-radius: 2rem;

    @media (max-width: 1280px) {
        height: 350px;
    }

    @media (max-width: 480px) {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: 800px;
    }
}

#solution-impact .solution-box .left-img {
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    border-radius: 2rem 0 0 2rem;

    @media (max-width: 1280px) {
        height: 350px;
    }

    @media (max-width: 480px) {
        height: 300px;
        border-radius: 2rem 2rem 0 0;
    }
}

#solution-impact .solution-box .description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    padding: 2rem 4rem 2rem 2rem;

    @media (max-width: 480px) {
       padding: 1rem 1rem 2rem 1rem;
    }
}

#solution-impact .solution-box .description h3 {
    margin-bottom: 1rem;
    font-size: 32px;
    font-weight: 600;

    @media (max-width: 480px) {
        font-size: 26px;
    }
}

#solution-impact .solution-box .description p {
    font-size: 24px;
    line-height: 2rem;

    @media (max-width: 480px) {
        font-size: 18px;
    }
}

#contact-form-container {
    display: flex;
    justify-content: center;
    width: 100vw;
    padding-top: 6rem;
    background: url('../images/bg-form-element.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 60%;

    @media (max-width: 480px) {
        background-size: 100%;
    }
}

#contact-form-container .contact-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    width: 100%;

    @media (max-width: 480px) {
        flex-direction: column;
    }
}

#contact-form-container .left-img {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;

    @media (max-width: 480px) {
        width: 100%;
    }
}

#contact-form-container .left-img img {
    width: 80%;

    @media (max-width: 480px) {
        width: 100%;
    }
}

#contact-form-container .right-form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;

    @media (max-width: 480px) {
        width: 100%;
    }
}

#contact-form-container .title {
    margin: 0 auto;
    text-align: start;
    font-family: 'Kallisto';
    font-size: 56px;
    line-height: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);

    @media (max-width: 1100px) {
        font-size: 50px;
    }

    @media (max-width: 480px) {
        font-size: 30px;
        line-height: 2rem;
    }
}

#contact-form-container .title span {
    color: var(--primary-orange);
}

#contact-form-container .subtitle {
    width: 90%;
    margin-top: 2rem;
    text-align: start;
    font-size: 34px;

    @media (max-width: 480px) {
        width: 100%;
        font-size: 24px;
    }
}

#contact-form-container form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    margin: 2rem 0;

    @media (max-width: 480px) {
        width: 100%;
    }
}

.input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.visually-hidden {
    font-size: 1px;
    opacity: 0;
}

.input-container input {
    width: 100%;
    padding: 0.6rem 2rem;
    font-size: 22px;
    background: linear-gradient(#EAEBEC, #EAEBEC) padding-box, 
    linear-gradient(to right, #1690CC, #FF6300) border-box;
    border: 2px solid transparent;
    border-radius: 2rem;
    outline: none;
    transition: all 0.3s ease;

    @media (max-width: 480px) {
        padding: 0.6rem 1rem;
        font-size: 18px;
    }
}

.input-container input::placeholder {
    color: var(--text-color);
}

.input-container input:focus {
    box-shadow: 0 0 10px rgba(22, 144, 204, 0.7), 0 0 20px rgba(255, 99, 0, 0.7);
}

.toggle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.6rem 0.8rem 0.6rem 2rem;
    background: linear-gradient(#EAEBEC, #EAEBEC) padding-box, 
    linear-gradient(to right, #1690CC, #FF6300) border-box;
    border: 2px solid transparent;
    border-radius: 2rem;

    @media (max-width: 480px) {
        flex-direction: column;
        padding: 1.2rem 1.4rem;
    }
}

.toggle-container p {
    font-size: 22px;
    color: var(--text-color);

    @media (max-width: 480px) {
        margin-right: auto;
        font-size: 18px;
    }
}

.toggle-group {
    display: flex;
    width: 100%;
    gap: 10px;
}

.toggle-group input {
    display: none; /* Esconde o input radio */
}

.toggle-group label {
    width: 100%;
    padding: 4px 20px;
    border: 2px solid #ddd;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 20px;
    color: var(--text-color);
    font-weight: 400;
}

.toggle-group input:checked + label {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

#form-button {
    width: 100%;
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, #1690CC, #FF6300) border-box;
    border: 2px solid transparent;
    border-radius: 2rem;
    text-align: center;
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
}

#book-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 700px;
    width: 100%;
    margin: 3rem auto;
    padding: 1rem 1.4rem 1rem 2rem;
    background: linear-gradient(#EAEBEC, #EAEBEC) padding-box, 
    linear-gradient(to right, #1690CC, #FF6300) border-box;
    border: 2px solid transparent;
    border-radius: 4rem;

    @media (max-width: 480px) {
        flex-direction: column;
        padding: 2rem 1rem;
        border-radius: 2rem;
    }
}

#book-container p {
    font-family: "Kallisto";
    font-size: 22px;
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: 0.1rem;

    @media (max-width: 480px) {
        text-align: center;
    }
}

#book-container button {
    width: fit-content;
    padding: 0.4rem 1rem;
    background: var(--primary-orange);
    border: 2px solid transparent;
    border-radius: 2rem;
    text-align: center;
    font-family: "Kallisto";
    font-size: 22px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.1rem;
    cursor: pointer;
}

#contact-form-container {
    position: relative;
    background-color: #EAEBEC;
}

#contact-form-container::before {
    content: "";
    position: absolute;
    top: 20vh;
    left: 0;
    right: 0;
    bottom: -20vh;
    border-radius: inherit;
    background: linear-gradient(to right, #FF6300, #1690CC);
    z-index: -1;
    filter: blur(50vh);
    opacity: 0.2;
}

#solutions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    padding: 5rem 0 4rem 0;
}

#solutions .title {
    margin: 0 auto;
    text-align: center;
    font-family: 'Kallisto';
    font-size: 30px;
    line-height: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);

    @media (max-width: 480px) {
        font-size: 28px;
        line-height: 2.4rem;
    }
}

#solutions .title span {
    color: var(--primary-orange);
}

#solutions .options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
    margin: 4rem auto;
    padding: 0 1rem;
    font-family: "Kallisto";

    @media (max-width: 480px) {
        grid-template-columns: 1fr;
        margin: 2rem auto;
    }
}

#solutions .options div {
    cursor: pointer;
}

.gradient-border-mask {
    display: block;
    position: relative;
    padding: 0.8rem 1rem;
    max-width: 800px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--text-color);
}
  
.gradient-border-mask::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    border: 2px solid transparent;
    background: linear-gradient(to right, #1690CC, #FF6300) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

#solutions .options .selected {
    background: linear-gradient(to right, #FF6300, #FF6300) border-box;
    border-radius: 2rem;
    color: #FFFFFF;
    mask-composite: exclude;
}

#solutions .options .selected::before {
    background: linear-gradient(to right, #FF6300, #FF6300) border-box;
    mask-composite: exclude;
}

#solutions .dinamic-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;

    @media (max-width: 480px) {
        flex-direction: column;
        gap: 4rem;
    }
}

#solutions .left-side {
    display: flex;
    flex-direction: column ;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 50%;

    @media (max-width: 480px) {
        width: 100%;
    }
}

#solutions .left-side .title {
    margin: 0 auto;
    font-family: 'Kallisto';
    text-align: start;
    font-size: 34px;
    line-height: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);

    @media (max-width: 480px) {
        font-size: 24px;
        line-height: 2rem;
    }
}

#solutions .left-side .title span {
    color: var(--primary-orange);
}

#solutions .left-side img {
    width: 100%;
}

#solutions .right-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 50%;

    @media (max-width: 480px) {
        width: 100%;
    }
}

#solutions .right-side h4 {
    font-size: 28px;
}

#solutions .right-side h5 {
    margin-bottom: 1rem;
    padding-left: 2rem;
    font-family: "Kallisto";
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary-orange);
    font-weight: bold;
    letter-spacing: 4px;
}


#solutions .right-side ul {
    list-style-type: disc;
    border-radius: 1rem;
    padding: 1.8rem 3rem;
}

#solutions .right-side li {
    font-size: 17px;
    line-height: 1.8rem;
}

#solutions .right-side button {
    width: 100%;
    margin-top: 1.4rem;
    padding: 0.4rem 1rem;
    background: var(--primary-orange);
    border: 2px solid transparent;
    border-radius: 2rem;
    text-align: center;
    font-family: "Kallisto";
    font-size: 22px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.1rem;

    @media (max-width: 480px) {
       font-size: 20px;
    }
}

#about {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    padding: 2rem 0 8rem 0;
    background: url('../images/bg-about-element.webp');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 15%;

    @media (max-width: 480px) {
        padding: 2rem 0 2rem 0;
        background-size: 50%;
    }
}

#about .title {
    text-align: start;
    font-family: 'Kallisto';
    font-size: 40px;
    line-height: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);

    @media (max-width: 480px) {
        font-size: 32px;
        line-height: 2rem;
    }
}

#about .title span {
    color: var(--primary-orange);
}

#about .description {
    display: flex;
    flex-direction: column;
    gap: 2.6rem;
    width: 100%;
    margin: 3rem 0;
}

#about .description p {
    font-size: 26px;
    line-height: 2rem;

    @media (max-width: 480px) {
        font-size: 20px;
    }
}

#news {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    padding: 0 0 4rem 0;
}

#news .title {
    margin: 0 auto;
    text-align: center;
    font-family: 'Kallisto';
    font-size: 40px;
    line-height: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);

    @media (max-width: 480px) {
        font-size: 28px;
        line-height: 2rem;
    }
}

#news .title span {
    color: var(--primary-orange);
}

#news .news-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin-top: 6rem;

    @media (max-width: 480px) {
        flex-direction: column;
    }
}

#news .news-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 30%;
    min-height: 500px;
    padding: 4rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 2rem;
    box-shadow: 10px 25px 50px -12px rgb(0 0 0 / 0.25);

    @media (max-width: 480px) {
        width: 100%;
    }
}

#news .news-box .title {
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-family: 'Kallisto';
    font-size: 26px;
    line-height: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #EAEBEC;
    background-color: var(--primary-orange);
    border-radius: 1rem;

    @media (max-width: 1280px) {
        font-size: 22px;
    }

    @media (max-width: 480px) {
        font-size: 24px;
        line-height: 2rem;
    }
}

#news .news-box .title span {
    color: #EAEBEC;
    font-weight: 300;
}

#news .news-box .subtitle {
    width: 100%;
    text-align: center;
    font-family: 'Kallisto';
    font-size: 36px;
    line-height: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #EAEBEC;
    border-radius: 1rem;

    @media (max-width: 1280px) {
        font-size: 30px;
        line-height: 2.4rem;
    }

    @media (max-width: 480px) {
        font-size: 32px;
        line-height: 2rem;
    }
}

#news .news-box .subtitle span {
    color: var(--primary-orange);;
}

.gradient-border-box {
    width: 100%;
    background: linear-gradient(#EAEBEC, #EAEBEC) padding-box, 
    linear-gradient(to right, #1690CC, #FF6300) border-box;
    border: 1px solid transparent;
}

#faq {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    padding: 4rem 0;
}

#faq .title {
    margin: 0 auto;
    text-align: center;
    font-family: 'Kallisto';
    font-size: 34px;
    line-height: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-blue);

    @media (max-width: 480px) {
        font-size: 32px;
        line-height: 2rem;
    }
}

#faq .title span {
    color: var(--primary-orange);
}

#faq .questions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 2rem 0;
}

.tab {
    position: relative;
    width: 100%;
}

.tab input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.tab__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s;
}

.tab input:checked ~ .tab__content {
    max-height: 700px;
}
  
/* Visual styles */
#faq .accordion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 90%;
    color: var(--text-color);
    border-radius: 1rem;
    overflow: hidden;

    @media (max-width: 480px) {
        width: 100%;
    }
}

.tab__label,
.tab__close {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    padding: 1.8rem 2.4rem;
    font-size: 20px;

    @media (max-width: 480px) {
        padding: 1rem 1.4rem;
    }
}

.tab__label {
    justify-content: space-between;
    color: var(--text-color);
    background: #EAEBEC;
    transition: all 0.5s;
}

.tab__label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transform: rotate(90deg);
    color: var(--primary-orange);
    transition: all 0.5s;
}

.tab input:checked + .tab__label::after {
    transform: rotate(270deg);
    color: #EAEBEC;
    background: var(--primary-orange);
}

.tab input:checked + .tab__label {
    color: #EAEBEC;
    background: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    border-radius: 1rem 1rem 0 0;
}

.tab__content > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0;
    padding: 0 2.4rem 1rem 2.4rem;
    color: var(--text-color);
    background: #EAEBEC;
    transition: all 0.5s;
    font-size: 18px;
    line-height: 1.6rem;

    @media (max-width: 480px) {
        padding: 1rem 1.4rem;
        font-size: 16px;
    }
}

.tab__content > div > ul {
    list-style: inside;
    padding: 0 1rem;
}

.tab__content > div button {
    margin-left: auto;
    padding: 0.8rem 1rem;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2rem;
    background: linear-gradient(#EAEBEC, #EAEBEC) padding-box, 
    linear-gradient(to right, #1690CC, #FF6300) border-box;
    border: 2px solid transparent;
    transition: border-color 0.4s ease-in-out;
    color: var(--primary-blue);
    cursor: pointer;
}

.tab input:checked ~ .tab__content > div {
    color: #EAEBEC;
    background: var(--primary-orange);
    border-radius: 0 0 1rem 1rem;
}

.tab__close {
    justify-content: flex-end;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

#faq .contact-button {
    width: fit-content;
    margin: 2rem auto 0 auto;
    padding: 0.4rem 3rem;
    background: var(--primary-orange);
    border: 2px solid transparent;
    border-radius: 2rem;
    text-align: center;
    font-family: "Kallisto";
    font-size: 28px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.1rem;
    cursor: pointer;

    @media (max-width: 480px) {
        padding: 0.4rem 1.8rem;
        font-size: 22px;
    }
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    padding: 2rem 0 8rem 0;
}

footer .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem 2rem 1rem;
    background: linear-gradient(#EAEBEC, #EAEBEC) padding-box, 
    linear-gradient(to right, #1690CC, #FF6300) border-box;
    border-bottom: 2px solid transparent;

    @media (max-width: 480px) {
        flex-direction: column;
        gap: 3rem;
    }
}

#footer-logo {
    height: 5rem;
    width: auto;
    margin: auto 0;
    margin-right: 1rem;

    @media (max-width: 1280px) {
        height: 4rem;
    }

    @media (max-width: 480px) {
        width: 80%;
        height: auto;
    }
}

footer .contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

footer .contact-info p {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color);

    @media (max-width: 1280px) {
        font-size: 20px;
    }

    @media (max-width: 480px) {
        font-size: 24px;
    }
}

footer .contact-box img {
    width: auto;
    height: 28px;

    @media (max-width: 1280px) {
        height: 24px;
    }

    @media (max-width: 480px) {
        height: 28px;
    }
}

footer .social-media-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    @media (max-width: 480px) {
        gap: 2rem;
    }
}

footer .social-media-box img {
    width: auto;
    height: 4rem;

    @media (max-width: 1280px) {
        height: 3rem;
    }

    @media (max-width: 480px) {
        height: 4rem;
    }
}

footer .company-data {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

footer .company-data h3 {
    text-align: center;
    font-size: 18px;
    letter-spacing: 3px;

    @media (max-width: 1280px) {
        font-size: 16px;
    }
}

#thanks-contact-email {
    display: flex;
    justify-content: center;
    width: 100vw;
    min-height: 70vh;
    padding-top: 8rem;
    background: url('../images/bg-main-elements.webp');
    background-repeat: no-repeat;
    background-position: top left, top right;
    background-size: 100%;

    @media (max-width: 480px) {
        padding-top: 4rem;
    }
}

#thanks-contact-email .thanks-email-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background-color: #EAEBEC;
    padding: 2rem;
    background: linear-gradient(#EAEBEC, #EAEBEC) padding-box, 
    linear-gradient(to right, #1690CC, #FF6300) border-box;
    border: 2px solid transparent;
    border-radius: 2rem;
}

#thanks-contact-email .thanks-email-box i {
    font-size: 120px;
    color: var(--primary-blue);
}

#thanks-contact-email .title {
    margin: 0 auto;
    text-align: center;
    font-family: 'Kallisto';
    font-size: 34px;
    line-height: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);

    @media (max-width: 480px) {
        font-size: 32px;
        line-height: 2rem;
    }
}

#thanks-contact-email .thanks-email-box p {
    text-align: center;
    font-size: 24px;
}

#thanks-contact-email .thanks-email-box button {
    width: fit-content;
    margin: 2rem auto 0 auto;
    padding: 0.4rem 3rem;
    background: var(--primary-orange);
    border: 2px solid transparent;
    border-radius: 2rem;
    text-align: center;
    font-family: "Kallisto";
    font-size: 28px;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.1rem;
    cursor: pointer;

    @media (max-width: 480px) {
        padding: 0.4rem 1.8rem;
        font-size: 22px;
    }
}

p.input-error {
    @media (max-width: 480px) {
        font-size: 14px;
    }
}

.input-error {
    color: red;
    padding: 0.5rem 1rem;
}

.modal {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(77, 77, 77, .7);
    transition: all .4s;
    width: 100vw;
    height: 100vh;
}

.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    max-height: 90vh;
    max-width: 600px;
    width: 100%;
    padding: 3rem 1rem;
    background-color: #EAEBEC;
    border-radius: 1rem;
    overflow-y: scroll;
    position: relative;

    @media (max-width: 480px) {
        width: 96vw;
    }
}

.btn-close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
}

#news .modal-content .title {
    font-size: 26px;
    line-height: 2rem;
    color: var(--text-color);

    @media (max-width: 480px) {
        font-size: 22px;
        line-height: 1.6rem;
    }
}

#news .modal-content p {
    text-align: justify;
    font-size: 18px;
    margin-top: 0.6rem;
}

#news .modal-content h3 {
    margin-top: 0.6rem;
    font-weight: 500;
}

#news .modal-content .number-list {
    list-style-type: decimal;
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: start;
    font-size: 18px;
}

.modal-content .disc-list {
    margin-top: 0.6rem;
    list-style-type: disc;
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0 0.4rem;
    text-align: start;
}

#news .modal-content > h3 {
    font-size: 20px;
    font-weight: bold;
}

.modal-visible {
    display: flex;
}