* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    font-weight: normal;
    font-size: 100%;
    list-style: none;
    line-height: 1;
    outline: 0px;
    background: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    transition: 0.4s;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

/* var */
:root {
    --black: #1B1B1B;
    --white: #fff;
    --blue: #0D223F;
    --green: #129446;
    --dark-gray: #363337;
    --light-gray: #BCBFBE;
    --light-blue: #2CAEE4;
    --dark-blue: #28619A;
}

*::-webkit-scrollbar-track {
    background-color: transparent;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

body::-webkit-scrollbar-button {
    width: 4px;
    height: 4px;
}

body::-webkit-scrollbar-thumb {
    background: var(--dark-blue);
    border: 0px none var(--dark-blue);
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

body::-webkit-scrollbar-thumb:active {
    background: var(--dark-blue);
}

body::-webkit-scrollbar-track {
    background: var(--dark-blue);
    border: 0px none var(--dark-blue);
}

body::-webkit-scrollbar-track:hover {
    background: #b3b3b3;
}

body::-webkit-scrollbar-track:active {
    background: #ebebeb;
}

body::-webkit-scrollbar-corner {
    background: transparent;
}

*::-webkit-scrollbar {
    width: 1px;
    background-color: transparent;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar-thumb {
    background-color: transparent;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

b {
    font-weight: bold;
}

i {
    font-style: italic;
}

a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    font-weight: inherit;
}

html {
    scroll-behavior: smooth;
}

b {
    font-weight: bold;
}

i {
    font-style: italic;
}

/* header */
#ct-header {
    background-color: var(--dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 138px;
    border-bottom: 2px solid #5091D1;
}

#ct-header>section {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    justify-content: space-between;
    padding: 0 20px;
    gap: 20px;
    overflow: hidden;
}

#ct-header>section .logo {
    width: 220px;
    height: 59px;
}

#ct-header>section>nav>ul {
    display: flex;
    align-items: center;
    gap: 27px;
}

#ct-header>section>nav>ul li {
    color: var(--white);
    font-size: 14px;
    white-space: nowrap;
    line-height: 18px;
    cursor: pointer;
}

#ct-header>section>nav>ul li>a>img {
    margin-left: 11px;
    width: 10px;
    height: 10px;
}

#ct-header>section>nav>ul li:hover>a>img {
    transform: scale(1.5);
}

#ct-header>section>nav>ul li.active {
    font-weight: bold;
}

#ct-header>section>nav>ul li.btn {
    border-radius: 5px;
    background: var(--light-blue);
    padding: 14px 16px;
    color:  var(--dark-gray);
    transition: all 0.1s;
}

#ct-header>section>nav>ul li.btn:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

#ct-header>section>#menu {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
/* aside */
#ct-aside {
    max-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: max-height 0.7s;
}
#ct-aside.active {
    max-height: fit-content;
}
#ct-aside ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
#ct-aside ul li {
    width: 100%;
    height: fit-content;
}
#ct-aside ul li a{
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center; 
    transition: all 0.2s;
    text-align: center;
}
#ct-aside ul li a:hover{
    font-weight: bold;
    background-color: var(--light-blue);
    transition: all 0.2s;
}

/* footer */
#ct-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EAEAEA;
}

#ct-footer>section {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    justify-content: space-between;
    padding: 97px 20px;
    overflow: hidden;
}

#ct-footer>section>.column {
    width: 50%;
}

#ct-footer>section>.column:first-of-type {
    border-right: 1px solid #D6D6D6;
}

#ct-footer>section>.column>div {
    max-width: 345px;
    display: flex;
    flex-direction: column;
}

#ct-footer>section>.column>div {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#ct-footer>section>.column>div>span {
    font-family: 'Inter';
    font-size: 12px;
    line-height: 16px;
}

#ct-footer>section>.column>div .footer-info {
    display: flex;
    gap: 20px;
    align-items: start;
}

#ct-footer>section>.column>div .footer-info div {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#ct-footer>section>.column>div .footer-info div a {
    display: flex;
    align-items: center;
    min-width: 212px;
    font-size: 12px;
    line-height: 16px;
    gap: 13px;
}

#ct-footer>section>.column>div .social {
    display: flex;
    align-items: center;
    gap: 10.33px;
}

#ct-footer>section>.column>div .social>a {
    display: flex;
}

#ct-footer>section>.column>div .social>a>img {
    width: 25px;
    height: 25px;
}

#ct-footer>section>.column>div .footer-info ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#ct-footer>section>.column>div .footer-info ul li:first-child {
    font-weight: bold;
}

#ct-footer>section>.column>div .footer-info ul li {
    font-family: 'Inter';
    color: var(--black);
    font-size: 13px;
    white-space: nowrap;
    line-height: 17px;
}

#ct-footer>section>.column>div .logo {
    width: 153px;
    height: 41px;
}

#ct-footer>section>.column>div>p {
    font-size: 14px;
    line-height: 18px;
    text-align: justify;
    font-family: 'Inter';
}

/* aside */

/* global */
.divisor {
    width: calc(100vw - 60px);
    max-width: 1200px;
    margin: 0 auto;
    background-color: #BCBCBC;
    height: 1px;
}

.divider {
    width: 2px;
    height: 49px;
    background-color: var(--dark-blue);
    margin: 44px auto !important;
}
.horizontal-divider {
    border-top: 1px solid #205284;
    max-width: 418px;
}

.ct-titlePage {
    font-size: 44px;
    line-height: 48px;
    color: var(--dark-blue);
    text-align: center;
}
.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-in 1 forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }