﻿/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/*===== VARIABLES CSS =====*/
:root {
    /*--header-height: 3rem;*/
    /*===== Colors =====*/
    --first-color: #5B65F5;
    --first-color-light: #C4C7F5;
    --dark-color: #0E1026;
    --white-color: #FBFBFB;
    /*===== Font and typography =====*/
    --body-font: 'Open Sans', sans-serif;
    --nav-name-font-size: 1.5rem;
    --normal-font-size: .938rem;
    /*===== z index =====*/
    --z-fixed: 100;
}

@media screen and (min-width: 768px) {
    :root {
        --nav-name-font-size: 1rem;
        --normal-font-size: 1rem;
    }
}

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

    .dropdown_menu.line_2 {
        margin-top: 125px;
    }
}

@media (max-width: 787px) {
    .dropdown_menu.line_history {
        margin-top: 125px;
    }
}

@media (max-width: 1552px) {

    .line_2 {
        margin-top: 120px;
    }
}

/*===== BASE =====*/
*,
::before,
::after {
    box-sizing: border-box;
}

body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /*font-weight: 600;*/
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

.bd-grid {
    /* max-width: 1024px; */
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 100%;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

/*===== HEADER =====*/
.header {
    position: fixed;
    /* height: var(--header-height); */
    height: max-content;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    /* height: var(--header-height); */
    padding: 0 1rem;
    background-color: #FFF;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-direction: row-reverse;
}

.header_logo {
    color: var(--dark-color);
}

.header_toggle {
    font-size: 1.7rem;
    cursor: pointer;
}

@media screen and (max-width: 1402px) {
    .container_home {
        margin-top: 200px;
    }
}


/*===== NAV =====*/
@media screen and (max-width: 768px) {
    .dropdown_menu.line_history {
        margin-top: 0px;
    }

    .dropdown_menu.line_2 {
        margin-top: 0px;
    }

    ul.dropdown_menu {
        margin-top: unset;
        margin-top: 0px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        background-color: #333333;
        width: 80%;
        height: 100vh;
        padding: 2rem 0;
        z-index: var(--z-fixed);
        transition: .5s;
        overflow-y: auto;
    }

    .container_home {
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 72px;
    }

    .header {
        height: 72px;
    }

    .line_2 {
        margin-top: unset;
    }
}


.nav_content {
    display: flex;
    flex-direction: column;
}

.nav_perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.nav_img {
    display: flex;
    justify-content: center;
    max-width: fit-content;
    height: auto;
    /* border-radius: 100%; */
    overflow: hidden;
    margin-bottom: 1rem;
}

.nav_name {
    display: block;
    font-size: var(--nav-name-font-size);
    color: var(--white-color);
    white-space: nowrap;
}

.nav_item {
    margin-bottom: 2rem;
}

.nav_link {
    color: var(--first-color-light);
}

    .nav_link:hover {
        color: var(--white-color);
    }

/*Show menu*/
.show {
    left: 0;
}

/*Active link*/
.active {
    color: var(--white-color);
}

/*=== Dropdown ===*/
.dropdown_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown_icon {
    font-size: 1.3rem;
    transition: .5s;
}

.dropdown_menu {
    margin: 1rem 0 0 1rem;
    display: none;
}

.dropdown_item {
    margin: 1rem 0;
}

.dropdown:hover > .dropdown_menu {
    display: block;
}

.dropdown:hover .dropdown_icon {
    transform: rotate(180deg);
}

@media screen and (min-width: 864px) {
    .line_history {
        margin-top: initial;
        margin-top: 0px;
    }
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 576px) {
    .nav {
        width: 250px;
    }
}
/* 
.header {
  margin-top: 5px;
  margin-bottom: 5px;
} */
@media screen and (min-width: 1402px) {
    .container_home {
        margin-top: 100px;
    }
}

@media screen and (min-width: 1402px) {
    .line_2 {
        /* margin-top: unset; */
        margin-top: 50px;
    }
}


@media screen and (min-width: 768px) {
    body {
        margin: 0;
    }

    /* .header {
    height: calc(var(--header-height) + 1rem);
  } */
    .header_logo,
    .header_toggle {
        display: none;
    }

    .nav {
        width: 100%;
        height: 100%;
    }

    .nav_content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 5px;
    }

    .nav_perfil {
        flex-direction: row;
        text-align: initial;
        margin-bottom: 0;
    }

    .nav_img {
        /* width: 40px;
    height: 40px; */
        margin-right: .5rem;
        margin-bottom: 0;
    }

    /* .nav_img img {
    width: 46px;
  } */

    .nav_name {
        color: var(--dark-color);
    }

    .nav_list {
        display: flex;
        width: fit-content;
        align-items: center;
        flex-wrap: wrap;
    }

    .nav_item {
        margin: 0 1.5rem;
        padding: 1.4rem 0;
    }

    .nav_link {
        color: var(--header-title-color);
        white-space: nowrap;
    }

        .nav_link:hover {
            color: var(--first-color);
        }

    /*Active link new color*/
    .active {
        color: var(--header-title-color2);
    }

    .dropdown {
        position: relative;
    }

    .dropdown_menu {
        position: fixed;
        z-index: var(--z-fixed);
        margin: 0;
        top: calc(var(--header-height) + 25px);
        padding: .5rem 1.5rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border-radius: .5rem;
        background-color: white;
        /* margin-top: 20px; */
    }
    /* .line_2{
    margin-top: initial;
    margin-top: 80px
  } */

    .dropdown_item {
        margin: .5rem 0;
    }
}

