:root {
    --primary-color: #00539b;
    --primary-color-v2: rgb(0, 43, 92);
    --primary-color-v3: #00aeee;
    --primary-color-v4: #b9e0f7;


    --secondary-color: #ffdd00;
    --secondary-color-v2: rgb(243, 150, 48);
    --text-color: #414042;
    --bg-color: #f3f3f3;
}


@font-face {
    font-family: "Tahoma Regular";
    src: url("../../assets/fonts/Tahoma Regular.ttf");
}

@font-face {
    font-family: "Tahoma Bold";
    src: url("../../assets/fonts/Tahoma bold.ttf");
}

@font-face {
    font-family: "Helvetica Regular";
    src: url("../../assets/fonts/Helvetica Regular.otf");
}

@font-face {
    font-family: "Helvetica Bold";
    src: url("../../assets/fonts/Helvetica-Bold-Font.ttf");
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Tahoma Regular", sans-serif;
}

a {
    text-decoration: none;
}


nav {
    position: fixed;
    width: 100%;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    z-index: 999;
}

nav .logo img {
    max-width: 300px;
}

nav .menu ul li {
    display: inline-block;
    margin-left: 20px;
}

nav .menu ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
}

nav .menu ul li a:hover {
    color: var(--secondary-color-v2);
}

.btn-movil {
    display: none;
}

@media (max-width: 1107px) {
    .btn-movil {
        display: block;
    }

    .menu {
        position: absolute;
        height: 100vh;
        max-width: 300px;
        width: 100%;
        right: -300px;
        top: 0;
        z-index: 99999;
        background-color: #002b5c;
        padding: 40px;
        transition: 1s;
    }

    .menu-active {
        position: absolute;
        height: 100vh;
        max-width: 300px;
        width: 100%;
        right: 0;
        top: 0;
        z-index: 99999;
        background-color: #002b5c;
        padding: 40px;
        transition: 1s;
    }

    .menu ul {
        display: flex;
        flex-direction: column;
        gap: 40px;
        height: 100%;
    }

    nav .menu ul li a {
        color: var(--bg-color);
    }

    nav .menu ul li a:hover {
        color: var(--secondary-color-v2);
    }

}

@media (max-width: 991px) {
    nav .logo img {
        max-width: 300px;
    }

    nav {

        padding: 20px 25px;
    }

}


@media (max-width: 600px) {
    nav .logo img {
        max-width: 240px;
    }


}

/* Slider*/
section .banner_header {
    background-image: url("../../assets/img/fondo-header.png");
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    display: flex;
    justify-content: center;
    align-items: center;
}

section .banner_header .general {
    position: relative;
    width: 90%;
    min-height: 700px;
    height: 100vh;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    justify-items: center;
}

section .banner_header .general .people {
    position: absolute;
    bottom: -4px;
    left: 25%;
}


section .banner_header .general .item_one h2 {
    font-size: 450px;
    color: var(--bg-color);
    font-family: "Helvetica Bold", sans-serif;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);

}

section .banner_header .general .item_one h3 {
    font-size: 40px;
    color: var(--bg-color);
    font-family: "Helvetica Bold", sans-serif;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}


section .banner_header .general .item_one h3 span {
    color: var(--secondary-color);
}

section .banner_header .general .item_one .autor {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: 65px;
    margin-top: 40px;

}

section .banner_header .general .item_one .autor h4 {
    font-size: 14px;
    color: var(--bg-color);
    font-family: "Helvetica Regular", sans-serif;
    text-align: end;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);

}
section .banner_header .general .item_one .autor h4 span {
    font-family: "Helvetica Regular", sans-serif;
    font-size: 19px;
}

section .banner_header .general .item_one .autor i {
    font-size: 30px;
    color: var(--bg-color);
}

section .banner_header .general .item_two {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section .banner_header .general .item_two h1 {
    font-size: 58px;
    font-family: "Helvetica Bold", sans-serif;
    color: var(--bg-color);
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

section .banner_header .general .item_two h2 {
    font-size: 50px;
    font-family: "Helvetica Regular", sans-serif;
    color: var(--bg-color);
    max-width: 600px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.sub-ul{
    margin-left: 40px;
}

section .banner_header .general .item_two h3 {
    font-size: 30px;
    font-family: "Helvetica Regular", sans-serif;
    color: var(--bg-color);
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);

}

section .banner_header .general .item_two a {
    max-width: 200px;
    width: 100%;
    height: 50px;
    border-radius: 9px;
    background-color: var(--primary-color-v2);
    font-family: "Helvetica Regular", sans-serif;
    color: var(--bg-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

section .banner_header .general .item_two a:hover {
    background-color: var(--bg-color);
    color: var(--primary-color-v2);
}

@media (max-width: 1625px) {

    section .banner_header .general .item_one h2 {
        font-size: 350px;
    }

    section .banner_header .general .item_one h3 {
        font-size: 30px;
    }

    section .banner_header .general .item_one .autor {
        margin-left: 44px;
    }

    section .banner_header .general .item_one .autor h4 {
        font-size: 14px;

    }

    section .banner_header .general .people img {
        max-width: 340px;
    }

    section .banner_header .general .item_two h1 {
        font-size: 38px;
    }

    section .banner_header .general .item_two h2 {
        font-size: 30px;
        max-width: 400px;
    }

    section .banner_header .general .item_two h3 {
        font-size: 30px;
    }

}

@media (max-width: 1215px) {
    section .banner_header .general .item_one h2 {
        font-size: 300px;
    }

    section .banner_header .general .item_one h3 {
        font-size: 25px;
    }

    section .banner_header .general .item_one .autor {
        margin-left: 7px;
    }

    section .banner_header .general .people img {
        max-width: 300px;
    }

    section .banner_header .general .item_two h1 {
        font-size: 30px;
        text-align: center;
    }

    section .banner_header .general .item_two h2 {
        font-size: 25px;
        max-width: 350px;
    }

    section .banner_header .general .item_two h3 {
        font-size: 22px;
    }

}

@media (max-width: 1028px) {
    section .banner_header .general .item_one h2 {
        font-size: 250px;
    }

    section .banner_header .general .item_one h3 {
        margin-left: 52px;
        font-size: 20px;
    }

    section .banner_header .general .item_one .autor {
        margin-left: -33px;
    }

    section .banner_header .general .people img {
        max-width: 210px;
    }

    section .banner_header .general .item_two h1 {
        font-size: 25px;
    }

    section .banner_header .general .item_two h2 {
        font-size: 20px;
        max-width: 300px;
    }

    section .banner_header .general .item_two h3 {
        font-size: 20px;
    }

}

@media (max-width: 991px) {
    section .banner_header {
    }

    section .banner_header .general {
        padding: 140px 0 0 0;
        display: flex;
        height: 700px;
        align-items: flex-start;
    }

    section .banner_header .general .people {
        left: 40%;
    }

    section .banner_header .general .item_one .autor {
        margin-top: 100px;
        margin-left: 40px;
    }
}



@media (max-width: 767px) {

    section .banner_header .general {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: 1140px;
    }

    section .banner_header .general .item_two h3 {
        text-align: center;
    }

    section .banner_header .general .item_one {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    section .banner_header .general .item_one .autor {
        flex-direction: column;
        margin-top: 20px;
        margin-left: 0;
    }

    section .banner_header .general .item_one .autor h4 {
        text-align: center;
    }

    section .banner_header .general .item_two {
        align-items: center;
    }

    section .banner_header .general .item_two h2 {
        max-width: 350px;
        text-align: center;
    }

    section .banner_header .general .item_one .autor i {
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {
    section .banner_header .general .item_one h2 {
        font-size: 200px;
    }

    section .banner_header .general .people {
        left: 25%;
    }

    section .banner_header .general {
        padding: 140px 40px;
    }

    section .banner_header .general .item_two h1 {
        flex-direction: column;
    }
}


/* Movies */

section .movies {
    overflow: hidden;
    position: relative;
    height: 900px;
    width: 100%;
    background-image: url("../../assets/img/section-movies.png");
    background-position: right;
    background-size: cover;
}

section .movies:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(0deg, #002b5c, transparent);
}

section .movies .content {
    position: absolute;
    top: 30%;
    left: 5%;
    transform: translateY(-50%);
}

section .movies .content h2 {
    font-size: 70px;
    font-weight: 500;
    color: var(--bg-color);
    max-width: 750px;

}

section .movies .content p {
    font-size: 22px;
    color: var(--bg-color);
    max-width: 600px;
    margin-top: 20px;
    margin-bottom: 20px;
}

section .movies   a {
    max-width: 200px;
    width: 100%;
    height: 50px;
    border-radius: 9px;
    background-color: var(--bg-color);
    font-family: "Helvetica Regular", sans-serif;
    color: var(--primary-color-v2);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

section .movies   a:hover {
    background-color: var(--bg-color);
    color: var(--primary-color-v2);
}

section .movies .play {
    position: absolute;
    top: 50%;
    right: 35%;
    transform: translateY(-50%);
}

section .movies .play i {
    font-size: 30px;
    color: var(--bg-color);
    cursor: pointer;
    transition: 1s;
    border: solid 4px var(--bg-color);
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

section .movies .play i:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
    box-shadow: 0 0 5px var(--bg-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--bg-color);;
        border-radius: 50%;
    }
    80% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.18);
        border-radius: 100%;

    }
}

.general-carousel {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: grid;
    grid-template-columns: 20% 80%;
    align-items: center;
    justify-content: space-between;
}

.carousel-container {
    overflow: hidden;

}

.carousel-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;

}

.carousel-container .general {
    display: flex;
}

.carousel-wrapper iframe {
    flex: 0 0 25%;
    max-width: 100%;
    padding: 0 13px;
}

iframe {
    max-width: 100%;
}

.carousel-buttons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.carousel-buttons button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    background-color: var(--bg-color);
    transition: 1s;
}

.modal {
    display: none; /* Ocultar modal por defecto */
    position: fixed; /* Fijar posici��n */
    z-index: 1; /* Prioridad en capas */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* A�0�9adir scroll si el contenido es demasiado grande */
    background-color: rgba(0, 0, 0, 0.4); /* Fondo semi-transparente */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* Centrar vertical y horizontalmente */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.carousel-buttons button:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 1487px) {
    .carousel-wrapper iframe {
        flex: 0 0 33.3%;
    }
}

@media (max-width: 1116px) {
    .carousel-wrapper iframe {
        flex: 0 0 50%;
    }
}


@media (max-width: 1300px) {
    section .movies .content h2 {
        font-size: 60px;
        max-width: 475px;
    }

    section .movies .content p {
        font-size: 18px;
        max-width: 500px;
    }

    section .movies .play i {
        width: 60px;
        height: 60px;
    }

    section .movies {
        background-position: 60% 50%;

    }

}


@media (max-width: 991px) {
    section .movies {

        height: 107vh;
    }

    section .movies .content h2 {
        font-size: 50px;
        max-width: 400px;
    }

    section .movies .content p {
        font-size: 16px;
        max-width: 400px;
    }

    section .movies .play i {
        width: 60px;
        height: 60px;
    }

    section .movies {
        background-position: 40% 50%;

    }

}

@media (max-width: 737px) {
    .carousel-wrapper iframe {
        flex: 0 0 100%;
    }
}

@media (max-width: 649px) {
    section .movies .play {
        display: none;
    }

    .general-carousel {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
        bottom: 30px;
    }

    section .movies .content {
        top: 25%;
    }
}

@media (max-width: 500px) {
    section .movies .content h2 {
        font-size: 40px;
        max-width: 330px;
    }

    section .movies .content p {
        font-size: 14px;
        max-width: 300px;
    }

    section .movies .play i {
        width: 50px;
        height: 50px;
    }

    section .movies {
        background-position: 40% 50%;

    }


}


/* Downloadable forms */
section .downloadable {
    padding: 60px 80px;
    background-color: var(--primary-color-v4);
}

section .downloadable .title {
    text-align: center;
}

section .downloadable .title h2 {
    font-size: 40px;
    color: var(--text-color);
}

section .downloadable .title p {
    font-size: 20px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    padding-top: 10px;
}

.general-downloadable {
    margin-top: 70px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 20px;
}

.general-downloadable .card {
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: 0.5s;
}

.general-downloadable .card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.general-downloadable .card .content {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.general-downloadable .card .content h3 {
    font-size: 22px;
    font-family: "Tahoma Bold", sans-serif;
    color: var(--text-color);
}

.general-downloadable .card .content p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 450px;
}


.general-downloadable .card .content img {
    width: 80px;
    height: auto;
}


@media (max-width: 1300px) {
    section .downloadable .title h2 {
        font-size: 35px;
    }

    section .downloadable .title p {
        font-size: 18px;
    }

    .general-downloadable .card .content h3 {
        font-size: 20px;
    }

    .general-downloadable .card .content p {
        font-size: 16px;
    }

    .general-downloadable .card .content img {
        width: 60px;
    }

}

@media (max-width: 991px) {
    section .downloadable .title h2 {
        font-size: 30px;
    }

    section .downloadable .title p {
        font-size: 16px;
    }

    .general-downloadable .card .content h3 {
        font-size: 18px;
    }

    .general-downloadable .card .content p {
        font-size: 14px;
    }

    .general-downloadable .card .content img {
        width: 50px;
    }


}

@media (max-width: 849px) {
    section .downloadable {
        padding: 60px 40px;
    }

    .general-downloadable {
        grid-template-columns: 1fr;


    }
}


/* FAQ */

section .faq {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section .faq .general-accordion {
    max-width: 1000px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

section .faq .general-accordion .item-general .item {
    margin-bottom: 15px;
}

section .faq .title {
    text-align: center;
}

section .faq .title h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
}

section .faq .title p {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 15px;
}

.accordion {
    background-color: var(--secondary-color-v2);
    color: var(--bg-color);
    font-weight: 700;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.active, .accordion:hover {
    background-color: var(--secondary-color-v2);
}

.panel {
    padding: 0 29px;
    background-color: #f0f1f1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    margin: 0;
    padding: 20px 0;
    color: var(--text-color);
    font-size: 18px;
}

.panel ul li {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.accordion i {
    margin-left: 5px;
    transition: transform 0.2s ease-in-out;
}

.accordion.active i:before {
    content: "\f068";
}

.fa-plus:before {
    content: "\f067";
}

@media (max-width: 1300px) {
    section .faq .title h2 {
        font-size: 35px;
    }

    section .faq .title p {
        font-size: 18px;
    }


    .panel p {
        font-size: 16px;
    }

    .panel ul li {
        font-size: 16px;
    }

}

@media (max-width: 991px) {
    section .faq .title h2 {
        font-size: 30px;
    }

    section .faq .title p {
        font-size: 16px;
    }

    .panel p {
        font-size: 14px;
    }

    .panel ul li {
        font-size: 14px;
    }

}

@media (max-width: 849px) {

    section .faq {
        padding: 60px 40px;
    }
}

/* Form */

section .forms {
    padding: 60px 80px;
    background-color: #f0f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section .forms .title {
    text-align: center;
}

section .forms .title h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
}

section .forms .title p {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 15px;
}

section .forms .general-forms {
    margin-top: -40px;
    max-width: 800px;
    width: 100%;
}

section .forms .general-forms form .form-group {
    display: flex;
    gap: 15px;
}

section .forms .general-forms form input {
    width: 100%;
    height: 50px;
    border: solid 1px var(--text-color);
    border-radius: 2px;
    padding: 0 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--bg-color);
}

section .forms .general-forms form select {
    width: 100%;
    height: 50px;
    border: solid 1px var(--text-color);
    border-radius: 2px;
    padding: 0 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--bg-color);
}

section .forms .general-forms form button {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 2px;
    background-color: var(--secondary-color-v2);
    color: var(--bg-color);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s;
}

section .forms .general-forms form button:hover {
    background-color: var(--primary-color);
}

@media (max-width: 1300px) {
    section .forms .title h2 {
        font-size: 35px;
    }

    section .forms .general-forms form input {
        font-size: 16px;
    }

    section .forms .general-forms form button {
        font-size: 16px;
    }

}

@media (max-width: 991px) {
    section .forms .title h2 {
        font-size: 30px;
    }

    section .forms .general-forms form input {
        font-size: 14px;
    }

    section .forms .general-forms form button {
        font-size: 14px;
    }

    section .forms {
        padding: 60px 40px;
    }

}

@media (max-width: 648px) {
    section .forms .general-forms form .form-group {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    section .forms .title h2 {
        font-size: 25px;
    }

    section .forms .title p {
        font-size: 16px;
    }

    section .forms .general-forms form input {
        font-size: 14px;
    }

    section .forms .general-forms form button {
        font-size: 14px;
    }

}

/* thank you */
section .questionnaire {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section .questionnaire .general {
    max-width: 90%;
}

section .questionnaire .general .title {
    text-align: center;
    margin-bottom: 40px;
}

section .questionnaire .general .title h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

section .questionnaire .general .title p {
    font-size: 18px;
    color: var(--text-color);
}

section .questionnaire .general h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

section .questionnaire .general ol {
    margin-bottom: 10px;
}

section .questionnaire .general ol li {
    margin-bottom: 10px;
    color: var(--text-color);
}

@media (max-width: 1300px) {
    section .questionnaire .general .title h2 {
        font-size: 35px;
    }

    section .questionnaire .general .title p {
        font-size: 16px;
    }


    section .questionnaire .general ol {
        margin-bottom: 10px;
    }

    section .questionnaire .general ol li {
        margin-bottom: 10px;
    }

}

@media (max-width: 991px) {
    section .questionnaire .general .title h2 {
        font-size: 30px;
    }

    section .questionnaire .general .title p {
        font-size: 14px;
    }

    section .questionnaire .general h3 {
        font-size: 20px;
    }

    section .questionnaire .general ol {
        margin-bottom: 10px;
    }

    section .questionnaire .general ol li {
        margin-bottom: 10px;
    }


}

@media (max-width: 648px) {
    section .questionnaire .general .title h2 {
        font-size: 25px;
    }

    section .questionnaire .general .title p {
        font-size: 14px;
    }

    section .questionnaire .general h3 {
        font-size: 18px;
    }

    section .questionnaire .general ol {
        margin-bottom: 10px;
    }

    section .questionnaire .general ol li {
        margin-bottom: 10px;
    }

}

/* Footer */

footer .address-general {
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 500px 500px;
    justify-items: center;
    justify-content: center;
}

footer .address {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .address h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-color);
}

footer .address span {
    font-size: 22px;
    color: var(--text-color);
    max-width: 330px;
}

footer .contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .contact span {
    font-size: 22px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;

}

footer .contact span i {
    font-size: 25px;
    color: var(--primary-color);
}

footer .contact .social {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

footer .contact .social a {
    font-size: 25px;
    color: var(--primary-color);
    transition: 0.4s;
}

footer .contact .social a:hover {
    color: var(--secondary-color-v2);
}

footer .copy {
    padding: 30px 80px;
    background-color: var(--primary-color-v2);
    text-align: center;
}

footer .copy span {
    font-size: 18px;
    color: var(--bg-color);
}

@media (max-width: 1300px) {
    footer .address-general {
        padding: 60px 40px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    footer .address {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    footer .contact {
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

}

@media (max-width: 991px) {
    footer .address-general {
        padding: 60px 20px;
    }

    footer .address {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    footer .contact {
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

}

@media (max-width: 530px) {
    footer .address span {
        font-size: 18px;
    }

    footer .contact span {
        font-size: 18px;
    }

    footer .contact .icon-contact {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    footer .address h4 {
        font-size: 20px;
    }

    footer .address span {
        font-size: 16px;
    }

    footer .contact span {
        font-size: 16px;
    }
}