@font-face {
    font-family: "Nunito-italic";
    src: url("../fonts/Nunito-Italic-VariableFont_wght.ttf");
}

@font-face {
    font-family: "Nunito-regular";
    src: url("../fonts/Nunito-VariableFont_wght.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito-regular', sans-serif;
    scrollbar-width: 0px;
    scroll-behavior: unset;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.content1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 95%;
    height: 85%;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 5px;
    margin: auto;
}

.content1-text { 
    width: 50%;
    height: 100%;
}

.content1-text h1 {
    font-size: 50px;
    font-weight: 700;
    color: #000000;
    user-select: none;
}


.content1-text p {
    font-size: 35px;
    font-weight: 400;
    color: #474747;
    margin-top: 25px;
    user-select: none;
}

.content1-text-button {
    border-radius: 26px;
    padding: 12px 20px;
    font-size: 24px;
    cursor: pointer;
    background-color: #0071bc;
    color: #FFFFFF;
    width: max-content;
    margin-top: 28px;
    user-select: none;
}

.content1-text-button:hover {
    background-color: #005ea6;
    transition: 0.3s;
    scale: 1.05;
}

.content1-image {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content1-image img {
    width: 80%;
    height: 100%;
    object-fit: contain;
}

.pagination {
    display: flex;
    width: 100%;
    justify-content: end;
    padding-right: 3%;
    column-gap: 8px;
    user-select: none;
}

.pagination .noActive {
    .pagination-item-number{
        padding-right: 12px;
    }
    span {
        display: none;
    }
}

.pagination-item {
    cursor: pointer;
}

.pagination-item-number {
    border-bottom: 2px solid #0071bc;
}

.content2 {
    width: 95%;
    height: 85%;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 5px;
    margin: auto;
}

.content2 h1 {
    text-align: center;
    font-size: 40px;
    margin-top: 20px;
}

.content2 .cards {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 100%;
    height: 100%;
    margin-top: 20px;
}

.content2 .card {
    width: 26%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    background-color: #FFFFFF;
    border: 1px solid #D1D1D1;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    padding-bottom: 15px;
    padding-left: 12px;
    padding-right: 12px;
}

.content2 .card img {
    width: 55%;
    object-fit: contain;
    margin-top: 12px;
}

.content2 .card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-top: 20px;
    text-align: center;
}

.content2 .card p {
    font-size: 16px;
    color: #000000;
    margin-top: 20px;
    text-align: center;
}

.content2 .card .card-button {
    border-radius: 26px;
    padding: 8px 40px;
    font-size: 15px;
    cursor: pointer;
    background-color: #38B6FF;
    color: #FFFFFF;
    width: max-content;
    margin-top: 10px;
    user-select: none;
}

.content2 .card .card-button:hover {
    scale: 1.05;
    background-color: #34a9ec;
}

.modal-services-container {
    position: absolute;
    display: none;
    z-index: 10;
    background-color: #0000007d;
    width: 100%;
    height: 100%;
    top: 0;
}

.modal-services-container.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-services-card {
    width: 40%;
    height: 80%;
    background-color: white;
    border-radius: 20px;
    overflow-y: scroll;
    padding: 1% 4%;
    user-select: none;
}

.modal-services-card img {
    width: 100%;
    object-fit: contain;
    user-select: none;
}

.modal-services-card h2 {
    text-align: center;
}

.modal-services-card h3 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.modal-services-card li {
    margin-left: 20px;
}

.modal-services-card .card-button {
    border-radius: 26px;
    padding: 8px 40px;
    font-size: 15px;
    cursor: pointer;
    background-color: #38B6FF;
    color: #FFFFFF;
    width: max-content;
    user-select: none;
    margin: auto;
    margin-top: 15px;
}

.modal-services-card .card-button:hover {
    scale: 1.05;
    background-color: #34a9ec;
}

.content3 {
    width: 95%;
    height: 85%;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 5px;
    margin: auto;
}

.content3 h1{
    text-align: center;
    font-size: 40px;
    margin-top: 20px;
}

.content3 .clients {
    margin-top: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    column-gap: 15px;
    height: 420px;
}

.content3 .client {
    width: 22%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    background-color: #f5f5f56e;
    padding-bottom: 10px;
    padding-top: 10px;
    box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.15);
    cursor: pointer;border: 1px solid #D1D1D1;
}

.content3 .client:hover {
    scale: 1.05;
}

.content3 .client img{
    width: 90%;
    height: 260px;
    object-fit: contain;
}

.textClient-title {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
}

.textClient {
    width: 90%;
    height: 25%;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: start;
}

.content3 .proyects {
    margin-top: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    column-gap: 15px;
    height: 420px;
}

.content3 .proyect {
    width: 22%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    background-color: #f5f5f56e;
    padding-bottom: 10px;
    padding-top: 10px;
    box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.15);
    cursor: pointer;border: 1px solid #D1D1D1;
}

.content3 .proyect:hover {
    scale: 1.05;
}

.content3 .proyect img{
    width: 90%;
    height: 260px;
    object-fit: contain;
}

.our-section {
    display: flex;
    justify-content: space-between;
    padding-left: 3%;
    padding-right: 3%;
}

.our-section-text {
    width: 50%;
}

.our-section-text p {
    text-align: center;
    font-size: 17.5px;
}

.our-section-text-copyright {
    color: #4f83d1;
    margin-top: 12px;
}

.our-section-image {
    width: 40%;
    height: max-content;
    margin-top: 3%;
}

.our-section-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.contact-section-text {
    width: 45%;
}

.contact-section-text h1 {
    text-align: start;
    font-size: 40px;
    margin-top: 20px;
}

.contact-section-text p {
    font-size: 32px;
    margin-top: 20px;
}

.contact-section-socialMedia {
    display: flex;
    align-items: start;
    column-gap: 65px;
    margin-top: 70px;
}

.contact-section-socialMedia a {
    text-decoration: none;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 15px;
}

.contact-section-socialMedia img {
    width: 36px;
    height: 36px;
}

.contact-section-form {
    width: 50%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.contact-section-form form {
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #ebebebcb;
    border-radius: 18px;
    box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
}

.contact-section-form-input {
    width: 80%;
    height: 41px;
    border-radius: 18px;
    border: none;
    padding-left: 20px;
    margin-top: 15px;
    background-color: #dddddde8;
}

#contact-phone {
    width: 100%;
    height: 41px;
    border-radius: 18px;
    border: none;
    margin-top: 15px;
    background-color: #dddddde8;
    font-size: 15px;
}

.iti {
    width: 80%;
    height: 41px;
    border-radius: 18px;
    border: none;
    margin-top: 15px;
    background-color: #dddddde8;
}

.iti__search-input {
    border-radius: 18px;
    background-color: #dddddde8;
}

.contact-section-form select {
    width: 80%;
    height: 41px;
    border-radius: 18px;
    border: none;
    padding-left: 20px;
    padding-right: 5px;
    margin-top: 15px;
    background-color: #dddddde8;
}

.contact-section-form textarea {
    width: 80%;
    height: 90px;
    border-radius: 18px;
    border: none;
    padding: 12px;
    margin-top: 15px;
    background-color: #dddddde8;
    max-width: 80%;
    resize: none;
}

.contact-section-form-button {
    border-radius: 26px;
    padding: 8px 20px;
    font-size: 15px;
    cursor: pointer;
    background-color: #38B6FF;
    color: #FFFFFF;
    width: max-content;
    user-select: none;
    margin-top: 15px;
    margin-bottom: 10px;
}

.contact-section-form-button:hover {
    scale: 1.05;
    background-color: #34a9ec;
}

.contact-modal {
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background-color: #0000007d;
    width: 100%;
    height: 100%;
    top: 0;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-container {
    width: 30%;
    height: 30%;
    background-color: white;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    user-select: none;
}

.contact-modal-tittle {
    width: 100%;
    text-align: center;
    font-size: 24px;
}

.contact-modal-text {
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.contact-modal-button {
    border-radius: 26px;
    padding: 8px 40px;
    font-size: 15px;
    cursor: pointer;
    background-color: #38B6FF;
    color: #FFFFFF;
    width: max-content;
    user-select: none;
}

.contact-modal-button:hover {
    scale: 1.05;
    background-color: #34a9ec;
}