@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    background: #07090c;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: currentColor;
}

header {
    width: 100vw;
    padding: 0 20px;
    background-color: #000;
    display: flex;
    align-items: center;
    box-shadow: 0px 1px 8px rgba(255, 255, 255, 0.25);
}

header .container-fluid {
    width: 100%;
    padding: 0 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 992px) {
    header .container-fluid {
        padding: 0 5%;
    }    
}

header .navb-logo img {
    width: 140px;
    height: 90px;
}

header .navb-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    letter-spacing: 3px;
}

header .navb-items .item {
    position: relative;
    text-align: center;
    margin-inline: 15%;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
    padding: 5px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

header .navb-items .item:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    width: 0;
    height: 2px;
    background-color: #274d8a;
    transition: ease all 0.3s;
}

header .navb-items .item:hover {
    color: #274d8a;
}

header .navb-items .item:hover:after {
    left: 0;
    right: auto;
    width: 100%;
}

header .item-button a {
    background-color: #274d8a;
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: all 0.5s ease;
    border-radius: 5px;
}

header .item-button a:hover {
    background-color: #64d6f4;
}

.modal-dialog {
    margin: 0;
    width: 85vw;
    max-width: 430px; 
}

@media (max-width: 450px) {
    .modal-dialog {
        width: 85vw;
    }
}

.modal-content {
    border-radius: 0;
    height: 100vh;
    overflow-y: auto;
    background-color: #102447;

}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 88%;
    margin: 0 auto;
    padding-bottom: 16px;
    border-bottom: 2px solid #fefefe;
}

.modal-header img {
    width: 140px;
    height: 90px;
    margin-top: 17.5px;
}

.modal-header .btn-close {
    background: transparent;
    opacity: 1;
}

.modal-header i {
    color: #fefefe;
    font-size: 25px;
}

.modal-body {
    width: 88%;
    margin: 0 auto;
    padding: 75px 0 0;
    flex: unset;
}

.modal-body .modal-line {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 7px 0;
    margin-bottom: 58px;
    cursor: pointer;
    transition: all 0.5s ease;
    color: #274d8a;
    border-bottom: 1px solid #274d8a;
}

.modal-body .modal-line:hover {
    color: #fefefe;
    border-bottom: 1px solid #fefefe;
}

.modal-line a {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #fefefe;
}

.modal-line i {
    color: currentColor;
    font-size: 30px;
    width: 35px;
    margin-right: 15px;
    padding: 0 0 3px 3px;
}

.navb-button {
    width: 100%;
    height: 47px;
    background-color: #fefefe;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #274d8a;
    letter-spacing: 2px;
    transition: all 0.5s ease;
    border-radius: 5px;
}

.navb-button:hover {
    background-color: #274d8a;
    color: #fefefe;
}

.mobile-modal-footer {
    width: 87%;
    margin: 0 auto;
    padding: 20% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    color: #274d8a;
}

.mobile-modal-footer i:hover {
    color: #fefefe;
}

.container {
    padding: 5rem 1rem;
    margin: auto; 
}

main {
    position: relative;
    z-index: 1;
}

/* Home section */
.home-section {
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.home-btn {
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 600;
    background-color: #274d8a;
    color: #fff;
    border-radius: 2px;
    display: inline-block;
    transition: all 0.5s ease;
    z-index: 1;
}

.home-btn:hover {
    color: #fff;
    background-color: #64d6f4;
    z-index: 1;
}

@media (max-width: 767px) {
    .home-section {
        padding-bottom: 70px;
    }
}

.home-section .container {
    position: relative;
    z-index: 1;
}

.home-section .home-intro h6 {
    font-weight: 600;
    color: green;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0 0 30px;
}

.home-intro p {
    color: #fff;
    font-weight: 500;
}

@media (max-width: 767px) {
    .home-section .home-intro h6 {
        margin: 0 0 20px;
    }
}

.home-section .home-intro h1 {
    font-size: 70px;
    font-weight: 900;
    color: green;
    margin: 0 0 35px;
    line-height: 1;
}

@media (min-width: 1200px) {
    .home-intro {
        margin-top: 90px;
    }
}

@media (max-width: 1200px) {
    .home-section .home-intro h1 {
        font-size: 60px;
    }
}


@media (max-width: 767px) {
    .home-section .home-intro h1 {
        margin: 0 0 25px;
        font-size: 45px;
    }
}

.home-section .home-intro h1 span {
    border-bottom: 4px solid #274d8a;

}

.home-section .home-intro p {
    font-size: 20px;
}

@media (max-width: 767px) {
    .home-section .home-intro p {
        font-size: 18px;
    }
}

.home-image img {
    height: 450px;
    width: 650px;
    object-fit: cover;
    position: relative;
    z-index: -2;
}

@media (max-width: 1200px) {
    .home-image img {
        height: 300px;
        width: 300px;
    }
}

.anim-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: -1;
}

.anim-elements .anim-element {
    position: absolute;
    font-size: 30px;
}

.anim-elements .anim-element:nth-child(1) {
    top: 12%;
    left: 15%;
    font-weight: bold;
    background: linear-gradient(45deg, #FF0000, #FF4500, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: aniOne 13s infinite linear alternate;
}

.anim-elements .anim-element:nth-child(2) {
    bottom: 12%;
    left: 15%;
    font-weight: bold;
    background: linear-gradient(45deg, #1a1a1a, #333333, #555555);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: aniTwo 13s infinite linear alternate;
}

.anim-elements .anim-element:nth-child(3) {
    bottom: 20%;
    left: 38%;
    font-weight: bold;
    background: linear-gradient(45deg, #FFA500, #FFD700, #FF0000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: aniThree 13s infinite linear alternate;
}

.anim-elements .anim-element:nth-child(4) {
    bottom: 15%;
    right: 25%;
    font-weight: bold;
    background: linear-gradient(45deg, #4a148c, #6a1e9c, #ba68c8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: aniFour 13s infinite linear alternate;
}

.anim-elements .anim-element:nth-child(5) {
    top: 18%;
    right: 25%;
    font-weight: bold;
    background: linear-gradient(45deg, #FFA500, #FFD700, #FFFF00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: aniThree 13s infinite linear alternate;
}

@keyframes aniOne {
    0% { transform: translate(0, 0) rotate(0); }
    40% { transform: translate(141px, 72px) rotate(75deg); }
    80% { transform: translate(-40px, 72px) rotate(145deg); }
    100% { transform: translate(0, 0) rotate(0); }
}

@keyframes aniTwo {
    0% { transform: translate(0, 0) rotate(0) scale(1); }
    40% { transform: translate(73px, -1px) rotate(36deg) scale(.9); }
    80% { transform: translate(83px, 122px) rotate(108deg) scale(1.2); }
    100% { transform: translate(0, 0) rotate(0) scale(1); }
}

@keyframes aniThree {
    0% { transform: translate(-308, 151px) rotate(0); }
    100% { transform: translate(251px, -200px) rotate(180deg); }
}

@keyframes aniFour {
    0% { transform: translate(61px, -99px) rotate(0); }
    20% { transform: translate(4px, 190px) rotate(38deg); }
    60% { transform: translate(-263px, -164px) rotate(145deg); }
    100% { transform: translate(-1px, 0) rotate(180deg); }
}

.tittle-cards h2 {
    font-size: 60px;
    font-weight: 900;
    color: #fff;
}

.tittle-cards p {
    color: #274d8a;;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .tittle-cards h2 {
        font-size: 40px;
    }
}

.custom-card {
    background: #000000;
    background: -webkit-linear-gradient(to right, #434343, #000000);
    background: linear-gradient(to right, #434343, #000000);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgb(17, 184, 235);
}

.my-card-title  {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.my-card-text {
    color: #bfbfbf;
    font-weight: 500;
}

.tittle-testimonial h2 {
    margin-bottom: 30px;
    font-size: 60px;
    font-weight: 900;
    color: #fff;
}

.tittle-testimonial p {
    margin-top: 1rem;
    font-size: 18px;
    color: #bfbfbf;
    font-weight: 500;
}

.tittle-testimonial a {
    text-decoration: none;
    color: #274d8a;
    transition: all 0.3s ease;
}

.tittle-testimonial a:hover {
    text-decoration: underline;
}

.highlight {
    width: 100px;
    border-bottom: 5px solid #274d8a;
}

.testimonial-slider {
    width: 90%;
    background-color: #0c0c0cd8;
    color: #bfbfbf;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    margin: 50px auto;
    font-weight: 600;
}

.testimonial-slider h1 {
    font-weight: 900;
}

.testimonial-list {
    display: flex;
    overflow: hidden;
}

.testimonial {
    flex: 1 0 100%;
    text-align: center;
    padding: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial .bi-quote {
    font-size: 2.5rem;
    color: #274d8a;
    opacity: 0.75;
}

.testimonial blockquote {
    font-size: 1rem;
    margin-inline: 20px;
}

.user-info {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.user-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-details .name {
    font-size: 1.15rem;
    font-weight: 900;
    color: #274d8a;
}

.user-details .company {
    color: #fff;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    border-radius: 50%;
    background-color: #274d8a;
    color: #fff;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.nav:hover {
    background-color: #64d6f4;
    color: #fff;
}

.nav.prev {
    left: 10px;
}

.nav.next {
    right: 10px;
}

.dots-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 5px;
    margin-inline: 5px;
    background-color: #274d8a;
    transition: width 0.5s;
    border: none;
}

.dot.active {
    width: 30px;
    background-color: #274d8a; 
}

@media (min-width: 768px) {
    .testimonial .bi-quote {
        font-size: 4rem;
    }

    .testimonial blockquote {
        font-size: 1.25rem;
    }

    .nav {
        opacity: 0;
    }

    .testimonial-slider:hover .nav {
        opacity: 1;
    }
}

.goblal-suport {
    font-weight: 600;
    padding: 2rem 0 8rem 0;
    margin: auto;
}

.suport-btn {
    display: inline-block;
    border: 1px solid #555555;
    padding: 5px 15px;
    border-radius: 20px;
}

.suport-btn p {
    margin: 0;
}

.suport-btn a {
    text-decoration: none;
    color: #274d8a;
    transition: all 0.3s ease;
}

.suport-btn a:hover {
    text-decoration: underline;
}

footer {
    box-shadow: 0px 1px 8px rgba(255, 255, 255, 0.25);
}

.material-footer h6 a {
    color: #fff;
    display: inline-block;
    transition: color 0.5s ease, transform 0.5s ease;
}

.material-footer h6 a:hover {
    text-shadow: #fff 0 0 10px;
    transform: scale(1.2);
}

.social-network a i{
    color: #fff;
    text-shadow: #fff 0 0 5px;
    transition: color 0.5s ease, transform 0.5s ease;
}

.social-network a i:hover {
    text-shadow: #fff 0 0 5px;
    transform: scale(1.3);  
}

.copyright-credits  a {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    footer .material-footer h6 {
        margin: 10px 0;
    }

    footer .copyright-credits {
        margin-top: 30px;
    }
}