:root {

    --primary-color: #00355E;
    --second-color: #F1F1F1;
    --color-white: #ffff;
    --color-dark: #000;
    --color-text: #4D4D4D;
    --color-input: #8b8b8b;
}

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Sora', sans-serif;
}

body {
    background-color: var(--color-white);
}


/* Header section */
header {
    z-index: 999;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--second-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    padding: 0 20px;
    transition: 0.7s;
}

header .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

header .container .navigation {
    position: relative;
    line-height: 75px;
}

header .container .navigation .menu {
    position: relative;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none;
}

header .container .navigation .menu .menu-item>a {
    color: var(--primary-color);
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    margin: 20px;
    padding: 25px 0;
}

header .container .navigation .menu .menu-item>a:hover {
    color: rgba(9, 10, 76, 0.9);
    transition: 0.3s;
}

header .container .navigation .menu .menu-item .sub-menu {
    position: absolute;
    background-color: var(--primary-color);
    top: 74px;
    line-height: 40px;
    list-style: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s;
    transition-property: transform, opacity;
}

header .container .navigation .menu .menu-item .sub-menu .sub-item {
    box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
    padding: 10px;
}

header .container .navigation .menu .menu-item .sub-menu .sub-item>a {
    color: var(--color-white);
    font-size: 14px;
    text-decoration: none;
    padding: 10px 10px 0 10px;
}

header .container .navigation .menu .menu-item .sub-menu .sub-item:hover {
    background: #031f37;
}

header .container .navigation .menu .menu-item:hover .sub-menu {
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
}

.menu-item .sub-menu .sub-item:last-child {
    border-radius: 0px 0px 8px 8px;
}

.menu-btn {
    display: none;
}

@media (max-width: 1060px) {
    header {
        padding: 15px 20px;
        position: relative !important;
    }

    header .container .navigation .menu {
        position: fixed;
        z-index: 100000;
        display: block;
        background: #23232b;
        min-width: 350px;
        height: 100vh;
        top: 0;
        right: -100%;
        padding: 90px 50px;
        overflow-y: auto;
        visibility: hidden;
        transition: 0.5s;
        transition-property: right, visibility;
    }

    header .container .navigation .menu .menu-item {
        position: relative;
    }

    header .container .navigation .menu .menu-item>a:hover {
        color: var(--primary-color);
    }

    header .container .navigation .menu .menu-item .sub-menu {
        opacity: 1;
        position: relative;
        top: 0;
        transform: translateX(10px);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        overflow: hidden;
        display: none;
    }

    header .container .navigation .menu .menu-item>a {
        color: var(--color-white);
    }

    header .container .navigation .menu .menu-item .sub-menu .sub-item {
        box-shadow: none;
    }

    header .container .navigation .menu .menu-item .sub-menu .sub-item>a:hover {
        color: var(--color-input);
        transition: 0.4s;
    }

    header .container .navigation .menu .menu-item .sub-menu .sub-item:hover {
        background: none;
    }

    header .container .navigation .menu .menu-item:hover .sub-menu {
        transform: translateX(10px);
    }

    header .container .navigation .menu.active {
        right: 0;
        visibility: visible;
    }

    header .container .close-btn {
        position: absolute;
        background: url(./image/close-btn.png) no-repeat;
        width: 40px;
        height: 40px;
        background-size: 25px;
        background-position: center;
        top: 0;
        left: 0;
        margin: 25px;
        cursor: pointer;
    }

    header .container .menu-btn {
        background: url(./image/menu-burger.png) no-repeat;
        width: 60px;
        height: 60px;
        background-size: 50px;
        background-position: center;
        cursor: pointer;
        display: block;
    }
}

/* Header section Finish*/

.about-portaria-presencial .container .content img{
    width: 650px;
    height: 100%;
}

/* carousel */

.carousel {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 180px;
    height: 250px;
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.10);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3) {
    left: 67%;
}

.carousel .list .item:nth-child(4) {
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5) {
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6) {
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7) {
    left: calc(67% + 800px);
    opacity: 0;
}





.list .item .content {
    position: absolute;
    top: 50%;
    left: 247px;
    transform: translateY(-50%);
    width: 700px;
    text-align: left;
    color: var(--color-white);
    display: none;
}

.list .item:nth-child(2) .content {
    display: block;
}

.content .title {
    font-size: 70px;
    /* background-color: red; */
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

/* .content .name{
    font-size: 100px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
} */

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn {
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.btn button {
    padding: 20px 30px 20px 30px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--color-dark);
    border-radius: 12px;
    transition: .8s;
}

.btn button:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
}

/* .content .btn button:nth-child(1){
    margin-right: 15px;
}

.content .btn button:nth-child(2){
    background: transparent;
    color: var(--primary-color);
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover{
    background-color: var(--primary-color);
    color: #fff;
    border-color: #14ff72cb;
} */


