* {
    padding: 0;
    margin: 0;
}

/* ### ### ### ### ### */

body {
    background-color: var(--background-body);
    color: var(--color-primary);
    font-family: "Roboto", sans-serif;
}

/* ### ### ### ### ### */

.no_selection {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
}

.debug {
    border: 1px solid #000;
}

/* ### ### ### ### ### */

.top-header {
    width: 100%;
    height: var(--theme-header-height);
    background-color: var(--background-primary);
    position: fixed;
    top: 0;
    z-index: 111;
}

.top-header .con {
    padding: 0 var(--theme-header-padding);
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    max-width: var(--theme-max-view-with);
    margin: 0 auto;
}

.top-header .logo {
    display: inline-flex;
    align-items: center;
}

.top-header .logo img {
    width: 35px;
    height: 35px;
    margin-right: 15px;
}

.top-header .logo h2 {
    color: var(--color-primary);
}

.top-header .logo h2 a {
    text-decoration: none;
    color: var(--color-primary);
    transition: .25s ease-in-out;
}

.top-header .logo h2 a:hover {
    color: var(--theme-highlight-color);
}

.top-header .nav {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding-right: calc(var(--theme-header-padding) + 20px);
    display: inline-flex;
}

.top-header .menu {
    height: 100%;
}

.top-header .menu ul {
    height: calc(100% - 2px);
    list-style-type: none;
}

.top-header .menu ul li {
    display: inline-flex;
    height: 100%;
    align-items: center;
    border-bottom: 2px solid transparent;
    padding: 0 20px;
    transition: .25s ease-in-out;
}

.top-header .menu ul li.active {
    border-bottom: 2px solid var(--theme-highlight-color);
}

.top-header .menu ul li.active a {
    color: var(--theme-highlight-color);
}

