.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #FAFAFA;
    min-height: 100vh;
}

.up-navbar {
    background: #110C6C;
    padding: 5px 0;
}

    .up-navbar .container {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: space-between;
    }

    .up-navbar .navbar-nav {
        flex-direction: row;
        gap: 20px !important;
    }

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

    .contact-link .icon {
        color: #DAA520;
        font-size: 20px;
    }

    .contact-link span {
        color: #fff;
    }

    .contact-link:hover {
        color: #007bff;
    }

        .contact-link:hover .icon {
            transform: scale(1.1);
        }

.social-site {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

    .social-site a {
        font-size: 20px;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .social-site a:hover {
            color: #DBDBDB;
            transform: scale(1.1);
        }

.navbar {
    min-height: 90px;
    margin-bottom: 0 !important;
}

.navbar-toggler {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    color: black;
    font-size: 2rem;
}

.logo-site {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

    .logo-text a {
        font-size: 25px;
        font-weight: 700;
        text-decoration: none;
        color: #DAA520;
    }

    .logo-text p {
        font-size: 15px;
        font-weight: 500;
    }

.navbar-nav {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

    .navbar-nav .active {
        color: #DAA520;
        transform: scale(1.3) translateY(-3px);
    }

.nav-link {
    font-size: 17px;
    color: black;
    font-weight: 1000;
    border-radius: 5px;
    font-family: 'Book Antiqua'
}

    .nav-link:hover {
        transform: scale(1.1);
        color: #DA5B38;
    }

.open-window-site {
    display: flex;
}

.right-window,
.left-window {
    position: fixed;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 1.5s ease;
    z-index: 9999;
}

.right-window {
    right: 0;
    left: 50%;
    background: radial-gradient(circle at bottom right, #DAA520, transparent 50%), #110C6C;
    opacity: 0.8;
}

.left-window {
    left: 0;
    right: 50%;
    background: #110C6C;
    align-items: end;
    text-align: end;
    opacity: 0.8;
}

    .right-window img,
    .left-window img {
        width: 150px;
        height: 312px;
        transition: all 1.5s ease;
    }

    .right-window span,
    .left-window span {
        color: white;
        font-size: 45px;
        transition: font-size 1.5s ease;
    }

.right-window span {
    margin-left: 5px;
}

.left-window span {
    margin-right: 5px;
}

.open-window-site.animate .right-window {
    left: 100%;
}

.open-window-site.animate .left-window {
    right: 100%;
}

.open-window-site.animate img {
    width: 0;
    height: 0;
}

.open-window-site.animate span {
    font-size: 0;
}

.title-site {
    width: 100%;
    height: 180px;
    background: linear-gradient(200deg, #110C6C, #DAA520);
    display: flex;
    align-items: center;
    padding: 0 50px;
    gap: 10px;
    color: white;
}

    .title-site i {
        font-size: 24px;
        font-weight: 700;
    }

    .title-site span {
        font-size: 24px;
        font-weight: 700;
        font-family: Cambria;
    }

footer {
    background: #110C6C;
    color: white;
    padding: 20px 0;
}

    footer .col-md-4:first-child img {
        width: 125px;
        height: 185px;
    }

    footer .col-md-4:first-child p {
        text-align: start;
        margin-bottom: 5px;
        ;
        word-break: break-word;
        overflow-wrap: break-word;
        font-family: 'Baskerville Old Face';
    }

    footer .footer-link {
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border: 2px solid;
        border-radius: 50%;
        background: #DAA520;
        color: white;
    }

        footer .footer-link:hover {
            background: white;
            color: #DAA520;
        }

    footer .url {
        text-decoration: none;
        color: rgb(220, 220, 220);
        font-weight: 800;
        transition: all 0.3s ease;
    }

        footer .url:hover {
            color: rgb(180, 180,180);
        }

@media only screen and (max-width: 1075px) {
    .logo-site a:nth-of-type(1) img {
        width: 85px;
    }

    .logo-site a:nth-of-type(2) img {
        width: 235px;
    }

    .logo-text a {
        font-size: 20px;
    }

    .logo-text p {
        font-size: 14px;
        font-weight: 500;
    }

    .navbar-nav {
        gap: 5px;
        justify-content: start;
    }

    .nav-link {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .up-navbar {
        display: none;
    }

    .navbar .container-fluid {
        justify-content: end;
    }

    .logo-site {
        gap: 10px;
    }

    .navbar-nav {
        margin-top: 15px;
        padding: 0 10px;
        gap: 0px;
    }

        .navbar-nav .active {
            transform: none;
            font-size: 15px;
        }

    .nav-link {
        font-size: 15px;
        font-weight: 700;
        padding: 7px !important;
    }

        .nav-link:hover {
            transform: none;
        }

    .right-window img,
    .left-window img {
        width: 100px;
        height: 208px;
    }

    .right-window span,
    .left-window span {
        font-size: 35px;
    }

    .title-site {
        height: 150px;
    }

    footer .col-md-4 {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 550px) {
    .nav-link {
        padding: 5px 7px !important;
        font-size: 13px;
    }
}

@media only screen and (max-width: 515px) {
    .logo-site a:nth-of-type(1) img {
        width: 75px;
    }

    .logo-site a:nth-of-type(2) img {
        width: 200px;
    }

    .title-site {
        height: 110px;
    }

        .title-site i {
            font-size: 22px;
        }

        .title-site span {
            font-size: 22px;
        }
}

@media only screen and (max-width: 470px) {
    .logo-site a:nth-of-type(1) img {
        width: 70px;
    }

    .logo-site a:nth-of-type(2) img {
        width: 170px;
    }

    .logo-text a {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 13px;
        font-weight: 500;
    }
}

@media only screen and (max-width: 427px) {
    .logo-text a {
        font-size: 16px;
    }

    .logo-text p {
        font-size: 12px;
        font-weight: 500;
    }

    .nav-link {
        padding: 4px 7px !important;
        font-size: 12px;
    }
}