@keyframes animate {

    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */


/* next prev arrows */

.arrows {
    position: absolute;
    top: 60%;
    left: 67%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.arrows button:hover {
    background: #fff;
    color: #000;
}




@keyframes runningTime {

    from {
        width: 0%;
    }

    to {
        width: 100%;
    }

}


/* Responsive Design */

@media screen and (max-width: 999px) {


    .list .item .content {
        left: 0;
        text-align: center;
    }

    .content .title,
    .content .name {
        font-size: 70px;
    }

    .content .des {
        font-size: 16px;
    }

}

@media screen and (max-width: 690px) {

    .carousel .list .item {
        top: 65%;
    }

    .list .item .content {
        top: 20%;
        width: 100%;
        padding: 20px;
    }

    .carousel .list .item:nth-child(3) {
        left: 45%;
    }

    .carousel .list .item:nth-child(4) {
        left: calc(45% + 200px);
    }

    .content .title,
    .content .name {
        font-size: 40px;
    }

    .content .btn button {
        padding: 10px 15px;
        font-size: 14px;
    }

    .arrows {
        top: 77%;
        left: 47%;
    }

    .btn {
        margin: 0 !important;
    }
}






/* Section  About Portaria Presencial */

.about-portaria-presencial,
.about-assistant {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    .container {
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .container .content-box .text h1 {
        color: #00355E;
        font-size: 40px;
    }

    .container .content-box .text p {
        font-size: 22px;
        text-align: justify;
        margin: 20px 0 40px 0;
    }

    .container .content-box .text a {
        font-size: 20px;
        text-decoration: none;
        background-color: #00355E;
        color: #fff;
        padding: 18px;
        border-radius: 10px;
        transition: 0.5s;
    }
    .container .content-box .text a:hover{
        opacity: 0.5;
    }

    .container .content-box .content-card .cards {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
        margin-top: 90px;
    }

    .container .content-box .content-card .cards .card {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border-radius: 10px;
        text-align: center;
        width: 100%;
        height: 300px;
        padding: 5px;
    }

    .container .content-box .content-card .cards .card .card-header i {
        font-size: 40px;
        margin-top: 20px;
    }

    .container .content-box .content-card .cards .card .card-text {
        margin: 30px 0 30px 0;
    }

}

.about-assistant {
    height: 100%;

    .container .assistant-content-cards .assistant-cards {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
    }

    .container .assistant-content-cards .assistant-cards .assistant-card {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border-radius: 10px;
        text-align: center;
        width: 100%;
        height: 300px;
        padding: 5px;
    }

    .container .assistant-content-cards .assistant-cards .assistant-card .assistant-card-header i {
        font-size: 40px;
        margin-top: 20px;
    }

    .container .assistant-content-cards .assistant-cards .assistant-card .assistant-card-text {
        margin: 30px 0 30px 0;
    }
}

.btn-assistent, .btn-two {
    text-align: center;
    margin: 90px 0 50px 0;
}

.btn-assistent a, .btn-two a{
    text-decoration: none;
    font-size: 18px;
    padding: 18px;
    color: #00355E;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.7s;
}
.btn-two a {
    background-color: #00355E;
    color: #fff;
}
.btn-assistent a:hover, .btn-two a:hover{
    opacity: 0.5;
}

@media(max-width: 600px) {
    .about-portaria-presencial {
        .container {
            flex-direction: column;
            text-align: center;
            height: 100%;

            .content {
                >img {
                    width: 300px;
                }
            }

            .content-box {
                >.text {
                    >p {
                        text-align: center;
                    }
                }

                .content-card {
                    >.cards {
                        flex-direction: column;
                        align-items: center;

                        >.card {
                            width: 80%;
                        }

                    }
                }
            }

        }
    }

    .about-assistant {
        margin-top: 680px;

        .container {
            >.assistant-content-cards {
                >.assistant-cards {
                    flex-direction: column;

                    >.assistant-card {
                        width: 80%;
                    }
                }
            }
        }
    }
}

/* Finish Section About Portaria Presencial */


/*Section Diferencts Contacts*/
.differencts-contact {
    width: 100%;
    height: 100%;
    padding: 90px 0 90px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);

    .container {
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .container .content {
        display: flex;
        justify-content: space-between;
        align-content: center;
    }

    .container .content .text h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    span {
        font-size: 40px;
        color: #fff;
        font-weight: 300;
        margin-bottom: 20px;
    }

    .container .content .text h1,
    h5 {
        font-weight: 600;
        margin: 20px 0 20px 0;
    }

    .container .content .text h2,
    h3,
    h4,
    h6,
    span {
        font-size: 20px;
    }

    .box-content {
        text-align: center;
        background-color: #D9D9D9;
        border-radius: 10px;
        padding: 20px;
        margin: 20px 0 20px 0;
        width: 1200px;
    }

    .box-content h1 {
        font-size: 22px;
        font-weight: 400;
    }

    .btn a {
        background-color: #fff;
        color: #00355E;
        font-weight: 600;
    }
}

@media (max-width: 600px) {
    .differencts-contact .container .content {
        flex-direction: column;
    }

    .differencts-contact .container .content .text {
        text-align: center;
        padding: 10px;
    }

    .differencts-contact .container .content img {
        width: 100%;
        height: 350px;
        padding: 10px;
    }

    .differencts-contact .box-content {
        width: 94%;
    }

    .differencts-contact .box-content h1 {
        font-size: 20px;
    }

    .differencts-contact .btn-assistent a {
        background: #fff;
        color: #00355E;
    }
}


/*Section Work Mission Finish*/



/* Section Contact */
.st-contact {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    .container {
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        align-items: center;


        .contact-maps {

            .content {
                .text {


                    >h1 {
                        font-size: 40px;
                        font-weight: 600;
                        color: var(--primary-color);
                    }

                    >p {
                        width: 80%;
                        font-size: 20px;
                        font-weight: 300;
                        color: var(--color-text);
                        margin: 10px 0 70px 0;
                    }

                    >ul {
                        list-style: none;
                        font-size: 20px;
                        font-weight: 300;
                        margin-bottom: 40px;

                        >li {
                            line-height: 1.5;

                            >a {
                                font-size: 20px;
                                text-decoration: none;
                                color: var(--color-text);
                                transition: color .5s;
                            }

                            >a:hover {
                                color: var(--primary-color);
                            }
                        }
                    }
                }
            }

        }

        .contact-form {
            >form {
                display: flex;
                flex-direction: column;
                width: 500px;
                height: 100%;

                .row {
                    display: flex;
                    width: 100%;
                    gap: 10px;

                    .column {
                        flex: 1;
                    }
                }

                label {
                    display: block;
                    margin-bottom: 5px;
                    color: var(--primary-color);
                    font-size: 18px;
                    font-weight: 600;
                }


                input,
                select,
                textarea {
                    width: 100%;
                    margin-bottom: 40px;
                    padding: 10px;
                    box-sizing: border-box;
                    border-radius: 10px;
                    border: 1px solid var(--color-input);
                }

                    .btn-form {
                    color: var(--color-white);
                    font-size: 18px;
                    background-color: var(--primary-color);
                    transition: background .5s;
                    cursor: pointer;
                    padding: 15px;
                    border: none;
                }

                .btn-form:hover {
                    background-color: var(--color-dark);
                }


            }

        }
    }
}

@media (max-width: 600px) {
    .st-contact {
        margin-top: 80px;
        height: 100%;
    }

    .st-contact .container {
        flex-direction: column;
        display: block;
    }

    .st-contact .container .contact-maps .content .text {
        text-align: center;
    }

    .st-contact .container .contact-maps .content .text p {
        width: 100%;
    }

    .st-contact .container .contact-form form {
        width: 100%;
        padding: 20px;
    }
}

/* Section Contact Finish*/

/* Section Patrners*/
.st-partners {
    width: 100%;
    height: 50vh;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:600px) {
    .st-partners {
        .swiper-slide img {
            width: 80%;
        }
    }
}

.st-partners .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.st-partners .container .text {
    text-align: center;
    color: #fff;
}

.st-partners .container .text h1 {
    font-size: 40px;
    font-weight: 600;
}

.st-partners .container .text p {
    font-size: 20px;
    font-weight: 300;
    margin-top: 10px;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-top: 90px;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

/* Section Patrners Finish*/


/* Section Footer*/

footer {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
}



footer .container .content-about .about-text {
    width: 60%;
}

footer .container .content-about .about-text h1,
p {
    margin: 10px 0 20px 0;
    font-size: 20px;
    font-weight: 200;
}

footer .container .content-about .about-text p {
    font-size: 18px;
}

.container .menus {
    width: 100%;
    display: flex;
    justify-content: space-between;
    column-gap: 50px;
}

.menus .content-header h1 {
    font-size: 25px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.menus .content ul li {
    list-style: none;
}

.menus .content ul li a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 20px;
    line-height: 1.8;
    transform: color .8s;
}

.menus .content ul li a:hover {
    color: var(--primary-color);
}


.copyright {
    background-color: var(--primary-color);
    text-align: center;
    padding: 40px;
}

.copyright h1 {
    font-size: 18px;
    font-weight: 200;
    color: var(--color-white);
    margin-bottom: 20px;
}

.copyright span {
    font-size: 18px;
    font-weight: 200;
    color: var(--second-color);
}

.copyright span a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 600;
    margin-left: 10px;
    transition: color .8s;
}

.copyright span a:hover {
    color: var(--color-text);
}

@media (max-width:600px) {
    footer {
        height: 100%;
    }

    footer .container {
        flex-direction: column;
        margin: 25px;
    }

    footer .container .content-about .about-text {
        width: 100%;
    }

    .container .menus {
        flex-direction: column;
        row-gap: 20px;
    }


    .copyright {
        padding: 25px;
    }

    .copyright h1 {
        font-size: 15px;
    }
}

/* Finsh Section Footer*/