.top-header .menu ul li a {
    color: var(--color-secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    transition: .25s ease-in-out;
}

.top-header .menu ul li:hover {
    border-bottom: 2px solid var(--theme-highlight-color);
    cursor: pointer;
}

.top-header .menu ul li:hover a {
    color: var(--theme-highlight-color);
}

.top-header .menu ul li i {
    margin-left: 8px;
}

.top-header .social {
    height: 100%;
}

.top-header .social ul {
    list-style-type: none;
    height: 100%;
}

.top-header .social ul li {
    display: inline-flex;
    width: 30px;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.top-header .social ul li a {
    color: var(--color-secondary);
    font-size: 18px;
    transition: .25s ease-in-out;
}

.top-header .social ul li a:hover {
    color: var(--theme-highlight-color);
}

.top-header .mobile {
    height: 100%;
    display: none;
}

.top-header .mobile ul {
    list-style-type: none;
    height: 100%;
}

.top-header .mobile ul li {
    display: inline-flex;
    width: 30px;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.top-header .mobile ul li a {
    color: var(--color-secondary);
    font-size: 24px;
    transition: .25s ease-in-out;
}

.top-header .mobile ul li a:hover {
    color: var(--theme-highlight-color);
    cursor: pointer;
}

/* ### ### ### ### ### */

.mobile-menu {
    width: 100%;
    height: calc(100vh - var(--theme-header-height));
    position: fixed;
    top: var(--theme-header-height);
    left: 0;
    background-color: var(--background-body);
    z-index: 1111;
    display: none;
}

.mobile-menu .nav {
    max-width: var(--theme-max-view-with);
    height: 100%;
    padding: 0 var(--theme-body-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
}

.mobile-menu .nav .menu {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.mobile-menu .nav .menu ul, .mobile-menu .nav .social ul {
    list-style-type: none;
}

.mobile-menu .nav .menu ul li {
    margin-bottom: 50px;
}

.mobile-menu .nav .menu ul li.active a {
    color: var(--theme-highlight-color);
}

.mobile-menu .nav .menu ul li a, .mobile-menu .nav .social ul li a {
    text-decoration: none;
    color: var(--color-secondary);
    font-size: 36px;
    transition: .25s ease-in-out;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}

.mobile-menu .nav .menu ul li a:hover, .mobile-menu .nav .social ul li a:hover {
    color: var(--theme-highlight-color);
}

.mobile-menu .nav .social {
    display: flex;
    justify-content: center;
}

.mobile-menu .nav .social ul li {
    margin-bottom: 50px;
}

/* ### ### ### ### ### */

.dropdown-area {
    max-width: var(--theme-max-view-with);
    margin: 0 auto;
    position: relative;
    z-index: 111;
}

.dropdown {
    position: absolute;
    top: -30px;
    right: 70px;
    background-color: var(--background-primary);
    transition: .25s ease-in-out;
    display: none;
}

.dropdown.active {
    display: block;
}

.dropdown ul {
    list-style-type: none;
    padding: 30px 40px;
}

.dropdown ul li {
    margin-bottom: 25px;
}

.dropdown ul li:last-child {
    margin: 0;
}

.dropdown ul li a {
    color: var(--color-secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    transition: .25s ease-in-out;
}

.dropdown ul li a:hover {
    color: var(--theme-highlight-color);
}

/* ### ### ### ### ### */

.banner-wrapper {
    width: 100%;
    height: 350px;
    margin-top: var(--theme-header-height);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    /*background-image: url(../assets/wallpapers/wallpaper_001.png);*/
    background-image: url("/public/assets/wallpapers/wallpaper_001.png");
    max-width: var(--theme-max-view-with);
}

.banner-wrapper.img-001 {
    background-image: url(../assets/wallpapers/wallpaper_001.png);
}
.banner-wrapper.img-002 {
    background-image: url(../assets/wallpapers/wallpaper_002.png);
}
.banner-wrapper.img-003 {
    background-image: url(../assets/wallpapers/wallpaper_003_aida.png);
}

.banner-wrapper.rounded {
    width: calc(100% - var(--theme-header-padding));
    margin: 0 auto;
    margin-top: calc(var(--theme-header-height) + (var(--theme-header-padding) / 2));
    border-radius: 20px;
}

.banner-wrapper .con {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.banner-wrapper h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: var(--theme-content-spacing);
}

.banner-wrapper h2.bg {
    background-color: var(--color-secondary);
}

.banner-wrapper h2.bg-highlight {
    background-color: var(--theme-highlight-color);
}

.banner-wrapper.align-left h2 {
    margin-left: calc(var(--theme-header-padding) * 2);
    text-align: left;
}

.banner-wrapper.align-center h2 {
    margin: 0 auto;
    text-align: center;
}

.banner-wrapper.align-right h2 {
    margin-left: calc(100% - (var(--theme-header-padding) * 6));
    text-align: right;
}

.banner-wrapper a.button {
    color: #ffffff;
    text-decoration: none;
    background-color: var(--theme-highlight-color);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
    padding: 20px 25px;
    text-transform: uppercase;
    transition: .25s ease-in-out;
}

.banner-wrapper a.button.rounded {
    border-radius: 7px;
}

.banner-wrapper a.button:hover {
    background-color: var(--background-primary);
    color: var(--color-primary);
}

/* ### ### ### ### ### */

.content {
    /* width: calc(100% - (2 * var(--theme-body-padding))); */
    /* max-width: var(--theme-max-view-with); */
    margin: 0 auto;
    margin-top: var(--theme-body-padding);
    margin-bottom: calc(var(--theme-body-padding) * 4);
}

.content.top-spacing {
    margin-top: calc(var(--theme-body-padding) + var(--theme-header-height));
}
.content.side-spacing {
    max-width: var(--theme-max-view-with);
}

.content .heading {
    width: 350px;
    padding: 30px 0;
    margin-bottom: 30px;
}

.content .heading.line {
    border-bottom: 2px solid var(--theme-highlight-color);
}

.content .heading.center {
    text-align: center;
    width: auto;
}

.content .heading h2 {
    color: var(--color-secondary);
    font-size: 35px;
    font-weight: 700;
}

.content h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--theme-content-spacing);
}

.content p {
    color: var(--color-secondary);
    line-height: 25px;
    margin-bottom: var(--theme-content-spacing);
}

.content p.mg-bottom {
    margin-bottom: calc(var(--theme-content-spacing) * 2);
}

.content p a.button {
    color: #ffffff;
    text-decoration: none;
    background-color: var(--theme-highlight-color);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
    padding: 15px 20px;
    text-transform: uppercase;
    transition: .25s ease-in-out;
    font-size: 12px;
}

.content p a.button.rounded {
    border-radius: 7px;
}

.content p a.button:hover {
    background-color: var(--background-primary);
    color: var(--color-primary);
}

/* ### ### ### */

.content .wrapper {
    position: relative;
    display: flex;
    max-width: var(--theme-max-view-with);
    margin: 0 auto;
}

.content .wrapper.center {
    justify-content: center;
}

.content .wrapper.mg-bottom {
    margin-bottom: calc(var(--theme-content-spacing) * 4);
}

.content .wrapper a.button {
    color: #ffffff;
    text-decoration: none;
    background-color: var(--theme-highlight-color);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
    padding: 10px 12px;
    text-transform: uppercase;
    transition: .25s ease-in-out;
    font-size: 12px;
}

.content .wrapper a.button:hover {
    color: var(--color-secondary);
    background-color: var(--background-primary);
    cursor: pointer;
}

.content .wrapper a.button.rounded {
    border-radius: 7px;
}

/* ### ### ### */

.content .wrapper .split-2 {
    position: relative;
    width: calc(50% - (var(--theme-content-spacing) / 2));
}

.content .wrapper .split-2:first-child {
    margin-right: calc(var(--theme-content-spacing) * 2);
}

.content .wrapper .split-2 h2.heading {
    font-size: 32px;
    color: var(--color-secondary);
    margin: 0;
}

.content .wrapper .split-2 h2.heading.highlight {
    color: var(--theme-highlight-color);
}

.content .wrapper .split-2 h4.subheading {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-secondary);
}

.content .wrapper .split-2 h4.subheading.highlight {
    color: var(--theme-highlight-color);
}

.content .wrapper .split-2 p {}

.content .wrapper .img.type-1 {
    position: relative;
    display: flex;
    justify-content: center;
}

.content .wrapper .img img {
    width: 450px;
    height: auto;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.content .wrapper .img .bg {
    width: 450px;
    height: 100%;
    background-color: var(--theme-highlight-color);
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(50px, 50px);
    z-index: -1;
}

/* ### ### ### */

.content .badge-row {
    max-width: var(--theme-max-view-with);
    position: relative;
    display: inline-flex;
}

.content .badge-row .entry {
    background-color: var(--background-primary);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
    width: calc((100% / 4) - (var(--theme-content-spacing) / 1));
    margin: 0 calc(var(--theme-content-spacing) / 2);
    position: relative;
}

.content .badge-row .entry.rounded {
    border-radius: 12px;
    overflow: hidden;
}

.content .badge-row .entry .card {
    padding: var(--theme-content-spacing) var(--theme-content-spacing);
}

.content .badge-row .entry .icon {
    width: 80px;
    height: 80px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-secondary);
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-bottom: var(--theme-content-spacing);
}

.content .badge-row .entry .icon i {
    font-size: 36px;
    color: var(--theme-highlight-color);
}

.content .badge-row .entry h4 {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: calc(var(--theme-content-spacing) / 4);
}

.content .badge-row .entry p {
    /* line-height: 28px; */
}

.content .badge-row .entry .line {
    width: 100%;
    height: 10px;
    background-color: var(--theme-highlight-color);
    bottom: 0;
    position: absolute;
}

.content .badge-row .entry.rounded .line {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* ### ### ### */

.partner-wrapper {
    width: 100%;
    background-color: var(--background-primary);
    /* position: absolute;
    left: 0; */
    display: flex;
    justify-content: center;
    margin: 200px 0;
}

.content .partner-wrapper .con {
    display: inline-flex;
}

.content .partner-wrapper .con .entry {
    margin: 40px 20px;
}

.content .partner-wrapper .con .entry img {
    width: auto;
    height: 150px;
}

/* ### ### ### ### ### */

/* ### ### ### ### ### */

/* ### ### ### ### ### */

/* ### ### ### ### ### */

/* ### ### ### ### ### */

/* ### ### ### ### ### */

/* ### ### ### ### ### */

/* ### ### ### ### ### */

/* ### ### ### ### ### */

/* ### ### ### ### ### */

.bottom-footer {
    width: 100%;
    height: var(--theme-footer-height);
    background-color: var(--background-secondary);
}

.bottom-footer .con {
    padding: 0 var(--theme-footer-padding);
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    max-width: var(--theme-max-view-with);
    margin: 0 auto;
}

.bottom-footer .split:nth-child(2) {
    width: 50%;
    height: calc(100% - 120px);
    position: relative;
}

.bottom-footer .split {
    width: 33%;
    height: calc(100% - 120px);
    position: relative;
    display: flex;
    justify-content: center;
}

.bottom-footer p.copyright {
    color: var(--color-secondary);
    display: flex;
    flex-direction:column;
    flex:1;
    margin-top: auto;
    text-align: center;
}

/* ### ### ### */

.bottom-footer .menu {

}

.bottom-footer .menu ul {
    list-style-type: none;
}

.bottom-footer .menu ul li {
    margin-bottom: 10px;
}

.bottom-footer .menu ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--color-secondary);
    transition: .25s ease-in-out;
    font-weight: 500;
    font-size: 14px;
}

.bottom-footer .menu ul li a:hover {
    color: var(--theme-highlight-color);
}

.bottom-footer .social ul {
    list-style-type: none;
}

.bottom-footer .social ul li {
    display: inline-flex;
    width: 30px;
}

.bottom-footer .social ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--color-secondary);
    transition: .25s ease-in-out;
    font-size: 18px;
}

.bottom-footer .social ul li a:hover {
    color: var(--theme-highlight-color);
}

/* ### ### ### ### ### */