@media screen and (mix-width: 1700px) {

    .container_home {
        margin-top: 500px;
    }
}


@media screen and (min-width: 1532px) {
    .line_2 {
        margin-top: unset;
    }
}



@media screen and (max-width: 1402px) {
    /* .line_2{
    margin-top: initial;
    margin-top: 100px;
  } */
}

@media screen and (min-width: 1024px) {
    .bd-grid {
        display: flex;
        align-content: center;
        height: 100%;
        /* margin-left: auto; */
        flex-direction: column;
    }
}




.contrainer_home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}




/* CONTAINER BLOCK*/

.container_home {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
    /* margin-bottom: 65px; */
    /* background-color: #f2f2f2; */
    font-family: Arial, sans-serif !important;
    line-height: 1.5 !important;
}


    .container_home h1 {
        /*font-size: 24px;*/
        margin-top: 20px;
    }

.container {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
    /* margin-bottom: 65px; */
    /* background-color: #f2f2f2; */
    font-family: Arial, sans-serif !important;
    line-height: 1.5 !important;
}

h1 {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}

p {
    display: block !important;
    margin-block-star: 1em !important;
    margin-block-end: 1em !important;
    margin-inline-start: 0px !important;
    margin-inline-end: 0px !important;
    font-size: 16px;
}

.container_home h2 {
    display: block;
    /*font-size: 1.5em;*/
    margin-block-start: 0.83em;
    margin-block-end: 0.2em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}


.container_home hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.container_home p {
    margin-bottom: 10px;
    font-size: 16px;
}

.media-list .main-list {
    padding-left: unset !important;
}

.block_right .media-list .main-list {
}

.container_home ul {
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 16px
}

.container_home li {
    margin-bottom: 5px;
}

.container_home a {
    color: rgb(29, 86, 164);
    text-decoration: none;
}

    .container_home a:hover {
        text-decoration: underline;
    }

.container_home font {
    color: #C12E2A;
}



/* animation */

.carousel-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: slideRight 8s infinite;
}

    .carousel-item.active {
        opacity: 1;
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(8px);
    }

@keyframes slideRight {
    0% {
        transform: translateX(-100%);
    }

    8% {
        transform: translateX(0);
    }

    92% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}



.nav-menu {
    overflow: hidden;
}






.container_home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: 800px auto;
    grid-gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.block_left {
    word-break: break-word;
}

.block_right {
    width: 380px;
}

@media (max-width: 1280px) {
    .container_home {
        grid-template-columns: 1fr;
    }

    .container .block_right {
        border-left: none;
    }
}

h2 {
    /*font-size: 1.5em;*/
}

.block_infor {
    background-color: white;
}

.block_right {
    width: unset;
}

    .block_right .importantday {
        margin-left: 0px !important;
        font-weight: normal !important;
        font-size: 16px !important;
        text-align: left !important;
    }

    .block_right li {
        margin-left: 0px !important;
        font-weight: normal !important;
        font-size: 16px !important;
    }


    .block_right .importantday ul {
        list-style: circle;
    }

.widget_3 {
    max-width: 1200px;
    width: 100%;
    display: flex;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: normal;
}

    .widget_3 ul li {
        list-style: outside;
        margin-left: 20px;
        margin-right: 20px;
        list-style: circle;
    }

strong {
    font-weight: bold;
}

.widget_3 {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 2;
}

.block_infor {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1100px) {
    .widget_3 {
        max-width: 1200px;
        min-width: 100px;
        justify-content: flex-start;
    }

    .block_right {
        border-left: unset;
    }

        .block_right .region {
            margin-left: unset;
        }
}

.container_home.container2 {
    margin-top: unset;
}

.sponsor {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact_bl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: auto auto auto auto;
    grid-gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
}

.parallax-widget {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d8d8d8;
}

    .parallax-widget.four.a {
        color: #2587c7;
    }

#tdtu {
    color: #2587c7;
    font-size: 1.2em;
    font-weight: bold;
}

@media (max-width: 912px) {

    .contact_bl {
        grid-template-columns: 1fr;
        margin-left: 20px;
        grid-gap: 20px;
    }
}

a {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

p {
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}



.contact_bl a:hover {
    color: #ff1010;
    text-decoration: none;
}

.contact_bl a:focus, a:hover {
    color: #23527c;
    text-decoration: underline;
}

.contact_bl a:active, a:hover {
    outline: 0;
}

.contact_bl a {
    color: #2587c7;
}

.img-tank img {
    width: 100%;
}

.img-tank img {
    height: 108px;
    aspect-ratio: auto 210 / 108;
    width: 210px;
}

.tbfee-right {
    text-align: justify;
    font-size: 16px;
}

    .tbfee-right tr, th, td {
        border: 1px solid #dddddd;
        text-align: center;
        /* padding: 8px; */
    }

.tbfee {
    text-align: justify;
    width: 100%;
}

    .tbfee tr, th, td {
        border: 1px solid #dddddd;
        text-align: center;
        /* padding: 8px; */
    }

.block_left .tbcontent td,
th {
    vertical-align: top;
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

.block_left .tbcontent .title {
    width: 30%;
    background-color: rgb(29, 86, 164);
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
}
